June 2016
Intermediate to advanced
152 pages
3h 30m
English
With our current mail server setup, we can retrieve e-mail remotely and we can send mail from the local box, but we cannot send mail from remote systems. In order to enable this functionality, we need to configure Postfix to require auth for sending outbound mail from remote users. Typically, this requires setting up a SASL server of some variety like Cyrus saslauthd. In our case, we're going to use Dovecot's built in SASL server.
/etc/dovecot/conf.d/10-master.conf:service auth {
…
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0660
user = postfix
}
…
}Read now
Unlock full access