Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.32 KB | None | 0 0
  1. #
  2. # Postfix master process configuration file. For details on the format
  3. # of the file, see the master(5) manual page (command: "man 5 master").
  4. #
  5. # ==========================================================================
  6. # service type private unpriv chroot wakeup maxproc command + args
  7. # (yes) (yes) (yes) (never) (100)
  8. # ==========================================================================
  9.  
  10. smtp inet n - n - - smtpd
  11. -o content_filter=spamchk:dummy
  12. -o receive_override_options=no_address_mappings
  13.  
  14. spamchk unix - n n - 10 pipe
  15. flags=Rq user=spamd argv=/usr/local/bin/spamchk -f ${sender} -- ${recipient}
  16.  
  17. dovecot unix - n n - - pipe
  18. flags=DRhu user=vmail:vmail argv=/usr/libexec/dovecot/deliver -f ${sender} -d ${recipient}
  19.  
  20. #submission inet n - n - - smtpd
  21. # -o smtpd_enforce_tls=yes
  22. # -o smtpd_sasl_auth_enable=yes
  23. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  24. #smtps inet n - n - - smtpd
  25. # -o smtpd_tls_wrappermode=yes
  26. # -o smtpd_sasl_auth_enable=yes
  27. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  28. #628 inet n - n - - qmqpd
  29. pickup fifo n - n 60 1 pickup
  30. cleanup unix n - n - 0 cleanup
  31. qmgr fifo n - n 300 1 qmgr
  32. #qmgr fifo n - n 300 1 oqmgr
  33. tlsmgr unix - - n 1000? 1 tlsmgr
  34. rewrite unix - - n - - trivial-rewrite
  35. bounce unix - - n - 0 bounce
  36. defer unix - - n - 0 bounce
  37. trace unix - - n - 0 bounce
  38. verify unix - - n - 1 verify
  39. flush unix n - n 1000? 0 flush
  40. proxymap unix - - n - - proxymap
  41. smtp unix - - n - - smtp
  42. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  43. relay unix - - n - - smtp
  44. -o fallback_relay=
  45. # -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  46. showq unix n - n - - showq
  47. error unix - - n - - error
  48. discard unix - - n - - discard
  49. local unix - n n - - local
  50. virtual unix - n n - - virtual
  51. lmtp unix - - n - - lmtp
  52. anvil unix - - n - 1 anvil
  53. scache unix - - n - 1 scache
  54. #
  55. # ====================================================================
  56. # Interfaces to non-Postfix software. Be sure to examine the manual
  57. # pages of the non-Postfix software to find out what options it wants.
  58. #
  59. # Many of the following services use the Postfix pipe(8) delivery
  60. # agent. See the pipe(8) man page for information about ${recipient}
  61. # and other message envelope options.
  62. # ====================================================================
  63. #
  64. # maildrop. See the Postfix MAILDROP_README file for details.
  65. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  66. #
  67. maildrop unix - n n - - pipe
  68. flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
  69. #
  70. # The Cyrus deliver program has changed incompatibly, multiple times.
  71. #
  72. 71,1 53%
  73.  
  74. #
  75. # The Cyrus deliver program has changed incompatibly, multiple times.
  76. #
  77. old-cyrus unix - n n - - pipe
  78. flags=R user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -m ${extension} ${user}
  79. # Cyrus 2.1.5 (Amos Gouaux)
  80. # Also specify in main.cf: cyrus_destination_recipient_limit=1
  81. cyrus unix - n n - - pipe
  82. user=cyrus argv=/usr/lib/cyrus-imapd/deliver -e -r ${sender} -m ${extension} ${user}
  83. #
  84. # See the Postfix UUCP_README file for configuration details.
  85. #
  86. uucp unix - n n - - pipe
  87. flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
  88. #
  89. # Other external delivery methods.
  90. #
  91. ifmail unix - n n - - pipe
  92. flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  93. bsmtp unix - n n - - pipe
  94. flags=Fq. user=foo argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipient
  95.  
  96. # ==========================================================================
  97. # service type private unpriv chroot wakeup maxproc command + args
  98. # (yes) (yes) (yes) (never) (50)
  99. # ==========================================================================
  100.  
  101. spamassassin unix - n n - - pipe
  102. user=spamd argv=/usr/bin/spamc -f -e
  103. /usr/sbin/sendmail -oi -f ${sender} ${recipient}
  104.  
  105. vacation unix - n n - - pipe
  106. flags=Rq user=vacation argv=/var/spool/vacation/vacation.pl -f ${sender} -- ${recipient}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement