[GELÖST] Postfix - E-Mails über externen SMTP Server senden

Autokiller677

Semiprofi
Thread Starter
Mitglied seit
09.06.2009
Beiträge
1.161
Hallo Community,

ich bin gerade dabei mir einen Postfix Server aufzusetzen, um alle Mails zentral zu verwalten und durch Spam und Virenfilter zu jagen.

Kurze übersicht: Mails werden von verschiedenen Mail Accounts mit fetchmail geholt, an Postfix weitergegeben und dann per procmail in Maildir Mailboxen gespeichert. Abruf der E-Mails im Netzwerk erfolgt über Courier-IMAP.

So mein Problem ist jetzt: Wenn ich über den SMTP-Server von Posftfix eine Mail an eine nicht-interne Adresse verschicke (z.B. test@gmx.de) bekomm ich eine Fehlermeldung. Klar, denn Postfix ist nur für den Einsatz im internen Netz konfiguriert.

Meine Vorstellung von der Lösung wäre: Postfix gibt die Mails an den Mailserver meiner E-Mail Adresse weiter (in meinem Fall smtp.t-online.de) und von dort werden die mails dann verschickt.

Ich hab zwar schon viel gegoogelt, aber eine wirklich Lösung hab ich immer noch nicht gefunden.

Einen komplett unabhängigen Mail Server möchte ich nicht einrichten, da ich dann zum einen allen meine neue Adresse geben müsste, eine Domain müsste ich mir auch noch besorgen und zudem stellt ein ständig empfangsbereiter Mail Server natürlich auch ein Sicherheitsrisiko dar. Bisher habe ich von meinem Router keinen Port an den Server weitergeleitet, und wollte es eigentlich auch so belassen.

Ich hoffe, ich habe nicht zu unverständlich geschrieben und es gibt eine Lösung für mein Problem
Vielen Dank im Vorraus
Autokiller677
 
Zuletzt bearbeitet:
Wenn Du diese Anzeige nicht sehen willst, registriere Dich und/oder logge Dich ein.
Das Du vie gegoogelt hast kann ich mir nicht vorstellen ... dazu gibt es Massenweise Anleitungen im Netz. Stichwort "Relay"-(server). Lässt sich direkt in der Postfix-Config einstellen ...
 
Ok, vielen dank für die Tipps.
Ich geb zu, ich hatte mich jetzt nicht stundenlang damit beschäftigt.

Allerdings stehe ich jetzt vor einem neuen Problem: Da unter anderem auch die Geschäftsmails von meinem Vater über diesen Server laufen sollen und er von seiner Fima eine eigene Mail Adresse hat, wäre es gut, wenn Mails, abhängig von dem Benutzer von dem sie komen an verschiedene SMTP-Server geleitet werden würden.

Gibt es dafür eine Lösung, vielleicht eine Zuordnungsdatei wie bei virtual Aliases oder sowas in der Art?
Ich hab zwar das hier gefunden: Postfix Configuration Parameters aber schlau werde ich aus den paar Zeilen nicht:confused:

EDIT: Mithilfe von dieser Seite http://wiki.ubuntuusers.de/Postfix/Erweiterte_Konfiguration#Sender-abhaengige-Authentifizierung hab ich jetzt die Sachen eingestellt. Allerdings klappt das Senden von Mails nicht.
In der mail.err finde ich dann folgende Fehlermeldung:
Code:
May  7 10:47:54 VMUbuntuS postfix/trivial-rewrite[1424]: fatal: open database /etc/posftix/sender_dependent.db: No such file or directory
Dabei habe ich die sender_dependent mit postmap "bearbeitet" und die Datei sender_dependent.db existiert auch.
Wieso findet Postfix die dann nicht?
 
Zuletzt bearbeitet:
Oh man:d
Da hätte ich auch selber drauf kommen können. Den Dateinamen hab ich hundert mal gecheckt, nur den Pfad nicht.

Danke.
 
