Guest User

Untitled

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