2014-06-08 21:23:06 +00:00
|
|
|
#!/bin/bash
|
2013-09-01 14:13:51 +00:00
|
|
|
# SMTP/IMAP: Postfix and Dovecot
|
|
|
|
################################
|
|
|
|
|
|
|
|
# The SMTP server is listening on port 25 for incoming mail (mail for us) and on
|
|
|
|
# port 587 for outgoing mail (i.e. mail you send). Port 587 uses STARTTLS (not SSL)
|
|
|
|
# and you'll authenticate with your full email address and mail password.
|
2013-08-21 13:37:33 +00:00
|
|
|
#
|
2013-09-01 14:13:51 +00:00
|
|
|
# The IMAP server is listening on port 993 and uses SSL. There is no IMAP server
|
|
|
|
# listening on port 143 because it is not encrypted on that port.
|
|
|
|
|
|
|
|
# We configure these together because postfix's configuration relies heavily on dovecot.
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2013-08-21 13:37:33 +00:00
|
|
|
# Install packages.
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2014-06-03 11:12:38 +00:00
|
|
|
source setup/functions.sh # load our functions
|
2013-09-08 11:25:56 +00:00
|
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
|
2014-05-01 19:13:00 +00:00
|
|
|
apt_install \
|
2014-06-08 21:30:37 +00:00
|
|
|
postfix postgrey postfix-pcre \
|
2014-06-21 22:15:53 +00:00
|
|
|
dovecot-core dovecot-imapd dovecot-lmtpd dovecot-sqlite sqlite3
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
mkdir -p $STORAGE_ROOT/mail
|
|
|
|
|
2013-08-21 13:37:33 +00:00
|
|
|
# POSTFIX
|
2013-09-01 14:13:51 +00:00
|
|
|
#########
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2014-06-10 10:19:49 +00:00
|
|
|
# Have postfix listen on all network interfaces, set our name (the Debian default seems to be localhost),
|
|
|
|
# and set the name of the local machine to localhost for xxx@localhost mail (but I don't think this will have any effect because
|
|
|
|
# there is no true local mail delivery). Also set the banner (must have the hostname first, then anything).
|
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
|
|
|
inet_interfaces=all \
|
|
|
|
myhostname=$PUBLIC_HOSTNAME\
|
|
|
|
smtpd_banner="\$myhostname ESMTP Hi, I'm a Mail-in-a-Box (Ubuntu/Postfix; see https://github.com/joshdata/mailinabox)" \
|
|
|
|
mydestination=localhost
|
|
|
|
|
2014-06-22 19:03:11 +00:00
|
|
|
# Enable the 'submission' port 587 smtpd server and tweak its settings.
|
|
|
|
# a) Require the best ciphers for incoming connections per http://baldric.net/2013/12/07/tls-ciphers-in-postfix-and-dovecot/.
|
|
|
|
# but without affecting opportunistic TLS on incoming mail, which will allow any cipher (it's better than none).
|
|
|
|
# b) Give it a different name in syslog to distinguish it from the port 25 smtpd server.
|
|
|
|
# c) Add a new cleanup service specific to the submission service ('authclean')
|
|
|
|
# that filters out privacy-sensitive headers on mail being sent out by
|
|
|
|
# authenticated users.
|
2014-06-08 21:23:06 +00:00
|
|
|
tools/editconf.py /etc/postfix/master.cf -s -w \
|
|
|
|
"submission=inet n - - - - smtpd
|
2014-06-08 21:30:37 +00:00
|
|
|
-o syslog_name=postfix/submission
|
2014-06-22 19:03:11 +00:00
|
|
|
-o smtpd_tls_ciphers=high -o smtpd_tls_protocols=!SSLv2,!SSLv3
|
2014-06-08 21:30:37 +00:00
|
|
|
-o cleanup_service_name=authclean" \
|
|
|
|
"authclean=unix n - - - 0 cleanup
|
|
|
|
-o header_checks=pcre:/etc/postfix/outgoing_mail_header_filters"
|
|
|
|
|
2014-06-10 10:19:49 +00:00
|
|
|
# Install the `outgoing_mail_header_filters` file required by the new 'authclean' service.
|
2014-06-08 21:30:37 +00:00
|
|
|
cp conf/postfix_outgoing_mail_header_filters /etc/postfix/outgoing_mail_header_filters
|
2013-08-26 21:01:48 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Enable TLS and require it for all user authentication.
|
2013-08-21 18:23:43 +00:00
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
2013-09-08 11:25:56 +00:00
|
|
|
smtpd_tls_security_level=may\
|
2013-08-21 02:27:32 +00:00
|
|
|
smtpd_tls_auth_only=yes \
|
2013-09-08 11:25:56 +00:00
|
|
|
smtpd_tls_cert_file=$STORAGE_ROOT/ssl/ssl_certificate.pem \
|
|
|
|
smtpd_tls_key_file=$STORAGE_ROOT/ssl/ssl_private_key.pem \
|
2013-08-21 02:27:32 +00:00
|
|
|
smtpd_tls_received_header=yes
|
2013-09-08 11:25:56 +00:00
|
|
|
|
2014-06-19 01:58:14 +00:00
|
|
|
# When connecting to remote SMTP servers, prefer TLS and use DANE if available.
|
|
|
|
# Postfix queries for the TLSA record on the destination MX host. If no TLSA records are found,
|
|
|
|
# then opportunistic TLS is used. Otherwise the server certificate must match the TLSA records
|
|
|
|
# or else the mail bounces. TLSA also requires DNSSEC on the MX host. Postfix doesn't do DNSSEC
|
|
|
|
# itself but assumes the system's nameserver does and reports DNSSEC status. Thus this also
|
|
|
|
# relies on our local bind9 server being present and smtp_dns_support_level being set to dnssec
|
|
|
|
# to use it.
|
2013-09-08 11:25:56 +00:00
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
2014-06-19 01:58:14 +00:00
|
|
|
smtp_tls_security_level=dane \
|
|
|
|
smtp_dns_support_level=dnssec \
|
2013-09-08 11:25:56 +00:00
|
|
|
smtp_tls_loglevel=2
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2013-09-01 13:12:05 +00:00
|
|
|
# Who can send outbound mail?
|
|
|
|
# permit_sasl_authenticated: Authenticated users (i.e. on port 587).
|
|
|
|
# permit_mynetworks: Mail that originates locally.
|
|
|
|
# reject_unauth_destination: No one else. (Permits mail whose destination is local and rejects other mail.)
|
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
|
|
|
smtpd_relay_restrictions=permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
|
|
|
|
|
|
|
|
# Who can send mail to us?
|
2014-05-15 12:10:35 +00:00
|
|
|
# reject_non_fqdn_sender: Reject not-nice-looking return paths.
|
|
|
|
# reject_unknown_sender_domain: Reject return paths with invalid domains.
|
|
|
|
# reject_rhsbl_sender: Reject return paths that use blacklisted domains.
|
2013-09-01 13:12:05 +00:00
|
|
|
# permit_sasl_authenticated: Authenticated users (i.e. on port 587).
|
|
|
|
# permit_mynetworks: Mail that originates locally.
|
|
|
|
# reject_rbl_client: Reject connections from IP addresses blacklisted in zen.spamhaus.org
|
|
|
|
# check_policy_service: Apply greylisting using postgrey.
|
2014-05-23 08:58:49 +00:00
|
|
|
#
|
|
|
|
# Notes:
|
|
|
|
# permit_dnswl_client can pass through mail from whitelisted IP addresses, which would be good to put before greylisting
|
|
|
|
# so these IPs get mail delivered quickly. But when an IP is not listed in the permit_dnswl_client list (i.e. it is not
|
|
|
|
# whitelisted) then postfix does a DEFER_IF_REJECT, which results in all "unknown user" sorts of messages turning into
|
|
|
|
# "450 4.7.1 Client host rejected: Service unavailable". This is a retry code, so the mail doesn't properly bounce.
|
2013-09-01 13:12:05 +00:00
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
2014-06-10 10:19:49 +00:00
|
|
|
smtpd_sender_restrictions="reject_non_fqdn_sender,reject_unknown_sender_domain,reject_rhsbl_sender dbl.spamhaus.org" \
|
2014-05-23 08:58:49 +00:00
|
|
|
smtpd_recipient_restrictions=permit_sasl_authenticated,permit_mynetworks,"reject_rbl_client zen.spamhaus.org","check_policy_service inet:127.0.0.1:10023"
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2014-06-10 10:21:43 +00:00
|
|
|
# Increase the message size limit from 10MB to 128MB.
|
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
|
|
|
message_size_limit=134217728
|
|
|
|
|
2014-06-10 10:19:49 +00:00
|
|
|
# In a basic setup we would handle all local mail delivery by passing
|
|
|
|
# it directly to dovecot over LMTP. However when we setup spamassassin
|
|
|
|
# we will instead pass mail to spampd which will in turn pass it off
|
|
|
|
# to dovecot. So we will skip setting this here and instead set it in
|
|
|
|
# spamassassin.sh.
|
|
|
|
#tools/editconf.py /etc/postfix/main.cf virtual_transport=lmtp:unix:private/dovecot-lmtp
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2014-06-10 10:19:49 +00:00
|
|
|
# Postfix will query dovecot for user authentication.
|
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
|
|
|
smtpd_sasl_type=dovecot \
|
|
|
|
smtpd_sasl_path=private/auth \
|
|
|
|
smtpd_sasl_auth_enable=yes
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Use a Sqlite3 database to check whether a destination email address exists,
|
|
|
|
# and to perform any email alias rewrites.
|
2013-08-21 18:23:43 +00:00
|
|
|
tools/editconf.py /etc/postfix/main.cf \
|
2013-08-21 02:27:32 +00:00
|
|
|
virtual_mailbox_domains=sqlite:/etc/postfix/virtual-mailbox-domains.cf \
|
|
|
|
virtual_mailbox_maps=sqlite:/etc/postfix/virtual-mailbox-maps.cf \
|
|
|
|
virtual_alias_maps=sqlite:/etc/postfix/virtual-alias-maps.cf \
|
|
|
|
local_recipient_maps=\$virtual_mailbox_maps
|
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Here's the path to the database.
|
2013-08-21 13:37:33 +00:00
|
|
|
db_path=$STORAGE_ROOT/mail/users.sqlite
|
|
|
|
|
2014-05-01 22:14:04 +00:00
|
|
|
# SQL statement to check if we handle mail for a domain, either for users or aliases.
|
2013-08-21 18:23:43 +00:00
|
|
|
cat > /etc/postfix/virtual-mailbox-domains.cf << EOF;
|
2013-08-21 02:27:32 +00:00
|
|
|
dbpath=$db_path
|
2014-05-01 22:14:04 +00:00
|
|
|
query = SELECT 1 FROM users WHERE email LIKE '%%@%s' UNION SELECT 1 FROM aliases WHERE source LIKE '%%@%s'
|
2013-08-21 02:27:32 +00:00
|
|
|
EOF
|
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# SQL statement to check if we handle mail for a user.
|
2013-08-21 18:23:43 +00:00
|
|
|
cat > /etc/postfix/virtual-mailbox-maps.cf << EOF;
|
2013-08-21 02:27:32 +00:00
|
|
|
dbpath=$db_path
|
|
|
|
query = SELECT 1 FROM users WHERE email='%s'
|
|
|
|
EOF
|
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# SQL statement to rewrite an email address if an alias is present.
|
2013-08-21 18:23:43 +00:00
|
|
|
cat > /etc/postfix/virtual-alias-maps.cf << EOF;
|
2013-08-21 02:27:32 +00:00
|
|
|
dbpath=$db_path
|
|
|
|
query = SELECT destination FROM aliases WHERE source='%s'
|
|
|
|
EOF
|
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Create an empty database if it doesn't yet exist.
|
2013-08-21 13:37:33 +00:00
|
|
|
if [ ! -f $db_path ]; then
|
|
|
|
echo Creating new user database: $db_path;
|
|
|
|
echo "CREATE TABLE users (id INTEGER PRIMARY KEY AUTOINCREMENT, email TEXT NOT NULL UNIQUE, password TEXT NOT NULL, extra);" | sqlite3 $db_path;
|
|
|
|
echo "CREATE TABLE aliases (id INTEGER PRIMARY KEY AUTOINCREMENT, source TEXT NOT NULL UNIQUE, destination TEXT NOT NULL);" | sqlite3 $db_path;
|
|
|
|
fi
|
|
|
|
|
|
|
|
# DOVECOT
|
2013-09-01 14:13:51 +00:00
|
|
|
#########
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# The dovecot-imapd dovecot-lmtpd packages automatically enable IMAP and LMTP protocols.
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Set the location where we'll store user mailboxes.
|
2013-08-21 18:23:43 +00:00
|
|
|
tools/editconf.py /etc/dovecot/conf.d/10-mail.conf \
|
2013-08-21 13:37:33 +00:00
|
|
|
mail_location=maildir:$STORAGE_ROOT/mail/mailboxes/%d/%n \
|
|
|
|
mail_privileged_group=mail \
|
|
|
|
first_valid_uid=0
|
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Require that passwords are sent over SSL only, and allow the usual IMAP authentication mechanisms.
|
2014-04-18 00:17:24 +00:00
|
|
|
# The LOGIN mechanism is supposedly for Microsoft products like Outlook to do SMTP login (I guess
|
|
|
|
# since we're using Dovecot to handle SMTP authentication?).
|
2013-08-21 18:23:43 +00:00
|
|
|
tools/editconf.py /etc/dovecot/conf.d/10-auth.conf \
|
2013-08-21 13:37:33 +00:00
|
|
|
disable_plaintext_auth=yes \
|
|
|
|
"auth_mechanisms=plain login"
|
|
|
|
|
2014-04-18 00:17:24 +00:00
|
|
|
# Query our Sqlite3 database, and not system users, for authentication.
|
2013-08-21 18:23:43 +00:00
|
|
|
sed -i "s/\(\!include auth-system.conf.ext\)/#\1/" /etc/dovecot/conf.d/10-auth.conf
|
|
|
|
sed -i "s/#\(\!include auth-sql.conf.ext\)/\1/" /etc/dovecot/conf.d/10-auth.conf
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Configure how to access our Sqlite3 database. Not sure what userdb is for.
|
2013-08-21 18:23:43 +00:00
|
|
|
cat > /etc/dovecot/conf.d/auth-sql.conf.ext << EOF;
|
2013-08-21 13:37:33 +00:00
|
|
|
passdb {
|
|
|
|
driver = sql
|
|
|
|
args = /etc/dovecot/dovecot-sql.conf.ext
|
|
|
|
}
|
|
|
|
userdb {
|
|
|
|
driver = static
|
|
|
|
args = uid=mail gid=mail home=$STORAGE_ROOT/mail/mailboxes/%d/%n
|
|
|
|
}
|
|
|
|
EOF
|
2013-09-01 14:13:51 +00:00
|
|
|
|
|
|
|
# Configure the SQL to query for a user's password.
|
2013-08-21 18:23:43 +00:00
|
|
|
cat > /etc/dovecot/dovecot-sql.conf.ext << EOF;
|
2013-08-21 13:37:33 +00:00
|
|
|
driver = sqlite
|
|
|
|
connect = $db_path
|
|
|
|
default_pass_scheme = SHA512-CRYPT
|
|
|
|
password_query = SELECT email as user, password FROM users WHERE email='%u';
|
|
|
|
EOF
|
2014-04-18 00:17:24 +00:00
|
|
|
chmod 0600 /etc/dovecot/dovecot-sql.conf.ext # per Dovecot instructions
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Disable in-the-clear IMAP and POP because we're paranoid (we haven't even
|
2013-08-21 13:37:33 +00:00
|
|
|
# enabled POP).
|
2013-08-21 18:23:43 +00:00
|
|
|
sed -i "s/#port = 143/port = 0/" /etc/dovecot/conf.d/10-master.conf
|
|
|
|
sed -i "s/#port = 110/port = 0/" /etc/dovecot/conf.d/10-master.conf
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Have dovecot provide authorization and LMTP (local mail delivery) services.
|
|
|
|
#
|
|
|
|
# We have dovecot listen on a Unix domain socket for these services
|
|
|
|
# in a manner that made postfix configuration above easy.
|
|
|
|
#
|
|
|
|
# We also have dovecot listen on port 10026 (localhost only) for LMTP
|
2013-09-04 10:53:01 +00:00
|
|
|
# in case we have other services that want to deliver local mail, namely
|
2013-09-01 14:13:51 +00:00
|
|
|
# spampd.
|
2013-09-04 10:53:01 +00:00
|
|
|
#
|
|
|
|
# Also increase the number of allowed connections per mailbox because we
|
|
|
|
# all have so many devices lately.
|
2013-08-23 15:59:28 +00:00
|
|
|
cat > /etc/dovecot/conf.d/99-local.conf << EOF;
|
2013-08-31 14:46:25 +00:00
|
|
|
service auth {
|
|
|
|
unix_listener /var/spool/postfix/private/auth {
|
|
|
|
mode = 0666
|
|
|
|
user = postfix
|
|
|
|
group = postfix
|
|
|
|
}
|
|
|
|
}
|
2013-08-23 15:59:28 +00:00
|
|
|
service lmtp {
|
|
|
|
unix_listener /var/spool/postfix/private/dovecot-lmtp {
|
|
|
|
user = postfix
|
|
|
|
group = postfix
|
|
|
|
}
|
|
|
|
inet_listener lmtp {
|
|
|
|
address = 127.0.0.1
|
|
|
|
port = 10026
|
|
|
|
}
|
|
|
|
}
|
2013-09-04 10:53:01 +00:00
|
|
|
|
|
|
|
protocol imap {
|
|
|
|
mail_max_userip_connections = 20
|
|
|
|
}
|
2013-08-23 15:59:28 +00:00
|
|
|
EOF
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2014-04-24 11:58:53 +00:00
|
|
|
# postmaster_address seems to be required or LMTP won't start
|
|
|
|
tools/editconf.py /etc/dovecot/conf.d/15-lda.conf \
|
|
|
|
postmaster_address=postmaster@$PUBLIC_HOSTNAME
|
|
|
|
|
2013-08-21 13:37:33 +00:00
|
|
|
# Drew Crawford sets the auth-worker process to run as the mail user, but we don't care if it runs as root.
|
|
|
|
|
2014-06-22 19:03:11 +00:00
|
|
|
# Enable SSL, specify the location of the SSL certificate and private key files,
|
|
|
|
# and allow only good ciphers per http://baldric.net/2013/12/07/tls-ciphers-in-postfix-and-dovecot/.
|
2013-08-21 18:23:43 +00:00
|
|
|
tools/editconf.py /etc/dovecot/conf.d/10-ssl.conf \
|
2013-08-21 13:37:33 +00:00
|
|
|
ssl=required \
|
|
|
|
"ssl_cert=<$STORAGE_ROOT/ssl/ssl_certificate.pem" \
|
|
|
|
"ssl_key=<$STORAGE_ROOT/ssl/ssl_private_key.pem" \
|
2014-06-22 19:03:11 +00:00
|
|
|
"ssl_cipher_list=TLSv1+HIGH !SSLv2 !RC4 !aNULL !eNULL !3DES @STRENGTH"
|
2013-09-08 11:25:56 +00:00
|
|
|
|
|
|
|
# PERMISSIONS / RESTART SERVICES
|
2013-09-04 10:53:01 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Ensure configuration files are owned by dovecot and not world readable.
|
2013-08-21 18:23:43 +00:00
|
|
|
chown -R mail:dovecot /etc/dovecot
|
|
|
|
chmod -R o-rwx /etc/dovecot
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Ensure mailbox files have a directory that exists and are owned by the mail user.
|
2013-08-21 13:37:33 +00:00
|
|
|
mkdir -p $STORAGE_ROOT/mail/mailboxes
|
2013-08-21 18:23:43 +00:00
|
|
|
chown -R mail.mail $STORAGE_ROOT/mail/mailboxes
|
2013-08-21 13:37:33 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Restart services.
|
2013-08-21 18:23:43 +00:00
|
|
|
service postfix restart
|
|
|
|
service dovecot restart
|
2013-08-21 02:27:32 +00:00
|
|
|
|
2013-09-01 14:13:51 +00:00
|
|
|
# Allow mail-related ports in the firewall.
|
2014-05-01 19:35:18 +00:00
|
|
|
ufw_allow smtp
|
|
|
|
ufw_allow submission
|
|
|
|
ufw_allow imaps
|
2013-08-21 02:27:32 +00:00
|
|
|
|