Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. # Postfix master process configuration file. For details on the format
  2. # of the file, see the master(5) manual page (command: "man 5 master").
  3. #
  4. # Do not forget to execute "postfix reload" after editing this file.
  5. #
  6. # ==========================================================================
  7. # service type private unpriv chroot wakeup maxproc command + args
  8. # (yes) (yes) (yes) (never) (100)
  9. # ==========================================================================
  10. smtp inet n - - - - smtpd -v
  11. submission inet n - - - - smtpd
  12. -o smtpd_tls_security_level=encrypt
  13. -o smtpd_sasl_auth_enable=yes
  14. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  15. # -o milter_macro_daemon_name=ORIGINATING
  16. smtps inet n - - - - smtpd
  17. -o smtpd_tls_wrappermode=yes
  18. -o smtpd_sasl_auth_enable=yes
  19. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  20. # -o milter_macro_daemon_name=ORIGINATING
  21. #628 inet n - - - - qmqpd
  22. pickup fifo n - - 60 1 pickup
  23. cleanup unix n - - - 0 cleanup
  24. qmgr fifo n - n 300 1 qmgr
  25. #qmgr fifo n - - 300 1 oqmgr
  26. tlsmgr unix - - - 1000? 1 tlsmgr
  27. rewrite unix - - - - - trivial-rewrite
  28. bounce unix - - - - 0 bounce
  29. defer unix - - - - 0 bounce
  30. trace unix - - - - 0 bounce
  31. verify unix - - - - 1 verify
  32. flush unix n - - 1000? 0 flush
  33. proxymap unix - - n - - proxymap
  34. proxywrite unix - - n - 1 proxymap
  35. smtp unix - - - - - smtp
  36. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  37. relay unix - - - - - smtp
  38. -o smtp_fallback_relay=
  39. # -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  40. showq unix n - - - - showq
  41. error unix - - - - - error
  42. retry unix - - - - - error
  43. discard unix - - - - - discard
  44. local unix - n n - - local
  45. virtual unix - n n - - virtual
  46. lmtp unix - - - - - lmtp
  47. anvil unix - - - - 1 anvil
  48. scache unix - - - - 1 scache
  49. #
  50. # ====================================================================
  51. # Interfaces to non-Postfix software. Be sure to examine the manual
  52. # pages of the non-Postfix software to find out what options it wants.
  53. #
  54. # Many of the following services use the Postfix pipe(8) delivery
  55. # agent. See the pipe(8) man page for information about ${recipient}
  56. # and other message envelope options.
  57. # ====================================================================
  58. #
  59. # maildrop. See the Postfix MAILDROP_README file for details.
  60. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  61. #
  62. maildrop unix - n n - - pipe
  63. flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
  64. #
  65. # ====================================================================
  66. #
  67. # Recent Cyrus versions can use the existing "lmtp" master.cf entry.
  68. #
  69. # Specify in cyrus.conf:
  70. # lmtp cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
  71. #
  72. # Specify in main.cf one or more of the following:
  73. # mailbox_transport = lmtp:inet:localhost
  74. # virtual_transport = lmtp:inet:localhost
  75. #
  76. # ====================================================================
  77. #
  78. # Cyrus 2.1.5 (Amos Gouaux)
  79. # Also specify in main.cf: cyrus_destination_recipient_limit=1
  80. #
  81. #cyrus unix - n n - - pipe
  82. # user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
  83. #
  84. # ====================================================================
  85. # Old example of delivery via Cyrus.
  86. #
  87. #old-cyrus unix - n n - - pipe
  88. # flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
  89. #
  90. # ====================================================================
  91. #
  92. # See the Postfix UUCP_README file for configuration details.
  93. #
  94. uucp unix - n n - - pipe
  95. flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
  96. #
  97. # Other external delivery methods.
  98. #
  99. ifmail unix - n n - - pipe
  100. flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  101. bsmtp unix - n n - - pipe
  102. flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
  103. scalemail-backend unix - n n - 2 pipe
  104. flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
  105. mailman unix - n n - - pipe
  106. flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  107. ${nexthop} ${user}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement