]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-2.3-20060202
authorWietse Venema <wietse@porcupine.org>
Thu, 2 Feb 2006 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <viktor@dukhovni.org>
Tue, 5 Feb 2013 06:32:10 +0000 (06:32 +0000)
37 files changed:
postfix/HISTORY
postfix/conf/access
postfix/conf/aliases
postfix/conf/canonical
postfix/conf/generic
postfix/conf/relocated
postfix/conf/transport
postfix/conf/virtual
postfix/html/access.5.html
postfix/html/aliases.5.html
postfix/html/canonical.5.html
postfix/html/generic.5.html
postfix/html/local.8.html
postfix/html/relocated.5.html
postfix/html/transport.5.html
postfix/html/virtual.5.html
postfix/html/virtual.8.html
postfix/man/man5/access.5
postfix/man/man5/aliases.5
postfix/man/man5/canonical.5
postfix/man/man5/generic.5
postfix/man/man5/relocated.5
postfix/man/man5/transport.5
postfix/man/man5/virtual.5
postfix/man/man8/local.8
postfix/man/man8/virtual.8
postfix/proto/access
postfix/proto/aliases
postfix/proto/canonical
postfix/proto/generic
postfix/proto/relocated
postfix/proto/transport
postfix/proto/virtual
postfix/src/global/mail_version.h
postfix/src/local/local.c
postfix/src/smtp/smtp_addr.c
postfix/src/virtual/virtual.c

index 8adfd6df9bf23ca02daf0da1a0a0e5b51f993850..c58ffee5562eb1948bda4bd1e775acc3e50c8cc7 100644 (file)
@@ -11902,8 +11902,9 @@ Apologies for any names omitted.
        elimination of non-intuitive behavior as documented next.
        With Victor Duchovni. Files: smtp_session.c, smtp.h.
 
-       Bugfix: a per-site MUST_NOPEERMATCH policy could not override
-       a main.cf MUST (with peer match) policy.
+       Bugfix: a TLS per-site MUST_NOPEERMATCH policy could not
+       override a main.cf MUST (with peer match) policy, while a
+       per-site NONE policy could.
 
        Bugfix: a combined TLS per-site (host, next-hop) policy of
        (NONE, MAY) would change the strongest main.cf MUST policy
@@ -11960,12 +11961,16 @@ Apologies for any names omitted.
 
 20060201
 
-       Bugfix: despite efforts to treat malformed domain names in
-       DNS replies as hard errors (change 20050726) they were still
-       processed as soft errors. File: dns/dns_lookup.c.
+       Bugfix: despite efforts to treat malformed domain names as
+       hard errors (change 20050726) they were still processed as
+       soft errors. File: dns/dns_lookup.c.
 
 Open issues:
 
+       Make the map case folding/locking options configurable, if
+       not at run-time then at least at compile time so we get
+       consistent behavior across applications.
+
        Investigate if it is feasible to eliminate cleanup(8) from
        the path of mail that is forwarded or generated internally.
        Good: we don't want header rewriting or content inspection.
@@ -11977,11 +11982,9 @@ Open issues:
        make the old behavior configurable in a unified queue manager.
        This would shave another 2.7 KLOC from the source footprint.
 
-       Document case folding strategy in different maps (access,
-       canonical, etc). Even better: make it configurable, so we
-       can blame the user when they make a mistake :-)
+       Document the case folding strategy for match_list like features.
 
-       Eliminate the (incoming,deferred)-active rename operation.
+       Eliminate the (incoming,deferred)->active rename operation.
 
        Softbounce fallback-to-ISP for SOHO users. This requires
        playing with with the soft_error test in the smtp_trouble.c
@@ -11989,8 +11992,10 @@ Open issues:
 
        select -> kqueue, epoll, /dev/poll, poll() ...
 
-       Set pipelining flag at start of session and at other protocol
-       synchronization points.
+       In the SMTP server, set a "pipelining detected" flag at the
+       start of a session and at protocol synchronization points,
+       so that reject_unauth_pipelining can be specified in any
+       access rule.
 
        Centralize main.cf parameter input so that defaults work
        consistently.
index 515ee6d2f3a91fefdcba6fc66ab06df4e6855180..95f904349614842cdb9262b9b71f63bd0747cba4 100644 (file)
 #        way as described below under "REGULAR  EXPRESSION  TABLES"
 #        and "TCP-BASED TABLES".
 # 
+# CASE FOLDING
+#        The  search  string is folded to lowercase before database
+#        lookup. As of Postfix 2.3, the search string is  not  case
+#        folded  with database types such as regexp: or pcre: whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #               address, perform the corresponding action.
 # 
 #        blank lines and comments
-#               Empty  lines and whitespace-only lines are ignored,
-#               as are lines whose first  non-whitespace  character
+#               Empty lines and whitespace-only lines are  ignored,
+#               as  are  lines whose first non-whitespace character
 #               is a `#'.
 # 
 #        multi-line text
-#               A  logical  line starts with non-whitespace text. A
-#               line that starts with whitespace continues a  logi-
+#               A logical line starts with non-whitespace  text.  A
+#               line  that starts with whitespace continues a logi-
 #               cal line.
 # 
 # EMAIL ADDRESS PATTERNS
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked tables such as NIS, LDAP or  SQL,  patterns  are
+#        networked  tables  such  as NIS, LDAP or SQL, patterns are
 #        tried in the order as listed below:
 # 
 #        user@domain
 #               Matches the specified mail address.
 # 
 #        domain.tld
-#               Matches  domain.tld  as the domain part of an email
+#               Matches domain.tld as the domain part of  an  email
 #               address.
 # 
 #               The pattern domain.tld also matches subdomains, but
 #               only when the string smtpd_access_maps is listed in
-#               the Postfix  parent_domain_matches_subdomains  con-
-#               figuration  setting  (note that this is the default
-#               for some versions of Postfix).  Otherwise,  specify
-#               .domain.tld  (note  the  initial  dot)  in order to
+#               the  Postfix  parent_domain_matches_subdomains con-
+#               figuration setting (note that this is  the  default
+#               for  some versions of Postfix).  Otherwise, specify
+#               .domain.tld (note the  initial  dot)  in  order  to
 #               match subdomains.
 # 
-#        user@  Matches all mail addresses with the specified  user
+#        user@  Matches  all mail addresses with the specified user
 #               part.
 # 
-#        Note:  lookup  of  the null sender address is not possible
-#        with some types of lookup table. By default, Postfix  uses
-#        <>  as  the  lookup  key  for such addresses. The value is
-#        specified with the smtpd_null_access_lookup_key  parameter
+#        Note: lookup of the null sender address  is  not  possible
+#        with  some types of lookup table. By default, Postfix uses
+#        <> as the lookup key for  such  addresses.  The  value  is
+#        specified  with the smtpd_null_access_lookup_key parameter
 #        in the Postfix main.cf file.
 # 
 # EMAIL ADDRESS EXTENSION
 #        When a mail address localpart contains the optional recip-
-#        ient delimiter (e.g., user+foo@domain), the  lookup  order
-#        becomes:  user+foo@domain, user@domain, domain, user+foo@,
+#        ient  delimiter  (e.g., user+foo@domain), the lookup order
+#        becomes: user+foo@domain, user@domain, domain,  user+foo@,
 #        and user@.
 # 
 # HOST NAME/ADDRESS PATTERNS
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked  tables  such as NIS, LDAP or SQL, the following
+#        networked tables such as NIS, LDAP or SQL,  the  following
 #        lookup patterns are examined in the order as listed:
 # 
 #        domain.tld
 # 
 #               The pattern domain.tld also matches subdomains, but
 #               only when the string smtpd_access_maps is listed in
-#               the Postfix  parent_domain_matches_subdomains  con-
+#               the  Postfix  parent_domain_matches_subdomains con-
 #               figuration setting.  Otherwise, specify .domain.tld
-#               (note the initial dot) in  order  to  match  subdo-
+#               (note  the  initial  dot)  in order to match subdo-
 #               mains.
 # 
 #        net.work.addr.ess
 # 
 #        net.work
 # 
-#        net    Matches  the specified IPv4 host address or subnet-
-#               work. An IPv4 host address is a  sequence  of  four
+#        net    Matches the specified IPv4 host address or  subnet-
+#               work.  An  IPv4  host address is a sequence of four
 #               decimal octets separated by ".".
 # 
-#               Subnetworks  are  matched  by repeatedly truncating
+#               Subnetworks are matched  by  repeatedly  truncating
 #               the last ".octet" from the remote IPv4 host address
-#               string  until a match is found in the access table,
+#               string until a match is found in the access  table,
 #               or until further truncation is not possible.
 # 
 #               NOTE 1: The information in the access map should be
 #               in canonical form, with unnecessary null characters
-#               eliminated.   Address  information  must   not   be
+#               eliminated.    Address   information  must  not  be
 #               enclosed with "[]" characters.
 # 
-#               NOTE  2:  use the cidr lookup table type to specify
+#               NOTE 2: use the cidr lookup table type  to  specify
 #               network/netmask  patterns.  See  cidr_table(5)  for
 #               details.
 # 
 # 
 #        net:work
 # 
-#        net    Matches  the specified IPv6 host address or subnet-
-#               work. An IPv6 host address is a sequence  of  three
-#               to  eight hexadecimal octet pairs separated by ":".
+#        net    Matches the specified IPv6 host address or  subnet-
+#               work.  An  IPv6 host address is a sequence of three
+#               to eight hexadecimal octet pairs separated by  ":".
 # 
-#               Subnetworks are matched  by  repeatedly  truncating
-#               the  last  ":octetpair"  from  the remote IPv6 host
+#               Subnetworks  are  matched  by repeatedly truncating
+#               the last ":octetpair" from  the  remote  IPv6  host
 #               address string until a match is found in the access
 #               table, or until further truncation is not possible.
 # 
 # 
 #               NOTE 2: The information in the access map should be
 #               in canonical form, with unnecessary null characters
-#               eliminated.   Address  information  must   not   be
+#               eliminated.    Address   information  must  not  be
 #               enclosed with "[]" characters.
 # 
-#               NOTE  3:  use the cidr lookup table type to specify
+#               NOTE 3: use the cidr lookup table type  to  specify
 #               network/netmask  patterns.  See  cidr_table(5)  for
 #               details.
 # 
 # 
 #        all-numerical
 #               An all-numerical result is treated as OK. This for-
-#               mat  is generated by address-based relay authoriza-
+#               mat is generated by address-based relay  authoriza-
 #               tion schemes such as pop-before-smtp.
 # 
 # REJECT ACTIONS
-#        Postfix version 2.3  and  later  support  enhanced  status
-#        codes.   When no code is specified at the beginning of the
+#        Postfix  version  2.3  and  later  support enhanced status
+#        codes.  When no code is specified at the beginning of  the
 #        text below, Postfix inserts a default enhanced status code
-#        of  "5.7.1"  in the case of reject actions, and "4.7.1" in
-#        the case of defer actions.  See  "ENHANCED  STATUS  CODES"
+#        of "5.7.1" in the case of reject actions, and  "4.7.1"  in
+#        the  case  of  defer  actions. See "ENHANCED STATUS CODES"
 #        below.
 # 
 #        4NN text
 # 
 #        5NN text
-#               Reject  the  address etc. that matches the pattern,
+#               Reject the address etc. that matches  the  pattern,
 #               and respond with the numerical three-digit code and
-#               text.  4NN means "try again later", while 5NN means
+#               text. 4NN means "try again later", while 5NN  means
 #               "do not try again".
 # 
 #        REJECT optional text...
-#               Reject the address etc. that matches  the  pattern.
-#               Reply  with  $reject_code optional text... when the
-#               optional text is specified, otherwise reply with  a
+#               Reject  the  address etc. that matches the pattern.
+#               Reply with $reject_code optional text...  when  the
+#               optional  text is specified, otherwise reply with a
 #               generic error response message.
 # 
 #        DEFER_IF_REJECT optional text...
-#               Defer  the  request if some later restriction would
+#               Defer the request if some later  restriction  would
 #               result in a REJECT action. Reply with "450 optional
 #               text... when the optional text is specified, other-
 #               wise reply with a generic error response message.
 #               This feature is available in Postfix 2.1 and later.
 # 
 #        DEFER_IF_PERMIT optional text...
-#               Defer  the  request if some later restriction would
-#               result in a an explicit or implicit PERMIT  action.
-#               Reply  with "450 optional text... when the optional
-#               text is specified, otherwise reply with  a  generic
+#               Defer the request if some later  restriction  would
+#               result  in a an explicit or implicit PERMIT action.
+#               Reply with "450 optional text... when the  optional
+#               text  is  specified, otherwise reply with a generic
 #               error response message.
 # 
 #               This feature is available in Postfix 2.1 and later.
 #               reject_unauth_destination, and so on).
 # 
 #        DISCARD optional text...
-#               Claim  successful delivery and silently discard the
-#               message.  Log the optional text if specified,  oth-
+#               Claim successful delivery and silently discard  the
+#               message.   Log the optional text if specified, oth-
 #               erwise log a generic message.
 # 
-#               Note:  this action currently affects all recipients
-#               of the message.   To  discard  only  one  recipient
-#               without  discarding  the  entire  message,  use the
+#               Note: this action currently affects all  recipients
+#               of  the  message.   To  discard  only one recipient
+#               without discarding  the  entire  message,  use  the
 #               transport(5) table to direct mail to the discard(8)
 #               service.
 # 
 #               This feature is available in Postfix 2.0 and later.
 # 
-#        DUNNO  Pretend that the lookup key  was  not  found.  This
-#               prevents  Postfix  from  trying  substrings  of the
-#               lookup key (such as a subdomain name, or a  network
+#        DUNNO  Pretend  that  the  lookup  key was not found. This
+#               prevents Postfix  from  trying  substrings  of  the
+#               lookup  key (such as a subdomain name, or a network
 #               address subnetwork).
 # 
 #               This feature is available in Postfix 2.0 and later.
 # 
 #        FILTER transport:destination
-#               After the message is queued, send the  entire  mes-
+#               After  the  message is queued, send the entire mes-
 #               sage through the specified external content filter.
-#               The transport:destination syntax  is  described  in
-#               the  transport(5)  manual  page.   More information
-#               about external content filters is  in  the  Postfix
+#               The  transport:destination  syntax  is described in
+#               the transport(5)  manual  page.   More  information
+#               about  external  content  filters is in the Postfix
 #               FILTER_README file.
 # 
-#               Note:   this  action  overrides  the  main.cf  con-
+#               Note:  this  action  overrides  the  main.cf   con-
 #               tent_filter  setting,  and  currently  affects  all
 #               recipients of the message.
 # 
 #               This feature is available in Postfix 2.0 and later.
 # 
 #        HOLD optional text...
-#               Place the message on the hold queue, where it  will
-#               sit  until someone either deletes it or releases it
-#               for delivery.  Log the optional text if  specified,
+#               Place  the message on the hold queue, where it will
+#               sit until someone either deletes it or releases  it
+#               for  delivery.  Log the optional text if specified,
 #               otherwise log a generic message.
 # 
-#               Mail  that  is  placed on hold can be examined with
-#               the postcat(1) command, and  can  be  destroyed  or
+#               Mail that is placed on hold can  be  examined  with
+#               the  postcat(1)  command,  and  can be destroyed or
 #               released with the postsuper(1) command.
 # 
-#               Note:  use  "postsuper -r" to release mail that was
-#               kept on hold for a significant fraction  of  $maxi-
+#               Note: use "postsuper -r" to release mail  that  was
+#               kept  on  hold for a significant fraction of $maxi-
 #               mal_queue_lifetime  or  $bounce_queue_lifetime,  or
 #               longer.
 # 
-#               Note: this action currently affects all  recipients
+#               Note:  this action currently affects all recipients
 #               of the message.
 # 
 #               This feature is available in Postfix 2.0 and later.
 # 
 #        PREPEND headername: headervalue
-#               Prepend the specified message header  to  the  mes-
+#               Prepend  the  specified  message header to the mes-
 #               sage.  When this action is used multiple times, the
-#               first prepended header appears  before  the  second
+#               first  prepended  header  appears before the second
 #               etc. prepended header.
 # 
-#               Note:  this action does not support multi-line mes-
+#               Note: this action does not support multi-line  mes-
 #               sage headers.
 # 
-#               Note: this action must be used before  the  message
-#               content   is   received;   it  cannot  be  used  in
+#               Note:  this  action must be used before the message
+#               content  is  received;  it  cannot   be   used   in
 #               smtpd_end_of_data_restrictions.
 # 
 #               This feature is available in Postfix 2.1 and later.
 # 
 #        REDIRECT user@domain
-#               After  the  message  is queued, send the message to
+#               After the message is queued, send  the  message  to
 #               the  specified  address  instead  of  the  intended
 #               recipient(s).
 # 
-#               Note:  this action overrides the FILTER action, and
+#               Note: this action overrides the FILTER action,  and
 #               currently affects all recipients of the message.
 # 
 #               This feature is available in Postfix 2.1 and later.
 # 
 #        WARN optional text...
 #               Log a warning with the optional text, together with
-#               client information and  if  available,  with  helo,
+#               client  information  and  if  available, with helo,
 #               sender, recipient and protocol information.
 # 
 #               This feature is available in Postfix 2.1 and later.
 # 
 # ENHANCED STATUS CODES
 #        When an enhanced status code is specified in an access ta-
-#        ble,  it  is subject to modification. The following trans-
-#        formations are needed when the same access table  is  used
-#        for  client,  helo,  sender,  or recipient access restric-
-#        tions; they happen regardless of whether  Postfix  replies
+#        ble, it is subject to modification. The  following  trans-
+#        formations  are  needed when the same access table is used
+#        for client, helo, sender,  or  recipient  access  restric-
+#        tions;  they  happen regardless of whether Postfix replies
 #        to a MAIL FROM, RCPT TO or other SMTP command.
 # 
-#        o      When  a sender address matches a REJECT action, the
-#               Postfix SMTP server will transform a recipient  DSN
-#               status  (e.g.,  4.1.1-4.1.6) into the corresponding
+#        o      When a sender address matches a REJECT action,  the
+#               Postfix  SMTP server will transform a recipient DSN
+#               status (e.g., 4.1.1-4.1.6) into  the  corresponding
 #               sender DSN status, and vice versa.
 # 
-#        o      When  non-address  information  matches  a   REJECT
-#               action  (such  as  the HELO command argument or the
-#               client hostname/address), the Postfix  SMTP  server
-#               will  transform  a  sender  or recipient DSN status
-#               into  a  generic  non-address  DSN  status   (e.g.,
+#        o      When   non-address  information  matches  a  REJECT
+#               action (such as the HELO command  argument  or  the
+#               client  hostname/address),  the Postfix SMTP server
+#               will transform a sender  or  recipient  DSN  status
+#               into   a  generic  non-address  DSN  status  (e.g.,
 #               4.0.0).
 # 
 # REGULAR EXPRESSION TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        the table is given in the form of regular expressions. For
-#        a  description  of regular expression lookup table syntax,
+#        a description of regular expression lookup  table  syntax,
 #        see regexp_table(5) or pcre_table(5).
 # 
-#        Each pattern is a regular expression that  is  applied  to
+#        Each  pattern  is  a regular expression that is applied to
 #        the entire string being looked up. Depending on the appli-
-#        cation, that string  is  an  entire  client  hostname,  an
+#        cation,  that  string  is  an  entire  client hostname, an
 #        entire client IP address, or an entire mail address. Thus,
 #        no  parent  domain  or  parent  network  search  is  done,
-#        user@domain  mail  addresses  are not broken up into their
+#        user@domain mail addresses are not broken  up  into  their
 #        user@ and domain constituent parts, nor is user+foo broken
 #        up into user and foo.
 # 
-#        Patterns  are applied in the order as specified in the ta-
-#        ble, until a pattern is  found  that  matches  the  search
+#        Patterns are applied in the order as specified in the  ta-
+#        ble,  until  a  pattern  is  found that matches the search
 #        string.
 # 
-#        Actions  are  the  same as with indexed file lookups, with
-#        the additional feature that parenthesized substrings  from
+#        Actions are the same as with indexed  file  lookups,  with
+#        the  additional feature that parenthesized substrings from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        lookups are directed to a TCP-based server. For a descrip-
 #        tion of the TCP client/server lookup protocol, see tcp_ta-
 #        ble(5).  This feature is not available up to and including
 #        Postfix version 2.2.
 # 
-#        Each  lookup  operation uses the entire query string once.
-#        Depending on the application, that  string  is  an  entire
+#        Each lookup operation uses the entire query  string  once.
+#        Depending  on  the  application,  that string is an entire
 #        client hostname, an entire client IP address, or an entire
-#        mail address.  Thus, no parent domain  or  parent  network
-#        search  is done, user@domain mail addresses are not broken
-#        up into their user@ and domain constituent parts,  nor  is
+#        mail  address.   Thus,  no parent domain or parent network
+#        search is done, user@domain mail addresses are not  broken
+#        up  into  their user@ and domain constituent parts, nor is
 #        user+foo broken up into user and foo.
 # 
 #        Actions are the same as with indexed file lookups.
 # 
 # EXAMPLE
-#        The  following  example  uses an indexed file, so that the
-#        order of table entries does not matter. The  example  per-
-#        mits  access  by the client at address 1.2.3.4 but rejects
-#        all other clients in 1.2.3.0/24. Instead  of  hash  lookup
-#        tables,  some  systems use dbm.  Use the command "postconf
-#        -m" to find out what lookup  tables  Postfix  supports  on
+#        The following example uses an indexed file,  so  that  the
+#        order  of  table entries does not matter. The example per-
+#        mits access by the client at address 1.2.3.4  but  rejects
+#        all  other  clients  in 1.2.3.0/24. Instead of hash lookup
+#        tables, some systems use dbm.  Use the  command  "postconf
+#        -m"  to  find  out  what lookup tables Postfix supports on
 #        your system.
 # 
 #        /etc/postfix/main.cf:
 #        editing the file.
 # 
 # BUGS
-#        The  table format does not understand quoting conventions.
+#        The table format does not understand quoting  conventions.
 # 
 # SEE ALSO
 #        postmap(1), Postfix lookup table manager
 #        transport(5), transport:nexthop syntax
 # 
 # README FILES
-#        Use "postconf readme_directory" or  "postconf  html_direc-
+#        Use  "postconf  readme_directory" or "postconf html_direc-
 #        tory" to locate this information.
 #        SMTPD_ACCESS_README, built-in SMTP server access control
 #        DATABASE_README, Postfix lookup table overview
 # 
 # LICENSE
-#        The  Secure  Mailer  license must be distributed with this
+#        The Secure Mailer license must be  distributed  with  this
 #        software.
 # 
 # AUTHOR(S)
index d2a6eb460ea9e2027c026f2b20892e04e3d9d3e3..32d3f97973f9c01c48d45d3b00eeaea9e7522b92 100644 (file)
@@ -139,66 +139,70 @@ decode:           root
 #        whether an unmatched address extension  (+foo)  is  propa-
 #        gated to the result of table lookup.
 # 
+# CASE FOLDING
+#        The local(8) delivery agent always folds the search string
+#        to lowercase before database lookup.
+# 
 # SECURITY
-#        The  local(8)  delivery agent disallows regular expression
-#        substitution of $1 etc. in alias_maps, because that  would
+#        The local(8) delivery agent disallows  regular  expression
+#        substitution  of $1 etc. in alias_maps, because that would
 #        open a security hole.
 # 
-#        The  local(8) delivery agent will silently ignore requests
-#        to use the proxymap(8) server within  alias_maps.  Instead
-#        it  will  open the table directly.  Before Postfix version
-#        2.2, the local(8) delivery agent  will  terminate  with  a
+#        The local(8) delivery agent will silently ignore  requests
+#        to  use  the proxymap(8) server within alias_maps. Instead
+#        it will open the table directly.  Before  Postfix  version
+#        2.2,  the  local(8)  delivery  agent will terminate with a
 #        fatal error.
 # 
 # CONFIGURATION PARAMETERS
-#        The  following main.cf parameters are especially relevant.
-#        The text below provides  only  a  parameter  summary.  See
+#        The following main.cf parameters are especially  relevant.
+#        The  text  below  provides  only  a parameter summary. See
 #        postconf(5) for more details including examples.
 # 
 #        alias_database
-#               List  of  alias  databases  that are updated by the
+#               List of alias databases that  are  updated  by  the
 #               newaliases(1) command.
 # 
 #        alias_maps
-#               List of alias databases  queried  by  the  local(8)
+#               List  of  alias  databases  queried by the local(8)
 #               delivery agent.
 # 
 #        allow_mail_to_commands
-#               Restrict  the  usage  of  mail delivery to external
+#               Restrict the usage of  mail  delivery  to  external
 #               command.
 # 
 #        allow_mail_to_files
-#               Restrict the usage of  mail  delivery  to  external
+#               Restrict  the  usage  of  mail delivery to external
 #               file.
 # 
 #        expand_owner_alias
 #               When delivering to an alias that has an owner- com-
-#               panion alias, set the envelope  sender  address  to
-#               the  right-hand  side  of  the owner alias, instead
+#               panion  alias,  set  the envelope sender address to
+#               the right-hand side of  the  owner  alias,  instead
 #               using of the left-hand side address.
 # 
 #        propagate_unmatched_extensions
-#               A list of address rewriting  or  forwarding  mecha-
-#               nisms  that propagate an address extension from the
-#               original address to the  result.  Specify  zero  or
-#               more   of   canonical,   virtual,  alias,  forward,
+#               A  list  of  address rewriting or forwarding mecha-
+#               nisms that propagate an address extension from  the
+#               original  address  to  the  result. Specify zero or
+#               more  of  canonical,   virtual,   alias,   forward,
 #               include, or generic.
 # 
 #        owner_request_special
-#               Give special treatment to owner-listname and  list-
+#               Give  special treatment to owner-listname and list-
 #               name-request addresses.
 # 
 #        recipient_delimiter
-#               Delimiter  that  separates  recipients from address
+#               Delimiter that separates  recipients  from  address
 #               extensions.
 # 
 #        Available in Postfix version 2.3 and later:
 # 
 #        frozen_delivered_to
-#               Update the local(8) delivery agent's  Delivered-To:
-#               address  (see  prepend_delivered_header) only once,
-#               at the start of  a  delivery;  do  not  update  the
-#               Delivered-To:  address  while  expanding aliases or
+#               Update  the local(8) delivery agent's Delivered-To:
+#               address (see prepend_delivered_header)  only  once,
+#               at  the  start  of  a  delivery;  do not update the
+#               Delivered-To: address while  expanding  aliases  or
 #               .forward files.
 # 
 # STANDARDS
