├── .gitattributes ├── .gitignore ├── LICENSE ├── LICENSE.md ├── README.md ├── Vagrantfile ├── ovh-soyoustar-kimsufi-postinstall.sh ├── preconf ├── apache │ ├── httpd-vhosts.conf │ └── httpd.conf ├── bin │ └── zsudo.c ├── bind │ ├── etc │ │ └── named.conf │ ├── named.conf │ ├── rndc.conf │ └── zones │ │ ├── localhost.rev.zone │ │ ├── localhost.zone │ │ ├── managed-keys.bind │ │ └── root.servers.zone ├── cron │ └── zdaemon ├── dovecot2 │ ├── dovecot-dict-quota.conf │ ├── dovecot-mysql.conf │ ├── dovecot-trash.conf │ ├── dovecot.conf │ └── globalfilter.sieve ├── logrotate │ ├── Sentora-apache │ ├── Sentora-dovecot │ └── Sentora-proftpd ├── php │ └── sp │ │ ├── cron.rules │ │ ├── disable.rules │ │ ├── enable.rules │ │ └── panel.rules ├── phpmyadmin │ └── config.inc.php ├── postfix │ ├── main.cf │ ├── master.cf │ ├── mynetworks │ ├── mysql-relay_domains_maps.cf │ ├── mysql-virtual_alias_maps.cf │ ├── mysql-virtual_domains_maps.cf │ ├── mysql-virtual_mailbox_limit_maps.cf │ ├── mysql-virtual_mailbox_maps.cf │ ├── transport │ ├── vacation.conf │ ├── vacation.pl │ └── virtual_regexp ├── proftpd │ └── proftpd-mysql.conf ├── roundcube │ ├── roundcube_config.inc.php │ └── sieve_config.inc.php ├── sentora-install │ └── sql │ │ ├── sentora_core.sql │ │ ├── sentora_postfix.sql │ │ ├── sentora_proftpd.sql │ │ └── sentora_roundcube.sql └── sentora-update │ ├── 1-0-0 │ └── sql │ │ └── update.sql │ ├── 1-0-2 │ └── update.sql │ ├── 1-0-3 │ └── sql │ │ └── update.sql │ ├── 1-0-4 │ ├── shell │ │ └── 1-missing-packages.sh │ └── sql │ │ ├── 1-postfix-innodb.sql │ │ ├── 2-postfix-unused-tables.sql │ │ └── update.sql │ ├── 2-0-0 │ ├── shell │ │ └── 1-missing-packages.sh │ └── sql │ │ ├── 0-postfix-datetime-fix.sql │ │ ├── 1-postfix-innodb.sql │ │ ├── 2-postfix-unused-tables.sql │ │ ├── 3-core-update.sql │ │ └── 4-proftpd-datetime-fix.sql │ ├── 2-0-1 │ └── sql │ │ └── 0-core-update.sql │ ├── 2-0-2 │ └── sql │ │ └── 0-core-update.sql │ ├── 2-1-0 │ └── file.txt.txt │ └── zpanel │ └── sql │ ├── update-data.sql │ └── update-structure.sql ├── sentora_install.sh ├── sentora_update.sh └── uninstall ├── centos-fedora-redhat.sh └── ubuntu-debian.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ovh-soyoustar-kimsufi-postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/ovh-soyoustar-kimsufi-postinstall.sh -------------------------------------------------------------------------------- /preconf/apache/httpd-vhosts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/apache/httpd-vhosts.conf -------------------------------------------------------------------------------- /preconf/apache/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/apache/httpd.conf -------------------------------------------------------------------------------- /preconf/bin/zsudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bin/zsudo.c -------------------------------------------------------------------------------- /preconf/bind/etc/named.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preconf/bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bind/named.conf -------------------------------------------------------------------------------- /preconf/bind/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bind/rndc.conf -------------------------------------------------------------------------------- /preconf/bind/zones/localhost.rev.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bind/zones/localhost.rev.zone -------------------------------------------------------------------------------- /preconf/bind/zones/localhost.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bind/zones/localhost.zone -------------------------------------------------------------------------------- /preconf/bind/zones/managed-keys.bind: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preconf/bind/zones/root.servers.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/bind/zones/root.servers.zone -------------------------------------------------------------------------------- /preconf/cron/zdaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/cron/zdaemon -------------------------------------------------------------------------------- /preconf/dovecot2/dovecot-dict-quota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/dovecot2/dovecot-dict-quota.conf -------------------------------------------------------------------------------- /preconf/dovecot2/dovecot-mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/dovecot2/dovecot-mysql.conf -------------------------------------------------------------------------------- /preconf/dovecot2/dovecot-trash.conf: -------------------------------------------------------------------------------- 1 | 1 Spam 2 | 2 Trash 3 | 3 Junk 4 | -------------------------------------------------------------------------------- /preconf/dovecot2/dovecot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/dovecot2/dovecot.conf -------------------------------------------------------------------------------- /preconf/dovecot2/globalfilter.sieve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/dovecot2/globalfilter.sieve -------------------------------------------------------------------------------- /preconf/logrotate/Sentora-apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/logrotate/Sentora-apache -------------------------------------------------------------------------------- /preconf/logrotate/Sentora-dovecot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/logrotate/Sentora-dovecot -------------------------------------------------------------------------------- /preconf/logrotate/Sentora-proftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/logrotate/Sentora-proftpd -------------------------------------------------------------------------------- /preconf/php/sp/cron.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/php/sp/cron.rules -------------------------------------------------------------------------------- /preconf/php/sp/disable.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/php/sp/disable.rules -------------------------------------------------------------------------------- /preconf/php/sp/enable.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/php/sp/enable.rules -------------------------------------------------------------------------------- /preconf/php/sp/panel.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/php/sp/panel.rules -------------------------------------------------------------------------------- /preconf/phpmyadmin/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/phpmyadmin/config.inc.php -------------------------------------------------------------------------------- /preconf/postfix/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/main.cf -------------------------------------------------------------------------------- /preconf/postfix/master.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/master.cf -------------------------------------------------------------------------------- /preconf/postfix/mynetworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mynetworks -------------------------------------------------------------------------------- /preconf/postfix/mysql-relay_domains_maps.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mysql-relay_domains_maps.cf -------------------------------------------------------------------------------- /preconf/postfix/mysql-virtual_alias_maps.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mysql-virtual_alias_maps.cf -------------------------------------------------------------------------------- /preconf/postfix/mysql-virtual_domains_maps.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mysql-virtual_domains_maps.cf -------------------------------------------------------------------------------- /preconf/postfix/mysql-virtual_mailbox_limit_maps.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mysql-virtual_mailbox_limit_maps.cf -------------------------------------------------------------------------------- /preconf/postfix/mysql-virtual_mailbox_maps.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/mysql-virtual_mailbox_maps.cf -------------------------------------------------------------------------------- /preconf/postfix/transport: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preconf/postfix/vacation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/vacation.conf -------------------------------------------------------------------------------- /preconf/postfix/vacation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/postfix/vacation.pl -------------------------------------------------------------------------------- /preconf/postfix/virtual_regexp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /preconf/proftpd/proftpd-mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/proftpd/proftpd-mysql.conf -------------------------------------------------------------------------------- /preconf/roundcube/roundcube_config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/roundcube/roundcube_config.inc.php -------------------------------------------------------------------------------- /preconf/roundcube/sieve_config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/roundcube/sieve_config.inc.php -------------------------------------------------------------------------------- /preconf/sentora-install/sql/sentora_core.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-install/sql/sentora_core.sql -------------------------------------------------------------------------------- /preconf/sentora-install/sql/sentora_postfix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-install/sql/sentora_postfix.sql -------------------------------------------------------------------------------- /preconf/sentora-install/sql/sentora_proftpd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-install/sql/sentora_proftpd.sql -------------------------------------------------------------------------------- /preconf/sentora-install/sql/sentora_roundcube.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-install/sql/sentora_roundcube.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-0/sql/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-0/sql/update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-2/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-2/update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-3/sql/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-3/sql/update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-4/shell/1-missing-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-4/shell/1-missing-packages.sh -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-4/sql/1-postfix-innodb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-4/sql/1-postfix-innodb.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-4/sql/2-postfix-unused-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-4/sql/2-postfix-unused-tables.sql -------------------------------------------------------------------------------- /preconf/sentora-update/1-0-4/sql/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/1-0-4/sql/update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/shell/1-missing-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/shell/1-missing-packages.sh -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/sql/0-postfix-datetime-fix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/sql/0-postfix-datetime-fix.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/sql/1-postfix-innodb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/sql/1-postfix-innodb.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/sql/2-postfix-unused-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/sql/2-postfix-unused-tables.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/sql/3-core-update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/sql/3-core-update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-0/sql/4-proftpd-datetime-fix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-0/sql/4-proftpd-datetime-fix.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-1/sql/0-core-update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-1/sql/0-core-update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-0-2/sql/0-core-update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/2-0-2/sql/0-core-update.sql -------------------------------------------------------------------------------- /preconf/sentora-update/2-1-0/file.txt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preconf/sentora-update/zpanel/sql/update-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/zpanel/sql/update-data.sql -------------------------------------------------------------------------------- /preconf/sentora-update/zpanel/sql/update-structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/preconf/sentora-update/zpanel/sql/update-structure.sql -------------------------------------------------------------------------------- /sentora_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/sentora_install.sh -------------------------------------------------------------------------------- /sentora_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/sentora_update.sh -------------------------------------------------------------------------------- /uninstall/centos-fedora-redhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/uninstall/centos-fedora-redhat.sh -------------------------------------------------------------------------------- /uninstall/ubuntu-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentora/sentora-installers/HEAD/uninstall/ubuntu-debian.sh --------------------------------------------------------------------------------