Postfix en tant que relay
Aller à la navigation
Aller à la recherche
aptitude install postfix
Configuez le en tant que "internet with smarthost". Dans SMTP Relay Host, entrez l'hostname:port que vous souhaitez utiliser comme smtp sortant.
Nous allons utiliser les informations suivantes :
- serveur de relai mail : relay.domain.tld sur le port 578 (submission)
- utilisateur permettant d'envoyer le mail : test@otherdomain.tld
- mot de passe : password
echo "relay.domain.tld:587 test@otherdomain.tld:password" > /etc/postfix/smarthost_passwd chown root:root /etc/postfix/smarthost_passwd chmod 600 /etc/postfix/smarthost_passwd postmap /etc/postfix/smarthost_passwd
configuration de postfix :
relayhost = relay.domain.tld:587 smtp_use_tls=yes smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/smarthost_passwd smtp_sasl_security_options = noanonymous
/etc/init.d/postfix restart