@@ -211,12 +215,12 @@ decode:           root
 #        postconf(5), configuration parameters
 # 
 # README FILES
-#        Use "postconf readme_directory" or  "postconf  html_direc-
+#        Use  "postconf  readme_directory" or "postconf html_direc-
 #        tory" to locate this information.
 #        DATABASE_README, Postfix lookup table overview
 # 
 # LICENSE
-#        The  Secure  Mailer  license must be distributed with this
+#        The Secure Mailer license must be  distributed  with  this
 #        software.
 # 
 # AUTHOR(S)
index ab9f2bea1d96b2d758292b751076580cd1639afd..3ae946aaf6ac5ba919364b47eb72df8b259f22ed 100644 (file)
 #        The canonical(5) mapping is not to be confused with  local
 #        aliasing.  Use the aliases(5) map for that purpose.
 # 
+# CASE FOLDING
+#        The  search  string is folded to lowercase before database
+#        lookup. As of Postfix 2.3, the search string is  not  case
+#        folded  with database types such as regexp: or pcre: whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #        pattern result
-#               When pattern matches a mail address, replace it  by
+#               When  pattern matches a mail address, replace it by
 #               the corresponding result.
 # 
 #        blank lines and comments
-#               Empty  lines and whitespace-only lines are ignored,
-#               as are lines whose first  non-whitespace  character
+#               Empty lines and whitespace-only lines are  ignored,
+#               as  are  lines whose first non-whitespace character
 #               is a `#'.
 # 
 #        multi-line text
-#               A  logical  line starts with non-whitespace text. A
-#               line that starts with whitespace continues a  logi-
+#               A logical line starts with non-whitespace  text.  A
+#               line  that starts with whitespace continues a logi-
 #               cal line.
 # 
 # TABLE SEARCH ORDER
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked tables such as NIS, LDAP or  SQL,  patterns  are
+#        networked  tables  such  as NIS, LDAP or SQL, patterns are
 #        tried in the order as listed below:
 # 
 #        user@domain address
-#               Replace  user@domain  by address. This form has the
+#               Replace user@domain by address. This form  has  the
 #               highest precedence.
 # 
-#               This is useful to clean up  addresses  produced  by
-#               legacy  mail  systems.  It can also be used to pro-
-#               duce Firstname.Lastname style  addresses,  but  see
+#               This  is  useful  to clean up addresses produced by
+#               legacy mail systems.  It can also be used  to  pro-
+#               duce  Firstname.Lastname  style  addresses, but see
 #               below for a simpler solution.
 # 
 #        user address
-#               Replace  user@site by address when site is equal to
-#               $myorigin, when site is listed  in  $mydestination,
-#               or   when  it  is  listed  in  $inet_interfaces  or
+#               Replace user@site by address when site is equal  to
+#               $myorigin,  when  site is listed in $mydestination,
+#               or  when  it  is  listed  in  $inet_interfaces   or
 #               $proxy_interfaces.
 # 
-#               This form is useful for replacing  login  names  by
+#               This  form  is  useful for replacing login names by
 #               Firstname.Lastname.
 # 
 #        @domain address
 # RESULT ADDRESS REWRITING
 #        The lookup result is subject to address rewriting:
 # 
-#        o      When the result  has  the  form  @otherdomain,  the
+#        o      When  the  result  has  the  form @otherdomain, the
 #               result becomes the same user in otherdomain.
 # 
-#        o      When  "append_at_myorigin=yes", append "@$myorigin"
+#        o      When "append_at_myorigin=yes", append  "@$myorigin"
 #               to addresses without "@domain".
 # 
 #        o      When "append_dot_mydomain=yes", append ".$mydomain"
 # 
 # ADDRESS EXTENSION
 #        When a mail address localpart contains the optional recip-
-#        ient delimiter (e.g., user+foo@domain), the  lookup  order
+#        ient  delimiter  (e.g., user+foo@domain), the lookup order
 #        becomes: user+foo@domain, user@domain, user+foo, user, and
 #        @domain.
 # 
-#        The  propagate_unmatched_extensions   parameter   controls
-#        whether  an  unmatched  address extension (+foo) is propa-
+#        The   propagate_unmatched_extensions   parameter  controls
+#        whether an unmatched address extension  (+foo)  is  propa-
 #        gated to the result of table lookup.
 # 
 # REGULAR EXPRESSION TABLES
-#        This section describes how the table lookups  change  when
+#        This  section  describes how the table lookups change when
 #        the table is given in the form of regular expressions. For
-#        a description of regular expression lookup  table  syntax,
+#        a  description  of regular expression lookup table syntax,
 #        see regexp_table(5) or pcre_table(5).
 # 
-#        Each  pattern  is  a regular expression that is applied to
+#        Each pattern is a regular expression that  is  applied  to
 #        the entire address being looked up. Thus, user@domain mail
-#        addresses  are  not  broken up into their user and @domain
+#        addresses are not broken up into their  user  and  @domain
 #        constituent parts, nor is user+foo broken up into user and
 #        foo.
 # 
-#        Patterns  are applied in the order as specified in the ta-
-#        ble, until a pattern is  found  that  matches  the  search
+#        Patterns are applied in the order as specified in the  ta-
+#        ble,  until  a  pattern  is  found that matches the search
 #        string.
 # 
-#        Results  are  the  same as with indexed file lookups, with
-#        the additional feature that parenthesized substrings  from
+#        Results are the same as with indexed  file  lookups,  with
+#        the  additional feature that parenthesized substrings from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        lookups are directed to a TCP-based server. For a descrip-
 #        tion of the TCP client/server lookup protocol, see tcp_ta-
 #        ble(5).  This feature is not available up to and including
 #        Postfix version 2.2.
 # 
 #        Each lookup operation uses the entire address once.  Thus,
-#        user@domain mail addresses are not broken  up  into  their
+#        user@domain  mail  addresses  are not broken up into their
 #        user and @domain constituent parts, nor is user+foo broken
 #        up into user and foo.
 # 
 #        Results are the same as with indexed file lookups.
 # 
 # BUGS
-#        The table format does not understand quoting  conventions.
+#        The  table format does not understand quoting conventions.
 # 
 # CONFIGURATION PARAMETERS
-#        The  following main.cf parameters are especially relevant.
-#        The text below provides  only  a  parameter  summary.  See
+#        The following main.cf parameters are especially  relevant.
+#        The  text  below  provides  only  a parameter summary. See
 #        postconf(5) for more details including examples.
 # 
 #        canonical_classes
-#               What  addresses  are  subject  to canonical address
+#               What addresses are  subject  to  canonical  address
 #               mapping.
 # 
 #        canonical_maps
 #               header sender addresses.
 # 
 #        propagate_unmatched_extensions
-#               A list of address rewriting  or  forwarding  mecha-
-#               nisms  that propagate an address extension from the
-#               original address to the result.   Specify  zero  or
-#               more   of   canonical,   virtual,  alias,  forward,
+#               A  list  of  address rewriting or forwarding mecha-
+#               nisms that propagate an address extension from  the
+#               original  address  to  the result.  Specify zero or
+#               more  of  canonical,   virtual,   alias,   forward,
 #               include, or generic.
 # 
 #        Other parameters of interest:
 # 
 #        inet_interfaces
-#               The network interface addresses  that  this  system
+#               The  network  interface  addresses that this system
 #               receives mail on.  You need to stop and start Post-
 #               fix when this parameter changes.
 # 
 #        local_header_rewrite_clients
 #               Rewrite message header addresses in mail from these
-#               clients  and  update  incomplete addresses with the
+#               clients and update incomplete  addresses  with  the
 #               domain name in $myorigin or $mydomain; either don't
-#               rewrite  message headers from other clients at all,
-#               or rewrite message headers  and  update  incomplete
-#               addresses   with   the   domain  specified  in  the
+#               rewrite message headers from other clients at  all,
+#               or  rewrite  message  headers and update incomplete
+#               addresses  with  the  domain   specified   in   the
 #               remote_header_rewrite_domain parameter.
 # 
 #        proxy_interfaces
 #               tor.
 # 
 #        masquerade_classes
-#               List of address classes  subject  to  masquerading:
-#               zero  or  more of envelope_sender, envelope_recipi-
+#               List  of  address  classes subject to masquerading:
+#               zero or more of  envelope_sender,  envelope_recipi-
 #               ent, header_sender, header_recipient.
 # 
 #        masquerade_domains
-#               List of domains that hide  their  subdomain  struc-
+#               List  of  domains  that hide their subdomain struc-
 #               ture.
 # 
 #        masquerade_exceptions
-#               List  of user names that are not subject to address
+#               List of user names that are not subject to  address
 #               masquerading.
 # 
 #        mydestination
-#               List of domains that  this  mail  system  considers
+#               List  of  domains  that  this mail system considers
 #               local.
 # 
 #        myorigin
 #               addresses.
 # 
 #        remote_header_rewrite_domain
-#               Don't  rewrite  message headers from remote clients
+#               Don't rewrite message headers from  remote  clients
 #               at all when this parameter is empty; otherwise, re-
-#               write  message  headers  and  append  the specified
+#               write message  headers  and  append  the  specified
 #               domain name to incomplete addresses.
 # 
 # SEE ALSO
 #        virtual(5), virtual aliasing
 # 
 # README FILES
-#        Use "postconf readme_directory" or  "postconf  html_direc-
+#        Use  "postconf  readme_directory" or "postconf html_direc-
 #        tory" to locate this information.
 #        DATABASE_README, Postfix lookup table overview
 #        ADDRESS_REWRITING_README, address rewriting guide
 # 
 # LICENSE
-#        The  Secure  Mailer  license must be distributed with this
+#        The Secure Mailer license must be  distributed  with  this
 #        software.
 # 
 # AUTHOR(S)
index f8666fe7733b7cd900bf20cc81f65e49519d76df..3d5c616c12833547b5c658514bc0f56c3dbfb183 100644 (file)
@@ -1,4 +1,4 @@
-# GENERIC(5)                                             GENERIC(5)
+# GENERIC(5)                                                          GENERIC(5)
 # 
 # NAME
 #        generic - Postfix generic table format
 #        way as described below under "REGULAR  EXPRESSION  TABLES"
 #        and "TCP-BASED TABLES".
 # 
+# CASE FOLDING
+#        The  search  string is folded to lowercase before database
+#        lookup. As of Postfix 2.3, the search string is  not  case
+#        folded  with database types such as regexp: or pcre: whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #        pattern result
-#               When pattern matches a mail address, replace it  by
+#               When  pattern matches a mail address, replace it by
 #               the corresponding result.
 # 
 #        blank lines and comments
-#               Empty  lines and whitespace-only lines are ignored,
-#               as are lines whose first  non-whitespace  character
+#               Empty lines and whitespace-only lines are  ignored,
+#               as  are  lines whose first non-whitespace character
 #               is a `#'.
 # 
 #        multi-line text
-#               A  logical  line starts with non-whitespace text. A
-#               line that starts with whitespace continues a  logi-
+#               A logical line starts with non-whitespace  text.  A
+#               line  that starts with whitespace continues a logi-
 #               cal line.
 # 
 # TABLE SEARCH ORDER
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked tables such as NIS, LDAP or  SQL,  patterns  are
+#        networked  tables  such  as NIS, LDAP or SQL, patterns are
 #        tried in the order as listed below:
 # 
 #        user@domain address
-#               Replace  user@domain  by address. This form has the
+#               Replace user@domain by address. This form  has  the
 #               highest precedence.
 # 
 #        user address
-#               Replace user@site by address when site is equal  to
-#               $myorigin,  when  site is listed in $mydestination,
-#               or  when  it  is  listed  in  $inet_interfaces   or
+#               Replace  user@site by address when site is equal to
+#               $myorigin, when site is listed  in  $mydestination,
+#               or   when  it  is  listed  in  $inet_interfaces  or
 #               $proxy_interfaces.
 # 
 #        @domain address
 # RESULT ADDRESS REWRITING
 #        The lookup result is subject to address rewriting:
 # 
-#        o      When the result  has  the  form  @otherdomain,  the
+#        o      When  the  result  has  the  form @otherdomain, the
 #               result becomes the same user in otherdomain.
 # 
-#        o      When  "append_at_myorigin=yes", append "@$myorigin"
+#        o      When "append_at_myorigin=yes", append  "@$myorigin"
 #               to addresses without "@domain".
 # 
 #        o      When "append_dot_mydomain=yes", append ".$mydomain"
 # 
 # ADDRESS EXTENSION
 #        When a mail address localpart contains the optional recip-
-#        ient delimiter (e.g., user+foo@domain), the  lookup  order
+#        ient  delimiter  (e.g., user+foo@domain), the lookup order
 #        becomes: user+foo@domain, user@domain, user+foo, user, and
 #        @domain.
 # 
-#        The  propagate_unmatched_extensions   parameter   controls
-#        whether  an  unmatched  address extension (+foo) is propa-
+#        The   propagate_unmatched_extensions   parameter  controls
+#        whether an unmatched address extension  (+foo)  is  propa-
 #        gated to the result of table lookup.
 # 
 # REGULAR EXPRESSION TABLES
-#        This section describes how the table lookups  change  when
+#        This  section  describes how the table lookups change when
 #        the table is given in the form of regular expressions. For
-#        a description of regular expression lookup  table  syntax,
+#        a  description  of regular expression lookup table syntax,
 #        see regexp_table(5) or pcre_table(5).
 # 
-#        Each  pattern  is  a regular expression that is applied to
+#        Each pattern is a regular expression that  is  applied  to
 #        the entire address being looked up. Thus, user@domain mail
-#        addresses  are  not  broken up into their user and @domain
+#        addresses are not broken up into their  user  and  @domain
 #        constituent parts, nor is user+foo broken up into user and
 #        foo.
 # 
-#        Patterns  are  applied  in  the  order as specified in the
-#        table, until a pattern is found that  matches  the  search
+#        Patterns are applied in the order as specified in the  ta-
+#        ble,  until  a  pattern  is  found that matches the search
 #        string.
 # 
-#        Results  are  the  same as with indexed file lookups, with
-#        the additional feature that parenthesized substrings  from
+#        Results are the same as with indexed  file  lookups,  with
+#        the  additional feature that parenthesized substrings from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        lookups are directed to a TCP-based server. For a descrip-
-#        tion   of  the  TCP  client/server  lookup  protocol,  see
-#        tcp_table(5).  This feature is not  available  up  to  and
-#        including Postfix version 2.2.
+#        tion of the TCP client/server lookup protocol, see tcp_ta-
+#        ble(5).  This feature is not available up to and including
+#        Postfix version 2.2.
 # 
 #        Each lookup operation uses the entire address once.  Thus,
-#        user@domain mail addresses are not broken  up  into  their
+#        user@domain  mail  addresses  are not broken up into their
 #        user and @domain constituent parts, nor is user+foo broken
 #        up into user and foo.
 # 
 #        Results are the same as with indexed file lookups.
 # 
 # EXAMPLE
-#        The following shows a  generic  mapping  with  an  indexed
-#        file.   When  mail is sent to a remote host via SMTP, this
-#        replaces his@localdomain.local by his  ISP  mail  address,
-#        replaces  her@localdomain.local  by  her ISP mail address,
-#        and replaces other local addresses  by  his  ISP  account,
-#        with  an address extension of +local (this example assumes
+#        The  following  shows  a  generic  mapping with an indexed
+#        file.  When mail is sent to a remote host via  SMTP,  this
+#        replaces  his@localdomain.local  by  his ISP mail address,
+#        replaces her@localdomain.local by her  ISP  mail  address,
+#        and  replaces  other  local  addresses by his ISP account,
+#        with an address extension of +local (this example  assumes
 #        that the ISP supports "+" style address extensions).
 # 
 #        /etc/postfix/main.cf:
 #                her@localdomain.local   heraccount@herisp.example
 #                @localdomain.local      hisaccount+local@hisisp.example
 # 
-#        Execute the command "postmap  /etc/postfix/generic"  when-
-#        ever  the table is changed.  Instead of hash, some systems
-#        use dbm database files. To find out what tables your  sys-
+#        Execute  the  command "postmap /etc/postfix/generic" when-
+#        ever the table is changed.  Instead of hash, some  systems
+#        use  dbm database files. To find out what tables your sys-
 #        tem supports use the command "postconf -m".
 # 
 # BUGS
-#        The  table format does not understand quoting conventions.
+#        The table format does not understand quoting  conventions.
 # 
 # CONFIGURATION PARAMETERS
-#        The following main.cf parameters are especially  relevant.
-#        The  text  below  provides  only  a parameter summary. See
+#        The  following main.cf parameters are especially relevant.
+#        The text below provides  only  a  parameter  summary.  See
 #        postconf(5) for more details including examples.
 # 
 #        smtp_generic_maps
 #               Address  mapping  lookup  table  for  envelope  and
-#               header  sender and recipient addresses while deliv-
+#               header sender and recipient addresses while  deliv-
 #               ering mail via SMTP.
 # 
 #        propagate_unmatched_extensions
-#               A list of address rewriting  or  forwarding  mecha-
-#               nisms  that propagate an address extension from the
-#               original address to the result.   Specify  zero  or
-#               more   of   canonical,   virtual,  alias,  forward,
+#               A  list  of  address rewriting or forwarding mecha-
+#               nisms that propagate an address extension from  the
+#               original  address  to  the result.  Specify zero or
+#               more  of  canonical,   virtual,   alias,   forward,
 #               include, or generic.
 # 
 #        Other parameters of interest:
 # 
 #        inet_interfaces
-#               The network interface addresses  that  this  system
+#               The  network  interface  addresses that this system
 #               receives mail on.  You need to stop and start Post-
 #               fix when this parameter changes.
 # 
 #               tor.
 # 
 #        mydestination
-#               List of domains that  this  mail  system  considers
+#               List  of  domains  that  this mail system considers
 #               local.
 # 
 #        myorigin
 #        smtp(8), Postfix SMTP client
 # 
 # README FILES
-#        Use  "postconf  readme_directory" or "postconf html_direc-
+#        Use "postconf readme_directory" or  "postconf  html_direc-
 #        tory" to locate this information.
 #        ADDRESS_REWRITING_README, address rewriting guide
 #        DATABASE_README, Postfix lookup table overview
 #        STANDARD_CONFIGURATION_README, configuration examples
 # 
 # LICENSE
-#        The Secure Mailer license must be  distributed  with  this
+#        The  Secure  Mailer  license must be distributed with this
 #        software.
 # 
 # HISTORY
 #        P.O. Box 704
 #        Yorktown Heights, NY 10598, USA
 # 
-#                                                        GENERIC(5)
+#                                                                     GENERIC(5)
index a14d0322761545cf087bbcb069f2620f0e1efd57..468dd4dc6da3400e660b4cd0caa1c27535aa811c 100644 (file)
 # 
 #        Table lookups are case insensitive.
 # 
+# CASE FOLDING
+#        The  search  string is folded to lowercase before database
+#        lookup. As of Postfix 2.3, the search string is  not  case
+#        folded  with database types such as regexp: or pcre: whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #        o      An entry has one of the following form:
 #                    pattern      new_location
-#               Where new_location  specifies  contact  information
-#               such  as  an  email  address,  or  perhaps a street
+#               Where  new_location  specifies  contact information
+#               such as an  email  address,  or  perhaps  a  street
 #               address or telephone number.
 # 
-#        o      Empty lines and whitespace-only lines are  ignored,
-#               as  are  lines whose first non-whitespace character
+#        o      Empty  lines and whitespace-only lines are ignored,
+#               as are lines whose first  non-whitespace  character
 #               is a `#'.
 # 
-#        o      A logical line starts with non-whitespace  text.  A
-#               line  that starts with whitespace continues a logi-
+#        o      A  logical  line starts with non-whitespace text. A
+#               line that starts with whitespace continues a  logi-
 #               cal line.
 # 
 # TABLE SEARCH ORDER
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked  tables  such  as NIS, LDAP or SQL, patterns are
+#        networked tables such as NIS, LDAP or  SQL,  patterns  are
 #        tried in the order as listed below:
 # 
 #        user@domain
-#               Matches user@domain. This form has precedence  over
+#               Matches  user@domain. This form has precedence over
 #               all other forms.
 # 
 #        user   Matches user@site when site is $myorigin, when site
 #               in $inet_interfaces or $proxy_interfaces.
 # 
 #        @domain
-#               Matches  other  addresses  in domain. This form has
+#               Matches other addresses in domain.  This  form  has
 #               the lowest precedence.
 # 
 # ADDRESS EXTENSION
 #        When a mail address localpart contains the optional recip-
-#        ient  delimiter  (e.g., user+foo@domain), the lookup order
+#        ient delimiter (e.g., user+foo@domain), the  lookup  order
 #        becomes: user+foo@domain, user@domain, user+foo, user, and
 #        @domain.
 # 
 # REGULAR EXPRESSION TABLES
-#        This  section  describes how the table lookups change when
-#        the table is given in the form of regular  expressions  or
-#        when  lookups  are  directed  to a TCP-based server. For a
+#        This section describes how the table lookups  change  when
+#        the  table  is given in the form of regular expressions or
+#        when lookups are directed to a  TCP-based  server.  For  a
 #        description of regular expression lookup table syntax, see
 #        regexp_table(5) or pcre_table(5). For a description of the
 #        TCP client/server table lookup protocol, see tcp_table(5).
-#        This  feature is not available up to and including Postfix
+#        This feature is not available up to and including  Postfix
 #        version 2.2.
 # 
-#        Each pattern is a regular expression that  is  applied  to
+#        Each  pattern  is  a regular expression that is applied to
 #        the entire address being looked up. Thus, user@domain mail
-#        addresses are not broken up into their  user  and  @domain
+#        addresses  are  not  broken up into their user and @domain
 #        constituent parts, nor is user+foo broken up into user and
 #        foo.
 # 
-#        Patterns are applied in the order as specified in the  ta-
-#        ble,  until  a  pattern  is  found that matches the search
+#        Patterns  are applied in the order as specified in the ta-
+#        ble, until a pattern is  found  that  matches  the  search
 #        string.
 # 
-#        Results are the same as with indexed  file  lookups,  with
-#        the  additional feature that parenthesized substrings from
+#        Results  are  the  same as with indexed file lookups, with
+#        the additional feature that parenthesized substrings  from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This section describes how the table lookups  change  when
+#        This  section  describes how the table lookups change when
 #        lookups are directed to a TCP-based server. For a descrip-
 #        tion of the TCP client/server lookup protocol, see tcp_ta-
 #        ble(5).  This feature is not available up to and including
 #        Postfix version 2.2.
 # 
 #        Each lookup operation uses the entire address once.  Thus,
-#        user@domain  mail  addresses  are not broken up into their
+#        user@domain mail addresses are not broken  up  into  their
 #        user and @domain constituent parts, nor is user+foo broken
 #        up into user and foo.
 # 
 #        Results are the same as with indexed file lookups.
 # 
 # BUGS
-#        The  table format does not understand quoting conventions.
+#        The table format does not understand quoting  conventions.
 # 
 # CONFIGURATION PARAMETERS
-#        The following main.cf parameters are especially  relevant.
-#        The  text  below  provides  only  a parameter summary. See
+#        The  following main.cf parameters are especially relevant.
+#        The text below provides  only  a  parameter  summary.  See
 #        postconf(5) for more details including examples.
 # 
 #        relocated_maps
 #        Other parameters of interest:
 # 
 #        inet_interfaces
-#               The  network  interface  addresses that this system
+#               The network interface addresses  that  this  system
 #               receives mail on.  You need to stop and start Post-
 #               fix when this parameter changes.
 # 
 #        mydestination
-#               List  of  domains  that  this mail system considers
+#               List of domains that  this  mail  system  considers
 #               local.
 # 
 #        myorigin
 #        postconf(5), configuration parameters
 # 
 # README FILES
-#        Use  "postconf  readme_directory" or "postconf html_direc-
+#        Use "postconf readme_directory" or  "postconf  html_direc-
 #        tory" to locate this information.
 #        DATABASE_README, Postfix lookup table overview
 #        ADDRESS_REWRITING_README, address rewriting guide
 # 
 # LICENSE
-#        The Secure Mailer license must be  distributed  with  this
+#        The  Secure  Mailer  license must be distributed with this
 #        software.
 # 
 # AUTHOR(S)
index c3718ac081bde7a1cb34b9df3c837554d9ed56c0..e83b52a09bb8d6254dd34ae9884a973764de0480 100644 (file)
 #        way as described below under "REGULAR  EXPRESSION  TABLES"
 #        and "TCP-BASED TABLES".
 # 
+# CASE FOLDING
+#        The  search  string is folded to lowercase before database
+#        lookup. As of Postfix 2.3, the search string is  not  case
+#        folded  with database types such as regexp: or pcre: whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #               domain, use the corresponding result.
 # 
 #        blank lines and comments
-#               Empty  lines and whitespace-only lines are ignored,
-#               as are lines whose first  non-whitespace  character
+#               Empty lines and whitespace-only lines are  ignored,
+#               as  are  lines whose first non-whitespace character
 #               is a `#'.
 # 
 #        multi-line text
-#               A  logical  line starts with non-whitespace text. A
-#               line that starts with whitespace continues a  logi-
+#               A logical line starts with non-whitespace  text.  A
+#               line  that starts with whitespace continues a logi-
 #               cal line.
 # 
-#        The  pattern specifies an email address, a domain name, or
-#        a domain name hierarchy, as described  in  section  "TABLE
+#        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
+#        The result is of the form transport:nexthop and  specifies
 #        how or where to deliver mail. This is described in section
 #        "RESULT FORMAT".
 # 
 # TABLE SEARCH ORDER
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked tables such as NIS, LDAP or  SQL,  patterns  are
+#        networked  tables  such  as NIS, LDAP or SQL, patterns are
 #        tried in the order as listed below:
 # 
 #        user+extension@domain transport:nexthop
-#               Deliver   mail  for  user+extension@domain  through
+#               Deliver  mail  for  user+extension@domain   through
 #               transport to nexthop.
 # 
 #        user@domain transport:nexthop
-#               Deliver mail for user@domain through  transport  to
+#               Deliver  mail  for user@domain through transport to
 #               nexthop.
 # 
 #        domain transport:nexthop
-#               Deliver  mail  for domain through transport to nex-
+#               Deliver mail for domain through transport  to  nex-
 #               thop.
 # 
 #        .domain transport:nexthop
