Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

master_cf
Sunday, May 20th, 2007 at 5:15:08pm UTC 

  1. #
  2. # Postfix master process configuration file.  Each line describes how
  3. # a mailer component program should be run. The fields that make up
  4. # each line are described below. A "-" field value requests that a
  5. # default value be used for that field.
  6. #
  7. # Service: any name that is valid for the specified transport type
  8. # (the next field).  With INET transports, a service is specified as
  9. # host:port.  The host part (and colon) may be omitted. Either host
  10. # or port may be given in symbolic form or in numeric form. Examples
  11. # for the SMTP server:  localhost:smtp receives mail via the loopback
  12. # interface only; 10025 receives mail on port 10025.
  13. #
  14. # Transport type: "inet" for Internet sockets, "unix" for UNIX-domain
  15. # sockets, "fifo" for named pipes.
  16. #
  17. # Private: whether or not access is restricted to the mail system.
  18. # Default is private service.  Internet (inet) sockets can't be private.
  19. #
  20. # Unprivileged: whether the service runs with root privileges or as
  21. # the owner of the Postfix system (the owner name is controlled by the
  22. # mail_owner configuration variable in the main.cf file).
  23. #
  24. # Chroot: whether or not the service runs chrooted to the mail queue
  25. # directory (pathname is controlled by the queue_directory configuration
  26. # variable in the main.cf file). Presently, all Postfix daemons can run
  27. # chrooted, except for the pipe, virtual and local delivery daemons.
  28. # The files in the examples/chroot-setup subdirectory describe how
  29. # to set up a Postfix chroot environment for your type of machine.
  30. #
  31. # Wakeup time: automatically wake up the named service after the
  32. # specified number of seconds. A ? at the end of the wakeup time
  33. # field requests that wake up events be sent only to services that
  34. # are actually being used.  Specify 0 for no wakeup. Presently, only
  35. # the pickup, queue manager and flush daemons need a wakeup timer.
  36. #
  37. # Max procs: the maximum number of processes that may execute this
  38. # service simultaneously. Default is to use a globally configurable
  39. # limit (the default_process_limit configuration parameter in main.cf).
  40. # Specify 0 for no process count limit.
  41. #
  42. # Command + args: the command to be executed. The command name is
  43. # relative to the Postfix program directory (pathname is controlled by
  44. # the program_directory configuration variable). Adding one or more
  45. # -v options turns on verbose logging for that service; adding a -D
  46. # option enables symbolic debugging (see the debugger_command variable
  47. # in the main.cf configuration file). See individual command man pages
  48. # for specific command-line options, if any.
  49. #
  50. # In order to use the "uucp" message tranport below, set up entries
  51. # in the transport table.
  52. #
  53. # In order to use the "cyrus" message transport below, configure it
  54. # in main.cf as the mailbox_transport.
  55. #
  56. # SPECIFY ONLY PROGRAMS THAT ARE WRITTEN TO RUN AS POSTFIX DAEMONS.
  57. # ALL DAEMONS SPECIFIED HERE MUST SPEAK A POSTFIX-INTERNAL PROTOCOL.
  58. #
  59. # DO NOT CHANGE THE ZERO PROCESS LIMIT FOR CLEANUP/BOUNCE/DEFER OR
  60. # POSTFIX WILL BECOME STUCK UP UNDER HEAVY LOAD
  61. #
  62. # DO NOT CHANGE THE ONE PROCESS LIMIT FOR PICKUP/QMGR OR POSTFIX WILL
  63. # DELIVER MAIL MULTIPLE TIMES.
  64. #
  65. # DO NOT SHARE THE POSTFIX QUEUE BETWEEN MULTIPLE POSTFIX INSTANCES.
  66. #
  67. # ==========================================================================
  68. # service type  private   unpriv     chroot       wakeup maxproc  command + args
  69. #             (yes) (yes)    (yes)       (never)        (50)
  70. # ==========================================================================
  71. smtp    inet        n       -      y     -    -   smtpd
  72. #smtps    inet    n   -  n -        -       smtpd
  73. #  -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
  74. #submission     inet n        -       n      -     -    smtpd
  75. #  -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes
  76. #628      inet      n     -    n   -  - qmqpd
  77. pickup  fifo      n     -    y   60 1        pickup
  78. cleanup unix     n    -   y  - 0        cleanup
  79. #qmgr     fifo     n    -   n  300       1      qmgr
  80. qmgr    fifo        n       -      y     300  1 qmgr
  81. #tlsmgr   fifo   -  - n        300     1    tlsmgr
  82. rewrite unix     -    -   y  - -        trivial-rewrite
  83. bounce  unix      -     -    y   -  0 bounce
  84. defer   unix       -      -     y    -   0  bounce
  85. flush   unix       n      -     y    1000?       0      flush
  86. smtp    unix        -       -      y     -    -   smtp
  87. showq   unix       n      -     y    -   -  showq
  88. error   unix       -      -     y    -   -  error
  89. local     unix     -    n   n  - -        local
  90. virtual unix     -    n   y  - -        virtual
  91. lmtp    unix        -       -      y     -    -   lmtp
  92. #
  93. # Interfaces to non-Postfix software. Be sure to examine the manual
  94. # pages of the non-Postfix software to find out what options it wants.
  95. # The Cyrus deliver program has changed incompatibly.
  96. #
  97. #===============================================
  98. smtp      inet  n       -       n       -       5       smtpd
  99. #          -o content_filter=smtp-amavis:[127.0.0.1]:10024
  100. smtp-amavis unix  -       -       n       -       2       smtp
  101.           -o smtp_data_done_timeout=1200
  102.           -o disable_dns_lookups=yes
  103. 127.0.0.1:10025 inet n  -       n       -       -      smtpd
  104.           -o local_recipient_maps =
  105.           -o smtpd_restriction_classes=
  106.           -o smtpd_client_restrictions=
  107.           -o smtpd_helo_restrictions=
  108.           -o smtpd_sender_restrictions=
  109.           -o smtpd_recipient_restrictions=permit_mynetworks,reject
  110.           -o strict_rfc821_envelopes=yes
  111. #================================================
  112. cyrus     unix     -    n   n  - -        pipe
  113.   flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
  114. uucp      unix      -     n    n   -  - pipe
  115.   flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail.postfix ($recipient)
  116. ifmail    unix  -       n       n       -       -       pipe
  117.   flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  118. bsmtp     unix  -       n       n       -       -       pipe
  119.   flags=Fq. user=foo argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipient
  120. relay     unix     -    -   n  - -        smtp
  121. trace     unix     -    -   n  - 0        bounce
  122. verify    unix    -   -  n -        1       verify
  123. proxymap  unix  - -        n       -      -     proxymap
  124. anvil     unix     -    -   n  - 1        anvil
  125. scache    unix    -   -  n -        1       scache
  126. discard   unix   -  - n        -       -      discard
  127. tlsmgr    unix  -       -       n       1000?   1       tlsmgr

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

comments powered by Disqus
worth-right
worth-right