Blame SOURCES/sendmail-etc-mail-virtusertable

813923
# A domain-specific form of aliasing, allowing multiple virtual domains to be
813923
# hosted on one machine.
813923
#
813923
# info@foo.com	foo-info
813923
# info@bar.com	bar-info
813923
# joe@bar.com	error:nouser 550 No such user here
813923
# jax@bar.com	error:5.7.0:550 Address invalid
813923
# @baz.org	jane@example.net
813923
#
813923
# then mail addressed to info@foo.com will be sent to the address foo-info,
813923
# mail addressed to info@bar.com will be delivered to bar-info, and mail
813923
# addressed to anyone at baz.org  will be sent to jane@example.net, mail to
813923
# joe@bar.com will be rejected with the specified error message, and mail to
813923
# jax@bar.com will also have a RFC 1893  compliant error code 5.7.0.
813923
#
813923
# The username from the original address is passed as %1 allowing:
813923
#
813923
# @foo.org	%1@example.com
813923
#
813923
# Additionally, if the local part consists of "user+detail" then "detail" is
813923
# passed as %2 and "+detail" is passed as %3  when a match against user+* is
813923
# attempted, so entries like
813923
#
813923
# old+*@foo.org	new+%2@example.com
813923
# gen+*@foo.org	%2@example.com
813923
# +*@foo.org	%1%3@example.com
813923
# X++@foo.org	Z%3@example.com
813923
# @bar.org	%1%3
813923
#
813923
# Note: to preserve "+detail" for a default case (@domain) %1%3 must be used
813923
# as RHS. There are two wildcards after "+": "+" matches only a non-empty
813923
# detail, "*" matches also empty details, e.g., user+@foo.org  matches#
813923
# +*@foo.org but not ++@foo.org. This can be used to ensure that the
813923
# parameters %2 and %3 are not empty.
813923
#
813923
# All the host names on the left hand side (foo.com, bar.com, and baz.org)
813923
# must be in class {w} or class {VirtHost}. The latter can be defined by the
813923
# macros VIRTUSER_DOMAIN or VIRTUSER_DOMAIN_FILE (analogously to
813923
# MASQUERADE_DOMAIN and MASQUERADE_DOMAIN_FILE). If VIRTUSER_DOMAIN or
813923
# VIRTUSER_DOMAIN_FILE is used, then the entries of class {VirtHost} are
813923
# added to class {R}, i.e., relaying is allowed to (and from) those domains.