-#               Deliver mail for any subdomain  of  domain  through
-#               transport  to  nexthop.  This applies only when the
-#               string transport_maps is not  listed  in  the  par-
-#               ent_domain_matches_subdomains   configuration  set-
-#               ting.  Otherwise, a domain name matches itself  and
+#               Deliver  mail  for  any subdomain of domain through
+#               transport to nexthop. This applies  only  when  the
+#               string  transport_maps  is  not  listed in the par-
+#               ent_domain_matches_subdomains  configuration   set-
+#               ting.   Otherwise, a domain name matches itself and
 #               its subdomains.
 # 
 #        Note 1: the special pattern * represents any address (i.e.
 #        it functions as the wild-card pattern).
 # 
-#        Note 2:  the  null  recipient  address  is  looked  up  as
+#        Note  2:  the  null  recipient  address  is  looked  up as
 #        $empty_address_recipient@$myhostname (default: mailer-dae-
 #        mon@hostname).
 # 
-#        Note 3: user@domain  or  user+extension@domain  lookup  is
+#        Note  3:  user@domain  or  user+extension@domain lookup is
 #        available in Postfix 2.0 and later.
 # 
 # RESULT FORMAT
-#        The  lookup  result is of the form transport:nexthop.  The
-#        transport field specifies a mail delivery  transport  such
-#        as  smtp  or  local. The nexthop field specifies where and
+#        The lookup result is of the form  transport:nexthop.   The
+#        transport  field  specifies a mail delivery transport such
+#        as smtp or local. The nexthop field  specifies  where  and
 #        how to deliver mail.
 # 
-#        The transport field specifies the name of a mail  delivery
+#        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 interpretation  of  the  nexthop  field  is  transport
-#        dependent.  In  the  case  of 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 []
+#        The  interpretation  of  the  nexthop  field  is transport
+#        dependent. In the case of 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 result means "do not
-#        change": use the delivery transport and  nexthop  informa-
-#        tion  that  would  be used when the entire transport table
+#        A null transport and null nexthop  result  means  "do  not
+#        change":  use  the delivery transport and nexthop informa-
+#        tion that would be used when the  entire  transport  table
 #        did not exist.
 # 
-#        A non-null transport  field  with  a  null  nexthop  field
+#        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
+#        A null transport field with non-null  nexthop  field  does
 #        not modify the transport information.
 # 
 # EXAMPLES
-#        In order to deliver internal mail directly, while using  a
-#        mail  relay  for  all other mail, specify a null entry for
-#        internal destinations (do not change the  delivery  trans-
-#        port  or  the  nexthop information) and specify a wildcard
+#        In  order to deliver internal mail directly, while using a
+#        mail relay for all other mail, specify a  null  entry  for
+#        internal  destinations  (do not change the delivery trans-
+#        port or the nexthop information) and  specify  a  wildcard
 #        for all other destinations.
 # 
 #             my.domain    :
 #             .my.domain   :
 #             *         smtp:outbound-relay.my.domain
 # 
-#        In order to send mail for example.com and  its  subdomains
+#        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
+#        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
+#        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
+#        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, one may specify host-
+#        In the case of delivery via SMTP, one  may  specify  host-
 #        name:service instead of just a host:
 # 
 #             example.com      smtp:bar.example:2025
 # 
 #        The error mailer can be used to bounce mail:
 # 
-#             .example.com      error:mail for *.example.com is not
+#             .example.com     error:mail for *.example.com is  not
 #        deliverable
 # 
-#        This causes all mail for user@anything.example.com  to  be
+#        This  causes  all mail for user@anything.example.com to be
 #        bounced.
 # 
 # REGULAR EXPRESSION TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        the table is given in the form of regular expressions. For
-#        a  description  of regular expression lookup table syntax,
+#        a description of regular expression lookup  table  syntax,
 #        see regexp_table(5) or pcre_table(5).
 # 
-#        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.
+#        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  ta-
-#        ble,  until  a  pattern  is  found that matches the search
+#        Patterns  are applied in the order as specified in the ta-
+#        ble, until a pattern is  found  that  matches  the  search
 #        string.
 # 
-#        Results are the same as with indexed  file  lookups,  with
-#        the  additional feature that parenthesized substrings from
+#        Results  are  the  same as with indexed file lookups, with
+#        the additional feature that parenthesized substrings  from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This section describes how the table lookups  change  when
+#        This  section  describes how the table lookups change when
 #        lookups are directed to a TCP-based server. For a descrip-
 #        tion of the TCP client/server lookup protocol, see tcp_ta-
 #        ble(5).  This feature is not available up to and including
 #        Postfix version 2.2.
 # 
-#        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
+#        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.
 # 
 # CONFIGURATION PARAMETERS
-#        The  following main.cf parameters are especially relevant.
-#        The text below provides  only  a  parameter  summary.  See
+#        The following main.cf parameters are especially  relevant.
+#        The  text  below  provides  only  a parameter summary. See
 #        postconf(5) for more details including examples.
 # 
 #        empty_address_recipient
-#               The  address  that is looked up instead of the null
+#               The address that is looked up instead of  the  null
 #               sender address.
 # 
 #        parent_domain_matches_subdomains
-#               List of Postfix features that use  domain.tld  pat-
-#               terns   to  match  sub.domain.tld  (as  opposed  to
+#               List  of  Postfix features that use domain.tld pat-
+#               terns  to  match  sub.domain.tld  (as  opposed   to
 #               requiring .domain.tld patterns).
 # 
 #        transport_maps
 #        postmap(1), Postfix lookup table manager
 # 
 # README FILES
-#        Use "postconf readme_directory" or  "postconf  html_direc-
+#        Use  "postconf  readme_directory" or "postconf html_direc-
 #        tory" to locate this information.
 #        DATABASE_README, Postfix lookup table overview
 #        FILTER_README, external content filter
 # 
 # LICENSE
-#        The  Secure  Mailer  license must be distributed with this
+#        The Secure Mailer license must be  distributed  with  this
 #        software.
 # 
 # AUTHOR(S)
index c261627878109dd64941423fcd8ab8e039d01b65..1790f062a01bf7c829212e0c718ff4725f7b565a 100644 (file)
 #        way  as  described below under "REGULAR EXPRESSION TABLES"
 #        and "TCP-BASED TABLES".
 # 
+# CASE FOLDING
+#        The search string is folded to lowercase  before  database
+#        lookup.  As  of Postfix 2.3, the search string is not case
+#        folded with database types such as regexp: or pcre:  whose
+#        lookup fields can match both upper and lower case.
+# 
 # TABLE FORMAT
 #        The input format for the postmap(1) command is as follows:
 # 
 #        pattern result
-#               When  pattern matches a mail address, replace it by
+#               When pattern matches a mail address, replace it  by
 #               the corresponding result.
 # 
 #        blank lines and comments
-#               Empty lines and whitespace-only lines are  ignored,
-#               as  are  lines whose first non-whitespace character
+#               Empty  lines and whitespace-only lines are ignored,
+#               as are lines whose first  non-whitespace  character
 #               is a `#'.
 # 
 #        multi-line text
-#               A logical line starts with non-whitespace  text.  A
-#               line  that starts with whitespace continues a logi-
+#               A  logical  line starts with non-whitespace text. A
+#               line that starts with whitespace continues a  logi-
 #               cal line.
 # 
 # TABLE SEARCH ORDER
 #        With lookups from indexed files such as DB or DBM, or from
-#        networked  tables  such  as NIS, LDAP or SQL, patterns are
+#        networked tables such as NIS, LDAP or  SQL,  patterns  are
 #        tried in the order as listed below:
 # 
 #        user@domain address, address, ...
-#               Redirect mail for  user@domain  to  address.   This
+#               Redirect  mail  for  user@domain  to address.  This
 #               form has the highest precedence.
 # 
 #        user address, address, ...
 #               Redirect mail for user@site to address when site is
-#               equal to $myorigin, when site is listed in  $mydes-
-#               tination,  or when it is listed in $inet_interfaces
+#               equal  to $myorigin, when site is listed in $mydes-
+#               tination, or when it is listed in  $inet_interfaces
 #               or $proxy_interfaces.
 # 
-#               This functionality overlaps with  functionality  of
-#               the  local  aliases(5)  database. The difference is
+#               This  functionality  overlaps with functionality of
+#               the local aliases(5) database.  The  difference  is
 #               that virtual(5) mapping can be applied to non-local
 #               addresses.
 # 
 # RESULT ADDRESS REWRITING
 #        The lookup result is subject to address rewriting:
 # 
-#        o      When the result  has  the  form  @otherdomain,  the
-#               result  becomes the same user in otherdomain.  This
+#        o      When  the  result  has  the  form @otherdomain, the
+#               result becomes the same user in otherdomain.   This
 #               works only for the first address in a multi-address
 #               lookup result.
 # 
-#        o      When  "append_at_myorigin=yes", append "@$myorigin"
+#        o      When "append_at_myorigin=yes", append  "@$myorigin"
 #               to addresses without "@domain".
 # 
 #        o      When "append_dot_mydomain=yes", append ".$mydomain"
 # 
 # ADDRESS EXTENSION
 #        When a mail address localpart contains the optional recip-
-#        ient delimiter (e.g., user+foo@domain), the  lookup  order
+#        ient  delimiter  (e.g., user+foo@domain), the lookup order
 #        becomes: user+foo@domain, user@domain, user+foo, user, and
 #        @domain.
 # 
-#        The  propagate_unmatched_extensions   parameter   controls
-#        whether  an  unmatched  address extension (+foo) is propa-
+#        The   propagate_unmatched_extensions   parameter  controls
+#        whether an unmatched address extension  (+foo)  is  propa-
 #        gated to the result of table lookup.
 # 
 # VIRTUAL ALIAS DOMAINS
-#        Besides virtual aliases, the virtual alias table can  also
+#        Besides  virtual aliases, the virtual alias table can also
 #        be used to implement virtual alias domains. With a virtual
-#        alias domain,  all  recipient  addresses  are  aliased  to
+#        alias  domain,  all  recipient  addresses  are  aliased to
 #        addresses in other domains.
 # 
 #        Virtual alias domains are not to be confused with the vir-
 #        tual mailbox domains that are implemented with the Postfix
 #        virtual(8)  mail  delivery  agent.  With  virtual  mailbox
-#        domains, each recipient address can have its own  mailbox.
+#        domains,  each recipient address can have its own mailbox.
 # 
-#        With  a  virtual  alias domain, the virtual domain has its
-#        own user name space. Local  (i.e.  non-virtual)  usernames
-#        are  not visible in a virtual alias domain. In particular,
-#        local aliases(5) and local mailing lists are  not  visible
+#        With a virtual alias domain, the virtual  domain  has  its
+#        own  user  name  space. Local (i.e. non-virtual) usernames
+#        are not visible in a virtual alias domain. In  particular,
+#        local  aliases(5)  and local mailing lists are not visible
 #        as localname@virtual-alias.domain.
 # 
 #        Support for a virtual alias domain looks like:
 #        /etc/postfix/main.cf:
 #            virtual_alias_maps = hash:/etc/postfix/virtual
 # 
-#            Note:  some systems use dbm databases instead of hash.
-#            See the output from "postconf -m" for available  data-
+#            Note: some systems use dbm databases instead of  hash.
+#            See  the output from "postconf -m" for available data-
 #            base types.
 # 
 #        /etc/postfix/virtual:
 #            user1@virtual-alias.domain   address1
 #            user2@virtual-alias.domain   address2, address3
 # 
-#        The  virtual-alias.domain anything entry is required for a
+#        The virtual-alias.domain anything entry is required for  a
 #        virtual alias domain. Without this entry, mail is rejected
-#        with  "relay  access  denied", or bounces with "mail loops
+#        with "relay access denied", or bounces  with  "mail  loops
 #        back to myself".
 # 
-#        Do not specify virtual alias domain names in  the  main.cf
+#        Do  not  specify virtual alias domain names in the main.cf
 #        mydestination or relay_domains configuration parameters.
 # 
-#        With  a  virtual  alias  domain,  the  Postfix SMTP server
-#        accepts  mail  for  known-user@virtual-alias.domain,   and
-#        rejects   mail  for  unknown-user@virtual-alias.domain  as
+#        With a virtual  alias  domain,  the  Postfix  SMTP  server
+#        accepts   mail  for  known-user@virtual-alias.domain,  and
+#        rejects  mail  for  unknown-user@virtual-alias.domain   as
 #        undeliverable.
 # 
-#        Instead of specifying the virtual alias  domain  name  via
-#        the  virtual_alias_maps table, you may also specify it via
+#        Instead  of  specifying  the virtual alias domain name via
+#        the virtual_alias_maps table, you may also specify it  via
 #        the main.cf virtual_alias_domains configuration parameter.
-#        This  latter parameter uses the same syntax as the main.cf
+#        This latter parameter uses the same syntax as the  main.cf
 #        mydestination configuration parameter.
 # 
 # REGULAR EXPRESSION TABLES
-#        This section describes how the table lookups  change  when
+#        This  section  describes how the table lookups change when
 #        the table is given in the form of regular expressions. For
-#        a description of regular expression lookup  table  syntax,
+#        a  description  of regular expression lookup table syntax,
 #        see regexp_table(5) or pcre_table(5).
 # 
-#        Each  pattern  is  a regular expression that is applied to
+#        Each pattern is a regular expression that  is  applied  to
 #        the entire address being looked up. Thus, user@domain mail
-#        addresses  are  not  broken up into their user and @domain
+#        addresses are not broken up into their  user  and  @domain
 #        constituent parts, nor is user+foo broken up into user and
 #        foo.
 # 
-#        Patterns  are applied in the order as specified in the ta-
-#        ble, until a pattern is  found  that  matches  the  search
+#        Patterns are applied in the order as specified in the  ta-
+#        ble,  until  a  pattern  is  found that matches the search
 #        string.
 # 
-#        Results  are  the  same as with indexed file lookups, with
-#        the additional feature that parenthesized substrings  from
+#        Results are the same as with indexed  file  lookups,  with
+#        the  additional feature that parenthesized substrings from
 #        the pattern can be interpolated as $1, $2 and so on.
 # 
 # TCP-BASED TABLES
-#        This  section  describes how the table lookups change when
+#        This section describes how the table lookups  change  when
 #        lookups are directed to a TCP-based server. For a descrip-
 #        tion of the TCP client/server lookup protocol, see tcp_ta-
 #        ble(5).  This feature is not available up to and including
 #        Postfix version 2.2.
 # 
 #        Each lookup operation uses the entire address once.  Thus,
-#        user@domain mail addresses are not broken  up  into  their
+#        user@domain  mail  addresses  are not broken up into their
 #        user and @domain constituent parts, nor is user+foo broken
 #        up into user and foo.
 # 
 #        Results are the same as with indexed file lookups.
 # 
 # BUGS
-#        The table format does not understand quoting  conventions.
+#        The  table format does not understand quoting conventions.
 # 
 # CONFIGURATION PARAMETERS
-#        The  following  main.cf parameters are especially relevant
-#        to this topic. See the Postfix  main.cf  file  for  syntax
-#        details  and  for default values. Use the "postfix reload"
+#        The following main.cf parameters are  especially  relevant
+#        to  this  topic.  See  the Postfix main.cf file for syntax
+#        details and for default values. Use the  "postfix  reload"
 #        command after a configuration change.
 # 
 #        virtual_alias_maps
 #               List of virtual aliasing tables.
 # 
 #        virtual_alias_domains
-#               List of virtual alias domains. This uses  the  same
+#               List  of  virtual alias domains. This uses the same
 #               syntax as the mydestination parameter.
 # 
 #        propagate_unmatched_extensions
-#               A  list  of  address rewriting or forwarding mecha-
-#               nisms that propagate an address extension from  the
-#               original  address  to  the result.  Specify zero or
-#               more  of  canonical,   virtual,   alias,   forward,
+#               A list of address rewriting  or  forwarding  mecha-
+#               nisms  that propagate an address extension from the
+#               original address to the result.   Specify  zero  or
+#               more   of   canonical,   virtual,  alias,  forward,
 #               include, or generic.
 # 
 #        Other parameters of interest:
 # 
 #        inet_interfaces
-#               The  network  interface  addresses that this system
+#               The network interface addresses  that  this  system
 #               receives mail on.  You need to stop and start Post-
 #               fix when this parameter changes.
 # 
 #        mydestination
-#               List  of  domains  that  this mail system considers
+#               List of domains that  this  mail  system  considers
 #               local.
 # 
 #        myorigin
-#               The domain that is appended  to  any  address  that
+#               The  domain  that  is  appended to any address that
 #               does not have a domain.
 # 
 #        owner_request_special
 #        canonical(5), canonical address mapping
 # 
 # README FILES
-#        Use "postconf readme_directory" or  "postconf  html_direc-
+#        Use  "postconf  readme_directory" or "postconf html_direc-
 #        tory" to locate this information.
 #        DATABASE_README, Postfix lookup table overview
 #        ADDRESS_REWRITING_README, address rewriting guide
 #        VIRTUAL_README, domain hosting guide
 # 
 # LICENSE
-#        The  Secure  Mailer  license must be distributed with this
+#        The Secure Mailer license must be  distributed  with  this
 #        software.
 # 
 # AUTHOR(S)
index bb7a9bcfc0df30acdffeca24d33bf667e6d321ef..586508aae65b485fbc75a3d9909f2b5b92e35518 100644 (file)
@@ -43,6 +43,12 @@ ACCESS(5)                                                            ACCESS(5)
        way as described below under "REGULAR  EXPRESSION  TABLES"
        and "TCP-BASED TABLES".
 
+<b>CASE FOLDING</b>
+       The  search  string is folded to lowercase before database
+       lookup. As of Postfix 2.3, the search string is  not  case
+       folded  with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>: whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
@@ -51,53 +57,53 @@ ACCESS(5)                                                            ACCESS(5)
               address, perform the corresponding <i>action</i>.
 
        blank lines and comments
-              Empty  lines and whitespace-only lines are ignored,
-              as are lines whose first  non-whitespace  character
+              Empty lines and whitespace-only lines are  ignored,
+              as  are  lines whose first non-whitespace character
               is a `#'.
 
        multi-line text
-              A  logical  line starts with non-whitespace text. A
-              line that starts with whitespace continues a  logi-
+              A logical line starts with non-whitespace  text.  A
+              line  that starts with whitespace continues a logi-
               cal line.
 
 <b>EMAIL ADDRESS PATTERNS</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked tables such as NIS, LDAP or  SQL,  patterns  are
+       networked  tables  such  as NIS, LDAP or SQL, patterns are
        tried in the order as listed below:
 
        <i>user</i>@<i>domain</i>
               Matches the specified mail address.
 
        <i>domain.tld</i>
-              Matches  <i>domain.tld</i>  as the domain part of an email
+              Matches <i>domain.tld</i> as the domain part of  an  email
               address.
 
               The pattern <i>domain.tld</i> also matches subdomains, but
               only when the string <b>smtpd_access_maps</b> is listed in
-              the Postfix  <b><a href="postconf.5.html#parent_domain_matches_subdomains">parent_domain_matches_subdomains</a></b>  con-
-              figuration  setting  (note that this is the default
-              for some versions of Postfix).  Otherwise,  specify
-              <i>.domain.tld</i>  (note  the  initial  dot)  in order to
+              the  Postfix  <b><a href="postconf.5.html#parent_domain_matches_subdomains">parent_domain_matches_subdomains</a></b> con-
+              figuration setting (note that this is  the  default
+              for  some versions of Postfix).  Otherwise, specify
+              <i>.domain.tld</i> (note the  initial  dot)  in  order  to
               match subdomains.
 
-       <i>user</i>@  Matches all mail addresses with the specified  user
+       <i>user</i>@  Matches  all mail addresses with the specified user
               part.
 
-       Note:  lookup  of  the null sender address is not possible
-       with some types of lookup table. By default, Postfix  uses
-       &lt;&gt;  as  the  lookup  key  for such addresses. The value is
-       specified with the <b><a href="postconf.5.html#smtpd_null_access_lookup_key">smtpd_null_access_lookup_key</a></b>  parameter
-       in the Postfix <b>main.cf</b> file.
+       Note: lookup of the null sender address  is  not  possible
+       with  some types of lookup table. By default, Postfix uses
+       &lt;&gt; as the lookup key for  such  addresses.  The  value  is
+       specified  with the <b><a href="postconf.5.html#smtpd_null_access_lookup_key">smtpd_null_access_lookup_key</a></b> parameter
+       in the Postfix <a href="postconf.5.html"><b>main.cf</b></a> file.
 
 <b>EMAIL ADDRESS EXTENSION</b>
        When a mail address localpart contains the optional recip-
-       ient delimiter (e.g., <i>user+foo</i>@<i>domain</i>), the  lookup  order
-       becomes:  <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>domain</i>, <i>user+foo</i>@,
+       ient  delimiter  (e.g., <i>user+foo</i>@<i>domain</i>), the lookup order
+       becomes: <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>domain</i>,  <i>user+foo</i>@,
        and <i>user</i>@.
 
 <b>HOST NAME/ADDRESS PATTERNS</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked  tables  such as NIS, LDAP or SQL, the following
+       networked tables such as NIS, LDAP or SQL,  the  following
        lookup patterns are examined in the order as listed:
 
        <i>domain.tld</i>
@@ -105,9 +111,9 @@ ACCESS(5)                                                            ACCESS(5)
 
               The pattern <i>domain.tld</i> also matches subdomains, but
               only when the string <b>smtpd_access_maps</b> is listed in
-              the Postfix  <b><a href="postconf.5.html#parent_domain_matches_subdomains">parent_domain_matches_subdomains</a></b>  con-
+              the  Postfix  <b><a href="postconf.5.html#parent_domain_matches_subdomains">parent_domain_matches_subdomains</a></b> con-
               figuration setting.  Otherwise, specify <i>.domain.tld</i>
-              (note the initial dot) in  order  to  match  subdo-
+              (note  the  initial  dot)  in order to match subdo-
               mains.
 
        <i>net.work.addr.ess</i>
@@ -116,21 +122,21 @@ ACCESS(5)                                                            ACCESS(5)
 
        <i>net.work</i>
 
-       <i>net</i>    Matches  the specified IPv4 host address or subnet-
-              work. An IPv4 host address is a  sequence  of  four
+       <i>net</i>    Matches the specified IPv4 host address or  subnet-
+              work.  An  IPv4  host address is a sequence of four
               decimal octets separated by ".".
 
-              Subnetworks  are  matched  by repeatedly truncating
+              Subnetworks are matched  by  repeatedly  truncating
               the last ".octet" from the remote IPv4 host address
-              string  until a match is found in the access table,
+              string until a match is found in the access  table,
               or until further truncation is not possible.
 
               NOTE 1: The information in the access map should be
               in canonical form, with unnecessary null characters
-              eliminated.   Address  information  must   not   be
+              eliminated.    Address   information  must  not  be
               enclosed with "[]" characters.
 
-              NOTE  2:  use the <b>cidr</b> lookup table type to specify
+              NOTE 2: use the <b>cidr</b> lookup table type  to  specify
               network/netmask  patterns.  See  <a href="cidr_table.5.html"><b>cidr_table</b>(5)</a>  for
               details.
 
@@ -140,12 +146,12 @@ ACCESS(5)                                                            ACCESS(5)
 
        <i>net:work</i>
 
-       <i>net</i>    Matches  the specified IPv6 host address or subnet-
-              work. An IPv6 host address is a sequence  of  three
-              to  eight hexadecimal octet pairs separated by ":".
+       <i>net</i>    Matches the specified IPv6 host address or  subnet-
+              work.  An  IPv6 host address is a sequence of three
+              to eight hexadecimal octet pairs separated by  ":".
 
-              Subnetworks are matched  by  repeatedly  truncating
-              the  last  ":octetpair"  from  the remote IPv6 host
+              Subnetworks  are  matched  by repeatedly truncating
+              the last ":octetpair" from  the  remote  IPv6  host
               address string until a match is found in the access
               table, or until further truncation is not possible.
 
@@ -155,10 +161,10 @@ ACCESS(5)                                                            ACCESS(5)
 
               NOTE 2: The information in the access map should be
               in canonical form, with unnecessary null characters
-              eliminated.   Address  information  must   not   be
+              eliminated.    Address   information  must  not  be
               enclosed with "[]" characters.
 
-              NOTE  3:  use the <b>cidr</b> lookup table type to specify
+              NOTE 3: use the <b>cidr</b> lookup table type  to  specify
               network/netmask  patterns.  See  <a href="cidr_table.5.html"><b>cidr_table</b>(5)</a>  for
               details.
 
@@ -169,33 +175,33 @@ ACCESS(5)                                                            ACCESS(5)
 
        <i>all-numerical</i>
               An all-numerical result is treated as OK. This for-
-              mat  is generated by address-based relay authoriza-
+              mat is generated by address-based relay  authoriza-
               tion schemes such as pop-before-smtp.
 
 <b>REJECT ACTIONS</b>
-       Postfix version 2.3  and  later  support  enhanced  status
-       codes.   When no code is specified at the beginning of the
+       Postfix  version  2.3  and  later  support enhanced status
+       codes.  When no code is specified at the beginning of  the
        <i>text</i> below, Postfix inserts a default enhanced status code
-       of  "5.7.1"  in the case of reject actions, and "4.7.1" in
-       the case of defer actions.  See  "ENHANCED  STATUS  CODES"
+       of "5.7.1" in the case of reject actions, and  "4.7.1"  in
+       the  case  of  defer  actions. See "ENHANCED STATUS CODES"
        below.
 
        <b>4</b><i>NN text</i>
 
        <b>5</b><i>NN text</i>
-              Reject  the  address etc. that matches the pattern,
+              Reject the address etc. that matches  the  pattern,
               and respond with the numerical three-digit code and
-              text.  <b>4</b><i>NN</i> means "try again later", while <b>5</b><i>NN</i> means
+              text. <b>4</b><i>NN</i> means "try again later", while <b>5</b><i>NN</i>  means
               "do not try again".
 
        <b>REJECT</b> <i>optional text...</i>
-              Reject the address etc. that matches  the  pattern.
-              Reply  with  <i>$reject</i><b>_</b><i>code optional text...</i> when the
-              optional text is specified, otherwise reply with  a
+              Reject  the  address etc. that matches the pattern.
+              Reply with <i>$reject</i><b>_</b><i>code optional text...</i>  when  the
+              optional  text is specified, otherwise reply with a
               generic error response message.
 
        <b>DEFER_IF_REJECT</b> <i>optional text...</i>
-              Defer  the  request if some later restriction would
+              Defer the request if some later  restriction  would
               result in a REJECT action. Reply with "<b>450</b> <i>optional</i>
               <i>text...</i> when the optional text is specified, other-
               wise reply with a generic error response message.
@@ -203,10 +209,10 @@ ACCESS(5)                                                            ACCESS(5)
               This feature is available in Postfix 2.1 and later.
 
        <b>DEFER_IF_PERMIT</b> <i>optional text...</i>
-              Defer  the  request if some later restriction would
-              result in a an explicit or implicit PERMIT  action.
-              Reply  with "<b>450</b> <i>optional text...</i> when the optional
-              text is specified, otherwise reply with  a  generic
+              Defer the request if some later  restriction  would
+              result  in a an explicit or implicit PERMIT action.
+              Reply with "<b>450</b> <i>optional text...</i> when the  optional
+              text  is  specified, otherwise reply with a generic
               error response message.
 
               This feature is available in Postfix 2.1 and later.
@@ -217,161 +223,161 @@ ACCESS(5)                                                            ACCESS(5)
               <b><a href="postconf.5.html#reject_unauth_destination">reject_unauth_destination</a></b>, and so on).
 
        <b>DISCARD</b> <i>optional text...</i>
-              Claim  successful delivery and silently discard the
-              message.  Log the optional text if specified,  oth-
+              Claim successful delivery and silently discard  the
+              message.   Log the optional text if specified, oth-
               erwise log a generic message.
 
-              Note:  this action currently affects all recipients
-              of the message.   To  discard  only  one  recipient
-              without  discarding  the  entire  message,  use the
+              Note: this action currently affects all  recipients
+              of  the  message.   To  discard  only one recipient
+              without discarding  the  entire  message,  use  the
               <a href="transport.5.html">transport(5)</a> table to direct mail to the <a href="discard.8.html">discard(8)</a>
               service.
 
               This feature is available in Postfix 2.0 and later.
 
-       <b>DUNNO</b>  Pretend that the lookup key  was  not  found.  This
-              prevents  Postfix  from  trying  substrings  of the
-              lookup key (such as a subdomain name, or a  network
+       <b>DUNNO</b>  Pretend  that  the  lookup  key was not found. This
+              prevents Postfix  from  trying  substrings  of  the
+              lookup  key (such as a subdomain name, or a network
               address subnetwork).
 
               This feature is available in Postfix 2.0 and later.
 
        <b>FILTER</b> <i>transport:destination</i>
-              After the message is queued, send the  entire  mes-
+              After  the  message is queued, send the entire mes-
               sage through the specified external content filter.
-              The <i>transport:destination</i> syntax  is  described  in
-              the  <a href="transport.5.html"><b>transport</b>(5)</a>  manual  page.   More information
-              about external content filters is  in  the  Postfix
+              The  <i>transport:destination</i>  syntax  is described in
+              the <a href="transport.5.html"><b>transport</b>(5)</a>  manual  page.   More  information
+              about  external  content  filters is in the Postfix
               <a href="FILTER_README.html">FILTER_README</a> file.
 
-              Note:   this  action  overrides  the  <b>main.cf  <a href="postconf.5.html#content_filter">con</a>-</b>
+              Note:  this  action  overrides  the  <a href="postconf.5.html"><b>main.cf</a>   <a href="postconf.5.html#content_filter">con</a>-</b>
               <b><a href="postconf.5.html#content_filter">tent_filter</a></b>  setting,  and  currently  affects  all
               recipients of the message.
 
               This feature is available in Postfix 2.0 and later.
 
        <b>HOLD</b> <i>optional text...</i>
-              Place the message on the <b>hold</b> queue, where it  will
-              sit  until someone either deletes it or releases it
-              for delivery.  Log the optional text if  specified,
+              Place  the message on the <b>hold</b> queue, where it will
+              sit until someone either deletes it or releases  it
+              for  delivery.  Log the optional text if specified,
               otherwise log a generic message.
 
-              Mail  that  is  placed on hold can be examined with
-              the <a href="postcat.1.html"><b>postcat</b>(1)</a> command, and  can  be  destroyed  or
+              Mail that is placed on hold can  be  examined  with
+              the  <a href="postcat.1.html"><b>postcat</b>(1)</a>  command,  and  can be destroyed or
               released with the <a href="postsuper.1.html"><b>postsuper</b>(1)</a> command.
 
-              Note:  use  "<b>postsuper -r</b>" to release mail that was
-              kept on hold for a significant fraction  of  <b>$<a href="postconf.5.html#maximal_queue_lifetime">maxi</a>-</b>
+              Note: use "<b>postsuper -r</b>" to release mail  that  was
+              kept  on  hold for a significant fraction of <b>$<a href="postconf.5.html#maximal_queue_lifetime">maxi</a>-</b>
               <b><a href="postconf.5.html#maximal_queue_lifetime">mal_queue_lifetime</a></b>  or  <b>$<a href="postconf.5.html#bounce_queue_lifetime">bounce_queue_lifetime</a></b>,  or
               longer.
 
-              Note: this action currently affects all  recipients
+              Note:  this action currently affects all recipients
               of the message.
 
               This feature is available in Postfix 2.0 and later.
 
        <b>PREPEND</b> <i>headername: headervalue</i>
-              Prepend the specified message header  to  the  mes-
+              Prepend  the  specified  message header to the mes-
               sage.  When this action is used multiple times, the
-              first prepended header appears  before  the  second
+              first  prepended  header  appears before the second
               etc. prepended header.
 
-              Note:  this action does not support multi-line mes-
+              Note: this action does not support multi-line  mes-
               sage headers.
 
-              Note: this action must be used before  the  message
-              content   is   received;   it  cannot  be  used  in
+              Note:  this  action must be used before the message
+              content  is  received;  it  cannot   be   used   in
               <b><a href="postconf.5.html#smtpd_end_of_data_restrictions">smtpd_end_of_data_restrictions</a></b>.
 
               This feature is available in Postfix 2.1 and later.
 
        <b>REDIRECT</b> <i>user@domain</i>
-              After  the  message  is queued, send the message to
+              After the message is queued, send  the  message  to
               the  specified  address  instead  of  the  intended
               recipient(s).
 
-              Note:  this action overrides the FILTER action, and
+              Note: this action overrides the FILTER action,  and
               currently affects all recipients of the message.
 
               This feature is available in Postfix 2.1 and later.
 
        <b>WARN</b> <i>optional text...</i>
               Log a warning with the optional text, together with
-              client information and  if  available,  with  helo,
+              client  information  and  if  available, with helo,
               sender, recipient and protocol information.
 
               This feature is available in Postfix 2.1 and later.
 
 <b>ENHANCED STATUS CODES</b>
        When an enhanced status code is specified in an access ta-
-       ble,  it  is subject to modification. The following trans-
-       formations are needed when the same access table  is  used
-       for  client,  helo,  sender,  or recipient access restric-
-       tions; they happen regardless of whether  Postfix  replies
+       ble, it is subject to modification. The  following  trans-
+       formations  are  needed when the same access table is used
+       for client, helo, sender,  or  recipient  access  restric-
+       tions;  they  happen regardless of whether Postfix replies
        to a MAIL FROM, RCPT TO or other SMTP command.
 
-       <b>o</b>      When  a sender address matches a REJECT action, the
-              Postfix SMTP server will transform a recipient  DSN
-              status  (e.g.,  4.1.1-4.1.6) into the corresponding
+       <b>o</b>      When a sender address matches a REJECT action,  the
+              Postfix  SMTP server will transform a recipient DSN
+              status (e.g., 4.1.1-4.1.6) into  the  corresponding
               sender DSN status, and vice versa.
 
-       <b>o</b>      When  non-address  information  matches  a   REJECT
-              action  (such  as  the HELO command argument or the
-              client hostname/address), the Postfix  SMTP  server
-              will  transform  a  sender  or recipient DSN status
-              into  a  generic  non-address  DSN  status   (e.g.,
+       <b>o</b>      When   non-address  information  matches  a  REJECT
+              action (such as the HELO command  argument  or  the
+              client  hostname/address),  the Postfix SMTP server
+              will transform a sender  or  recipient  DSN  status
+              into   a  generic  non-address  DSN  status  (e.g.,
               4.0.0).
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        the table is given in the form of regular expressions. For
-       a  description  of regular expression lookup table syntax,
+       a description of regular expression lookup  table  syntax,
        see <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>.
 
-       Each pattern is a regular expression that  is  applied  to
+       Each  pattern  is  a regular expression that is applied to
        the entire string being looked up. Depending on the appli-
-       cation, that string  is  an  entire  client  hostname,  an
+       cation,  that  string  is  an  entire  client hostname, an
        entire client IP address, or an entire mail address. Thus,
        no  parent  domain  or  parent  network  search  is  done,
-       <i>user@domain</i>  mail  addresses  are not broken up into their
+       <i>user@domain</i> mail addresses are not broken  up  into  their
        <i>user@</i> and <i>domain</i> constituent parts, nor is <i>user+foo</i> broken
        up into <i>user</i> and <i>foo</i>.
 
-       Patterns  are applied in the order as specified in the ta-
-       ble, until a pattern is  found  that  matches  the  search
+       Patterns are applied in the order as specified in the  ta-
+       ble,  until  a  pattern  is  found that matches the search
        string.
 
-       Actions  are  the  same as with indexed file lookups, with
-       the additional feature that parenthesized substrings  from
+       Actions are the same as with indexed  file  lookups,  with
+       the  additional feature that parenthesized substrings from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
-       Each  lookup  operation uses the entire query string once.
-       Depending on the application, that  string  is  an  entire
+       Each lookup operation uses the entire query  string  once.
+       Depending  on  the  application,  that string is an entire
        client hostname, an entire client IP address, or an entire
-       mail address.  Thus, no parent domain  or  parent  network
-       search  is done, <i>user@domain</i> mail addresses are not broken
-       up into their <i>user@</i> and <i>domain</i> constituent parts,  nor  is
+       mail  address.   Thus,  no parent domain or parent network
+       search is done, <i>user@domain</i> mail addresses are not  broken
+       up  into  their <i>user@</i> and <i>domain</i> constituent parts, nor is
        <i>user+foo</i> broken up into <i>user</i> and <i>foo</i>.
 
        Actions are the same as with indexed file lookups.
 
 <b>EXAMPLE</b>
-       The  following  example  uses an indexed file, so that the
-       order of table entries does not matter. The  example  per-
-       mits  access  by the client at address 1.2.3.4 but rejects
-       all other clients in 1.2.3.0/24. Instead  of  <b>hash</b>  lookup
-       tables,  some  systems use <b>dbm</b>.  Use the command "<b>postconf</b>
-       <b>-m</b>" to find out what lookup  tables  Postfix  supports  on
+       The following example uses an indexed file,  so  that  the
+       order  of  table entries does not matter. The example per-
+       mits access by the client at address 1.2.3.4  but  rejects
+       all  other  clients  in 1.2.3.0/24. Instead of <b>hash</b> lookup
+       tables, some systems use <b>dbm</b>.  Use the  command  "<b>postconf</b>
+       <b>-m</b>"  to  find  out  what lookup tables Postfix supports on
        your system.
 
-       /etc/postfix/main.cf:
+       /etc/postfix/<a href="postconf.5.html">main.cf</a>:
            <a href="postconf.5.html#smtpd_client_restrictions">smtpd_client_restrictions</a> =
                <a href="postconf.5.html#check_client_access">check_client_access</a> hash:/etc/postfix/access
 
@@ -383,7 +389,7 @@ ACCESS(5)                                                            ACCESS(5)
        editing the file.
 
 <b>BUGS</b>
-       The  table format does not understand quoting conventions.
+       The table format does not understand quoting  conventions.
 
 <b>SEE ALSO</b>
        <a href="postmap.1.html">postmap(1)</a>, Postfix lookup table manager
@@ -396,7 +402,7 @@ ACCESS(5)                                                            ACCESS(5)
        <a href="DATABASE_README.html">DATABASE_README</a>, Postfix lookup table overview
 
 <b>LICENSE</b>
-       The  Secure  Mailer  license must be distributed with this
+       The Secure Mailer license must be  distributed  with  this
        software.
 
 <b>AUTHOR(S)</b>
index 708f24edc6e1c7916c0a4d8d3a08f5d867a0ae5b..ab5cae5bd62919190cb07ee8381045f99689e7b1 100644 (file)
@@ -107,66 +107,70 @@ ALIASES(5)                                                          ALIASES(5)
        whether an unmatched address extension  (<i>+foo</i>)  is  propa-
        gated to the result of table lookup.
 
+<b>CASE FOLDING</b>
+       The <a href="local.8.html">local(8)</a> delivery agent always folds the search string
+       to lowercase before database lookup.
+
 <b>SECURITY</b>
-       The  <a href="local.8.html"><b>local</b>(8)</a>  delivery agent disallows regular expression
-       substitution of $1 etc. in <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>, because that  would
+       The <a href="local.8.html"><b>local</b>(8)</a> delivery agent disallows  regular  expression
+       substitution  of $1 etc. in <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>, because that would
        open a security hole.
 
-       The  <a href="local.8.html"><b>local</b>(8)</a> delivery agent will silently ignore requests
-       to use the <a href="proxymap.8.html"><b>proxymap</b>(8)</a> server within  <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>.  Instead
-       it  will  open the table directly.  Before Postfix version
-       2.2, the <a href="local.8.html"><b>local</b>(8)</a> delivery agent  will  terminate  with  a
+       The <a href="local.8.html"><b>local</b>(8)</a> delivery agent will silently ignore  requests
+       to  use  the <a href="proxymap.8.html"><b>proxymap</b>(8)</a> server within <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>. Instead
+       it will open the table directly.  Before  Postfix  version
+       2.2,  the  <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent will terminate with a
        fatal error.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The  following <b>main.cf</b> parameters are especially relevant.
-       The text below provides  only  a  parameter  summary.  See
+       The following <a href="postconf.5.html"><b>main.cf</b></a> parameters are especially  relevant.
+       The  text  below  provides  only  a parameter summary. See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
        <b><a href="postconf.5.html#alias_database">alias_database</a></b>
-              List  of  alias  databases  that are updated by the
+              List of alias databases that  are  updated  by  the
               <a href="newaliases.1.html"><b>newaliases</b>(1)</a> command.
 
        <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>
-              List of alias databases  queried  by  the  <a href="local.8.html"><b>local</b>(8)</a>
+              List  of  alias  databases  queried by the <a href="local.8.html"><b>local</b>(8)</a>
               delivery agent.
 
        <b><a href="postconf.5.html#allow_mail_to_commands">allow_mail_to_commands</a></b>
-              Restrict  the  usage  of  mail delivery to external
+              Restrict the usage of  mail  delivery  to  external
               command.
 
        <b><a href="postconf.5.html#allow_mail_to_files">allow_mail_to_files</a></b>
-              Restrict the usage of  mail  delivery  to  external
+              Restrict  the  usage  of  mail delivery to external
               file.
 
        <b><a href="postconf.5.html#expand_owner_alias">expand_owner_alias</a></b>
               When delivering to an alias that has an <b>owner-</b> com-
-              panion alias, set the envelope  sender  address  to
-              the  right-hand  side  of  the owner alias, instead
+              panion  alias,  set  the envelope sender address to
+              the right-hand side of  the  owner  alias,  instead
               using of the left-hand side address.
 
        <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>
-              A list of address rewriting  or  forwarding  mecha-
-              nisms  that propagate an address extension from the
-              original address to the  result.  Specify  zero  or
-              more   of   <b>canonical</b>,   <b>virtual</b>,  <b>alias</b>,  <b>forward</b>,
+              A  list  of  address rewriting or forwarding mecha-
+              nisms that propagate an address extension from  the
+              original  address  to  the  result. Specify zero or
+              more  of  <b>canonical</b>,   <b>virtual</b>,   <b>alias</b>,   <b>forward</b>,
               <b>include</b>, or <b>generic</b>.
 
        <b><a href="postconf.5.html#owner_request_special">owner_request_special</a></b>
-              Give special treatment to <b>owner-</b><i>listname</i> and  <i>list-</i>
+              Give  special treatment to <b>owner-</b><i>listname</i> and <i>list-</i>
               <i>name</i><b>-request</b> addresses.
 
        <b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a></b>
-              Delimiter  that  separates  recipients from address
+              Delimiter that separates  recipients  from  address
               extensions.
 
        Available in Postfix version 2.3 and later:
 
        <b><a href="postconf.5.html#frozen_delivered_to">frozen_delivered_to</a></b>
-              Update the <a href="local.8.html">local(8)</a> delivery agent's  Delivered-To:
-              address  (see  <a href="postconf.5.html#prepend_delivered_header">prepend_delivered_header</a>) only once,
-              at the start of  a  delivery;  do  not  update  the
-              Delivered-To:  address  while  expanding aliases or
+              Update  the <a href="local.8.html">local(8)</a> delivery agent's Delivered-To:
+              address (see <a href="postconf.5.html#prepend_delivered_header">prepend_delivered_header</a>)  only  once,
+              at  the  start  of  a  delivery;  do not update the
+              Delivered-To: address while  expanding  aliases  or
               .forward files.
 
 <b>STANDARDS</b>
@@ -182,7 +186,7 @@ ALIASES(5)                                                          ALIASES(5)
        <a href="DATABASE_README.html">DATABASE_README</a>, Postfix lookup table overview
 
 <b>LICENSE</b>
-       The  Secure  Mailer  license must be distributed with this
+       The Secure Mailer license must be  distributed  with  this
        software.
 
 <b>AUTHOR(S)</b>
index e7cf78a7a463579c158f6533993b09588d334572..fbcfc5e66a5f9f19bb23180f14c900ef83198bb6 100644 (file)
@@ -65,44 +65,50 @@ CANONICAL(5)                                                      CANONICAL(5)
        The <a href="canonical.5.html"><b>canonical</b>(5)</a> mapping is not to be confused with  local
        aliasing.  Use the <a href="aliases.5.html"><b>aliases</b>(5)</a> map for that purpose.
 
+<b>CASE FOLDING</b>
+       The  search  string is folded to lowercase before database
+       lookup. As of Postfix 2.3, the search string is  not  case
+       folded  with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>: whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
        <i>pattern result</i>
-              When <i>pattern</i> matches a mail address, replace it  by
+              When  <i>pattern</i> matches a mail address, replace it by
               the corresponding <i>result</i>.
 
        blank lines and comments
-              Empty  lines and whitespace-only lines are ignored,
-              as are lines whose first  non-whitespace  character
+              Empty lines and whitespace-only lines are  ignored,
+              as  are  lines whose first non-whitespace character
               is a `#'.
 
        multi-line text
-              A  logical  line starts with non-whitespace text. A
-              line that starts with whitespace continues a  logi-
+              A logical line starts with non-whitespace  text.  A
+              line  that starts with whitespace continues a logi-
               cal line.
 
 <b>TABLE SEARCH ORDER</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked tables such as NIS, LDAP or  SQL,  patterns  are
+       networked  tables  such  as NIS, LDAP or SQL, patterns are
        tried in the order as listed below:
 
        <i>user</i>@<i>domain address</i>
-              Replace  <i>user</i>@<i>domain</i>  by <i>address</i>. This form has the
+              Replace <i>user</i>@<i>domain</i> by <i>address</i>. This form  has  the
               highest precedence.
 
-              This is useful to clean up  addresses  produced  by
-              legacy  mail  systems.  It can also be used to pro-
-              duce <i>Firstname.Lastname</i> style  addresses,  but  see
+              This  is  useful  to clean up addresses produced by
+              legacy mail systems.  It can also be used  to  pro-
+              duce  <i>Firstname.Lastname</i>  style  addresses, but see
               below for a simpler solution.
 
        <i>user address</i>
-              Replace  <i>user</i>@<i>site</i> by <i>address</i> when <i>site</i> is equal to
-              $<b><a href="postconf.5.html#myorigin">myorigin</a></b>, when <i>site</i> is listed  in  $<b><a href="postconf.5.html#mydestination">mydestination</a></b>,
-              or   when  it  is  listed  in  $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>  or
+              Replace <i>user</i>@<i>site</i> by <i>address</i> when <i>site</i> is equal  to
+              $<b><a href="postconf.5.html#myorigin">myorigin</a></b>,  when  <i>site</i> is listed in $<b><a href="postconf.5.html#mydestination">mydestination</a></b>,
+              or  when  it  is  listed  in  $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>   or
               $<b><a href="postconf.5.html#proxy_interfaces">proxy_interfaces</a></b>.
 
-              This form is useful for replacing  login  names  by
+              This  form  is  useful for replacing login names by
               <i>Firstname.Lastname</i>.
 
        @<i>domain address</i>
@@ -112,10 +118,10 @@ CANONICAL(5)                                                      CANONICAL(5)
 <b>RESULT ADDRESS REWRITING</b>
        The lookup result is subject to address rewriting:
 
-       <b>o</b>      When the result  has  the  form  @<i>otherdomain</i>,  the
+       <b>o</b>      When  the  result  has  the  form @<i>otherdomain</i>, the
               result becomes the same <i>user</i> in <i>otherdomain</i>.
 
-       <b>o</b>      When  "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
+       <b>o</b>      When "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append  "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
               to addresses without "@domain".
 
        <b>o</b>      When "<b><a href="postconf.5.html#append_dot_mydomain">append_dot_mydomain</a>=yes</b>", append "<b>.$<a href="postconf.5.html#mydomain">mydomain</a></b>"
@@ -123,58 +129,58 @@ CANONICAL(5)                                                      CANONICAL(5)
 
 <b>ADDRESS EXTENSION</b>
        When a mail address localpart contains the optional recip-
-       ient delimiter (e.g., <i>user+foo</i>@<i>domain</i>), the  lookup  order
+       ient  delimiter  (e.g., <i>user+foo</i>@<i>domain</i>), the lookup order
        becomes: <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>user+foo</i>, <i>user</i>, and
        @<i>domain</i>.
 
-       The  <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter   controls
-       whether  an  unmatched  address extension (<i>+foo</i>) is propa-
+       The   <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter  controls
+       whether an unmatched address extension  (<i>+foo</i>)  is  propa-
        gated to the result of table lookup.
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This section describes how the table lookups  change  when
+       This  section  describes how the table lookups change when
        the table is given in the form of regular expressions. For
-       a description of regular expression lookup  table  syntax,
+       a  description  of regular expression lookup table syntax,
        see <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>.
 
-       Each  pattern  is  a regular expression that is applied to
+       Each pattern is a regular expression that  is  applied  to
        the entire address being looked up. Thus, <i>user@domain</i> mail
-       addresses  are  not  broken up into their <i>user</i> and <i>@domain</i>
+       addresses are not broken up into their  <i>user</i>  and  <i>@domain</i>
        constituent parts, nor is <i>user+foo</i> broken up into <i>user</i> and
        <i>foo</i>.
 
-       Patterns  are applied in the order as specified in the ta-
-       ble, until a pattern is  found  that  matches  the  search
+       Patterns are applied in the order as specified in the  ta-
+       ble,  until  a  pattern  is  found that matches the search
        string.
 
-       Results  are  the  same as with indexed file lookups, with
-       the additional feature that parenthesized substrings  from
+       Results are the same as with indexed  file  lookups,  with
+       the  additional feature that parenthesized substrings from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
        Each lookup operation uses the entire address once.  Thus,
-       <i>user@domain</i> mail addresses are not broken  up  into  their
+       <i>user@domain</i>  mail  addresses  are not broken up into their
        <i>user</i> and <i>@domain</i> constituent parts, nor is <i>user+foo</i> broken
        up into <i>user</i> and <i>foo</i>.
 
        Results are the same as with indexed file lookups.
 
 <b>BUGS</b>
-       The table format does not understand quoting  conventions.
+       The  table format does not understand quoting conventions.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The  following <b>main.cf</b> parameters are especially relevant.
-       The text below provides  only  a  parameter  summary.  See
+       The following <a href="postconf.5.html"><b>main.cf</b></a> parameters are especially  relevant.
+       The  text  below  provides  only  a parameter summary. See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
        <b><a href="postconf.5.html#canonical_classes">canonical_classes</a></b>
-              What  addresses  are  subject  to canonical address
+              What addresses are  subject  to  canonical  address
               mapping.
 
        <b><a href="postconf.5.html#canonical_maps">canonical_maps</a></b>
@@ -189,26 +195,26 @@ CANONICAL(5)                                                      CANONICAL(5)
               header sender addresses.
 
        <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>
-              A list of address rewriting  or  forwarding  mecha-
-              nisms  that propagate an address extension from the
-              original address to the result.   Specify  zero  or
-              more   of   <b>canonical</b>,   <b>virtual</b>,  <b>alias</b>,  <b>forward</b>,
+              A  list  of  address rewriting or forwarding mecha-
+              nisms that propagate an address extension from  the
+              original  address  to  the result.  Specify zero or
+              more  of  <b>canonical</b>,   <b>virtual</b>,   <b>alias</b>,   <b>forward</b>,
               <b>include</b>, or <b>generic</b>.
 
        Other parameters of interest:
 
        <b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
-              The network interface addresses  that  this  system
+              The  network  interface  addresses that this system
               receives mail on.  You need to stop and start Post-
               fix when this parameter changes.
 
        <b><a href="postconf.5.html#local_header_rewrite_clients">local_header_rewrite_clients</a></b>
               Rewrite message header addresses in mail from these
-              clients  and  update  incomplete addresses with the
+              clients and update incomplete  addresses  with  the
               domain name in $<a href="postconf.5.html#myorigin">myorigin</a> or $<a href="postconf.5.html#mydomain">mydomain</a>; either don't
-              rewrite  message headers from other clients at all,
-              or rewrite message headers  and  update  incomplete
-              addresses   with   the   domain  specified  in  the
+              rewrite message headers from other clients at  all,
+              or  rewrite  message  headers and update incomplete
+              addresses  with  the  domain   specified   in   the
               <a href="postconf.5.html#remote_header_rewrite_domain">remote_header_rewrite_domain</a> parameter.
 
        <b><a href="postconf.5.html#proxy_interfaces">proxy_interfaces</a></b>
@@ -217,20 +223,20 @@ CANONICAL(5)                                                      CANONICAL(5)
               tor.
 
        <b><a href="postconf.5.html#masquerade_classes">masquerade_classes</a></b>
-              List of address classes  subject  to  masquerading:
-              zero  or  more of <b>envelope_sender</b>, <b>envelope_recipi-</b>
+              List  of  address  classes subject to masquerading:
+              zero or more of  <b>envelope_sender</b>,  <b>envelope_recipi-</b>
               <b>ent</b>, <b>header_sender</b>, <b>header_recipient</b>.
 
        <b><a href="postconf.5.html#masquerade_domains">masquerade_domains</a></b>
-              List of domains that hide  their  subdomain  struc-
+              List  of  domains  that hide their subdomain struc-
               ture.
 
        <b><a href="postconf.5.html#masquerade_exceptions">masquerade_exceptions</a></b>
