Postfix relay с авторизацией
Редактируем файл /etc/postfix/password
relay.mail_example.ru user@mail_example.ru:password
Выполняем команды
chown root:root /etc/postfix/passwd
chmod 0600 /etc/postfix/passwd
postmap hash:/etc/postfix/passwd
Правим /etc/postfix/main.cf
relayhost = relay.mail_example.ru
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/passwd
smtp_sasl_security_options =
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
smtp_use_tls = yes
Перезапускаем сервис
service postfix reload
И проверяем
echo 'test' | mail -s 'test' you_email@example.com
[ Править ]