Hallo nochmal. Mittlerweile klappt zwar das Senden von Mails, allerdings funktioniert die ganze sender_dependent_relayhost Geschichte nicht. Die Mails kommen alle von einer Mail Adresse und nicht von der der jeweiligen Absenders.

Meine Main.cf
Code:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# 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 (Ubuntu)
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 = VMUbuntuS.fritz.box
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
mynetworks = 127.0.0.0/8 192.168.178.0/24
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = 127.0.0.1 192.168.178.41
#default_transport = error
#relay_transport = error

#fuer Zarafa
mailbox_command = /usr/bin/zarafa-dagent "$USER"
mailbox_transport = zarafa:

#Absenderabhängige Zuweisung von SMTP Servern
#d.h. jeder Zarafa Benutzer kann seinen eigenen SMTP haben
sender_dependent_relayhost_maps = yes
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noplaintext noanonymous
smtp_connection_cache_on_demand = no
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_dependent
sender_canonical_maps = hash:/etc/postfix/sender_canonical

inet_protocols = ipv4
#relayhost =
#default_transport = error
#relay_transport = error

Die sender_canonical:
Code:
#Damit lokale Mailnamen in externe geändert werden
#Syntax: LokalerName RealeAbsenderAdresse
#z.B. LokalTest text@googlemail.com

TEST1 example1@t-online.de
TEST2 example2@googlemail.com

Die sender_dependant:
Code:
#Damit für jeden Benutzer ein eigener SMTP Server benutzt wird
#Syntax: Mail-AdressedesBenutzer SMTPServer
#z.B. erna@provider.de smtp.provider.de

example1@t-online.de smtp.t-online.de
example2@googlemail.com smtp.googlemail.com

Und zu guter Letzt die sasl_password:
Code:
#Anmeldedaten für SMTP Server für jeden Benutzer
#Syntax Absenderadresse Loginname:Passwort
#z.B. erna@provider.de erna:ernapasswort

example1@t-online.de example1:example1passwort
example2@googlemail.com example2:example2passwort

Alle Mail die ich schicke, kommen vom T-Online Server, und da nicht mal von example1 sondern von der Haupt Adresse unseres Anschlusses, also mainexample1@t-online.de

Hat irgendwer eine Idee wie der darauf kommt, die Mails immer auf T-Online zu senden, und weshalb die auch noch von einer Adresse kommen, deren Zugangsdaten überhaupt nicht hinterlegt sind? Wenn ich z.B. mit Outlook Mails bei T-Online verschicken will verlangt der auch für den SMTP Server Benutzername und Passwort:confused:?
 
Also als erstes wuerde ich aus mynetworks dein eigenes Subnetz enfernen, aber nur wenn sich alle Sender per SASL authen.
Wenn das nicht weiterhilft koenntest du noch
smtp_generic_maps = hash:/etc/postfix/sender_canonical
eintragen.
Wenns dann immer noch net funzt bitte mal ein paar Logs posten.
 
Ich hab jetzt beides ausprobiert, aber funktionieren tuts immer noch nicht.

Die jetzige main.cf:
Code:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# 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 (Ubuntu)
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 = VMUbuntuS.fritz.box
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
mynetworks = 127.0.0.0/8
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = 127.0.0.1
#default_transport = error
#relay_transport = error

#fuer Zarafa
mailbox_command = /usr/bin/zarafa-dagent "$USER"
mailbox_transport = zarafa:

#Absenderabhängige Zuweisung von SMTP Servern
#d.h. jeder Zarafa Benutzer kann seinen eigenen SMTP haben
sender_dependent_relayhost_maps = yes
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noplaintext noanonymous
smtp_connection_cache_on_demand = no
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_dependent
sender_canonical_maps = hash:/etc/postfix/sender_canonical
smtp_generic_maps = hash:/etc/postfix/sender_canonical

inet_protocols = ipv4
#relayhost =
#default_transport = error
#relay_transport = error

Und die mail.info:
Code:
May  7 19:57:18 VMUbuntuS postfix/master[4950]: daemon started -- version 2.7.0, configuration /etc/postfix
May  7 19:57:37 VMUbuntuS postfix/smtpd[4957]: connect from localhost[127.0.0.1]
May  7 19:57:37 VMUbuntuS postfix/smtpd[4957]: 86A88218B3: client=localhost[127.0.0.1]
May  7 19:57:37 VMUbuntuS postfix/cleanup[4961]: 86A88218B3: message-id=<vmime.4be45491.135b.758729f77cd41721@VMUbuntuS.fritz.box>
May  7 19:57:37 VMUbuntuS postfix/qmgr[4953]: 86A88218B3: from=<example1@t-online.de>, size=2542, nrcpt=1 (queue active)
May  7 19:57:37 VMUbuntuS postfix/smtpd[4957]: disconnect from localhost[127.0.0.1]
May  7 19:57:38 VMUbuntuS postfix/smtp[4962]: 86A88218B3: to=<testadresse@googlemail.com>, relay=smtp.t-online.de[194.25.134.24]:25, delay=0.68, delays=0.01/0.02/0.29/0.36, dsn=2.0.0, status=sent (250 2.0.0 Message accepted.)
May  7 19:57:38 VMUbuntuS postfix/qmgr[4953]: 86A88218B3: removed

Soweit ich die Logs verstehe, nimmt er zwar den angegeben Relay Host, aber authentifiziert sich da nicht....

EDIT: Ich hab grad noch ein bisschen rumprobiert und auch mal Mails über google Adressen verschickt. Auch da nimmt der den richtigen smtp Server (smtp.googlemail.com) aber Authentifiziert sich nicht.
 
Zuletzt bearbeitet:
Die sender_canonical:
Code:
#Damit lokale Mailnamen in externe geändert werden
#Syntax: LokalerName RealeAbsenderAdresse
#z.B. LokalTest text@googlemail.com

#TEST1 example1@t-online.de
TEST2 example2@googlemail.com

Die sender_dependent:
Code:
#Damit für jeden Benutzer ein eigener SMTP Server benutzt wird
#Syntax: Mail-AdressedesBenutzer SMTPServer
#z.B. erna@provider.de smtp.provider.de

#example1@t-online.de smtp.t-online.de
example2@googlemail.com [smtp.googlemail.com]:587

Und zu guter Letzt die sasl_password:
Code:
#Anmeldedaten für SMTP Server für jeden Benutzer
#Syntax Absenderadresse Loginname:Passwort
#z.B. erna@provider.de erna:ernapasswort

#example1@t-online.de example1:example1passwort
example2@googlemail.com example2@googlemail.com:example2passwort
Probier doch mal das. Die T-online Adresse ist zum Troubleshooten ein bisschen bescheiden, weil du kannst den T-online Server als Relay benutzen, weil du dich mit T-DSL einwaehlst.
Dann halt als TEST2 eine Mail schicken. Vorher natuerlich auf alle 3 Dateien ein postmap anwenden und Postfix neu starten.

Edit: OK, da er ja dann den richtigen Server benutzt brauchst du den T-online Server nicht rausnehmen bzw alles was ich auskommentiert hab einfach ignorieren. ;)
 
Zuletzt bearbeitet:
Re: Postfix - E-Mails über externen SMTP Server senden

Kommt schon, keiner eine Idee?
 
Ich hab mal den Loglevel für den SMTP Server erhöht, jetzt gibt es eine wahre Flut von Meldungen:

Code:
May 10 11:10:50 VMUbuntuS postfix/master[795]: daemon started -- version 2.7.0, configuration /etc/postfix
May 10 11:10:51 VMUbuntuS postfix/master[795]: reload -- version 2.7.0, configuration /etc/postfix
May 10 10:26:48 VMUbuntuS postfix/master[795]: terminating on signal 15
May 10 10:27:25 VMUbuntuS postfix/master[1620]: daemon started -- version 2.7.0, configuration /etc/postfix
May 10 10:27:56 VMUbuntuS postfix/smtpd[1630]: connect from localhost[127.0.0.1]
May 10 10:27:56 VMUbuntuS postfix/smtpd[1630]: DCF582183D: client=localhost[127.0.0.1]
May 10 10:27:56 VMUbuntuS postfix/cleanup[1634]: DCF582183D: message-id=<vmime.4be7c38c.65c.432410d474ccce4c@VMUbuntuS.fritz.box>
May 10 10:27:56 VMUbuntuS postfix/qmgr[1623]: DCF582183D: from=<example1@t-online.de>, size=1890, nrcpt=1 (queue active)
May 10 10:27:56 VMUbuntuS postfix/smtpd[1630]: disconnect from localhost[127.0.0.1]
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  mail
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  ipv4
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 2 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: name_mask: ipv4
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  VMUbuntuS.fritz.box
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  fritz.box
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  Postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand ${multi_instance_name:postfix}${multi_instance_name?$multi_instance_name} -> postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  postdrop
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  /etc/mailname
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  /usr/lib/postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  /var/lib/postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  /usr/sbin
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  /var/spool/postfix
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  pid
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  127.0.0.1
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  double-bounce
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  nobody
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  hash:/etc/aliases
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  20100213
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  2.7.0
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  hash
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  deferred, defer
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  +
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $mydestination -> VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $relay_domains -> VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  TZ MAIL_CONFIG LANG
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY LANG=C
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  subnet
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  +=
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  -=+
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  debug_peer_list,fast_flush_domains,mynetworks,permit_mx_backup_networks,qmqpd_authorized_clients,smtpd_access_maps
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  bounce
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  cleanup
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  defer
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  pickup
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  qmgr
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  rewrite
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  showq
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  error
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  flush
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  verify
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  trace
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  proxymap
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  proxywrite
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  100s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 3 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  3600s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  3600s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  5s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  5s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  1000s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  1000s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  10s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  10s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  1s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 3 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  500s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  500s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  18000s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  18000s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  1s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  1s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  127.0.0.0/8
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: inet_addr_local: configured 2 IPv4 addresses
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  30s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  30s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  300s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 7 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  120s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  120s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  180s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  180s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  600s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  600s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  20s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  20s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  300s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  300s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  500s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  500s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  10s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  10s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  2s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  2s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  300s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 3 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  5s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  5s
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  90d
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  90d
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  resource, software
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $fallback_relay ->
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  postmaster
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  hash:/etc/postfix/sasl_password
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  noanonymous
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $smtp_sasl_security_options -> noanonymous
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $smtp_sasl_tls_security_options -> noanonymous
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $smtp_tls_cert_file ->
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  medium
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  SSLv3, TLSv1
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  hostname
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  nexthop, dot-nexthop
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  md5
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  !SSLv2
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  export
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $smtp_tls_eccert_file ->
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  cyrus
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: expand $myhostname -> VMUbuntuS.fritz.box
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  dns
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  scache
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 4 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  canonical, virtual
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  hash:/etc/postfix/sender_canonical
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  24
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  disable_esmtp,delay_dotcrlf
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: last message repeated 7 times
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  yes
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  no
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_eval: const  yes
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: process generation: 10 (10)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: Compiled against Berkeley DB: 4.8.24?
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: Run-time linked against Berkeley DB: 4.8.24?
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_open: hash:/etc/postfix/sasl_password
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: match_string: fast_flush_domains ~? debug_peer_list
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: match_string: fast_flush_domains ~? fast_flush_domains
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: name_mask: canonical
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: name_mask: virtual
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: Compiled against Berkeley DB: 4.8.24?
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: Run-time linked against Berkeley DB: 4.8.24?
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: dict_open: hash:/etc/postfix/sender_canonical
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: name_mask: dns
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: host name lookup methods: dns
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: connection established
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: master_notify: status 0
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: deliver_request_initial: send initial status
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: send attr status = 0
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 3
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: queue_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: queue_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: active
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: queue_id
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: queue_id
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: DCF582183D
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: offset
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: offset
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 657
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: size
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: size
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 1890
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: nexthop
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: nexthop
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: [smtp.t-online.de]
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: encoding
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: encoding
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: example1@t-online.de
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: envelope_id
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: envelope_id
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: ret_flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: ret_flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 0
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: time
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: time
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: jMPnS/lSDQCMw+dLPzEOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: log_client_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: log_client_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: localhost
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: log_client_address
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: log_client_address
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 127.0.0.1
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: log_client_port
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: log_client_port
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 42015
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: log_protocol_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: log_protocol_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: SMTP
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: log_helo_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: log_helo_name
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: VMUbuntuS.fritz.box
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_method
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_method
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_username
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_username
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: rewrite_context
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: rewrite_context
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: local
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: recipient_count
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: recipient_count
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 1
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: (list terminator)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: original_recipient
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: original_recipient
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: example2@googlemail.com
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: recipient
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: recipient
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: example2@googlemail.com
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: offset
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: offset
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 621
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: dsn_orig_rcpt
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: dsn_orig_rcpt
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: rfc822;example2@googlemail.com
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: notify_flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: notify_flags
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: 0
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: (list terminator)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: deliver_request_get: file active/DCF582183D
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: deliver_message: from example1@t-online.de
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp_parse_destination: [smtp.t-online.de] smtp
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: connecting to smtp.t-online.de port 25
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp_addr_one: host smtp.t-online.de
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: lookup smtp.t-online.de type A flags 128
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: dns_query: smtp.t-online.de (A): OK
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: dns_get_answer: type CNAME for smtp.t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: dns_get_answer: type A for fwdallmx.t-online.com
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: last message repeated 3 times
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_find_self: not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: begin smtp.t-online.de address list
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: pref    0 host smtp.t-online.de/194.25.134.24
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: pref    0 host smtp.t-online.de/194.25.134.88
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: pref    0 host smtp.t-online.de/194.25.134.25
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: pref    0 host smtp.t-online.de/194.25.134.89
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: end smtp.t-online.de address list
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_connect_addr: trying: smtp.t-online.de[194.25.134.24] port 25...
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: vstream_tweak_tcp: TCP_MAXSEG 1440
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: global TLS level: none
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 220 fwd02.aul.t-online.de T-Online ESMTP receiver fmsad1025 ready.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: EHLO VMUbuntuS.fritz.box
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250-fwd02.aul.t-online.de ready.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250-SIZE 52428800
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250-8BITMIME
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250-ENHANCEDSTATUSCODES
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250 HELP
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: server features: 0x100b size 52428800
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: hash:/etc/postfix/sender_canonical(0,lock|fold_fix): example1@t-online.de = example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_find: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: connect to subsystem private/rewrite
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr request = rewrite
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr rule = local
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr address = example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: private/rewrite socket: wanted attribute: flags
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: input attribute name: flags
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: input attribute value: 0
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: private/rewrite socket: wanted attribute: address
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: input attribute name: address
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: input attribute value: example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: private/rewrite socket: wanted attribute: (list terminator)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: input attribute name: (end)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: rewrite_clnt: local: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_map: example1@t-online.de -> 0: example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_map11_external: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: MAIL FROM:<example1@t-online.de> SIZE=1890
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: example2@googlemail.com: not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? VMUbuntuS.fritzbox
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? localhost.fritz.box
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? localhost
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? zarafa-serer
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_list_match: googlemail.com: no match
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: @googlemail.com: not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_find: example2@googlemail.com -> (not found)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_map: example2@googlemail.com -> (not found)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_map11_external: example2@googlemail.com not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250 2.1.0 Sender accepted.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: RCPT TO:<example2@googlemail.com>
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250 2.1.5 Recipient accepted.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: DATA
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 354 Ok, start with data.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: hash:/etc/postfix/sender_canonical(0,lock|fold_fix): example1@t-online.de = example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_find: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: rewrite_clnt: cached: local: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_map: example1@t-online.de -> 0: example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_map11_external: example1@t-online.de -> example1@t-online.de
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: example2@googlemail.com: not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? VMUbuntuS.fritzbox
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? localhost.fritz.box
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? localhost
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_string: googlemail.com ~? zarafa-serer
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: match_list_match: googlemail.com: no match
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: maps_find: smtp_generic_maps: @googlemail.com: not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_find: example2@googlemail.com -> (not found)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: mail_addr_map: example2@googlemail.com -> (not found)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: smtp_map11_external: example2@googlemail.com not found
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: .
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: < smtp.t-online.de[194.25.134.24]:25: 250 2.0.0 Message accepted.
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: DCF582183D: to=<example2@googlemail.com>, relay=smtp.t-online.de[194.25.134.24]:25, delay=0.73, delays=0.06/0.06/0.29/0.33, dsn=2.0.0, status=sent (250 2.0.0 Message accepted.)
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: > smtp.t-online.de[194.25.134.24]:25: QUIT
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: name_mask: resource
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: name_mask: software
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: deliver_request_final: send: "" 0
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr status =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr diag_type =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr diag_text =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr mta_type =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr mta_mname =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr action =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr reason =
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: send attr status = 0
May 10 10:27:57 VMUbuntuS postfix/qmgr[1623]: DCF582183D: removed
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: master_notify: status 1
May 10 10:27:57 VMUbuntuS postfix/smtp[1635]: connection closed
May 10 10:28:02 VMUbuntuS postfix/smtp[1635]: rewrite stream disconnect
May 10 10:29:37 VMUbuntuS postfix/smtp[1635]: idle timeout -- exiting

