SMTPCONF="MX:{-MX.*,*}"
which means trying the MX first, and if it failed, then try direct
connection to the domain as a hostname.
Examples:
SMTPCONF="MX:smtpserver"
-- use the smtpserver as the upstream SMTP server
SMTPCONF="MX:{smtpserver1,smtpserver2}"
-- try the SMTP servers in the order
SMTPCONF="MX:{-MX.*,*}"
-- the default configuration
SMTPCONF="MX:{-MX.*,*,smtpserver}"
-- adding a backup SMTP server
SMTPCONF="MX:{*,-MX.*}:*.localdomain"
-- forward directly to the host if it's in localdomain
SMTPCONF="MX:smtpserver:{*.dom1,*dom2}"
-- a server for the specified domains
callback[:[T][:srcHostList]]
Callback to the SMTP server on the client host which is making
current request (on HELO command).
If there is not a SMTP server on the client host, then the
processing of the request will be delayed up to T seconds.
This could be effective to reduce DDoS type SPAM messages which
are relayed exploiting non-SMTP servers.
SMTPCONF="callback" is the abbreviation of SMTPCONF="callback:20:*".
bcc:emailAddr[:srcHostList]
Append the emailAddr to the list of recipients.