2020-11-19 13:43:15 +00:00
|
|
|
#!/bin/sh
|
2020-11-22 21:45:43 +00:00
|
|
|
cd "${0%/*}"
|
2020-11-19 13:43:15 +00:00
|
|
|
|
|
|
|
printf "Domain root: "
|
|
|
|
read -r domain_root
|
|
|
|
printf "Subdomain (can be empty): "
|
|
|
|
read -r sub_domain
|
|
|
|
|
2020-11-22 21:45:43 +00:00
|
|
|
printf "E-mail user (name without @domain): "
|
|
|
|
read -r user
|
|
|
|
printf "E-mail pass: "
|
|
|
|
read -r pass
|
|
|
|
|
|
|
|
if [ -z "${sub_domain}" ]
|
2020-11-19 13:43:15 +00:00
|
|
|
then
|
|
|
|
domain="${domain_root}"
|
|
|
|
else
|
|
|
|
domain="${sub_domain}.${domain_root}"
|
|
|
|
fi
|
|
|
|
|
2020-11-22 21:45:43 +00:00
|
|
|
cat > mail.env <<EOF
|
2020-11-19 13:43:15 +00:00
|
|
|
#!/bin/sh
|
|
|
|
DOMAINNAME=${domain_root}
|
|
|
|
MAILNAME=${domain}
|
|
|
|
SSL_CERT=/etc/letsencrypt/live/${domain_root}/fullchain.pem
|
|
|
|
SSL_KEY=/etc/letsencrypt/live/${domain_root}/privkey.pem
|
2020-11-22 22:13:47 +00:00
|
|
|
USER="${user}@${domain_root}"
|
2020-11-19 13:43:15 +00:00
|
|
|
EOF
|
|
|
|
|
2020-11-22 19:14:59 +00:00
|
|
|
DOMAINNAME="${domain_root}"
|
|
|
|
MAILNAME="${domain}"
|
|
|
|
SSL_CERT="/etc/letsencrypt/live/${domain_root}/fullchain.pem"
|
|
|
|
SSL_KEY="/etc/letsencrypt/live/${domain_root}/privkey.pem"
|
2020-11-19 13:43:15 +00:00
|
|
|
|
2020-11-22 21:45:43 +00:00
|
|
|
USER="${user}@${DOMAINNAME}"
|
2020-11-22 22:13:47 +00:00
|
|
|
PASSHASH=$(mkpasswd -m sha-512 -S "" -R 5000 ${pass})
|
2020-11-22 21:45:43 +00:00
|
|
|
|
2020-11-19 13:43:15 +00:00
|
|
|
# Config postfix
|
2020-11-22 21:45:43 +00:00
|
|
|
sed -i -e "s#^\s*myhostname\s*=.*#myhostname = ${MAILNAME}#" config/postfix/main.cf
|
|
|
|
sed -i -e "s#^\s*mydomain\s*=.*#mydomain = ${DOMAINNAME}#" config/postfix/main.cf
|
|
|
|
sed -i -e "s#^\s*smtpd_tls_cert_file\s*=.*#smtpd_tls_cert_file = ${SSL_CERT}#" config/postfix/main.cf
|
|
|
|
sed -i -e "s#^\s*smtpd_tls_key_file\s*=.*#smtpd_tls_key_file = ${SSL_KEY}#" config/postfix/main.cf
|
2020-11-19 13:43:15 +00:00
|
|
|
|
|
|
|
# Config dovecot
|
2020-11-22 21:45:43 +00:00
|
|
|
sed -i -e "s#^\s*ssl_cert\s*=.*#ssl_cert = <${SSL_CERT}#" config/dovecot/dovecot.conf
|
|
|
|
sed -i -e "s#^\s*ssl_key\s*=.*#ssl_key = <${SSL_KEY}#" config/dovecot/dovecot.conf
|
|
|
|
sed -i -e "s#^\s*postmaster_address\s*=.*#postmaster_address = postmaster@${DOMAINNAME}#" config/dovecot/dovecot.conf
|
2020-11-19 13:43:15 +00:00
|
|
|
|
|
|
|
# Config dkim
|
2020-11-22 21:45:43 +00:00
|
|
|
sed -i -e "s/^.*#HOSTNAME/${MAILNAME}#HOSTNAME/" config/opendkim/TrustedHosts
|
2020-11-22 19:14:59 +00:00
|
|
|
|
|
|
|
# Prepare mail user
|
2020-11-22 21:45:43 +00:00
|
|
|
touch config/aliases config/domains config/mailboxes config/passwd
|
2020-11-22 22:13:47 +00:00
|
|
|
echo "${DOMAINNAME} #OK" > config/domains
|
|
|
|
echo "${USER} ${USER}" > config/aliases
|
|
|
|
echo "${USER} ${DOMAINNAME}/${user}/" > config/mailboxes
|
|
|
|
echo "${USER}:${PASSHASH}" > config/passwd
|