SPF / Google Spam

Das Problem liegt nicht direkt bei Postfix, sondern beim Zusammenspiel von Postfix und dem IMAP-Server.
Welchen IMAP-Server und Version nutzt Du und wie ist der konfiguriert?
 
Code:
# 2.2.13: /etc/dovecot/dovecot.conf
# OS: Linux 3.16.0-4-amd64 x86_64 Debian 8.1
auth_mechanisms = plain login
disable_plaintext_auth = no
mail_location = maildir:~/Maildir
namespace inbox {
  inbox = yes
  location =
  mailbox Drafts {
    special_use = \Drafts
  }
  mailbox Junk {
    special_use = \Junk
  }
  mailbox Sent {
    special_use = \Sent
  }
  mailbox "Sent Messages" {
    special_use = \Sent
  }
  mailbox Trash {
    special_use = \Trash
  }
  prefix =
}
passdb {
  driver = pam
}
protocols = imap pop3 pop3
ssl_cert = </etc/dovecot/dovecot.cert.pem
ssl_cipher_list = ECDHE-RSA-AES256-SHA384:AES256-SHA256:AES256-SHA256:RC4:HIGH:MEDIUM:+TLSv1:+TLSv1.1:+TLSv1.2:!MD5:!ADH:!aNULL:!eNULL:!NULL:!DH:!ADH:!EDH:!AESGCM
ssl_key = </etc/dovecot/dovecot.key.pem
userdb {
  driver = passwd
}
 
Füge der main.cf folgende Zeile hinzu, eventuell reicht das bereits:
Code:
smtpd_sasl_type = dovecot

Mir ist gerade aufgefallen, dass ich vergessen hatte Dein mailbox_command in die main.cf zu übernehmen, das solltest Du noch nachholen.
 
Back
Top