postmap /etc/postfix/transport postmap -q "string" /etc/postfix/transport postmap -q - /etc/postfix/transport <inputfile
This mapping overrides the default transport:nexthop selection that is built into Postfix:
Normally, the transport(5) table is specified as a text file that serves as input to the postmap(1) command. The result, an indexed file in dbm or db format, is used for fast searching by the mail system. Execute the command "postmap /etc/postfix/transport" to rebuild an indexed file after changing the corresponding transport table.
When the table is provided via other means such as NIS, LDAP or SQL, the same lookups are done as for ordinary indexed files.
Alternatively, the table can be provided as a regular-expression map where patterns are given as regular expressions, or lookups can be directed to TCP-based server. In those case, the lookups are done in a slightly different way as described below under "REGULAR EXPRESSION TABLES" or "TCP-BASED TABLES".
The pattern specifies an email address, a domain name, or a domain name hierarchy, as described in section "TABLE LOOKUP".
The result is of the form transport:nexthop and specifies how or where to deliver mail. This is described in section "RESULT FORMAT".
Note 1: the null recipient address is looked up as $empty_address_recipient@$myhostname (default: mailer-daemon@hostname).
Note 2: user@domain or user+extension@domain lookup is available in Postfix 2.0 and later.
The transport field specifies the name of a mail delivery transport (the first name of a mail delivery service entry in the Postfix master.cf file).
The nexthop field usually specifies one recipient domain or hostname. In the case of the Postfix SMTP/LMTP client, the nexthop field may contain a list of nexthop destinations separated by comma or whitespace (Postfix 3.5 and later).
The syntax of a nexthop destination is transport dependent. With SMTP, specify a service on a non-default port as host:service, and disable MX (mail exchanger) DNS lookups with [host] or [host]:port. The [] form is required when you specify an IP address instead of a hostname.
A null transport and null nexthop field means "do not change": use the delivery transport and nexthop information that would be used when the entire transport table did not exist.
A non-null transport field with a null nexthop field resets the nexthop information to the recipient domain.
A null transport field with non-null nexthop field does not modify the transport information.
my.domain : .my.domain : * smtp:outbound-relay.my.domain
In order to send mail for example.com and its subdomains via the uucp transport to the UUCP host named example:
example.com uucp:example .example.com uucp:example
When no nexthop host name is specified, the destination domain name is used instead. For example, the following directs mail for user@example.com via the slow transport to a mail exchanger for example.com. The slow transport could be configured to run at most one delivery process at a time:
example.com slow:
When no transport is specified, Postfix uses the transport that matches the address domain class (see DESCRIPTION above). The following sends all mail for example.com and its subdomains to host gateway.example.com:
example.com :[gateway.example.com] .example.com :[gateway.example.com]
In the above example, the [] suppress MX lookups. This prevents mail routing loops when your machine is primary MX host for example.com.
In the case of delivery via SMTP or LMTP, one may specify host:service instead of just a host:
example.com smtp:bar.example:2025
This directs mail for user@example.com to host bar.example port 2025. Instead of a numerical port a symbolic name may be used. Specify [] around the hostname if MX lookups must be disabled.
Deliveries via SMTP or LMTP support multiple destinations (Postfix >= 3.5):
example.com smtp:bar.example, foo.example
This tries to deliver to bar.example before trying to deliver to foo.example.
The error mailer can be used to bounce mail:
.example.com error:mail for *.example.com is not deliverable
This causes all mail for user@anything.example.com to be bounced.
Each pattern is a regular expression that is applied to the entire address being looked up. Thus, some.domain.hierarchy is not looked up via its parent domains, nor is user+foo@domain looked up as user@domain.
Patterns are applied in the order as specified in the table, until a pattern is found that matches the search string.
The trivial-rewrite(8) server disallows regular expression substitution of $1 etc. in regular expression lookup tables, because that could open a security hole (Postfix version 2.3 and later).
Each lookup operation uses the entire recipient address once. Thus, some.domain.hierarchy is not looked up via its parent domains, nor is user+foo@domain looked up as user@domain.
Results are the same as with indexed file lookups.
trivial-rewrite(8), rewrite and resolve addresses master(5), master.cf file format postconf(5), configuration parameters postmap(1), Postfix lookup table manager
ADDRESS_REWRITING_README, address rewriting guide DATABASE_README, Postfix lookup table overview FILTER_README, external content filter
Wietse Venema IBM T.J. Watson Research P.O. Box 704 Yorktown Heights, NY 10598, USA Wietse Venema Google, Inc. 111 8th Avenue New York, NY 10011, USA