-              List  of user names that are not subject to address
+              List of user names that are not subject to  address
               masquerading.
 
        <b><a href="postconf.5.html#mydestination">mydestination</a></b>
-              List of domains that  this  mail  system  considers
+              List  of  domains  that  this mail system considers
               local.
 
        <b><a href="postconf.5.html#myorigin">myorigin</a></b>
@@ -241,9 +247,9 @@ CANONICAL(5)                                                      CANONICAL(5)
               addresses.
 
        <b><a href="postconf.5.html#remote_header_rewrite_domain">remote_header_rewrite_domain</a></b>
-              Don't  rewrite  message headers from remote clients
+              Don't rewrite message headers from  remote  clients
               at all when this parameter is empty; otherwise, re-
-              write  message  headers  and  append  the specified
+              write message  headers  and  append  the  specified
               domain name to incomplete addresses.
 
 <b>SEE ALSO</b>
@@ -257,7 +263,7 @@ CANONICAL(5)                                                      CANONICAL(5)
        <a href="ADDRESS_REWRITING_README.html">ADDRESS_REWRITING_README</a>, address rewriting guide
 
 <b>LICENSE</b>
-       The  Secure  Mailer  license must be distributed with this
+       The Secure Mailer license must be  distributed  with  this
        software.
 
 <b>AUTHOR(S)</b>
index f5aaa43cb667ec914a872050eff514cee9dd12ab..8ff79b1bbf0d850a32d5642e7a169570bea3ddbe 100644 (file)
@@ -53,36 +53,42 @@ GENERIC(5)                                                          GENERIC(5)
        way as described below under "REGULAR  EXPRESSION  TABLES"
        and "TCP-BASED TABLES".
 
+<b>CASE FOLDING</b>
+       The  search  string is folded to lowercase before database
+       lookup. As of Postfix 2.3, the search string is  not  case
+       folded  with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>: whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
        <i>pattern result</i>
-              When <i>pattern</i> matches a mail address, replace it  by
+              When  <i>pattern</i> matches a mail address, replace it by
               the corresponding <i>result</i>.
 
        blank lines and comments
