Uso Debian 6 squeeze
Estoy tratando de autenticar el SMTP del postfix con dovecot...
--Ya active al daemon en dovecot.conf en auth default:
Código: Seleccionar todo
client {
# The client socket is generally safe to export to everyone. Typical use
# is to export it to your SMTP server so it can do SMTP AUTH lookups
# using it.
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
Código: Seleccionar todo
#SASL parameters
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_authenticated_header = yes
broken_sasl_auth_clients = yes
Código: Seleccionar todo
smtpd_recipient_restrictions =
check_policy_service inet:127.0.0.1:10040
permit_mynetworks
permit_sasl_authenticated
reject_unauth_destination
---Entonces puse esta sentencia:
Código: Seleccionar todo
smtpd_client_restrictions = permit_mynetworks,
permit_sasl_authenticated,
reject
Cómo hago para cuando el destino final sea mi servidor no pida contraseña y cuando algún correo quiera hacer relay entonces pida la contraseña...
Ayudaaaaa...gracias...