76 lines
3.6 KiB
Bash
Executable File
76 lines
3.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'installing vmail-stack now!'
|
|
|
|
apt -y install mariadb-client mariadb-server
|
|
## config mariadb
|
|
|
|
apt -y install apache2 libapache2-mod-authnz-pam libwww-perl php-fpm php-cli php-ssh2 php-curl php-dev php-enchant php-mysql php-pear php-gd php-http php-imap php-intl php-mysql php-yaml php-propro php-pspell php-raphf php-ssh2 php-sqlite3 php-tidy php-xml php-xmlrpc php-zip php-mbstring php-imagick php-redis redis pwauth libapache2-mod-authnz-external
|
|
## adjust above package list
|
|
a2enmod rewrite headers expires ssl http2 macro
|
|
# configure mod_macro
|
|
|
|
# configure php
|
|
|
|
# configure apache security
|
|
|
|
## below needs to be cleaned up (remove 'stack' stuff)
|
|
# mail stack
|
|
apt -y --install-suggests install spamassassin libclass-dbi-mysql-perl
|
|
apt -y install exim4-daemon-heavy spf-tools-perl dovecot-core dovecot-imapd dovecot-mysql dovecot-pop3d dovecot-lmtpd
|
|
usermod -a -G ssl-cert Debian-exim
|
|
groupadd --gid 500 vmail
|
|
useradd --create-home --home-dir /var/vmail --shell /bin/false --uid 500 --gid 500 vmail
|
|
chmod 750 /var/vmail/
|
|
mkdir /etc/ssl/dkim
|
|
chown Debian-exim:ssl-cert /etc/ssl/dkim
|
|
chmod 750 /etc/ssl/dkim
|
|
sed -i 's/size 10M/daily/g' /etc/logrotate.d/exim4-paniclog
|
|
# # chown Debian-exim:Debian-exim /etc/exim4/autowhitelist.filter
|
|
# # chmod 640 /etc/exim4/autowhitelist.filter
|
|
mysqladmin create vmail
|
|
## fix this path
|
|
mysql < .../vmail.sql
|
|
VMAILPASS=`pwgen -1 12`
|
|
mysql -e "CREATE USER 'vmail'@'localhost' IDENTIFIED BY '$VMAILPASS';"
|
|
mysql -e "GRANT ALL PRIVILEGES ON vmail.* TO 'vmail'@'localhost';"
|
|
# spamassassin config
|
|
sed -i "s|userpref|sa_userpref|g" /usr/share/doc/spamassassin/sql/userpref_mysql.sql
|
|
sed -i "s|username varchar(100)|username varchar(255)|g" /usr/share/doc/spamassassin/sql/userpref_mysql.sql
|
|
sed -i "s|TYPE=MyISAM||g" /usr/share/doc/spamassassin/sql/userpref_mysql.sql
|
|
mysql vmail < /usr/share/doc/spamassassin/sql/userpref_mysql.sql
|
|
sed -i 's|OPTIONS="--create-prefs --max-children 5 --helper-home-dir"|OPTIONS="-x -q -v -u Debian-exim -m 5"|g' /etc/default/spamassassin
|
|
sed -i 's|CRON=0|CRON=1|g' /etc/default/spamassassin
|
|
systemctl enable spamassassin.service
|
|
cp /opt/stack/server_configs/etc/spamassassin/* /etc/spamassassin/
|
|
sed -i "s|user_scores_sql_password password|user_scores_sql_password $VMAILPASS|g" /etc/spamassassin/sql.cf
|
|
chown root:root /etc/spamassassin/local.cf
|
|
chmod 644 /etc/spamassassin/local.cf
|
|
chown debian-spamd:mail /etc/spamassassin/sql.cf
|
|
chmod 640 /etc/spamassassin/sql.cf
|
|
service spamassassin restart
|
|
# exim config
|
|
install --owner=Debian-exim --group=Debian-exim --mode=640 /dev/null /etc/exim4/relay_domains
|
|
cp /opt/stack/server_configs/etc/exim4/* /etc/exim4/
|
|
chown Debian-exim:Debian-exim /etc/exim4/autowhitelist.filter
|
|
chown Debian-exim:Debian-exim /etc/exim4/return-resender.sh
|
|
chown Debian-exim:Debian-exim /etc/exim4/skip_greylisting_hosts
|
|
sed -i "s|password|$VMAILPASS|g" /etc/exim4/exim_local.conf
|
|
service exim4 restart
|
|
# dovecot config
|
|
mkdir /etc/dovecot/sites.d
|
|
cp -a /opt/stack/server_configs/etc/dovecot/* /etc/dovecot/
|
|
chgrp dovecot /etc/dovecot/dovecot-sql.conf.ext
|
|
sed -i "s|password=password|password=$VMAILPASS|g" /etc/dovecot/dovecot-sql.conf.ext
|
|
cp -a /opt/stack/server_configs/usr/local/sbin/vmail-quota-warning.sh /usr/local/sbin/
|
|
chmod 750 /usr/local/sbin/vmail-quota-warning.sh
|
|
chown dovecot:mail /usr/local/sbin/vmail-quota-warning.sh
|
|
service dovecot restart
|
|
|
|
|
|
# set webmail password
|
|
sed -i "s|vmail:password@localhost|vmail:$VMAILPASS@localhost|g" /var/www/html/webmail/config/config.inc.php
|
|
sed -i "s|vmail:password@localhost|vmail:$VMAILPASS@localhost|g" /var/www/html/webmail/plugins/sauserprefs/config.inc.php
|
|
|
|
# Let's Encrypt
|