-              Empty  lines and whitespace-only lines are ignored,
-              as are lines whose first  non-whitespace  character
+              Empty lines and whitespace-only lines are  ignored,
+              as  are  lines whose first non-whitespace character
               is a `#'.
 
        multi-line text
-              A  logical  line starts with non-whitespace text. A
-              line that starts with whitespace continues a  logi-
+              A logical line starts with non-whitespace  text.  A
+              line  that starts with whitespace continues a logi-
               cal line.
 
 <b>TABLE SEARCH ORDER</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked tables such as NIS, LDAP or  SQL,  patterns  are
+       networked  tables  such  as NIS, LDAP or SQL, patterns are
        tried in the order as listed below:
 
        <i>user</i>@<i>domain address</i>
-              Replace  <i>user</i>@<i>domain</i>  by <i>address</i>. This form has the
+              Replace <i>user</i>@<i>domain</i> by <i>address</i>. This form  has  the
               highest precedence.
 
        <i>user address</i>
-              Replace <i>user</i>@<i>site</i> by <i>address</i> when <i>site</i> is equal  to
-              $<b><a href="postconf.5.html#myorigin">myorigin</a></b>,  when  <i>site</i> is listed in $<b><a href="postconf.5.html#mydestination">mydestination</a></b>,
-              or  when  it  is  listed  in  $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>   or
+              Replace  <i>user</i>@<i>site</i> by <i>address</i> when <i>site</i> is equal to
+              $<b><a href="postconf.5.html#myorigin">myorigin</a></b>, when <i>site</i> is listed  in  $<b><a href="postconf.5.html#mydestination">mydestination</a></b>,
+              or   when  it  is  listed  in  $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>  or
               $<b><a href="postconf.5.html#proxy_interfaces">proxy_interfaces</a></b>.
 
        @<i>domain address</i>
@@ -92,10 +98,10 @@ GENERIC(5)                                                          GENERIC(5)
 <b>RESULT ADDRESS REWRITING</b>
        The lookup result is subject to address rewriting:
 
-       <b>o</b>      When the result  has  the  form  @<i>otherdomain</i>,  the
+       <b>o</b>      When  the  result  has  the  form @<i>otherdomain</i>, the
               result becomes the same <i>user</i> in <i>otherdomain</i>.
 
-       <b>o</b>      When  "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
+       <b>o</b>      When "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append  "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
               to addresses without "@domain".
 
        <b>o</b>      When "<b><a href="postconf.5.html#append_dot_mydomain">append_dot_mydomain</a>=yes</b>", append "<b>.$<a href="postconf.5.html#mydomain">mydomain</a></b>"
@@ -103,58 +109,58 @@ GENERIC(5)                                                          GENERIC(5)
 
 <b>ADDRESS EXTENSION</b>
        When a mail address localpart contains the optional recip-
-       ient delimiter (e.g., <i>user+foo</i>@<i>domain</i>), the  lookup  order
+       ient  delimiter  (e.g., <i>user+foo</i>@<i>domain</i>), the lookup order
        becomes: <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>user+foo</i>, <i>user</i>, and
        @<i>domain</i>.
 
-       The  <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter   controls
-       whether  an  unmatched  address extension (<i>+foo</i>) is propa-
+       The   <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter  controls
+       whether an unmatched address extension  (<i>+foo</i>)  is  propa-
        gated to the result of table lookup.
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This section describes how the table lookups  change  when
+       This  section  describes how the table lookups change when
        the table is given in the form of regular expressions. For
-       a description of regular expression lookup  table  syntax,
+       a  description  of regular expression lookup table syntax,
        see <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>.
 
-       Each  pattern  is  a regular expression that is applied to
+       Each pattern is a regular expression that  is  applied  to
        the entire address being looked up. Thus, <i>user@domain</i> mail
-       addresses  are  not  broken up into their <i>user</i> and <i>@domain</i>
+       addresses are not broken up into their  <i>user</i>  and  <i>@domain</i>
        constituent parts, nor is <i>user+foo</i> broken up into <i>user</i> and
        <i>foo</i>.
 
-       Patterns  are applied in the order as specified in the ta-
-       ble, until a pattern is  found  that  matches  the  search
+       Patterns are applied in the order as specified in the  ta-
+       ble,  until  a  pattern  is  found that matches the search
        string.
 
-       Results  are  the  same as with indexed file lookups, with
-       the additional feature that parenthesized substrings  from
+       Results are the same as with indexed  file  lookups,  with
+       the  additional feature that parenthesized substrings from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
        Each lookup operation uses the entire address once.  Thus,
-       <i>user@domain</i> mail addresses are not broken  up  into  their
+       <i>user@domain</i>  mail  addresses  are not broken up into their
        <i>user</i> and <i>@domain</i> constituent parts, nor is <i>user+foo</i> broken
        up into <i>user</i> and <i>foo</i>.
 
        Results are the same as with indexed file lookups.
 
 <b>EXAMPLE</b>
-       The following shows a  generic  mapping  with  an  indexed
-       file.   When  mail is sent to a remote host via SMTP, this
-       replaces <i>his@localdomain.local</i> by his  ISP  mail  address,
-       replaces  <i>her@localdomain.local</i>  by  her ISP mail address,
-       and replaces other local addresses  by  his  ISP  account,
-       with  an address extension of <i>+local</i> (this example assumes
+       The  following  shows  a  generic  mapping with an indexed
+       file.  When mail is sent to a remote host via  SMTP,  this
+       replaces  <i>his@localdomain.local</i>  by  his ISP mail address,
+       replaces <i>her@localdomain.local</i> by her  ISP  mail  address,
+       and  replaces  other  local  addresses by his ISP account,
+       with an address extension of <i>+local</i> (this example  assumes
        that the ISP supports "+" style address extensions).
 
-       /etc/postfix/main.cf:
+       /etc/postfix/<a href="postconf.5.html">main.cf</a>:
                <a href="postconf.5.html#smtp_generic_maps">smtp_generic_maps</a> = hash:/etc/postfix/generic
 
        /etc/postfix/generic:
@@ -162,35 +168,35 @@ GENERIC(5)                                                          GENERIC(5)
                her@localdomain.local   heraccount@herisp.example
                @localdomain.local      hisaccount+local@hisisp.example
 
-       Execute the command "<b>postmap  /etc/postfix/generic</b>"  when-
-       ever  the table is changed.  Instead of <b>hash</b>, some systems
-       use <b>dbm</b> database files. To find out what tables your  sys-
+       Execute  the  command "<b>postmap /etc/postfix/generic</b>" when-
+       ever the table is changed.  Instead of <b>hash</b>, some  systems
+       use  <b>dbm</b> database files. To find out what tables your sys-
        tem supports use the command "<b>postconf -m</b>".
 
 <b>BUGS</b>
-       The  table format does not understand quoting conventions.
+       The table format does not understand quoting  conventions.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The following <b>main.cf</b> parameters are especially  relevant.
-       The  text  below  provides  only  a parameter summary. See
+       The  following <a href="postconf.5.html"><b>main.cf</b></a> parameters are especially relevant.
+       The text below provides  only  a  parameter  summary.  See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
        <b><a href="postconf.5.html#smtp_generic_maps">smtp_generic_maps</a></b>
               Address  mapping  lookup  table  for  envelope  and
-              header  sender and recipient addresses while deliv-
+              header sender and recipient addresses while  deliv-
               ering mail via SMTP.
 
        <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>
-              A list of address rewriting  or  forwarding  mecha-
-              nisms  that propagate an address extension from the
-              original address to the result.   Specify  zero  or
-              more   of   <b>canonical</b>,   <b>virtual</b>,  <b>alias</b>,  <b>forward</b>,
+              A  list  of  address rewriting or forwarding mecha-
+              nisms that propagate an address extension from  the
+              original  address  to  the result.  Specify zero or
+              more  of  <b>canonical</b>,   <b>virtual</b>,   <b>alias</b>,   <b>forward</b>,
               <b>include</b>, or <b>generic</b>.
 
        Other parameters of interest:
 
        <b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
-              The network interface addresses  that  this  system
+              The  network  interface  addresses that this system
               receives mail on.  You need to stop and start Post-
               fix when this parameter changes.
 
@@ -200,7 +206,7 @@ GENERIC(5)                                                          GENERIC(5)
               tor.
 
        <b><a href="postconf.5.html#mydestination">mydestination</a></b>
-              List of domains that  this  mail  system  considers
+              List  of  domains  that  this mail system considers
               local.
 
        <b><a href="postconf.5.html#myorigin">myorigin</a></b>
@@ -221,7 +227,7 @@ GENERIC(5)                                                          GENERIC(5)
        <a href="STANDARD_CONFIGURATION_README.html">STANDARD_CONFIGURATION_README</a>, configuration examples
 
 <b>LICENSE</b>
-       The Secure Mailer license must be  distributed  with  this
+       The  Secure  Mailer  license must be distributed with this
        software.
 
 <b>HISTORY</b>
index 3fca90874d2200e50bdc76614a16f6c758da5648..7b7526787bc58d1b2e62f487720708df87679ed6 100644 (file)
@@ -26,165 +26,171 @@ LOCAL(8)                                                              LOCAL(8)
        status  reports  are  sent  to  the <a href="bounce.8.html"><b>bounce</b>(8)</a>, <a href="defer.8.html"><b>defer</b>(8)</a> or
        <a href="trace.8.html"><b>trace</b>(8)</a> daemon as appropriate.
 
+<b>CASE FOLDING</b>
+       All delivery decisions are made using the  bare  recipient
+       name  (i.e.  the address localpart), folded to lower case.
+       See also under ADDRESS EXTENSION below for  a  few  excep-
+       tions.
+
 <b>SYSTEM-WIDE AND USER-LEVEL ALIASING</b>
-       The system administrator can set up one  or  more  system-
+       The  system  administrator  can set up one or more system-
        wide <b>sendmail</b>-style alias databases.  Users can have <b>send-</b>
-       <b>mail</b>-style ~/.<b>forward</b> files.  Mail for <i>name</i>  is  delivered
-       to  the  alias <i>name</i>, to destinations in ~<i>name</i>/.<b>forward</b>, to
-       the mailbox owned by the user <i>name</i>, or it is sent back  as
+       <b>mail</b>-style  ~/.<b>forward</b>  files.  Mail for <i>name</i> is delivered
+       to the alias <i>name</i>, to destinations in  ~<i>name</i>/.<b>forward</b>,  to
+       the  mailbox owned by the user <i>name</i>, or it is sent back as
        undeliverable.
 
-       The  system  administrator can specify a comma/space sepa-
-       rated list of  ~/.<b>forward</b>  like  files  through  the  <b><a href="postconf.5.html#forward_path">for</a>-</b>
+       The system administrator can specify a  comma/space  sepa-
+       rated  list  of  ~/.<b>forward</b>  like  files  through the <b><a href="postconf.5.html#forward_path">for</a>-</b>
        <b><a href="postconf.5.html#forward_path">ward_path</a></b>  configuration  parameter.  Upon  delivery,  the
        local delivery agent tries each pathname in the list until
        a file is found.
 
        Delivery via ~/.<b>.forward</b> files is done with the privileges
-       of the recipient.  Thus, ~/.<b>forward</b>  like  files  must  be
-       readable  by  the  recipient,  and  their parent directory
+       of  the  recipient.   Thus,  ~/.<b>forward</b> like files must be
+       readable by the  recipient,  and  their  parent  directory
        needs to have "execute" permission for the recipient.
 
-       The <b><a href="postconf.5.html#forward_path">forward_path</a></b> parameter is subject to interpolation  of
-       <b>$user</b>  (recipient  username), <b>$home</b> (recipient home direc-
+       The  <b><a href="postconf.5.html#forward_path">forward_path</a></b> parameter is subject to interpolation of
+       <b>$user</b> (recipient username), <b>$home</b> (recipient  home  direc-
        tory),  <b>$shell</b>  (recipient  shell),  <b>$recipient</b>  (complete
-       recipient  address),  <b>$extension</b> (recipient address exten-
-       sion), <b>$domain</b> (recipient domain), <b>$local</b> (entire  recipi-
+       recipient address), <b>$extension</b> (recipient  address  exten-
+       sion),  <b>$domain</b> (recipient domain), <b>$local</b> (entire recipi-
        ent address localpart) and <b>$<a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a>.</b> The forms
-       <i>${name?value}</i> and <i>${name:value}</i>  expand  conditionally  to
+       <i>${name?value}</i>  and  <i>${name:value}</i>  expand conditionally to
        <i>value</i> when <i>$name</i> is (is not) defined.  Characters that may
-       have special meaning to  the  shell  or  file  system  are
-       replaced  by  underscores.  The list of acceptable charac-
-       ters is specified with the  <b><a href="postconf.5.html#forward_expansion_filter">forward_expansion_filter</a></b>  con-
+       have  special  meaning  to  the  shell  or file system are
+       replaced by underscores.  The list of  acceptable  charac-
+       ters  is  specified with the <b><a href="postconf.5.html#forward_expansion_filter">forward_expansion_filter</a></b> con-
        figuration parameter.
 
-       An  alias  or  ~/.<b>forward</b> file may list any combination of
-       external  commands,  destination  file  names,   <b>:include:</b>
-       directives,  or mail addresses.  See <a href="aliases.5.html"><b>aliases</b>(5)</a> for a pre-
-       cise description. Each line in a user's .<b>forward</b> file  has
+       An alias or ~/.<b>forward</b> file may list  any  combination  of
+       external   commands,  destination  file  names,  <b>:include:</b>
+       directives, or mail addresses.  See <a href="aliases.5.html"><b>aliases</b>(5)</a> for a  pre-
+       cise  description. Each line in a user's .<b>forward</b> file has
        the same syntax as the right-hand part of an alias.
 
-       When  an  address  is  found  in  its own alias expansion,
-       delivery is made to the  user  instead.  When  a  user  is
+       When an address is  found  in  its  own  alias  expansion,
+       delivery  is  made  to  the  user  instead. When a user is
        listed in the user's own ~/.<b>forward</b> file, delivery is made
-       to the user's mailbox instead.  An empty  ~/.<b>forward</b>  file
+       to  the  user's mailbox instead.  An empty ~/.<b>forward</b> file
        means do not forward mail.
 
-       In  order  to prevent the mail system from using up unrea-
-       sonable  amounts  of  memory,  input  records  read   from
-       <b>:include:</b>  or  from  ~/.<b>forward</b>  files  are broken up into
+       In order to prevent the mail system from using  up  unrea-
+       sonable   amounts  of  memory,  input  records  read  from
+       <b>:include:</b> or from ~/.<b>forward</b>  files  are  broken  up  into
        chunks of length <b><a href="postconf.5.html#line_length_limit">line_length_limit</a></b>.
 
-       While expanding aliases, ~/.<b>forward</b> files, and so on,  the
+       While  expanding aliases, ~/.<b>forward</b> files, and so on, the
        program attempts to avoid duplicate deliveries. The <b><a href="postconf.5.html#duplicate_filter_limit">dupli</a>-</b>
-       <b><a href="postconf.5.html#duplicate_filter_limit">cate_filter_limit</a></b> configuration parameter limits the  num-
+       <b><a href="postconf.5.html#duplicate_filter_limit">cate_filter_limit</a></b>  configuration parameter limits the num-
        ber of remembered recipients.
 
 <b>MAIL FORWARDING</b>
-       For  the sake of reliability, forwarded mail is re-submit-
-       ted as a new message, so that each recipient has  a  sepa-
+       For the sake of reliability, forwarded mail is  re-submit-
+       ted  as  a new message, so that each recipient has a sepa-
        rate on-file delivery status record.
 
        In order to stop mail forwarding loops early, the software
        adds an optional <b>Delivered-To:</b> header with the final enve-
-       lope  recipient  address.  If mail arrives for a recipient
+       lope recipient address. If mail arrives  for  a  recipient
        that is already listed in a <b>Delivered-To:</b> header, the mes-
        sage is bounced.
 
 <b>MAILBOX DELIVERY</b>
-       The  default  per-user  mailbox is a file in the UNIX mail
-       spool directory (<b>/var/mail/</b><i>user</i> or  <b>/var/spool/mail/</b><i>user</i>);
-       the  location  can be specified with the <b><a href="postconf.5.html#mail_spool_directory">mail_spool_direc</a>-</b>
-       <b><a href="postconf.5.html#mail_spool_directory">tory</a></b> configuration parameter. Specify a name ending  in  <b>/</b>
+       The default per-user mailbox is a file in  the  UNIX  mail
+       spool  directory (<b>/var/mail/</b><i>user</i> or <b>/var/spool/mail/</b><i>user</i>);
+       the location can be specified with  the  <b><a href="postconf.5.html#mail_spool_directory">mail_spool_direc</a>-</b>
+       <b><a href="postconf.5.html#mail_spool_directory">tory</a></b>  configuration  parameter. Specify a name ending in <b>/</b>
        for <b>qmail</b>-compatible <b>maildir</b> delivery.
 
-       Alternatively,  the  per-user mailbox can be a file in the
-       user's home  directory  with  a  name  specified  via  the
-       <b><a href="postconf.5.html#home_mailbox">home_mailbox</a></b>  configuration  parameter. Specify a relative
+       Alternatively, the per-user mailbox can be a file  in  the
+       user's  home  directory  with  a  name  specified  via the
+       <b><a href="postconf.5.html#home_mailbox">home_mailbox</a></b> configuration parameter. Specify  a  relative
        path name. Specify a name ending in <b>/</b> for <b>qmail</b>-compatible
        <b>maildir</b> delivery.
 
-       Mailbox  delivery  can be delegated to an external command
-       specified with the <b><a href="postconf.5.html#mailbox_command_maps">mailbox_command_maps</a></b>  and  <b><a href="postconf.5.html#mailbox_command">mailbox_com</a>-</b>
-       <b><a href="postconf.5.html#mailbox_command">mand</a></b>  configuration  parameters. The command executes with
-       the privileges of the  recipient  user  (exceptions:  sec-
-       ondary  groups  are  not  enabled;  in case of delivery as
-       root,  the  command  executes  with  the   privileges   of
+       Mailbox delivery can be delegated to an  external  command
+       specified  with  the <b><a href="postconf.5.html#mailbox_command_maps">mailbox_command_maps</a></b> and <b><a href="postconf.5.html#mailbox_command">mailbox_com</a>-</b>
+       <b><a href="postconf.5.html#mailbox_command">mand</a></b> configuration parameters. The command  executes  with
+       the  privileges  of  the  recipient user (exceptions: sec-
+       ondary groups are not enabled;  in  case  of  delivery  as
+       root,   the   command  executes  with  the  privileges  of
        <b><a href="postconf.5.html#default_privs">default_privs</a></b>).
 
-       Mailbox  delivery  can be delegated to alternative message
-       transports specified in the  <a href="master.5.html"><b>master.cf</b></a>  file.   The  <b><a href="postconf.5.html#mailbox_transport_maps">mail</a>-</b>
-       <b><a href="postconf.5.html#mailbox_transport_maps">box_transport_maps</a></b>   and  <b><a href="postconf.5.html#mailbox_transport">mailbox_transport</a></b>  configuration
-       parameters specify an optional message transport  that  is
+       Mailbox delivery can be delegated to  alternative  message
+       transports  specified  in  the  <a href="master.5.html"><b>master.cf</b></a> file.  The <b><a href="postconf.5.html#mailbox_transport_maps">mail</a>-</b>
+       <b><a href="postconf.5.html#mailbox_transport_maps">box_transport_maps</a></b>  and  <b><a href="postconf.5.html#mailbox_transport">mailbox_transport</a></b>   configuration
+       parameters  specify  an optional message transport that is
        to be used for all local recipients, regardless of whether
-       they are found in the UNIX  passwd  database.   The  <b><a href="postconf.5.html#fallback_transport_maps">fall</a>-</b>
-       <b><a href="postconf.5.html#fallback_transport_maps">back_transport_maps</a></b>   and   <b><a href="postconf.5.html#fallback_transport">fallback_transport</a></b>  parameters
-       specify an optional message transport for recipients  that
+       they  are  found  in  the UNIX passwd database.  The <b><a href="postconf.5.html#fallback_transport_maps">fall</a>-</b>
+       <b><a href="postconf.5.html#fallback_transport_maps">back_transport_maps</a></b>  and   <b><a href="postconf.5.html#fallback_transport">fallback_transport</a></b>   parameters
+       specify  an optional message transport for recipients that
        are not found in the <a href="aliases.5.html">aliases(5)</a> or UNIX passwd database.
 
-       In  the  case of UNIX-style mailbox delivery, the <a href="local.8.html"><b>local</b>(8)</a>
+       In the case of UNIX-style mailbox delivery,  the  <a href="local.8.html"><b>local</b>(8)</a>
        daemon prepends a "<b>From</b> <i>sender time</i><b>_</b><i>stamp</i>" envelope header
-       to  each  message,  prepends an <b>X-Original-To:</b> header with
-       the recipient address as given  to  Postfix,  prepends  an
-       optional  <b>Delivered-To:</b>  header  with  the  final envelope
+       to each message, prepends an  <b>X-Original-To:</b>  header  with
+       the  recipient  address  as  given to Postfix, prepends an
+       optional <b>Delivered-To:</b>  header  with  the  final  envelope
        recipient address, prepends a <b>Return-Path:</b> header with the
-       envelope  sender  address, prepends a &gt; character to lines
-       beginning with "<b>From</b> ", and appends an  empty  line.   The
-       mailbox  is  locked for exclusive access while delivery is
-       in progress. In case of problems, an attempt  is  made  to
+       envelope sender address, prepends a &gt; character  to  lines
+       beginning  with  "<b>From</b>  ", and appends an empty line.  The
+       mailbox is locked for exclusive access while  delivery  is
+       in  progress.  In  case of problems, an attempt is made to
        truncate the mailbox to its original length.
 
        In the case of <b>maildir</b> delivery, the local daemon prepends
-       an optional <b>Delivered-To:</b> header with the  final  envelope
-       recipient  address, prepends an <b>X-Original-To:</b> header with
-       the recipient address as given to Postfix, and prepends  a
+       an  optional  <b>Delivered-To:</b> header with the final envelope
+       recipient address, prepends an <b>X-Original-To:</b> header  with
+       the  recipient address as given to Postfix, and prepends a
        <b>Return-Path:</b> header with the envelope sender address.
 
 <b>EXTERNAL COMMAND DELIVERY</b>
-       The    <b><a href="postconf.5.html#allow_mail_to_commands">allow_mail_to_commands</a></b>    configuration   parameter
-       restricts delivery to external commands. The default  set-
-       ting  (<b>alias,  forward</b>)  forbids  command  destinations in
+       The   <b><a href="postconf.5.html#allow_mail_to_commands">allow_mail_to_commands</a></b>    configuration    parameter
+       restricts  delivery to external commands. The default set-
+       ting (<b>alias,  forward</b>)  forbids  command  destinations  in
        <b>:include:</b> files.
 
-       Optionally, the process working directory  is  changed  to
+       Optionally,  the  process  working directory is changed to
        the path specified with <b><a href="postconf.5.html#command_execution_directory">command_execution_directory</a></b> (Post-
-       fix 2.2 and later). Failure  to  change  directory  causes
+       fix  2.2  and  later).  Failure to change directory causes
        mail to be deferred.
 
        The <b><a href="postconf.5.html#command_execution_directory">command_execution_directory</a></b> parameter value is subject
-       to interpolation  of  <b>$user</b>  (recipient  username),  <b>$home</b>
+       to  interpolation  of  <b>$user</b>  (recipient  username), <b>$home</b>
        (recipient  home  directory),  <b>$shell</b>  (recipient  shell),
-       <b>$recipient</b>  (complete   recipient   address),   <b>$extension</b>
+       <b>$recipient</b>   (complete   recipient   address),  <b>$extension</b>
        (recipient address extension), <b>$domain</b> (recipient domain),
-       <b>$local</b> (entire recipient address localpart)  and  <b>$recipi-</b>
-       <b>ent_delimiter.</b>   The forms <i>${name?value}</i> and <i>${name:value}</i>
-       expand conditionally to  <i>value</i>  when  <i>$name</i>  is  (is  not)
-       defined.   Characters that may have special meaning to the
-       shell or file system are  replaced  by  underscores.   The
+       <b>$local</b>  (entire  recipient address localpart) and <b>$recipi-</b>
+       <b>ent_delimiter.</b>  The forms <i>${name?value}</i> and  <i>${name:value}</i>
+       expand  conditionally  to  <i>value</i>  when  <i>$name</i>  is (is not)
+       defined.  Characters that may have special meaning to  the
+       shell  or  file  system  are replaced by underscores.  The
        list of acceptable characters is specified with the <b><a href="postconf.5.html#execution_directory_expansion_filter">execu</a>-</b>
        <b><a href="postconf.5.html#execution_directory_expansion_filter">tion_directory_expansion_filter</a></b> configuration parameter.
 
-       The command is executed directly  where  possible.  Assis-
-       tance  by the shell (<b>/bin/sh</b> on UNIX systems) is used only
-       when the command contains shell magic characters, or  when
+       The  command  is  executed directly where possible. Assis-
+       tance by the shell (<b>/bin/sh</b> on UNIX systems) is used  only
+       when  the command contains shell magic characters, or when
        the command invokes a shell built-in command.
 
-       A  limited  amount  of command output (standard output and
-       standard error) is captured for inclusion with  non-deliv-
-       ery  status  reports.  A command is forcibly terminated if
-       it does not complete  within  <b><a href="postconf.5.html#command_time_limit">command_time_limit</a></b>  seconds.
-       Command  exit status codes are expected to follow the con-
-       ventions defined in &lt;<b>sysexits.h</b>&gt;.   Exit  status  0  means
+       A limited amount of command output  (standard  output  and
+       standard  error) is captured for inclusion with non-deliv-
+       ery status reports.  A command is forcibly  terminated  if
+       it  does  not  complete within <b><a href="postconf.5.html#command_time_limit">command_time_limit</a></b> seconds.
+       Command exit status codes are expected to follow the  con-
+       ventions  defined  in  &lt;<b>sysexits.h</b>&gt;.   Exit status 0 means
        normal successful completion.
 
-       Postfix  version  2.3  and  later  support  <a href="http://www.faqs.org/rfcs/rfc3463.html">RFC 3463</a>-style
-       enhanced status codes.  If a  command  terminates  with  a
-       non-zero  exit  status, and the command output begins with
+       Postfix version  2.3  and  later  support  <a href="http://www.faqs.org/rfcs/rfc3463.html">RFC  3463</a>-style
+       enhanced  status  codes.   If  a command terminates with a
+       non-zero exit status, and the command output  begins  with
        an enhanced status code, this status code takes precedence
        over the non-zero exit status.
 
-       A  limited amount of message context is exported via envi-
-       ronment variables. Characters that may have special  mean-
+       A limited amount of message context is exported via  envi-
+       ronment  variables. Characters that may have special mean-
        ing to the shell are replaced by underscores.  The list of
        acceptable characters is specified with the <b><a href="postconf.5.html#command_expansion_filter">command_expan</a>-</b>
        <b><a href="postconf.5.html#command_expansion_filter">sion_filter</a></b> configuration parameter.
@@ -215,97 +221,97 @@ LOCAL(8)                                                              LOCAL(8)
        the following environment variables:
 
        <b>CLIENT_ADDRESS</b>
-              Remote  client  network  address.  Available  as of
+              Remote client  network  address.  Available  as  of
               Postfix 2.2.
 
        <b>CLIENT_HELO</b>
-              Remote client EHLO command parameter. Available  as
+              Remote  client EHLO command parameter. Available as
               of Postfix 2.2.
 
        <b>CLIENT_HOSTNAME</b>
-              Remote  client  hostname.  Available  as of Postfix
+              Remote client hostname.  Available  as  of  Postfix
               2.2.
 
        <b>CLIENT_PROTOCOL</b>
-              Remote client protocol.  Available  as  of  Postfix
+              Remote  client  protocol.  Available  as of Postfix
               2.2.
 
        <b>SASL_METHOD</b>
-              SASL  authentication method specified in the remote
+              SASL authentication method specified in the  remote
               client AUTH command. Available as of Postfix 2.2.
 
        <b>SASL_SENDER</b>
-              SASL sender address specified in the remote  client
+              SASL  sender address specified in the remote client
               MAIL FROM command. Available as of Postfix 2.2.
 
        <b>SASL_USERNAME</b>
-              SASL  username  specified in the remote client AUTH
+              SASL username specified in the remote  client  AUTH
               command.  Available as of Postfix 2.2.
 
        The <b>PATH</b> environment variable is always reset to a system-
-       dependent  default  path,  and environment variables whose
-       names are blessed by the <b><a href="postconf.5.html#export_environment">export_environment</a></b>  configuration
+       dependent default path, and  environment  variables  whose
+       names  are blessed by the <b><a href="postconf.5.html#export_environment">export_environment</a></b> configuration
        parameter are exported unchanged.
 
        The current working directory is the mail queue directory.
 
-       The <a href="local.8.html"><b>local</b>(8)</a> daemon prepends a  "<b>From</b>  <i>sender  time</i><b>_</b><i>stamp</i>"
-       envelope  header  to each message, prepends an <b>X-Original-</b>
+       The  <a href="local.8.html"><b>local</b>(8)</a>  daemon  prepends a "<b>From</b> <i>sender time</i><b>_</b><i>stamp</i>"
+       envelope header to each message, prepends  an  <b>X-Original-</b>
        <b>To:</b> header with the recipient address as given to Postfix,
-       prepends  an  optional <b>Delivered-To:</b> header with the final
+       prepends an optional <b>Delivered-To:</b> header with  the  final
        recipient envelope address, prepends a <b>Return-Path:</b> header
-       with  the  sender  envelope  address, and appends no empty
+       with the sender envelope address,  and  appends  no  empty
        line.
 
 <b>EXTERNAL FILE DELIVERY</b>
-       The delivery format depends on  the  destination  filename
-       syntax.   The default is to use UNIX-style mailbox format.
-       Specify a name ending in <b>/</b>  for  <b>qmail</b>-compatible  <b>maildir</b>
+       The  delivery  format  depends on the destination filename
+       syntax.  The default is to use UNIX-style mailbox  format.
+       Specify  a  name  ending in <b>/</b> for <b>qmail</b>-compatible <b>maildir</b>
        delivery.
 
-       The  <b><a href="postconf.5.html#allow_mail_to_files">allow_mail_to_files</a></b> configuration parameter restricts
-       delivery to external files. The  default  setting  (<b>alias,</b>
+       The <b><a href="postconf.5.html#allow_mail_to_files">allow_mail_to_files</a></b> configuration parameter  restricts
+       delivery  to  external  files. The default setting (<b>alias,</b>
        <b>forward</b>) forbids file destinations in <b>:include:</b> files.
 
-       In  the  case of UNIX-style mailbox delivery, the <a href="local.8.html"><b>local</b>(8)</a>
+       In the case of UNIX-style mailbox delivery,  the  <a href="local.8.html"><b>local</b>(8)</a>
        daemon prepends a "<b>From</b> <i>sender time</i><b>_</b><i>stamp</i>" envelope header
-       to  each  message,  prepends an <b>X-Original-To:</b> header with
-       the recipient address as given  to  Postfix,  prepends  an
-       optional  <b>Delivered-To:</b>  header  with  the final recipient
-       envelope address, prepends a &gt; character to  lines  begin-
-       ning  with  "<b>From</b> ", and appends an empty line.  The enve-
-       lope sender  address  is  available  in  the  <b>Return-Path:</b>
-       header.   When  the  destination  is a regular file, it is
+       to each message, prepends an  <b>X-Original-To:</b>  header  with
+       the  recipient  address  as  given to Postfix, prepends an
+       optional <b>Delivered-To:</b> header  with  the  final  recipient
+       envelope  address,  prepends a &gt; character to lines begin-
+       ning with "<b>From</b> ", and appends an empty line.   The  enve-
+       lope  sender  address  is  available  in  the <b>Return-Path:</b>
+       header.  When the destination is a  regular  file,  it  is
        locked for exclusive access while delivery is in progress.
        In case of problems, an attempt is made to truncate a reg-
        ular file to its original length.
 
        In the case of <b>maildir</b> delivery, the local daemon prepends
-       an  optional  <b>Delivered-To:</b> header with the final envelope
-       recipient address, and prepends an  <b>X-Original-To:</b>  header
+       an optional <b>Delivered-To:</b> header with the  final  envelope
+       recipient  address,  and prepends an <b>X-Original-To:</b> header
        with the recipient address as given to Postfix.  The enve-
-       lope sender  address  is  available  in  the  <b>Return-Path:</b>
+       lope  sender  address  is  available  in  the <b>Return-Path:</b>
        header.
 
 <b>ADDRESS EXTENSION</b>
-       The  optional  <b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a></b> configuration parameter
-       specifies how to separate address  extensions  from  local
+       The optional <b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a></b>  configuration  parameter
+       specifies  how  to  separate address extensions from local
        recipient names.
 
-       For  example,  with  "<b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a>  =  +</b>", mail for
-       <i>name</i>+<i>foo</i> is delivered to the  alias  <i>name</i>+<i>foo</i>  or  to  the
-       alias  <i>name</i>,  to  the  destinations  listed in ~<i>name</i>/.<b>for-</b>
+       For example, with  "<b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a>  =  +</b>",  mail  for
+       <i>name</i>+<i>foo</i>  is  delivered  to  the  alias <i>name</i>+<i>foo</i> or to the
+       alias <i>name</i>, to  the  destinations  listed  in  ~<i>name</i>/.<b>for-</b>
        <b>ward</b>+<i>foo</i> or in ~<i>name</i>/.<b>forward</b>, to the mailbox owned by the
        user <i>name</i>, or it is sent back as undeliverable.
 
-       In  all  cases  the  <a href="local.8.html"><b>local</b>(8)</a>  daemon prepends an optional
-       `<b>Delivered-To:</b>  header  line  with  the  final   recipient
+       In all cases the  <a href="local.8.html"><b>local</b>(8)</a>  daemon  prepends  an  optional
+       `<b>Delivered-To:</b>   header  line  with  the  final  recipient
        address.
 
 <b>DELIVERY RIGHTS</b>
-       Deliveries  to  external  files  and external commands are
+       Deliveries to external files  and  external  commands  are
        made with the rights of the receiving user on whose behalf
-       the  delivery  is made.  In the absence of a user context,
+       the delivery is made.  In the absence of a  user  context,
        the <a href="local.8.html"><b>local</b>(8)</a> daemon uses the owner rights of the <b>:include:</b>
        file or alias database.  When those files are owned by the
        superuser, delivery is made with the rights specified with
@@ -316,48 +322,48 @@ LOCAL(8)                                                              LOCAL(8)
        <a href="http://www.faqs.org/rfcs/rfc3463.html">RFC 3463</a> (Enhanced status codes)
 
 <b>DIAGNOSTICS</b>
-       Problems  and transactions are logged to <b>syslogd</b>(8).  Cor-
-       rupted message files are marked so that the queue  manager
+       Problems and transactions are logged to <b>syslogd</b>(8).   Cor-
+       rupted  message files are marked so that the queue manager
        can move them to the <b>corrupt</b> queue afterwards.
 
-       Depending  on the setting of the <b><a href="postconf.5.html#notify_classes">notify_classes</a></b> parameter,
-       the postmaster is notified of bounces and of  other  trou-
+       Depending on the setting of the <b><a href="postconf.5.html#notify_classes">notify_classes</a></b>  parameter,
+       the  postmaster  is notified of bounces and of other trou-
        ble.
 
 <b>SECURITY</b>
        The <a href="local.8.html"><b>local</b>(8)</a> delivery agent needs a dual personality 1) to
        access the private Postfix queue and IPC mechanisms, 2) to
-       impersonate  the recipient and deliver to recipient-speci-
-       fied files or commands. It is  therefore  security  sensi-
+       impersonate the recipient and deliver to  recipient-speci-
+       fied  files  or  commands. It is therefore security sensi-
        tive.
 
-       The  <a href="local.8.html"><b>local</b>(8)</a>  delivery agent disallows regular expression
-       substitution of $1 etc. in <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>, because that  would
+       The <a href="local.8.html"><b>local</b>(8)</a> delivery agent disallows  regular  expression
+       substitution  of $1 etc. in <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>, because that would
        open a security hole.
 
-       The  <a href="local.8.html"><b>local</b>(8)</a> delivery agent will silently ignore requests
-       to use the <a href="proxymap.8.html"><b>proxymap</b>(8)</a> server within  <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>.  Instead
-       it  will  open the table directly.  Before Postfix version
-       2.2, the <a href="local.8.html"><b>local</b>(8)</a> delivery agent  will  terminate  with  a
+       The <a href="local.8.html"><b>local</b>(8)</a> delivery agent will silently ignore  requests
+       to  use  the <a href="proxymap.8.html"><b>proxymap</b>(8)</a> server within <b><a href="postconf.5.html#alias_maps">alias_maps</a></b>. Instead
+       it will open the table directly.  Before  Postfix  version
+       2.2,  the  <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent will terminate with a
        fatal error.
 
 <b>BUGS</b>
-       For  security  reasons,  the  message  delivery  status of
-       external commands or of external  files  is  never  check-
+       For security  reasons,  the  message  delivery  status  of
+       external  commands  or  of  external files is never check-
        pointed to file. As a result, the program may occasionally
        deliver more than once to a command or external file. Bet-
        ter safe than sorry.
 
-       Mutually-recursive  aliases  or  ~/.<b>forward</b>  files are not
-       detected early.  The resulting  mail  forwarding  loop  is
+       Mutually-recursive aliases or  ~/.<b>forward</b>  files  are  not
+       detected  early.   The  resulting  mail forwarding loop is
        broken by the use of the <b>Delivered-To:</b> message header.
 
 <b>CONFIGURATION PARAMETERS</b>
-       Changes   to  <a href="postconf.5.html"><b>main.cf</b></a>  are  picked  up  automatically,  as
-       <a href="local.8.html"><b>local</b>(8)</a> processes run for only a limited amount of  time.
+       Changes  to  <a href="postconf.5.html"><b>main.cf</b></a>  are  picked  up  automatically,   as
+       <a href="local.8.html"><b>local</b>(8)</a>  processes run for only a limited amount of time.
        Use the command "<b>postfix reload</b>" to speed up a change.
 
-       The  text  below  provides  only  a parameter summary. See
+       The text below provides  only  a  parameter  summary.  See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
 <b>COMPATIBILITY CONTROLS</b>
@@ -367,13 +373,13 @@ LOCAL(8)                                                              LOCAL(8)
        <b><a href="postconf.5.html#expand_owner_alias">expand_owner_alias</a> (no)</b>
               When delivering to an alias "aliasname" that has an
               "owner-aliasname" companion alias, set the envelope
-              sender address to  the  expansion  of  the  "owner-
+              sender  address  to  the  expansion  of the "owner-
               aliasname" alias.
 
        <b><a href="postconf.5.html#owner_request_special">owner_request_special</a> (yes)</b>
-              Give  special treatment to owner-listname and list-
-              name-request address localparts: don't  split  such
-              addresses  when  the  <a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a> is set to
+              Give special treatment to owner-listname and  list-
+              name-request  address  localparts: don't split such
+              addresses when the <a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a>  is  set  to
               "-".
 
        <b><a href="postconf.5.html#sun_mailtool_compatibility">sun_mailtool_compatibility</a> (no)</b>
@@ -382,66 +388,66 @@ LOCAL(8)                                                              LOCAL(8)
        Available in Postfix version 2.3 and later:
 
        <b><a href="postconf.5.html#frozen_delivered_to">frozen_delivered_to</a> (yes)</b>
-              Update the <a href="local.8.html"><b>local</b>(8)</a> delivery agent's  idea  of  the
-              Delivered-To:     address    (see    prepend_deliv-
-              ered_header) only once, at the start of a  delivery
-              attempt;  do  not  update the Delivered-To: address
+              Update  the  <a href="local.8.html"><b>local</b>(8)</a>  delivery agent's idea of the
+              Delivered-To:    address    (see     prepend_deliv-
+              ered_header)  only once, at the start of a delivery
+              attempt; do not update  the  Delivered-To:  address
               while expanding aliases or .forward files.
 
 <b>DELIVERY METHOD CONTROLS</b>
-       The precedence of <a href="local.8.html"><b>local</b>(8)</a> delivery methods from  high  to
-       low  is:  aliases, .forward files, <a href="postconf.5.html#mailbox_transport_maps">mailbox_transport_maps</a>,
-       <a href="postconf.5.html#mailbox_transport">mailbox_transport</a>, <a href="postconf.5.html#mailbox_command_maps">mailbox_command_maps</a>,  <a href="postconf.5.html#mailbox_command">mailbox_command</a>,
-       <a href="postconf.5.html#home_mailbox">home_mailbox</a>,     <a href="postconf.5.html#mail_spool_directory">mail_spool_directory</a>,    fallback_trans-
+       The  precedence  of <a href="local.8.html"><b>local</b>(8)</a> delivery methods from high to
+       low is: aliases, .forward  files,  <a href="postconf.5.html#mailbox_transport_maps">mailbox_transport_maps</a>,
+       <a href="postconf.5.html#mailbox_transport">mailbox_transport</a>,  <a href="postconf.5.html#mailbox_command_maps">mailbox_command_maps</a>, <a href="postconf.5.html#mailbox_command">mailbox_command</a>,
+       <a href="postconf.5.html#home_mailbox">home_mailbox</a>,    <a href="postconf.5.html#mail_spool_directory">mail_spool_directory</a>,     fallback_trans-
        port_maps, <a href="postconf.5.html#fallback_transport">fallback_transport</a>, and <a href="postconf.5.html#luser_relay">luser_relay</a>.
 
        <b><a href="postconf.5.html#alias_maps">alias_maps</a> (see 'postconf -d' output)</b>
-              The alias databases  that  are  used  for  <a href="local.8.html"><b>local</b>(8)</a>
+              The  alias  databases  that  are  used for <a href="local.8.html"><b>local</b>(8)</a>
               delivery.
 
        <b><a href="postconf.5.html#forward_path">forward_path</a> (see 'postconf -d' output)</b>
               The <a href="local.8.html"><b>local</b>(8)</a> delivery agent search list for finding
-              a .forward file with user-specified delivery  meth-
+              a  .forward file with user-specified delivery meth-
               ods.
 
        <b><a href="postconf.5.html#mailbox_transport_maps">mailbox_transport_maps</a> (empty)</b>
-              Optional  lookup  tables with per-recipient message
-              delivery transports to  use  for  <a href="local.8.html"><b>local</b>(8)</a>  mailbox
-              delivery,  whether  or not the recipients are found
+              Optional lookup tables with  per-recipient  message
+              delivery  transports  to  use  for <a href="local.8.html"><b>local</b>(8)</a> mailbox
+              delivery, whether or not the recipients  are  found
               in the UNIX passwd database.
 
        <b><a href="postconf.5.html#mailbox_transport">mailbox_transport</a> (empty)</b>
-              Optional  message  delivery  transport   that   the
-              <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent  should  use  for mailbox
-              delivery to all local recipients,  whether  or  not
+              Optional   message   delivery  transport  that  the
+              <a href="local.8.html"><b>local</b>(8)</a> delivery  agent  should  use  for  mailbox
+              delivery  to  all  local recipients, whether or not
               they are found in the UNIX passwd database.
 
        <b><a href="postconf.5.html#mailbox_command_maps">mailbox_command_maps</a> (empty)</b>
-              Optional  lookup tables with per-recipient external
+              Optional lookup tables with per-recipient  external
               commands to use for <a href="local.8.html"><b>local</b>(8)</a> mailbox delivery.
 
        <b><a href="postconf.5.html#mailbox_command">mailbox_command</a> (empty)</b>
-              Optional external command that the <a href="local.8.html"><b>local</b>(8)</a>  deliv-
+              Optional  external command that the <a href="local.8.html"><b>local</b>(8)</a> deliv-
               ery agent should use for mailbox delivery.
 
        <b><a href="postconf.5.html#home_mailbox">home_mailbox</a> (empty)</b>
-              Optional  pathname  of a mailbox file relative to a
+              Optional pathname of a mailbox file relative  to  a
               <a href="local.8.html"><b>local</b>(8)</a> user's home directory.
 
        <b><a href="postconf.5.html#mail_spool_directory">mail_spool_directory</a> (see 'postconf -d' output)</b>
-              The directory where <a href="local.8.html"><b>local</b>(8)</a>  UNIX-style  mailboxes
+              The  directory  where <a href="local.8.html"><b>local</b>(8)</a> UNIX-style mailboxes
               are kept.
 
        <b><a href="postconf.5.html#fallback_transport_maps">fallback_transport_maps</a> (empty)</b>
-              Optional  lookup  tables with per-recipient message
-              delivery  transports  for   recipients   that   the
-              <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent  could  not  find  in the
+              Optional lookup tables with  per-recipient  message
+              delivery   transports   for   recipients  that  the
+              <a href="local.8.html"><b>local</b>(8)</a> delivery  agent  could  not  find  in  the
               <a href="aliases.5.html"><b>aliases</b>(5)</a> or UNIX password database.
 
        <b><a href="postconf.5.html#fallback_transport">fallback_transport</a> (empty)</b>
-              Optional  message  delivery  transport   that   the
-              <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent should use for names that
-              are not found in the <a href="aliases.5.html"><b>aliases</b>(5)</a>  or  UNIX  password
+              Optional   message   delivery  transport  that  the
+              <a href="local.8.html"><b>local</b>(8)</a> delivery agent should use for  names  that
+              are  not  found  in the <a href="aliases.5.html"><b>aliases</b>(5)</a> or UNIX password
               database.
 
        <b><a href="postconf.5.html#luser_relay">luser_relay</a> (empty)</b>
@@ -451,7 +457,7 @@ LOCAL(8)                                                              LOCAL(8)
        Available in Postfix version 2.2 and later:
 
        <b><a href="postconf.5.html#command_execution_directory">command_execution_directory</a> (empty)</b>
-              The <a href="local.8.html"><b>local</b>(8)</a> delivery agent working  directory  for
+              The  <a href="local.8.html"><b>local</b>(8)</a>  delivery agent working directory for
               delivery to external command.
 
 <b>MAILBOX LOCKING CONTROLS</b>
@@ -460,15 +466,15 @@ LOCAL(8)                                                              LOCAL(8)
               sive lock on a mailbox file or <a href="bounce.8.html"><b>bounce</b>(8)</a> logfile.
 
        <b><a href="postconf.5.html#deliver_lock_delay">deliver_lock_delay</a> (1s)</b>
-              The time between attempts to acquire  an  exclusive
+              The  time  between attempts to acquire an exclusive
               lock on a mailbox file or <a href="bounce.8.html"><b>bounce</b>(8)</a> logfile.
 
        <b><a href="postconf.5.html#stale_lock_time">stale_lock_time</a> (500s)</b>
-              The  time  after  which  a  stale exclusive mailbox
+              The time after  which  a  stale  exclusive  mailbox
               lockfile is removed.
 
        <b><a href="postconf.5.html#mailbox_delivery_lock">mailbox_delivery_lock</a> (see 'postconf -d' output)</b>
-              How to lock a UNIX-style  <a href="local.8.html"><b>local</b>(8)</a>  mailbox  before
+              How  to  lock  a UNIX-style <a href="local.8.html"><b>local</b>(8)</a> mailbox before
               attempting delivery.
 
 <b>RESOURCE AND RATE CONTROLS</b>
@@ -476,17 +482,17 @@ LOCAL(8)                                                              LOCAL(8)
               Time limit for delivery to external commands.
 
        <b><a href="postconf.5.html#duplicate_filter_limit">duplicate_filter_limit</a> (1000)</b>
-              The  maximal  number of addresses remembered by the
-              address duplicate filter  for  <a href="aliases.5.html"><b>aliases</b>(5)</a>  or  <a href="virtual.5.html"><b>vir-</b></a>
+              The maximal number of addresses remembered  by  the
+              address  duplicate  filter  for  <a href="aliases.5.html"><b>aliases</b>(5)</a> or <a href="virtual.5.html"><b>vir-</b></a>
               <a href="virtual.5.html"><b>tual</b>(5)</a> alias expansion, or for <a href="showq.8.html"><b>showq</b>(8)</a> queue dis-
               plays.
 
        <b><a href="postconf.5.html#local_destination_concurrency_limit">local_destination_concurrency_limit</a> (2)</b>
-              The maximal number of parallel deliveries  via  the
+              The  maximal  number of parallel deliveries via the
               local mail delivery transport to the same recipient
-              (when "<a href="postconf.5.html#local_destination_recipient_limit">local_destination_recipient_limit</a> =  1")  or
-              the  maximal  number  of parallel deliveries to the
-              same <a href="ADDRESS_CLASS_README.html#local_domain_class">local domain</a> (when  "local_destination_recipi-
+              (when  "<a href="postconf.5.html#local_destination_recipient_limit">local_destination_recipient_limit</a>  = 1") or
+              the maximal number of parallel  deliveries  to  the
+              same  <a href="ADDRESS_CLASS_README.html#local_domain_class">local domain</a> (when "local_destination_recipi-
               ent_limit &gt; 1").
 
        <b><a href="postconf.5.html#local_destination_recipient_limit">local_destination_recipient_limit</a> (1)</b>
@@ -499,49 +505,49 @@ LOCAL(8)                                                              LOCAL(8)
 
 <b>SECURITY CONTROLS</b>
        <b><a href="postconf.5.html#allow_mail_to_commands">allow_mail_to_commands</a> (alias, forward)</b>
-              Restrict  <a href="local.8.html"><b>local</b>(8)</a>  mail  delivery to external com-
+              Restrict <a href="local.8.html"><b>local</b>(8)</a> mail delivery  to  external  com-
               mands.
 
        <b><a href="postconf.5.html#allow_mail_to_files">allow_mail_to_files</a> (alias, forward)</b>
-              Restrict <a href="local.8.html"><b>local</b>(8)</a> mail delivery to external  files.
+              Restrict  <a href="local.8.html"><b>local</b>(8)</a> mail delivery to external files.
 
        <b><a href="postconf.5.html#command_expansion_filter">command_expansion_filter</a> (see 'postconf -d' output)</b>
-              Restrict  the characters that the <a href="local.8.html"><b>local</b>(8)</a> delivery
-              agent allows in $name expansions  of  $<a href="postconf.5.html#mailbox_command">mailbox_com</a>-
+              Restrict the characters that the <a href="local.8.html"><b>local</b>(8)</a>  delivery
+              agent  allows  in $name expansions of $<a href="postconf.5.html#mailbox_command">mailbox_com</a>-
               <a href="postconf.5.html#mailbox_command">mand</a>.
 
        <b><a href="postconf.5.html#default_privs">default_privs</a> (nobody)</b>
-              The  default  rights  used by the <a href="local.8.html"><b>local</b>(8)</a> delivery
+              The default rights used by  the  <a href="local.8.html"><b>local</b>(8)</a>  delivery
               agent for delivery to external file or command.
 
        <b><a href="postconf.5.html#forward_expansion_filter">forward_expansion_filter</a> (see 'postconf -d' output)</b>
-              Restrict the characters that the <a href="local.8.html"><b>local</b>(8)</a>  delivery
-              agent  allows in $name expansions of $<a href="postconf.5.html#forward_path">forward_path</a>.
+              Restrict  the characters that the <a href="local.8.html"><b>local</b>(8)</a> delivery
+              agent allows in $name expansions of  $<a href="postconf.5.html#forward_path">forward_path</a>.
 
        Available in Postfix version 2.2 and later:
 
        <b><a href="postconf.5.html#execution_directory_expansion_filter">execution_directory_expansion_filter</a>  (see  'postconf  -d'</b>
        <b>output)</b>
-              Restrict the characters that the <a href="local.8.html"><b>local</b>(8)</a>  delivery
+              Restrict  the characters that the <a href="local.8.html"><b>local</b>(8)</a> delivery
               agent allows in $name expansions of $<a href="postconf.5.html#command_execution_directory">command_execu</a>-
               <a href="postconf.5.html#command_execution_directory">tion_directory</a>.
 
 <b>MISCELLANEOUS CONTROLS</b>
        <b><a href="postconf.5.html#config_directory">config_directory</a> (see 'postconf -d' output)</b>
-              The default location of  the  Postfix  <a href="postconf.5.html">main.cf</a>  and
+              The  default  location  of  the Postfix <a href="postconf.5.html">main.cf</a> and
               <a href="master.5.html">master.cf</a> configuration files.
 
        <b><a href="postconf.5.html#daemon_timeout">daemon_timeout</a> (18000s)</b>
-              How  much time a Postfix daemon process may take to
-              handle a request  before  it  is  terminated  by  a
+              How much time a Postfix daemon process may take  to
+              handle  a  request  before  it  is  terminated by a
               built-in watchdog timer.
 
        <b><a href="postconf.5.html#delay_logging_resolution_limit">delay_logging_resolution_limit</a> (2)</b>
-              The  maximal  number  of  digits  after the decimal
+              The maximal number  of  digits  after  the  decimal
               point when logging sub-second delay values.
 
        <b><a href="postconf.5.html#export_environment">export_environment</a> (see 'postconf -d' output)</b>
-              The list of environment variables  that  a  Postfix
+              The  list  of  environment variables that a Postfix
               process will export to non-Postfix processes.
 
        <b><a href="postconf.5.html#ipc_timeout">ipc_timeout</a> (3600s)</b>
@@ -549,38 +555,38 @@ LOCAL(8)                                                              LOCAL(8)
               over an internal communication channel.
 
        <b><a href="postconf.5.html#local_command_shell">local_command_shell</a> (empty)</b>
-              Optional shell program  for  <a href="local.8.html"><b>local</b>(8)</a>  delivery  to
+              Optional  shell  program  for  <a href="local.8.html"><b>local</b>(8)</a> delivery to
               non-Postfix command.
 
        <b><a href="postconf.5.html#max_idle">max_idle</a> (100s)</b>
-              The  maximum  amount  of  time that an idle Postfix
-              daemon process waits for the next  service  request
+              The maximum amount of time  that  an  idle  Postfix
+              daemon  process  waits for the next service request
               before exiting.
 
        <b><a href="postconf.5.html#max_use">max_use</a> (100)</b>
-              The  maximal number of connection requests before a
+              The maximal number of connection requests before  a
               Postfix daemon process terminates.
 
        <b><a href="postconf.5.html#prepend_delivered_header">prepend_delivered_header</a> (command, file, forward)</b>
-              The message delivery  contexts  where  the  Postfix
-              <a href="local.8.html"><b>local</b>(8)</a>  delivery  agent  prepends a Delivered-To:
-              message header with the address that the  mail  was
+              The  message  delivery  contexts  where the Postfix
+              <a href="local.8.html"><b>local</b>(8)</a> delivery agent  prepends  a  Delivered-To:
+              message  header  with the address that the mail was
               delivered to.
 
        <b><a href="postconf.5.html#process_id">process_id</a> (read-only)</b>
-              The  process  ID  of  a  Postfix  command or daemon
+              The process ID  of  a  Postfix  command  or  daemon
               process.
 
        <b><a href="postconf.5.html#process_name">process_name</a> (read-only)</b>
-              The process name of a  Postfix  command  or  daemon
+              The  process  name  of  a Postfix command or daemon
               process.
 
        <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a> (canonical, virtual)</b>
-              What  address  lookup tables copy an address exten-
+              What address lookup tables copy an  address  exten-
               sion from the lookup key to the lookup result.
 
        <b><a href="postconf.5.html#queue_directory">queue_directory</a> (see 'postconf -d' output)</b>
-              The location of the Postfix top-level queue  direc-
+              The  location of the Postfix top-level queue direc-
               tory.
 
        <b><a href="postconf.5.html#recipient_delimiter">recipient_delimiter</a> (empty)</b>
@@ -588,15 +594,15 @@ LOCAL(8)                                                              LOCAL(8)
               sions (user+foo).
 
        <b><a href="postconf.5.html#require_home_directory">require_home_directory</a> (no)</b>
-              Whether or not a <a href="local.8.html"><b>local</b>(8)</a> recipient's  home  direc-
-              tory  must exist before mail delivery is attempted.
+              Whether  or  not a <a href="local.8.html"><b>local</b>(8)</a> recipient's home direc-
+              tory must exist before mail delivery is  attempted.
 
        <b><a href="postconf.5.html#syslog_facility">syslog_facility</a> (mail)</b>
               The syslog facility of Postfix logging.
 
        <b><a href="postconf.5.html#syslog_name">syslog_name</a> (postfix)</b>
-              The mail system  name  that  is  prepended  to  the
-              process  name  in  syslog  records, so that "smtpd"
+              The  mail  system  name  that  is  prepended to the
+              process name in syslog  records,  so  that  "smtpd"
               becomes, for example, "postfix/smtpd".
 
 <b>FILES</b>
@@ -616,14 +622,14 @@ LOCAL(8)                                                              LOCAL(8)
        syslogd(8), system logging
 
 <b>LICENSE</b>
-       The Secure Mailer license must be  distributed  with  this
+       The  Secure  Mailer  license must be distributed with this
        software.
 
 <b>HISTORY</b>
        The <b>Delivered-To:</b> message header appears in the <b>qmail</b> sys-
        tem by Daniel Bernstein.
 
-       The <i>maildir</i> structure  appears  in  the  <b>qmail</b>  system  by
+       The  <i>maildir</i>  structure  appears  in  the  <b>qmail</b> system by
        Daniel Bernstein.
 
 <b>AUTHOR(S)</b>
index f8428dab94e9444f8b10a934d852ac12d4482df4..bc82e5b50d6d14d1ae072426cedb6da9a1438516 100644 (file)
@@ -37,30 +37,36 @@ RELOCATED(5)                                                      RELOCATED(5)
 
        Table lookups are case insensitive.
 
+<b>CASE FOLDING</b>
+       The  search  string is folded to lowercase before database
+       lookup. As of Postfix 2.3, the search string is  not  case
+       folded  with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>: whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
        <b>o</b>      An entry has one of the following form:
                    <i>pattern      new</i><b>_</b><i>location</i>
-              Where <i>new</i><b>_</b><i>location</i>  specifies  contact  information
-              such  as  an  email  address,  or  perhaps a street
+              Where  <i>new</i><b>_</b><i>location</i>  specifies  contact information
+              such as an  email  address,  or  perhaps  a  street
               address or telephone number.
 
-       <b>o</b>      Empty lines and whitespace-only lines are  ignored,
-              as  are  lines whose first non-whitespace character
+       <b>o</b>      Empty  lines and whitespace-only lines are ignored,
+              as are lines whose first  non-whitespace  character
               is a `#'.
 
