Weiterleitungen gehen nicht

art.vandelay

New Member
Ich habe ein Problem mit meinem Mailserver. Ich benutze Postfix und Dovecot

Die weiterleitungen für die Virtual Aliases gehen nicht.
Anstatt eingehende Emails an alle, in der Datenbank stehende, Adressen zu senden wird die Email nur an das Postfach gesendet.

Beispiel:

email@domain.com soll eigentlich an alias1@domain.com und alias2@domain.com geleitet werden, dies ist so auch korrekt in der Datenbank gepeichert. Stattdessen werden die mails im Postfach von email@domain.com gespeichert.

Mit postmap habe ich geprüft das auch die richtigen Aliase gefunden werden für email@domain.com, daran kann es also nicht liegen. Mitlerweile habe ich den Benutzer email@domain.com auch aus der Datenbank gelöscht, er lässt sich auch mit postmap nicht mehr finden, aber dennoch landen die email in dessen Postfach.

Auszug aus den Logs:

Aug 4 17:03:23 m-t postfix/smtp[24561]: B25D57CC078: to=<email@domain.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=0.44, delays=0.32/0/0/0.11, dsn=2.0.0, status=sent (250 2.0.0 Ok, id=23597-12, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 074EE7CC079)
Aug 4 17:03:23 m-t postfix/qmgr[24488]: B25D57CC078: removed
Aug 4 17:03:23 m-t postfix/pipe[24564]: 074EE7CC079: to=<email@domain.com>, relay=dovecot, delay=0.04, delays=0.01/0/0/0.03, dsn=2.0.0, status=sent (delivered via dovecot service)
Aug 4 17:03:23 m-t postfix/qmgr[24488]: 074EE7CC079: removed

Die Email ist auch tatsäclich in diesem Postfach!

meine main.cf

# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = no

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = domain.org
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = mail.domain.org, localhost.localdomain, localhost
relayhost =
mynetworks = 127.0.0.0/8 [::1]/12
mailbox_size_limit = 0
recipient_delimiter =
inet_interfaces = all
virtual_mailbox_domains = mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
#virtual_mailbox_base = /var/spool/vmail
virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf,mysql:/etc/postfix/mysql-email2email.cf
virtual_transport = dovecot
dovecot_destination_recipient_limit = 1
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination
content_filter = smtp-amavis:[127.0.0.1]:10024
receive_override_options = no_address_mappings
soft_bounce = no

den teil den ich zur master.cf hinzugefügt habe:

smtp-amavis unix - - n - 2 smtp
-o smtp_data_done_timeout=1200
-o smtp_send_xforward_command=yes
-o disable_dns_lookups=yes
-o max_use=20

127.0.0.1:10025 inet n - - - 2 smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_delay_reject=no
-o smtpd_client_restrictions=permit_mynetworks,reject
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o smtpd_data_restrictions=reject_unauth_pipelining
-o smptd_end_of_data_restrictions=
-o mynetworks=127.0.0.0/8
-o smtpd_error_sleep_time=0
-o smtpd_soft_error_limit=1001
-o smtpd_hard_error_limit=1000
-o smtpd_client_connection_count_limit=0
-o smtpd_client_connection_rate_limit=0
-o recieve_override_options=no_header_body_checks,no_unknown_recipients_checks
-o local_header_rewrite_clients=r

Einer ne Idee warum die Email nicht ankommt wo sie soll, obwohl es nutzer gar nicht mehr gibt?
Wenn ich eine mail an einen anderen Nutzer schicke den es nicht gibt in der DB (wie sfdfddfg@domian.com) kommt die mail auch nicht an...
 
Back
Top