===== Configurar Postfix para enviar correos a traves de otro servidor SMTP =====
Servidor SMTP remoto que se quiere utilizar para enviar correos salientes a través de el: smtp.dominio.local:587
Editar la configuración de Postfix: /etc/postfix/main.cf
relayhost = smtp.dominio.local:587
smtpd_sasl_auth_enable = yes
smtpd_sasl_path = smtpd
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_type = cyrus
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
Crear el fichero /etc/postfix/sasl_passwd con las credenciales pertinentes.
smtp.dominio.local:587 WindowsGroup\XXXXXXX:XXXXXX
Generar el fichero sasl_passwd.db y borrar porteriormente /etc/postfix/sasl_passwd
postmap hash:/etc/postfix/sasl_passwd
rm /etc/postfix/sasl_passwd
**Problema**: Warning en los registros del servidor Postfix.
warning: SASL authentication failure: No worthy mechs found
**Solución**: "SASL authentication failure: No worthy mechs found" ([[http://www.postfix.org/SASL_README.html#client_sasl_enable|Leer]]).
yum install cyrus-sasl-plain
**Configuración de Postfix para utilizar el SMTP de Gmail**: [[http://www.busindre.com/utilizando_gmail_como_smtp_relay_en_postfix]]