up ! 
J’ai créée une authentification sasl pour le smtp
# ls
cacert.pem cakey.pem smtpd.crt smtpd.csr smtpd.key
Le contenu en rapport de main.cf :
[code]
smtpd_sasl_local_domain =
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options =
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
smtpd_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtpd_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
smtpd_sasl_authenticated_header = yes[/code]
Le fichier de mot de passe sasl_passwd
thomas@quagga.fr thomas:toto
Devrait-je plutôt mettre :
mail.quagga.fr thomas:toto ?
Le résultat d’un telnet :
[code]telnet localhost 25
ehlo moi
250-mail.quagga.fr
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH LOGIN PLAIN
250-AUTH=LOGIN PLAIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN[/code]
Et lorsque je veux envoyer un mail depuis thunderbird avec thomas@quagga.fr, un mot de passe m’est demandé pour le domaine, je renseigne toto, mais ça ne fonctionne pas, et me redemande de nouveau le mot de passe…
Comment faire ?
Merci,
Quagga.