├── .gitignore ├── README.md ├── Update to 1.6.1 ├── Dockerfile ├── README ├── iredmail-MySQL-Update-from-1.3.2-to-1.6.1.sql └── static_files │ ├── entrypoint.sh │ ├── etc │ ├── rsyslog.conf │ ├── rsyslog.d │ │ └── listen.conf │ ├── supervisord.conf │ ├── supervisord.d │ │ ├── extra.ini │ │ ├── frontend.ini │ │ ├── mariadb-server.ini │ │ └── mta.ini │ └── sysconfig │ │ └── spamassassin │ ├── opt │ ├── iredmail │ │ ├── migrations │ │ │ └── amavisd │ │ │ │ ├── 01_1.2__emoji_characters.sql │ │ │ │ └── 02_1.3__missing_index.sql │ │ ├── packages │ │ │ ├── composer-2.4.1.phar │ │ │ ├── epel-release-latest-8.noarch.rpm │ │ │ ├── gosu-amd64-1.14 │ │ │ ├── html5_notifier-0.6.4.tar.gz │ │ │ ├── iRedMail-1.6.1.tar.gz │ │ │ ├── microsoft-teams-notifier-1.2.0.tar.gz │ │ │ ├── nano-6.1-1.el8.x86_64.rpm │ │ │ ├── remi-release-8.rpm │ │ │ └── roundcube-globaladdressbook-2.1.tar.gz │ │ └── static │ │ │ └── config-gen │ └── www │ │ └── roundcubemail-1.5.3 │ │ └── composer.json │ ├── services │ ├── amavis.sh │ ├── clamav-daemon.sh │ ├── clamav-freshclam.sh │ ├── dovecot.sh │ ├── iredadmin.sh │ ├── iredapd.sh │ ├── mariadb-server.sh │ ├── memcached.sh │ ├── mlmmjadmin.sh │ ├── netdata.sh │ ├── nginx.sh │ ├── php7-fpm.sh │ ├── postfix.sh │ ├── sogo.sh │ └── spamassassin.sh │ └── usr │ └── share │ └── spamassassin │ └── sa-update.cron └── mysql ├── Dockerfile ├── rc.local ├── static_files ├── entrypoint.sh ├── etc │ ├── rsyslog.conf │ ├── rsyslog.d │ │ └── listen.conf │ ├── supervisord.conf │ ├── supervisord.d │ │ ├── extra.ini │ │ ├── frontend.ini │ │ ├── mariadb-server.ini │ │ └── mta.ini │ └── sysconfig │ │ └── spamassassin ├── opt │ └── iredmail │ │ ├── migrations │ │ └── amavisd │ │ │ ├── 01_1.2__emoji_characters.sql │ │ │ └── 02_1.3__missing_index.sql │ │ └── static │ │ └── config-gen ├── services │ ├── amavis.sh │ ├── clamav-daemon.sh │ ├── clamav-freshclam.sh │ ├── dovecot.sh │ ├── iredadmin.sh │ ├── iredapd.sh │ ├── mariadb-server.sh │ ├── memcached.sh │ ├── mlmmjadmin.sh │ ├── netdata.sh │ ├── nginx.sh │ ├── php7-fpm.sh │ ├── postfix.sh │ ├── sogo.sh │ └── spamassassin.sh └── usr │ └── share │ └── spamassassin │ └── sa-update.cron ├── update.sh └── upgrades ├── mysql.sh ├── mysql.sql ├── processor.sh └── sogo.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | tmp* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/README.md -------------------------------------------------------------------------------- /Update to 1.6.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/Dockerfile -------------------------------------------------------------------------------- /Update to 1.6.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/README -------------------------------------------------------------------------------- /Update to 1.6.1/iredmail-MySQL-Update-from-1.3.2-to-1.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/iredmail-MySQL-Update-from-1.3.2-to-1.6.1.sql -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/entrypoint.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/rsyslog.conf -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/rsyslog.d/listen.conf: -------------------------------------------------------------------------------- 1 | $SystemLogSocketName /dev/log -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/supervisord.conf -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/supervisord.d/extra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/supervisord.d/extra.ini -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/supervisord.d/frontend.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/supervisord.d/frontend.ini -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/supervisord.d/mariadb-server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/supervisord.d/mariadb-server.ini -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/supervisord.d/mta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/etc/supervisord.d/mta.ini -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/etc/sysconfig/spamassassin: -------------------------------------------------------------------------------- 1 | SPAMDOPTIONS="-c -m5 -H" 2 | -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/migrations/amavisd/01_1.2__emoji_characters.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE msgs MODIFY COLUMN subject VARBINARY(255) NOT NULL DEFAULT ''; -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/migrations/amavisd/02_1.3__missing_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/migrations/amavisd/02_1.3__missing_index.sql -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/composer-2.4.1.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/composer-2.4.1.phar -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/epel-release-latest-8.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/epel-release-latest-8.noarch.rpm -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/gosu-amd64-1.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/gosu-amd64-1.14 -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/html5_notifier-0.6.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/html5_notifier-0.6.4.tar.gz -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/iRedMail-1.6.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/iRedMail-1.6.1.tar.gz -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/microsoft-teams-notifier-1.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/microsoft-teams-notifier-1.2.0.tar.gz -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/nano-6.1-1.el8.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/nano-6.1-1.el8.x86_64.rpm -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/remi-release-8.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/remi-release-8.rpm -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/packages/roundcube-globaladdressbook-2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/packages/roundcube-globaladdressbook-2.1.tar.gz -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/iredmail/static/config-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/iredmail/static/config-gen -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/opt/www/roundcubemail-1.5.3/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/opt/www/roundcubemail-1.5.3/composer.json -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/amavis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/amavis.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/clamav-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/clamav-daemon.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/clamav-freshclam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/clamav-freshclam.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/dovecot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/dovecot.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/iredadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/iredadmin.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/iredapd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/iredapd.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/mariadb-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/mariadb-server.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/memcached.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/memcached.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/mlmmjadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/mlmmjadmin.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/netdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/netdata.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/nginx.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/php7-fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/php7-fpm.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/postfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/postfix.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/sogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/sogo.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/services/spamassassin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/services/spamassassin.sh -------------------------------------------------------------------------------- /Update to 1.6.1/static_files/usr/share/spamassassin/sa-update.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/Update to 1.6.1/static_files/usr/share/spamassassin/sa-update.cron -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/rc.local -------------------------------------------------------------------------------- /mysql/static_files/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/entrypoint.sh -------------------------------------------------------------------------------- /mysql/static_files/etc/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/rsyslog.conf -------------------------------------------------------------------------------- /mysql/static_files/etc/rsyslog.d/listen.conf: -------------------------------------------------------------------------------- 1 | $SystemLogSocketName /dev/log -------------------------------------------------------------------------------- /mysql/static_files/etc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/supervisord.conf -------------------------------------------------------------------------------- /mysql/static_files/etc/supervisord.d/extra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/supervisord.d/extra.ini -------------------------------------------------------------------------------- /mysql/static_files/etc/supervisord.d/frontend.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/supervisord.d/frontend.ini -------------------------------------------------------------------------------- /mysql/static_files/etc/supervisord.d/mariadb-server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/supervisord.d/mariadb-server.ini -------------------------------------------------------------------------------- /mysql/static_files/etc/supervisord.d/mta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/etc/supervisord.d/mta.ini -------------------------------------------------------------------------------- /mysql/static_files/etc/sysconfig/spamassassin: -------------------------------------------------------------------------------- 1 | SPAMDOPTIONS="-c -m5 -H" 2 | -------------------------------------------------------------------------------- /mysql/static_files/opt/iredmail/migrations/amavisd/01_1.2__emoji_characters.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE msgs MODIFY COLUMN subject VARBINARY(255) NOT NULL DEFAULT ''; -------------------------------------------------------------------------------- /mysql/static_files/opt/iredmail/migrations/amavisd/02_1.3__missing_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/opt/iredmail/migrations/amavisd/02_1.3__missing_index.sql -------------------------------------------------------------------------------- /mysql/static_files/opt/iredmail/static/config-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/opt/iredmail/static/config-gen -------------------------------------------------------------------------------- /mysql/static_files/services/amavis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/amavis.sh -------------------------------------------------------------------------------- /mysql/static_files/services/clamav-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/clamav-daemon.sh -------------------------------------------------------------------------------- /mysql/static_files/services/clamav-freshclam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/clamav-freshclam.sh -------------------------------------------------------------------------------- /mysql/static_files/services/dovecot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/dovecot.sh -------------------------------------------------------------------------------- /mysql/static_files/services/iredadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/iredadmin.sh -------------------------------------------------------------------------------- /mysql/static_files/services/iredapd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/iredapd.sh -------------------------------------------------------------------------------- /mysql/static_files/services/mariadb-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/mariadb-server.sh -------------------------------------------------------------------------------- /mysql/static_files/services/memcached.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/memcached.sh -------------------------------------------------------------------------------- /mysql/static_files/services/mlmmjadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/mlmmjadmin.sh -------------------------------------------------------------------------------- /mysql/static_files/services/netdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/netdata.sh -------------------------------------------------------------------------------- /mysql/static_files/services/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/nginx.sh -------------------------------------------------------------------------------- /mysql/static_files/services/php7-fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/php7-fpm.sh -------------------------------------------------------------------------------- /mysql/static_files/services/postfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/postfix.sh -------------------------------------------------------------------------------- /mysql/static_files/services/sogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/sogo.sh -------------------------------------------------------------------------------- /mysql/static_files/services/spamassassin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/services/spamassassin.sh -------------------------------------------------------------------------------- /mysql/static_files/usr/share/spamassassin/sa-update.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/static_files/usr/share/spamassassin/sa-update.cron -------------------------------------------------------------------------------- /mysql/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/update.sh -------------------------------------------------------------------------------- /mysql/upgrades/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/upgrades/mysql.sh -------------------------------------------------------------------------------- /mysql/upgrades/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/upgrades/mysql.sql -------------------------------------------------------------------------------- /mysql/upgrades/processor.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/upgrades/sogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lejmr/iredmail-docker/HEAD/mysql/upgrades/sogo.sh --------------------------------------------------------------------------------