Postfix / Dovecot / MySQL- não funciona!

1

Acabei de instalar um Mail-Server no Postfix e no Dovecot usando o MySQL para autenticar o usuário. Mas se eu tentar conectar ao servidor via Outlook ou Thunderbird, o seguinte erro aparece no mail.err: postfix / smtpd [4937]: fatal: não mecanismos de autenticação SASL Qualquer idéia de como corrigir isso? Thx :)

    
por user287331 01.06.2014 / 10:32

1 resposta

0

Vou precisar de mais algumas informações sobre o que exatamente você está tentando fazer. Você se conecta para enviar e-mail via smtp? ou para receber? Por exemplo. pop3 ou imap?

#For your main.cf: proxy:mysql:
virtual_alias_maps = proxy:mysql:/etc/postfix/virtual/mysql-aliases.cf
# Eg changes to
virtual_alias_maps = proxy:mysql:/etc/postfix/virtual/mysql-aliases.cf

# I use, no idea if it is any different
virtual_transport = dovecot

Não é garantido que esta seja a solução, mas você pode tentar:

# master.cf: 

# You need to enable smtpd. Line 13 in your master.cf paste.
#smtpd     pass  -       -       -       -       -       smtpd

I am not sure if it has any different effect, however worth a try if the above is not fixing your issue:
(Removed some configuration options, the milter line I supply below, is also possible to leave out.)    

#enabling submission on port 587, force ssl.

submission inet n       -       -       -       -       smtpd
  -o syslog_name=postfix/submission
  -o smtpd_tls_security_level=encrypt
  -o smtpd_sasl_auth_enable=yes
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  -o milter_macro_daemon_name=ORIGINATING

# Unless you have created the mail dirs you might need to
# in your dovecot config.
lda_mailbox_autocreate = yes
lda_mailbox_autosubscribe = yes
#you could also use higher restrictions
service auth {
  unix_listener /var/spool/postfix/private/auth {
    mode = 0666
  }
  unix_listener auth-userdb {
    group = vmail
    mode = 0660
  }
}
service imap-login {
  inet_listener imaps {
    ssl = yes
  }
}
service pop3-login {
  inet_listener pop3s {
    ssl = yes
  }
}
    
por Anders F. U. Kiær 03.06.2014 / 00:50