-       <b>o</b>      A logical line starts with non-whitespace  text.  A
-              line  that starts with whitespace continues a logi-
+       <b>o</b>      A  logical  line starts with non-whitespace text. A
+              line that starts with whitespace continues a  logi-
               cal line.
 
 <b>TABLE SEARCH ORDER</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked  tables  such  as NIS, LDAP or SQL, patterns are
+       networked tables such as NIS, LDAP or  SQL,  patterns  are
        tried in the order as listed below:
 
        <i>user</i>@<i>domain</i>
-              Matches <i>user</i>@<i>domain</i>. This form has precedence  over
+              Matches  <i>user</i>@<i>domain</i>. This form has precedence over
               all other forms.
 
        <i>user</i>   Matches <i>user</i>@<i>site</i> when <i>site</i> is $<b><a href="postconf.5.html#myorigin">myorigin</a></b>, when <i>site</i>
@@ -68,59 +74,59 @@ RELOCATED(5)                                                      RELOCATED(5)
               in $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b> or $<b><a href="postconf.5.html#proxy_interfaces">proxy_interfaces</a></b>.
 
        @<i>domain</i>
-              Matches  other  addresses  in <i>domain</i>. This form has
+              Matches other addresses in <i>domain</i>.  This  form  has
               the lowest precedence.
 
 <b>ADDRESS EXTENSION</b>
        When a mail address localpart contains the optional recip-
-       ient  delimiter  (e.g., <i>user+foo</i>@<i>domain</i>), the lookup order
+       ient delimiter (e.g., <i>user+foo</i>@<i>domain</i>), the  lookup  order
        becomes: <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>user+foo</i>, <i>user</i>, and
        @<i>domain</i>.
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This  section  describes how the table lookups change when
-       the table is given in the form of regular  expressions  or
-       when  lookups  are  directed  to a TCP-based server. For a
+       This section describes how the table lookups  change  when
+       the  table  is given in the form of regular expressions or
+       when lookups are directed to a  TCP-based  server.  For  a
        description of regular expression lookup table syntax, see
        <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>. For a description of the
        TCP client/server table lookup protocol, see <a href="tcp_table.5.html"><b>tcp_table</b>(5)</a>.
-       This  feature is not available up to and including Postfix
+       This feature is not available up to and including  Postfix
        version 2.2.
 
-       Each pattern is a regular expression that  is  applied  to
+       Each  pattern  is  a regular expression that is applied to
        the entire address being looked up. Thus, <i>user@domain</i> mail
-       addresses are not broken up into their  <i>user</i>  and  <i>@domain</i>
+       addresses  are  not  broken up into their <i>user</i> and <i>@domain</i>
        constituent parts, nor is <i>user+foo</i> broken up into <i>user</i> and
        <i>foo</i>.
 
-       Patterns are applied in the order as specified in the  ta-
-       ble,  until  a  pattern  is  found that matches the search
+       Patterns  are applied in the order as specified in the ta-
+       ble, until a pattern is  found  that  matches  the  search
        string.
 
-       Results are the same as with indexed  file  lookups,  with
-       the  additional feature that parenthesized substrings from
+       Results  are  the  same as with indexed file lookups, with
+       the additional feature that parenthesized substrings  from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This section describes how the table lookups  change  when
+       This  section  describes how the table lookups change when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
        Each lookup operation uses the entire address once.  Thus,
-       <i>user@domain</i>  mail  addresses  are not broken up into their
+       <i>user@domain</i> mail addresses are not broken  up  into  their
        <i>user</i> and <i>@domain</i> constituent parts, nor is <i>user+foo</i> broken
        up into <i>user</i> and <i>foo</i>.
 
        Results are the same as with indexed file lookups.
 
 <b>BUGS</b>
-       The  table format does not understand quoting conventions.
+       The table format does not understand quoting  conventions.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The following <b>main.cf</b> parameters are especially  relevant.
-       The  text  below  provides  only  a parameter summary. See
+       The  following <a href="postconf.5.html"><b>main.cf</b></a> parameters are especially relevant.
+       The text below provides  only  a  parameter  summary.  See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
        <b><a href="postconf.5.html#relocated_maps">relocated_maps</a></b>
@@ -129,12 +135,12 @@ RELOCATED(5)                                                      RELOCATED(5)
        Other parameters of interest:
 
        <b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
-              The  network  interface  addresses that this system
+              The network interface addresses  that  this  system
               receives mail on.  You need to stop and start Post-
               fix when this parameter changes.
 
        <b><a href="postconf.5.html#mydestination">mydestination</a></b>
-              List  of  domains  that  this mail system considers
+              List of domains that  this  mail  system  considers
               local.
 
        <b><a href="postconf.5.html#myorigin">myorigin</a></b>
@@ -155,7 +161,7 @@ RELOCATED(5)                                                      RELOCATED(5)
        <a href="ADDRESS_REWRITING_README.html">ADDRESS_REWRITING_README</a>, address rewriting guide
 
 <b>LICENSE</b>
-       The Secure Mailer license must be  distributed  with  this
+       The  Secure  Mailer  license must be distributed with this
        software.
 
 <b>AUTHOR(S)</b>
index 5e9225f39953f9d76a5dca6271ad1a77838318ba..6d28a3c628e3708fec1876ba3bacd62666e80ee6 100644 (file)
@@ -69,6 +69,12 @@ TRANSPORT(5)                                                      TRANSPORT(5)
        way as described below under "REGULAR  EXPRESSION  TABLES"
        and "TCP-BASED TABLES".
 
+<b>CASE FOLDING</b>
+       The  search  string is folded to lowercase before database
+       lookup. As of Postfix 2.3, the search string is  not  case
+       folded  with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>: whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
@@ -77,125 +83,125 @@ TRANSPORT(5)                                                      TRANSPORT(5)
               domain, use the corresponding <i>result</i>.
 
        blank lines and comments
-              Empty  lines and whitespace-only lines are ignored,
-              as are lines whose first  non-whitespace  character
+              Empty lines and whitespace-only lines are  ignored,
+              as  are  lines whose first non-whitespace character
               is a `#'.
 
        multi-line text
-              A  logical  line starts with non-whitespace text. A
-              line that starts with whitespace continues a  logi-
+              A logical line starts with non-whitespace  text.  A
+              line  that starts with whitespace continues a logi-
               cal line.
 
-       The  <i>pattern</i> specifies an email address, a domain name, or
-       a domain name hierarchy, as described  in  section  "TABLE
+       The <i>pattern</i> specifies an email address, a domain name,  or
+       a  domain  name  hierarchy, as described in section "TABLE
        LOOKUP".
 
-       The  <i>result</i> is of the form <i>transport:nexthop</i> and specifies
+       The <i>result</i> is of the form <i>transport:nexthop</i> and  specifies
        how or where to deliver mail. This is described in section
        "RESULT FORMAT".
 
 <b>TABLE SEARCH ORDER</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked tables such as NIS, LDAP or  SQL,  patterns  are
+       networked  tables  such  as NIS, LDAP or SQL, patterns are
        tried in the order as listed below:
 
        <i>user+extension@domain transport</i>:<i>nexthop</i>
-              Deliver   mail  for  <i>user+extension@domain</i>  through
+              Deliver  mail  for  <i>user+extension@domain</i>   through
               <i>transport</i> to <i>nexthop</i>.
 
        <i>user@domain transport</i>:<i>nexthop</i>
-              Deliver mail for <i>user@domain</i> through  <i>transport</i>  to
+              Deliver  mail  for <i>user@domain</i> through <i>transport</i> to
               <i>nexthop</i>.
 
        <i>domain transport</i>:<i>nexthop</i>
-              Deliver  mail  for <i>domain</i> through <i>transport</i> to <i>nex-</i>
+              Deliver mail for <i>domain</i> through <i>transport</i>  to  <i>nex-</i>
               <i>thop</i>.
 
        <i>.domain transport</i>:<i>nexthop</i>
-              Deliver mail for any subdomain  of  <i>domain</i>  through
-              <i>transport</i>  to  <i>nexthop</i>.  This applies only when the
-              string <b><a href="postconf.5.html#transport_maps">transport_maps</a></b> is not  listed  in  the  <b><a href="postconf.5.html#parent_domain_matches_subdomains">par</a>-</b>
-              <b><a href="postconf.5.html#parent_domain_matches_subdomains">ent_domain_matches_subdomains</a></b>   configuration  set-
-              ting.  Otherwise, a domain name matches itself  and
+              Deliver  mail  for  any subdomain of <i>domain</i> through
+              <i>transport</i> to <i>nexthop</i>. This applies  only  when  the
+              string  <b><a href="postconf.5.html#transport_maps">transport_maps</a></b>  is  not  listed in the <b><a href="postconf.5.html#parent_domain_matches_subdomains">par</a>-</b>
+              <b><a href="postconf.5.html#parent_domain_matches_subdomains">ent_domain_matches_subdomains</a></b>  configuration   set-
+              ting.   Otherwise, a domain name matches itself and
               its subdomains.
 
        Note 1: the special pattern <b>*</b> represents any address (i.e.
        it functions as the wild-card pattern).
 
-       Note 2:  the  null  recipient  address  is  looked  up  as
+       Note  2:  the  null  recipient  address  is  looked  up as
        <b>$<a href="postconf.5.html#empty_address_recipient">empty_address_recipient</a></b>@<b>$<a href="postconf.5.html#myhostname">myhostname</a></b> (default: mailer-dae-
        mon@hostname).
 
-       Note 3: <i>user@domain</i>  or  <i>user+extension@domain</i>  lookup  is
+       Note  3:  <i>user@domain</i>  or  <i>user+extension@domain</i> lookup is
        available in Postfix 2.0 and later.
 
 <b>RESULT FORMAT</b>
-       The  lookup  result is of the form <i>transport</i><b>:</b><i>nexthop</i>.  The
-       <i>transport</i> field specifies a mail delivery  transport  such
-       as  <b>smtp</b>  or  <b>local</b>. The <i>nexthop</i> field specifies where and
+       The lookup result is of the form  <i>transport</i><b>:</b><i>nexthop</i>.   The
+       <i>transport</i>  field  specifies a mail delivery transport such
+       as <b>smtp</b> or <b>local</b>. The <i>nexthop</i> field  specifies  where  and
        how to deliver mail.
 
-       The transport field specifies the name of a mail  delivery
+       The  transport field specifies the name of a mail delivery
        transport (the first name of a mail delivery service entry
-       in the Postfix <b>master.cf</b> file).
+       in the Postfix <a href="master.5.html"><b>master.cf</b></a> file).
 
-       The interpretation  of  the  nexthop  field  is  transport
-       dependent.  In  the  case  of SMTP, specify a service on a
-       non-default port as <i>host</i>:<i>service</i>,  and  disable  MX  (mail
-       exchanger)  DNS lookups with [<i>host</i>] or [<i>host</i>]:<i>port</i>. The []
+       The  interpretation  of  the  nexthop  field  is transport
+       dependent. In the case of SMTP, specify  a  service  on  a
+       non-default  port  as  <i>host</i>:<i>service</i>,  and disable MX (mail
+       exchanger) DNS lookups with [<i>host</i>] or [<i>host</i>]:<i>port</i>. The  []
        form is required when you specify an IP address instead of
        a hostname.
 
-       A  null  <i>transport</i>  and  null <i>nexthop</i> result means "do not
-       change": use the delivery transport and  nexthop  informa-
-       tion  that  would  be used when the entire transport table
+       A null <i>transport</i> and null <i>nexthop</i>  result  means  "do  not
+       change":  use  the delivery transport and nexthop informa-
+       tion that would be used when the  entire  transport  table
        did not exist.
 
-       A non-null <i>transport</i>  field  with  a  null  <i>nexthop</i>  field
+       A  non-null  <i>transport</i>  field  with  a  null <i>nexthop</i> field
        resets the nexthop information to the recipient domain.
 
-       A  null  <i>transport</i>  field with non-null <i>nexthop</i> field does
+       A null <i>transport</i> field with non-null  <i>nexthop</i>  field  does
        not modify the transport information.
 
 <b>EXAMPLES</b>
-       In order to deliver internal mail directly, while using  a
-       mail  relay  for  all other mail, specify a null entry for
-       internal destinations (do not change the  delivery  trans-
-       port  or  the  nexthop information) and specify a wildcard
+       In  order to deliver internal mail directly, while using a
+       mail relay for all other mail, specify a  null  entry  for
+       internal  destinations  (do not change the delivery trans-
+       port or the nexthop information) and  specify  a  wildcard
        for all other destinations.
 
             <b>my.domain    :</b>
             <b>.my.domain   :</b>
             <b>*         <a href="smtp.8.html">smtp</a>:outbound-relay.my.domain</b>
 
-       In order to send mail for <b>example.com</b> and  its  subdomains
+       In  order  to send mail for <b>example.com</b> and its subdomains
        via the <b>uucp</b> transport to the UUCP host named <b>example</b>:
 
             <b>example.com      uucp:example</b>
             <b>.example.com     uucp:example</b>
 
-       When  no  nexthop  host name is specified, the destination
-       domain name is used instead. For  example,  the  following
-       directs  mail  for <i>user</i>@<b>example.com</b> via the <b>slow</b> transport
-       to a mail exchanger for <b>example.com</b>.  The  <b>slow</b>  transport
+       When no nexthop host name is  specified,  the  destination
+       domain  name  is  used instead. For example, the following
+       directs mail for <i>user</i>@<b>example.com</b> via the  <b>slow</b>  transport
+       to  a  mail exchanger for <b>example.com</b>.  The <b>slow</b> transport
        could be configured to run at most one delivery process at
        a time:
 
             <b>example.com      slow:</b>
 
        When no transport is specified, Postfix uses the transport
-       that  matches  the  address  domain class (see DESCRIPTION
-       above).  The following sends all mail for <b>example.com</b>  and
+       that matches the address  domain  class  (see  DESCRIPTION
+       above).   The following sends all mail for <b>example.com</b> and
        its subdomains to host <b>gateway.example.com</b>:
 
             <b>example.com      :[gateway.example.com]</b>
             <b>.example.com     :[gateway.example.com]</b>
 
-       In  the  above  example, the [] suppress MX lookups.  This
-       prevents mail routing loops when your machine  is  primary
+       In the above example, the [] suppress  MX  lookups.   This
+       prevents  mail  routing loops when your machine is primary
        MX host for <b>example.com</b>.
 
-       In  the  case  of delivery via SMTP, one may specify <i>host-</i>
+       In the case of delivery via SMTP, one  may  specify  <i>host-</i>
        <i>name</i>:<i>service</i> instead of just a host:
 
             <b>example.com      <a href="smtp.8.html">smtp</a>:bar.example:2025</b>
@@ -207,57 +213,57 @@ TRANSPORT(5)                                                      TRANSPORT(5)
 
        The error mailer can be used to bounce mail:
 
-            <b>.example.com      <a href="error.8.html">error</a>:mail for *.example.com is not</b>
+            <b>.example.com     <a href="error.8.html">error</a>:mail for *.example.com is  not</b>
        <b>deliverable</b>
 
-       This causes all mail for <i>user</i>@<i>anything</i><b>.example.com</b>  to  be
+       This  causes  all mail for <i>user</i>@<i>anything</i><b>.example.com</b> to be
        bounced.
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        the table is given in the form of regular expressions. For
-       a  description  of regular expression lookup table syntax,
+       a description of regular expression lookup  table  syntax,
        see <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>.
 
-       Each pattern is a regular expression that  is  applied  to
-       the    entire    address    being    looked    up.   Thus,
-       <i>some.domain.hierarchy</i> is not  looked  up  via  its  parent
-       domains,  nor is <i>user+foo@domain</i> looked up as <i>user@domain</i>.
+       Each  pattern  is  a regular expression that is applied to
+       the   entire    address    being    looked    up.    Thus,
+       <i>some.domain.hierarchy</i>  is  not  looked  up  via its parent
+       domains, nor is <i>user+foo@domain</i> looked up as  <i>user@domain</i>.
 
-       Patterns are applied in the order as specified in the  ta-
-       ble,  until  a  pattern  is  found that matches the search
+       Patterns  are applied in the order as specified in the ta-
+       ble, until a pattern is  found  that  matches  the  search
        string.
 
-       Results are the same as with indexed  file  lookups,  with
-       the  additional feature that parenthesized substrings from
+       Results  are  the  same as with indexed file lookups, with
+       the additional feature that parenthesized substrings  from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This section describes how the table lookups  change  when
+       This  section  describes how the table lookups change when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
-       Each lookup operation uses the  entire  recipient  address
-       once.   Thus,  <i>some.domain.hierarchy</i>  is not looked up via
-       its parent domains, nor is <i>user+foo@domain</i>  looked  up  as
+       Each  lookup  operation  uses the entire recipient address
+       once.  Thus, <i>some.domain.hierarchy</i> is not  looked  up  via
+       its  parent  domains,  nor is <i>user+foo@domain</i> looked up as
        <i>user@domain</i>.
 
        Results are the same as with indexed file lookups.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The  following <b>main.cf</b> parameters are especially relevant.
-       The text below provides  only  a  parameter  summary.  See
+       The following <a href="postconf.5.html"><b>main.cf</b></a> parameters are especially  relevant.
+       The  text  below  provides  only  a parameter summary. See
        <a href="postconf.5.html"><b>postconf</b>(5)</a> for more details including examples.
 
        <b><a href="postconf.5.html#empty_address_recipient">empty_address_recipient</a></b>
-              The  address  that is looked up instead of the null
+              The address that is looked up instead of  the  null
               sender address.
 
        <b><a href="postconf.5.html#parent_domain_matches_subdomains">parent_domain_matches_subdomains</a></b>
-              List of Postfix features that use  <i>domain.tld</i>  pat-
-              terns   to  match  <i>sub.domain.tld</i>  (as  opposed  to
+              List  of  Postfix features that use <i>domain.tld</i> pat-
+              terns  to  match  <i>sub.domain.tld</i>  (as  opposed   to
               requiring <i>.domain.tld</i> patterns).
 
        <b><a href="postconf.5.html#transport_maps">transport_maps</a></b>
@@ -273,7 +279,7 @@ TRANSPORT(5)                                                      TRANSPORT(5)
        <a href="FILTER_README.html">FILTER_README</a>, external content filter
 
 <b>LICENSE</b>
-       The  Secure  Mailer  license must be distributed with this
+       The Secure Mailer license must be  distributed  with  this
        software.
 
 <b>AUTHOR(S)</b>
index 528d96a9662fb3ae7838e9a2988c967cc09e29c9..d8dfe98983d0a420f921e2dcdc9d941c88593104 100644 (file)
@@ -62,40 +62,46 @@ VIRTUAL(5)                                                          VIRTUAL(5)
        way  as  described below under "REGULAR EXPRESSION TABLES"
        and "TCP-BASED TABLES".
 
+<b>CASE FOLDING</b>
+       The search string is folded to lowercase  before  database
+       lookup.  As  of Postfix 2.3, the search string is not case
+       folded with database types such as <a href="regexp_table.5.html">regexp</a>: or <a href="pcre_table.5.html">pcre</a>:  whose
+       lookup fields can match both upper and lower case.
+
 <b>TABLE FORMAT</b>
        The input format for the <a href="postmap.1.html"><b>postmap</b>(1)</a> command is as follows:
 
        <i>pattern result</i>
-              When  <i>pattern</i> matches a mail address, replace it by
+              When <i>pattern</i> matches a mail address, replace it  by
               the corresponding <i>result</i>.
 
        blank lines and comments
-              Empty lines and whitespace-only lines are  ignored,
-              as  are  lines whose first non-whitespace character
+              Empty  lines and whitespace-only lines are ignored,
+              as are lines whose first  non-whitespace  character
               is a `#'.
 
        multi-line text
-              A logical line starts with non-whitespace  text.  A
-              line  that starts with whitespace continues a logi-
+              A  logical  line starts with non-whitespace text. A
+              line that starts with whitespace continues a  logi-
               cal line.
 
 <b>TABLE SEARCH ORDER</b>
        With lookups from indexed files such as DB or DBM, or from
-       networked  tables  such  as NIS, LDAP or SQL, patterns are
+       networked tables such as NIS, LDAP or  SQL,  patterns  are
        tried in the order as listed below:
 
        <i>user</i>@<i>domain address, address, ...</i>
-              Redirect mail for  <i>user</i>@<i>domain</i>  to  <i>address</i>.   This
+              Redirect  mail  for  <i>user</i>@<i>domain</i>  to <i>address</i>.  This
               form has the highest precedence.
 
        <i>user address, address, ...</i>
               Redirect mail for <i>user</i>@<i>site</i> to <i>address</i> when <i>site</i> is
-              equal to $<b><a href="postconf.5.html#myorigin">myorigin</a></b>, when <i>site</i> is listed in  $<b><a href="postconf.5.html#mydestination">mydes</a>-</b>
-              <b><a href="postconf.5.html#mydestination">tination</a></b>,  or when it is listed in $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
+              equal  to $<b><a href="postconf.5.html#myorigin">myorigin</a></b>, when <i>site</i> is listed in $<b><a href="postconf.5.html#mydestination">mydes</a>-</b>
+              <b><a href="postconf.5.html#mydestination">tination</a></b>, or when it is listed in  $<b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
               or $<b><a href="postconf.5.html#proxy_interfaces">proxy_interfaces</a></b>.
 
-              This functionality overlaps with  functionality  of
-              the  local  <i>aliases</i>(5)  database. The difference is
+              This  functionality  overlaps with functionality of
+              the local <i>aliases</i>(5) database.  The  difference  is
               that <a href="virtual.5.html"><b>virtual</b>(5)</a> mapping can be applied to non-local
               addresses.
 
@@ -106,12 +112,12 @@ VIRTUAL(5)                                                          VIRTUAL(5)
 <b>RESULT ADDRESS REWRITING</b>
        The lookup result is subject to address rewriting:
 
-       <b>o</b>      When the result  has  the  form  @<i>otherdomain</i>,  the
-              result  becomes the same <i>user</i> in <i>otherdomain</i>.  This
+       <b>o</b>      When  the  result  has  the  form @<i>otherdomain</i>, the
+              result becomes the same <i>user</i> in <i>otherdomain</i>.   This
               works only for the first address in a multi-address
               lookup result.
 
-       <b>o</b>      When  "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
+       <b>o</b>      When "<b><a href="postconf.5.html#append_at_myorigin">append_at_myorigin</a>=yes</b>", append  "<b>@$<a href="postconf.5.html#myorigin">myorigin</a></b>"
               to addresses without "@domain".
 
        <b>o</b>      When "<b><a href="postconf.5.html#append_dot_mydomain">append_dot_mydomain</a>=yes</b>", append "<b>.$<a href="postconf.5.html#mydomain">mydomain</a></b>"
@@ -119,135 +125,135 @@ VIRTUAL(5)                                                          VIRTUAL(5)
 
 <b>ADDRESS EXTENSION</b>
        When a mail address localpart contains the optional recip-
-       ient delimiter (e.g., <i>user+foo</i>@<i>domain</i>), the  lookup  order
+       ient  delimiter  (e.g., <i>user+foo</i>@<i>domain</i>), the lookup order
        becomes: <i>user+foo</i>@<i>domain</i>, <i>user</i>@<i>domain</i>, <i>user+foo</i>, <i>user</i>, and
        @<i>domain</i>.
 
-       The  <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter   controls
-       whether  an  unmatched  address extension (<i>+foo</i>) is propa-
+       The   <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>   parameter  controls
+       whether an unmatched address extension  (<i>+foo</i>)  is  propa-
        gated to the result of table lookup.
 
 <b>VIRTUAL ALIAS DOMAINS</b>
-       Besides virtual aliases, the virtual alias table can  also
+       Besides  virtual aliases, the virtual alias table can also
        be used to implement <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domains</a>. With a virtual
-       alias domain,  all  recipient  addresses  are  aliased  to
+       alias  domain,  all  recipient  addresses  are  aliased to
        addresses in other domains.
 
        Virtual alias domains are not to be confused with the vir-
        tual mailbox domains that are implemented with the Postfix
        <a href="virtual.8.html"><b>virtual</b>(8)</a>  mail  delivery  agent.  With  virtual  mailbox
-       domains, each recipient address can have its own  mailbox.
+       domains,  each recipient address can have its own mailbox.
 
-       With  a  virtual  alias domain, the virtual domain has its
-       own user name space. Local  (i.e.  non-virtual)  usernames
-       are  not visible in a <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a>. In particular,
-       local <a href="aliases.5.html"><b>aliases</b>(5)</a> and local mailing lists are  not  visible
+       With a <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a>, the virtual  domain  has  its
+       own  user  name  space. Local (i.e. non-virtual) usernames
+       are not visible in a <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a>. In  particular,
+       local  <a href="aliases.5.html"><b>aliases</b>(5)</a>  and local mailing lists are not visible
        as <i>localname@virtual-alias.domain</i>.
 
        Support for a <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a> looks like:
 
-       /etc/postfix/main.cf:
+       /etc/postfix/<a href="postconf.5.html">main.cf</a>:
            <a href="postconf.5.html#virtual_alias_maps">virtual_alias_maps</a> = hash:/etc/postfix/virtual
 
-           Note:  some systems use <b>dbm</b> databases instead of <b>hash</b>.
-           See the output from "<b>postconf -m</b>" for available  data-
+           Note: some systems use <b>dbm</b> databases instead of  <b>hash</b>.
+           See  the output from "<b>postconf -m</b>" for available data-
            base types.
 
-       /etc/postfix/virtual:
+       /etc/postfix/<a href="virtual.8.html">virtual</a>:
            <i>virtual-alias.domain anything</i> (right-hand content does not matter)
            <i>postmaster@virtual-alias.domain      postmaster</i>
            <i>user1@virtual-alias.domain   address1</i>
            <i>user2@virtual-alias.domain   address2, address3</i>
 
-       The  <i>virtual-alias.domain anything</i> entry is required for a
+       The <i>virtual-alias.domain anything</i> entry is required for  a
        <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a>. <b>Without this entry, mail is rejected</b>
-       <b>with  "relay  access  denied", or bounces with "mail loops</b>
+       <b>with "relay access denied", or bounces  with  "mail  loops</b>
        <b>back to myself".</b>
 
-       Do not specify <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a> names in  the  <b>main.cf</b>
+       Do  not  specify <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a> names in the <a href="postconf.5.html"><b>main.cf</b></a>
        <b><a href="postconf.5.html#mydestination">mydestination</a></b> or <b><a href="postconf.5.html#relay_domains">relay_domains</a></b> configuration parameters.
 
-       With  a  virtual  alias  domain,  the  Postfix SMTP server
-       accepts  mail  for  <i>known-user@virtual-alias.domain</i>,   and
-       rejects   mail  for  <i>unknown-user</i>@<i>virtual-alias.domain</i>  as
+       With a virtual  alias  domain,  the  Postfix  SMTP  server
+       accepts   mail  for  <i>known-user@virtual-alias.domain</i>,  and
+       rejects  mail  for  <i>unknown-user</i>@<i>virtual-alias.domain</i>   as
        undeliverable.
 
-       Instead of specifying the virtual alias  domain  name  via
-       the  <b><a href="postconf.5.html#virtual_alias_maps">virtual_alias_maps</a></b> table, you may also specify it via
-       the <b>main.cf <a href="postconf.5.html#virtual_alias_domains">virtual_alias_domains</a></b> configuration parameter.
-       This  latter parameter uses the same syntax as the <b>main.cf</b>
+       Instead  of  specifying  the <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domain</a> name via
+       the <b><a href="postconf.5.html#virtual_alias_maps">virtual_alias_maps</a></b> table, you may also specify it  via
+       the <a href="postconf.5.html"><b>main.cf</a> <a href="postconf.5.html#virtual_alias_domains">virtual_alias_domains</a></b> configuration parameter.
+       This latter parameter uses the same syntax as the  <a href="postconf.5.html"><b>main.cf</b></a>
        <b><a href="postconf.5.html#mydestination">mydestination</a></b> configuration parameter.
 
 <b>REGULAR EXPRESSION TABLES</b>
-       This section describes how the table lookups  change  when
+       This  section  describes how the table lookups change when
        the table is given in the form of regular expressions. For
-       a description of regular expression lookup  table  syntax,
+       a  description  of regular expression lookup table syntax,
        see <a href="regexp_table.5.html"><b>regexp_table</b>(5)</a> or <a href="pcre_table.5.html"><b>pcre_table</b>(5)</a>.
 
-       Each  pattern  is  a regular expression that is applied to
+       Each pattern is a regular expression that  is  applied  to
        the entire address being looked up. Thus, <i>user@domain</i> mail
-       addresses  are  not  broken up into their <i>user</i> and <i>@domain</i>
+       addresses are not broken up into their  <i>user</i>  and  <i>@domain</i>
        constituent parts, nor is <i>user+foo</i> broken up into <i>user</i> and
        <i>foo</i>.
 
-       Patterns  are applied in the order as specified in the ta-
-       ble, until a pattern is  found  that  matches  the  search
+       Patterns are applied in the order as specified in the  ta-
+       ble,  until  a  pattern  is  found that matches the search
        string.
 
-       Results  are  the  same as with indexed file lookups, with
-       the additional feature that parenthesized substrings  from
+       Results are the same as with indexed  file  lookups,  with
+       the  additional feature that parenthesized substrings from
        the pattern can be interpolated as <b>$1</b>, <b>$2</b> and so on.
 
 <b>TCP-BASED TABLES</b>
-       This  section  describes how the table lookups change when
+       This section describes how the table lookups  change  when
        lookups are directed to a TCP-based server. For a descrip-
        tion of the TCP client/server lookup protocol, see <a href="tcp_table.5.html"><b>tcp_ta-</b></a>
        <a href="tcp_table.5.html"><b>ble</b>(5)</a>.  This feature is not available up to and including
        Postfix version 2.2.
 
        Each lookup operation uses the entire address once.  Thus,
-       <i>user@domain</i> mail addresses are not broken  up  into  their
+       <i>user@domain</i>  mail  addresses  are not broken up into their
        <i>user</i> and <i>@domain</i> constituent parts, nor is <i>user+foo</i> broken
        up into <i>user</i> and <i>foo</i>.
 
        Results are the same as with indexed file lookups.
 
 <b>BUGS</b>
-       The table format does not understand quoting  conventions.
+       The  table format does not understand quoting conventions.
 
 <b>CONFIGURATION PARAMETERS</b>
-       The  following  <b>main.cf</b> parameters are especially relevant
-       to this topic. See the Postfix  <b>main.cf</b>  file  for  syntax
-       details  and  for default values. Use the "<b>postfix reload</b>"
+       The following <a href="postconf.5.html"><b>main.cf</b></a> parameters are  especially  relevant
+       to  this  topic.  See  the Postfix <a href="postconf.5.html"><b>main.cf</b></a> file for syntax
+       details and for default values. Use the  "<b>postfix  reload</b>"
        command after a configuration change.
 
        <b><a href="postconf.5.html#virtual_alias_maps">virtual_alias_maps</a></b>
               List of virtual aliasing tables.
 
        <b><a href="postconf.5.html#virtual_alias_domains">virtual_alias_domains</a></b>
-              List of <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domains</a>. This uses  the  same
+              List  of  <a href="ADDRESS_CLASS_README.html#virtual_alias_class">virtual alias domains</a>. This uses the same
               syntax as the <b><a href="postconf.5.html#mydestination">mydestination</a></b> parameter.
 
        <b><a href="postconf.5.html#propagate_unmatched_extensions">propagate_unmatched_extensions</a></b>
-              A  list  of  address rewriting or forwarding mecha-
-              nisms that propagate an address extension from  the
-              original  address  to  the result.  Specify zero or
-              more  of  <b>canonical</b>,   <b>virtual</b>,   <b>alias</b>,   <b>forward</b>,
+              A list of address rewriting  or  forwarding  mecha-
+              nisms  that propagate an address extension from the
+              original address to the result.   Specify  zero  or
+              more   of   <b>canonical</b>,   <b>virtual</b>,  <b>alias</b>,  <b>forward</b>,
               <b>include</b>, or <b>generic</b>.
 
        Other parameters of interest:
 
        <b><a href="postconf.5.html#inet_interfaces">inet_interfaces</a></b>
-              The  network  interface  addresses that this system
+              The network interface addresses  that  this  system
               receives mail on.  You need to stop and start Post-
               fix when this parameter changes.
 
        <b><a href="postconf.5.html#mydestination">mydestination</a></b>
-              List  of  domains  that  this mail system considers
+              List of domains that  this  mail  system  considers
               local.
 
        <b><a href="postconf.5.html#myorigin">myorigin</a></b>
-              The domain that is appended  to  any  address  that
+              The  domain  that  is  appended to any address that
               does not have a domain.
 
        <b><a href="postconf.5.html#owner_request_special">owner_request_special</a></b>
@@ -271,7 +277,7 @@ VIRTUAL(5)                                                          VIRTUAL(5)
        <a href="VIRTUAL_README.html">VIRTUAL_README</a>, domain hosting guide
 
 <b>LICENSE</b>
-       The  Secure  Mailer  license must be distributed with this
+       The Secure Mailer license must be  distributed  with  this
        software.
 
 <b>AUTHOR(S)</b>
index a78b7914c0033773d277ba8dfbbd3d5600a27baf..eda09fc99a48a421d821c3855237d42b4d217061 100644 (file)
@@ -80,6 +80,11 @@ VIRTUAL(8)                                                          VIRTUAL(8)
        numerical user ID values that may be specified in any <b><a href="postconf.5.html#virtual_uid_maps">vir</a>-</b>
        <b><a href="postconf.5.html#virtual_uid_maps">tual_uid_maps</a></b>.
 
+<b>CASE FOLDING</b>
+       All  delivery  decisions are made using the full recipient
+       address, folded to lower case. See also the  next  section
+       for a few exceptions with optional address extensions.
+
 <b>TABLE SEARCH ORDER</b>
        Normally,  a lookup table is specified as a text file that
        serves as input to the <a href="postmap.1.html"><b>postmap</b>(1)</a> command. The result,  an
index 761e5d99ef87c3209f4eba5de7007b2f394b0c43..f48f3f884d6c0c488e4b342e84ead8ae10586727 100644 (file)
@@ -39,6 +39,15 @@ map where patterns are given as regular expressions, or lookups
 can be directed to TCP-based server. In that case, the lookups are
 done in a slightly different way as described below under
 "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index 305543bef8781f51eb522add6d05383c14131c7e..7f067da6cbdc8ade1b5fd74bf6dcb9a4801861e0 100644 (file)
@@ -99,6 +99,13 @@ the search is repeated for the unextended address (e.g., \fIuser\fR).
 The \fBpropagate_unmatched_extensions\fR parameter controls
 whether an unmatched address extension (\fI+foo\fR) is
 propagated to the result of table lookup.
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The local(8) delivery agent always folds the search string
+to lowercase before database lookup.
 .SH "SECURITY"
 .na
 .nf
index 13709663d4ca59b49dc0945ee8115f77dea3d8b2..5ee395108af084973b161ed8e0119305f2cab964 100644 (file)
@@ -59,6 +59,15 @@ domain\fR support. Use the \fBvirtual\fR(5) map for that purpose.
 
 The \fBcanonical\fR(5) mapping is not to be confused with local aliasing.
 Use the \fBaliases\fR(5) map for that purpose.
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index 8966548bf3695cb8bf16279fe67b8a8340dbb616..5aa6172d49100681a522d225e1c04d2e16ae0f98 100644 (file)
@@ -50,6 +50,15 @@ map where patterns are given as regular expressions, or lookups
 can be directed to TCP-based server. In that case, the lookups are
 done in a slightly different way as described below under
 "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index 6b168d77cc238e00f891edbbfd539eab56c3019b..67f42ad1cbc7f2a601437798f3d79ca1e2490b1b 100644 (file)
@@ -32,6 +32,15 @@ done in a slightly different way as described below under
 "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
 
 Table lookups are case insensitive.
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index ff1096f7dbabae9b7944766526972fe8595d14e8..e9a2864959978e8e47938da04e0f0b5c0235c0f8 100644 (file)
@@ -60,6 +60,15 @@ map where patterns are given as regular expressions, or lookups
 can be directed to TCP-based server. In that case, the lookups are
 done in a slightly different way as described below under
 "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index 1ffeb7e1fc711e7337ddd44982eb2ff398890696..804ae9d625448825692e18d6cb74f4b8545f2083 100644 (file)
@@ -56,6 +56,15 @@ map where patterns are given as regular expressions, or lookups
 can be directed to TCP-based server. In that case, the lookups are
 done in a slightly different way as described below under
 "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+The search string is folded to lowercase before database
+lookup. As of Postfix 2.3, the search string is not case
+folded with database types such as regexp: or pcre: whose
+lookup fields can match both upper and lower case.
 .SH "TABLE FORMAT"
 .na
 .nf
index 586d1d2dc4778f974825fb4ba0992e7b3bc613dc..7a3cd2e4cea624778c8e59f29bb01afc409a6d12 100644 (file)
@@ -24,6 +24,14 @@ as finished, or it informs the queue manager that delivery should
 be tried again at a later time. Delivery status reports are sent
 to the \fBbounce\fR(8), \fBdefer\fR(8) or \fBtrace\fR(8) daemon as
 appropriate.
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+All delivery decisions are made using the bare recipient
+name (i.e. the address localpart), folded to lower case.
+See also under ADDRESS EXTENSION below for a few exceptions.
 .SH "SYSTEM-WIDE AND USER-LEVEL ALIASING"
 .na
 .nf
index 389e578a473557d3e2f52939384049c4cf3aaa69..72fdf2acdc112c0babb51d29ab07f9ab43e77df7 100644 (file)
@@ -89,6 +89,14 @@ a string with the numerical user and group ID, respectively.
 The \fBvirtual_minimum_uid\fR parameter imposes a lower bound on
 numerical user ID values that may be specified in any
 \fBvirtual_uid_maps\fR.
+.SH "CASE FOLDING"
+.na
+.nf
+.ad
+.fi
+All delivery decisions are made using the full recipient
+address, folded to lower case. See also the next section
+for a few exceptions with optional address extensions.
 .SH "TABLE SEARCH ORDER"
 .na
 .nf
index d4530eb085aac38c03f5fde6734e4206a7bef90c..51b3f80e265a46293f29f6945c9fc4944bab6fde 100644 (file)
 #      can be directed to TCP-based server. In that case, the lookups are
 #      done in a slightly different way as described below under
 #      "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index 84062f5095e2f2a3cbb61c4a8c9500a3df934fa2..4aab46b31254b5ab7c03dfd795a8afcd8081f9a1 100644 (file)
 #      The \fBpropagate_unmatched_extensions\fR parameter controls
 #      whether an unmatched address extension (\fI+foo\fR) is
 #      propagated to the result of table lookup.
+# CASE FOLDING
+# .ad
+# .fi
+#       The local(8) delivery agent always folds the search string
+#       to lowercase before database lookup.
 # SECURITY
 # .ad
 # .fi
index 805b82e193acbb2b12fb1b3cb3f1d8b47adca4c1..30d99fec3a5e624a4f16c5eedf98f6d291e19fa7 100644 (file)
 #
 #      The \fBcanonical\fR(5) mapping is not to be confused with local aliasing.
 #      Use the \fBaliases\fR(5) map for that purpose.
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index ce27e5db8053badb8111bb94c96347e05176ab26..8a0e8e972ba4c71fc1b7ebac5cda9b3b0c646338 100644 (file)
 #      can be directed to TCP-based server. In that case, the lookups are
 #      done in a slightly different way as described below under
 #      "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index 23af4a92157a9e044931e9cc84c58be55ffd864e..49a3a2eacc2b52c6eb2612f4b827d65ef65351c8 100644 (file)
 #      "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
 #
 #      Table lookups are case insensitive.
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index 8ad53e2cce4c67553bb9fc6b2040dd0c65720379..4546a0095745d2e43777727c99fc9d0bdac97144 100644 (file)
 #      can be directed to TCP-based server. In that case, the lookups are
 #      done in a slightly different way as described below under
 #      "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index c4a004c5b53a90d9cf95ee543325c3aab2614552..e732a1a688d98213446d74a13e469c78209c2c53 100644 (file)
 #      can be directed to TCP-based server. In that case, the lookups are
 #      done in a slightly different way as described below under
 #      "REGULAR EXPRESSION TABLES" and "TCP-BASED TABLES".
+# CASE FOLDING
+# .ad
+# .fi
+#      The search string is folded to lowercase before database
+#      lookup. As of Postfix 2.3, the search string is not case
+#      folded with database types such as regexp: or pcre: whose
+#      lookup fields can match both upper and lower case.
 # TABLE FORMAT
 # .ad
 # .fi
index 210dcab13938aa6f168241225d27779695984c91..5b145f05970b9f4685c53857a73106e68902b8f7 100644 (file)
@@ -20,7 +20,7 @@
   * Patches change both the patchlevel and the release date. Snapshots have no
   * patchlevel; they change the release date only.
   */
-#define MAIL_RELEASE_DATE      "20060201"
+#define MAIL_RELEASE_DATE      "20060202"
 #define MAIL_VERSION_NUMBER    "2.3"
 
 #ifdef SNAPSHOT
index ce793369a35ffa973c0ef2c1d41bf4ef2ab33dc4..f0848c34a90b131799694f41901e8745edf97ccb 100644 (file)
 /*     be tried again at a later time. Delivery status reports are sent
 /*     to the \fBbounce\fR(8), \fBdefer\fR(8) or \fBtrace\fR(8) daemon as
 /*     appropriate.
+/* CASE FOLDING
+/* .ad
+/* .fi
+/*     All delivery decisions are made using the bare recipient
+/*     name (i.e. the address localpart), folded to lower case.
+/*     See also under ADDRESS EXTENSION below for a few exceptions.
 /* SYSTEM-WIDE AND USER-LEVEL ALIASING
 /* .ad
 /* .fi
index 406b2aa1f70bf84b474d14f6c087fdf68c287852..d5efe0c756f714d1607f5b60202c908357abe648 100644 (file)
@@ -150,6 +150,9 @@ static DNS_RR *smtp_addr_one(DNS_RR *addr_list, char *host, unsigned pref,
 
     /*
      * Use DNS lookup, but keep the option open to use native name service.
+     * 
+     * XXX A soft error dominates past and future hard errors. Therefore we
+     * should not clobber a soft error text and status code.
      */
     if (smtp_host_lookup_mask & SMTP_HOST_FLAG_DNS) {
        switch (dns_lookup_v(host, RES_DEFNAMES, &addr, (VSTRING *) 0,
@@ -167,6 +170,8 @@ static DNS_RR *smtp_addr_one(DNS_RR *addr_list, char *host, unsigned pref,
            dsb_status(why, SMTP_HAS_SOFT_DSN(why) ? "4.4.3" : "5.4.3");
            return (addr_list);
        case DNS_INVAL:
+           dsb_status(why, SMTP_HAS_SOFT_DSN(why) ? "4.4.4" : "5.4.4");
+           return (addr_list);
        case DNS_NOTFOUND:
            dsb_status(why, SMTP_HAS_SOFT_DSN(why) ? "4.4.4" : "5.4.4");
            /* maybe native naming service will succeed */
@@ -176,6 +181,9 @@ static DNS_RR *smtp_addr_one(DNS_RR *addr_list, char *host, unsigned pref,
 
     /*
      * Use the native name service which also looks in /etc/hosts.
+     * 
+     * XXX A soft error dominates past and future hard errors. Therefore we
+     * should not clobber a soft error text and status code.
      */
 #define RETRY_AI_ERROR(e) \
         ((e) == EAI_AGAIN || (e) == EAI_MEMORY || (e) == EAI_SYSTEM)
@@ -388,6 +396,11 @@ DNS_RR *smtp_domain_addr(char *name, int misc_flags, DSN_BUF *why,
        if (var_ign_mx_lookup_err)
            addr_list = smtp_host_addr(name, misc_flags, why);
        break;
+    case DNS_INVAL:
+       dsb_status(why, "5.4.4");
+       if (var_ign_mx_lookup_err)
+           addr_list = smtp_host_addr(name, misc_flags, why);
+       break;
     case DNS_FAIL:
        dsb_status(why, "5.4.3");
        if (var_ign_mx_lookup_err)
@@ -432,9 +445,6 @@ DNS_RR *smtp_domain_addr(char *name, int misc_flags, DSN_BUF *why,
            addr_list = dns_rr_sort(addr_list, dns_rr_compare_pref);
        }
        break;
-    case DNS_INVAL:
-       dsb_status(why, "5.4.4");
-       break;
     case DNS_NOTFOUND:
        addr_list = smtp_host_addr(name, misc_flags, why);
        break;
index ce09c8954eb94be02064b5ab462decae2aa49b39..0323312a6dd93bb119ae30d37b7ad79b2d258e74 100644 (file)
 /*     The \fBvirtual_minimum_uid\fR parameter imposes a lower bound on
 /*     numerical user ID values that may be specified in any
 /*     \fBvirtual_uid_maps\fR.
+/* CASE FOLDING
+/* .ad
+/* .fi
+/*     All delivery decisions are made using the full recipient
+/*     address, folded to lower case. See also the next section
+/*     for a few exceptions with optional address extensions.
 /* TABLE SEARCH ORDER
 /* .ad
 /* .fi