Das sind eine ganze Menge Infos, mit den meisten kann ich selber nix anfangen.
Stutzig machen mich jedoch folgende Zeilen:
Code:
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_method
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_method
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_username
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_username
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: smtp socket: wanted attribute: sasl_sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute name: sasl_sender
May 10 10:27:56 VMUbuntuS postfix/smtp[1635]: input attribute value: (end)
Sollte bei sasl_username nicht example1 angegeben werden, so wie in der sasl_password festgelegt?

Hier noch mal die aktuelle main.cf (ein paar Kleinigkeiten hab ich seit dem letzten mal noch geändert:
Code:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# 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 (Ubuntu)
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 = VMUbuntuS.fritz.box
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = VMUbuntuS.fritzbox, localhost.fritz.box, localhost, zarafa-serer
mynetworks = 127.0.0.0/8
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = 127.0.0.1
#default_transport = error
#relay_transport = error

#fuer Zarafa
mailbox_command = /usr/bin/zarafa-dagent "$USER"
mailbox_transport = zarafa:

#Absenderabhängige Zuweisung von SMTP Servern
#d.h. jeder Zarafa Benutzer kann seinen eigenen SMTP haben
sender_dependent_relayhost_maps = yes
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_connection_cache_on_demand = no
smtp_sasl_password_maps = hash:/etc/postfix/sasl_password
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_dependent
sender_canonical_maps = hash:/etc/postfix/sender_canonical
smtp_generic_maps = hash:/etc/postfix/sender_canonical


inet_protocols = ipv4
#relayhost =
#default_transport = error
#relay_transport = error

smtpd_sasl_auth_enable = yes
broken_sasl_auth_enable = yes

Und für alle, die nicht hochscrollen wollen noch mal die sender_dependent, sender_canonical und sasl_password im Spoiler:
sender_dependent:
Code:
#Damit für jeden Benutzer ein eigener SMTP Server benutzt wird
#Syntax: Mail-AdressedesBenutzer SMTPServer
#z.B. erna@provider.de smtp.provider.de

@t-online.de [smtp.t-online.de]
@googlemail.com [smtp.googlemail.com]:587
TEST1 [smtp.t-online.de]

Die sender_canonical:
Code:
#Damit lokale Mailnamen in externe geändert werden
#Syntax: LokalerName RealeAbsenderAdresse
#z.B. LokalTest text@googlemail.com

TEST1 example1@t-online.de
TEST2 example2@googlemail.com
example1@t-online.de example1@t-online.de

Die sasl_password:
Code:
#Anmeldedaten für SMTP Server für jeden Benutzer
#Syntax Absenderadresse Loginname:Passwort
#z.B. erna@provider.de erna:ernapasswort

example1@t-online.de example1:passexample1
example2@googlemail.com example2:passexample2
#smtp.t-online.de example1:passexample1
TEST1 example1:passexample1

Ich hoffe, mit den Informationen kann man den Fehler irgendwie finden...

MfG
Autokiller677

EDIT: Gibts eine Möglichkeit, die Breite des Spoilers so anzupassen, dass man nicht mehr seitlich scrollen muss?
 
Zuletzt bearbeitet:
Re: Postfix - E-Mails über externen SMTP Server senden

Kommt schon, gibts hier keinen Spezialisten der mit dem Log was anfangen kann?

---------- Beitrag hinzugefügt um 08:17 ---------- Vorheriger Beitrag war um 06:19 ----------

AARRRRRGHHH
Ich könnt die Wände hochgehen.

Aus lauter Frust hab ich heut morgen mal
Code:
telnet smtp.t-online.de 25
Dann ehlo eingegeben, und was kommt raus:

Code:
root@VMUbuntuS:~# telnet smtp.t-online.de 25
Trying 194.25.134.89...
Connected to fwdallmx.t-online.com.
Escape character is '^]'.
220 fwd06.aul.t-online.de T-Online ESMTP receiver fmsad1025 ready.
ehlo
250-fwd06.aul.t-online.de ready.
250-SIZE 52428800
250-8BITMIME
250-ENHANCEDSTATUSCODES
250 HELP
Wie?
Kein Auth oder Auth=
Was soll der Schwachsinn?
Ein bisschen gegoogelt und noch einen STMP für T-Online gefunden: smtpmail.t-online.de
Telnet an und siehe da:
Code:
root@VMUbuntuS:~# telnet smtpmail.t-online.de 25
Trying 194.25.134.115...
Connected to smtpmail.t-online.de.
Escape character is '^]'.
220 fwd06.t-online.de T-Online ESMTP receiver fmsad1725 ready. / T-Online ESMTP receiver smtpmail.t-online.de ready                          .
ehlo
250-fwd06.t-online.de ready.
250-SIZE 52428800
250-8BITMIME
250-AUTH=LOGIN PLAIN
250-AUTH LOGIN PLAIN
250-ENHANCEDSTATUSCODES
250 HELP
Aha. Da sind ja meine Auth Optionen.
Also das beste gehofft und schnell die sender_dependent geändert.

UND ES FUNKTIONIERT!
Die Mails kommen jetzt von der richtigen Adresse.
Kan mir mal einer sagen weshalb T-Online nicht auf allen SMTP Servern Authentifizierungsmöglichkeiten anbietet?!

Naja, das Ende einer langen Suche.
Danke an alle, die mitgeholfen haben!:bigok::hail:;)
 
Hardwareluxx setzt keine externen Werbe- und Tracking-Cookies ein. Auf unserer Webseite finden Sie nur noch Cookies nach berechtigtem Interesse (Art. 6 Abs. 1 Satz 1 lit. f DSGVO) oder eigene funktionelle Cookies. Durch die Nutzung unserer Webseite erklären Sie sich damit einverstanden, dass wir diese Cookies setzen. Mehr Informationen und Möglichkeiten zur Einstellung unserer Cookies finden Sie in unserer Datenschutzerklärung.


Zurück
Oben Unten refresh