Wie kann ich Postfix so konfigurieren, dass Relayhost für einige Domänen ignoriert wird?

10

Gibt es in Postfix eine Möglichkeit, das zu ignorieren relayhost?

Ich habe so etwas wie

relayhost = [smtp.domain.net]:587

Für eine bestimmte Domain möchte ich sie nicht an dieses Relay senden, sondern nur von diesem Computer.

Wie muss ich Postfix dafür konfigurieren?

Mike
quelle

Antworten:

14

main.cf
#relayhost = [smtp.domain.net]: 587
transport_maps = hash: / etc / postfix / transport

/ etc / postfix / transport
domaintodeliverdirectyto:
* smtp: [smtp.domain.net]: 587

Vergiss es nicht postmap /etc/postfix/transport

Vielleicht möchten Sie relaystatt smtpals Transportmechanisim verwenden.
Als Referenz http://www.postfix.org/transport.5.html

84104
quelle