home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20110502.etc.tar.gz / bradford.20110502.etc.tar / etc / postfix / relocated < prev    next >
Text File  |  2006-05-02  |  7KB  |  164 lines

  1. # RELOCATED(5)                                                      RELOCATED(5)
  2. # NAME
  3. #        relocated - Postfix relocated table format
  4. # SYNOPSIS
  5. #        postmap /etc/postfix/relocated
  6. # DESCRIPTION
  7. #        The  optional  relocated(5) table provides the information
  8. #        that is used in "user has moved  to  new_location"  bounce
  9. #        messages.
  10. #        Normally,  the  relocated(5)  table is specified as a text
  11. #        file that serves as input to the postmap(1) command.   The
  12. #        result,  an  indexed file in dbm or db format, is used for
  13. #        fast searching by the mail  system.  Execute  the  command
  14. #        "postmap  /etc/postfix/relocated"  in order to rebuild the
  15. #        indexed file after changing the relocated table.
  16. #        When the table is provided via other means  such  as  NIS,
  17. #        LDAP  or  SQL,  the  same lookups are done as for ordinary
  18. #        indexed files.
  19. #        Alternatively, the table can be  provided  as  a  regular-
  20. #        expression map where patterns are given as regular expres-
  21. #        sions, or lookups can be directed to TCP-based server.  In
  22. #        that  case,  the  lookups are done in a slightly different
  23. #        way as described below under "REGULAR  EXPRESSION  TABLES"
  24. #        and "TCP-BASED TABLES".
  25. #        Table lookups are case insensitive.
  26. # TABLE FORMAT
  27. #        The input format for the postmap(1) command is as follows:
  28. #        o      An entry has one of the following form:
  29. #                    pattern      new_location
  30. #               Where new_location  specifies  contact  information
  31. #               such  as  an  email  address,  or  perhaps a street
  32. #               address or telephone number.
  33. #        o      Empty lines and whitespace-only lines are  ignored,
  34. #               as  are  lines whose first non-whitespace character
  35. #               is a `#'.
  36. #        o      A logical line starts with non-whitespace  text.  A
  37. #               line  that starts with whitespace continues a logi-
  38. #               cal line.
  39. # TABLE SEARCH ORDER
  40. #        With lookups from indexed files such as DB or DBM, or from
  41. #        networked  tables  such  as NIS, LDAP or SQL, patterns are
  42. #        tried in the order as listed below:
  43. #        user@domain
  44. #               Matches user@domain. This form has precedence  over
  45. #               all other forms.
  46. #        user   Matches user@site when site is $myorigin, when site
  47. #               is listed in $mydestination, or when site is listed
  48. #               in $inet_interfaces or $proxy_interfaces.
  49. #        @domain
  50. #               Matches  other  addresses  in domain. This form has
  51. #               the lowest precedence.
  52. # ADDRESS EXTENSION
  53. #        When a mail address localpart contains the optional recip-
  54. #        ient  delimiter  (e.g., user+foo@domain), the lookup order
  55. #        becomes: user+foo@domain, user@domain, user+foo, user, and
  56. #        @domain.
  57. # REGULAR EXPRESSION TABLES
  58. #        This  section  describes how the table lookups change when
  59. #        the table is given in the form of regular  expressions  or
  60. #        when  lookups  are  directed  to a TCP-based server. For a
  61. #        description of regular expression lookup table syntax, see
  62. #        regexp_table(5) or pcre_table(5). For a description of the
  63. #        TCP client/server table lookup protocol, see tcp_table(5).
  64. #        This  feature is not available up to and including Postfix
  65. #        version 2.2.
  66. #        Each pattern is a regular expression that  is  applied  to
  67. #        the entire address being looked up. Thus, user@domain mail
  68. #        addresses are not broken up into their  user  and  @domain
  69. #        constituent parts, nor is user+foo broken up into user and
  70. #        foo.
  71. #        Patterns are applied in the order as specified in the  ta-
  72. #        ble,  until  a  pattern  is  found that matches the search
  73. #        string.
  74. #        Results are the same as with indexed  file  lookups,  with
  75. #        the  additional feature that parenthesized substrings from
  76. #        the pattern can be interpolated as $1, $2 and so on.
  77. # TCP-BASED TABLES
  78. #        This section describes how the table lookups  change  when
  79. #        lookups are directed to a TCP-based server. For a descrip-
  80. #        tion of the TCP client/server lookup protocol, see tcp_ta-
  81. #        ble(5).  This feature is not available up to and including
  82. #        Postfix version 2.2.
  83. #        Each lookup operation uses the entire address once.  Thus,
  84. #        user@domain  mail  addresses  are not broken up into their
  85. #        user and @domain constituent parts, nor is user+foo broken
  86. #        up into user and foo.
  87. #        Results are the same as with indexed file lookups.
  88. # BUGS
  89. #        The  table format does not understand quoting conventions.
  90. # CONFIGURATION PARAMETERS
  91. #        The following main.cf parameters are especially  relevant.
  92. #        The  text  below  provides  only  a parameter summary. See
  93. #        postconf(5) for more details including examples.
  94. #        relocated_maps
  95. #               List of lookup tables for relocated users or sites.
  96. #        Other parameters of interest:
  97. #        inet_interfaces
  98. #               The  network  interface  addresses that this system
  99. #               receives mail on.  You need to stop and start Post-
  100. #               fix when this parameter changes.
  101. #        mydestination
  102. #               List  of  domains  that  this mail system considers
  103. #               local.
  104. #        myorigin
  105. #               The domain that is appended to locally-posted mail.
  106. #        proxy_interfaces
  107. #               Other interfaces that this machine receives mail on
  108. #               by way of a proxy agent or network address transla-
  109. #               tor.
  110. # SEE ALSO
  111. #        trivial-rewrite(8), address resolver
  112. #        postmap(1), Postfix lookup table manager
  113. #        postconf(5), configuration parameters
  114. # README FILES
  115. #        Use  "postconf  readme_directory" or "postconf html_direc-
  116. #        tory" to locate this information.
  117. #        DATABASE_README, Postfix lookup table overview
  118. #        ADDRESS_REWRITING_README, address rewriting guide
  119. # LICENSE
  120. #        The Secure Mailer license must be  distributed  with  this
  121. #        software.
  122. # AUTHOR(S)
  123. #        Wietse Venema
  124. #        IBM T.J. Watson Research
  125. #        P.O. Box 704
  126. #        Yorktown Heights, NY 10598, USA
  127. #                                                                   RELOCATED(5)
  128.