Advertisement
Guest User

Untitled

a guest
Sep 25th, 2011
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 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. # Do not forget to execute "postfix reload" after editing this file.
  6. #
  7. # ==========================================================================
  8. # service type private unpriv chroot wakeup maxproc command + args
  9. # (yes) (yes) (yes) (never) (100)
  10. # ==========================================================================
  11. smtp inet n - - - - smtpd
  12. submission inet n - - - - smtpd
  13. # -o smtpd_tls_security_level=encrypt
  14. # -o smtpd_sasl_auth_enable=yes
  15. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  16. # -o milter_macro_daemon_name=ORIGINATING
  17. #smtps inet n - - - - smtpd
  18. # -o smtpd_tls_wrappermode=yes
  19. # -o smtpd_sasl_auth_enable=yes
  20. # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  21. # -o milter_macro_daemon_name=ORIGINATING
  22. #628 inet n - - - - qmqpd
  23. pickup fifo n - - 60 1 pickup
  24. -o content_filter=
  25. -o receive_override_options=no_header_body_checks
  26. cleanup unix n - - - 0 cleanup
  27. qmgr fifo n - n 300 1 qmgr
  28. #qmgr fifo n - - 300 1 oqmgr
  29. tlsmgr unix - - - 1000? 1 tlsmgr
  30. rewrite unix - - - - - trivial-rewrite
  31. bounce unix - - - - 0 bounce
  32. defer unix - - - - 0 bounce
  33. trace unix - - - - 0 bounce
  34. verify unix - - - - 1 verify
  35. flush unix n - - 1000? 0 flush
  36. proxymap unix - - n - - proxymap
  37. proxywrite unix - - n - 1 proxymap
  38. smtp unix - - - - - smtp
  39. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  40. relay unix - - - - - smtp
  41. -o smtp_fallback_relay=
  42. # -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  43. showq unix n - - - - showq
  44. error unix - - - - - error
  45. retry unix - - - - - error
  46. discard unix - - - - - discard
  47. local unix - n n - - local
  48. virtual unix - n n - - virtual
  49. lmtp unix - - - - - lmtp
  50. anvil unix - - - - 1 anvil
  51. scache unix - - - - 1 scache
  52. #
  53. # ====================================================================
  54. # Interfaces to non-Postfix software. Be sure to examine the manual
  55. # pages of the non-Postfix software to find out what options it wants.
  56. #
  57. # Many of the following services use the Postfix pipe(8) delivery
  58. # agent. See the pipe(8) man page for information about ${recipient}
  59. # and other message envelope options.
  60. # ====================================================================
  61. #
  62. # maildrop. See the Postfix MAILDROP_README file for details.
  63. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  64. #
  65. maildrop unix - n n - - pipe
  66. flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
  67. #
  68. # See the Postfix UUCP_README file for configuration details.
  69. #
  70. uucp unix - n n - - pipe
  71. flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
  72. #
  73. # Other external delivery methods.
  74. #
  75. ifmail unix - n n - - pipe
  76. flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  77. bsmtp unix - n n - - pipe
  78. flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
  79. scalemail-backend unix - n n - 2 pipe
  80. flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
  81. mailman unix - n n - - pipe
  82. flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  83. ${nexthop} ${user}
  84.  
  85.  
  86. ## Alt. port for SMTP ##
  87. 15000 inet n - n - - smtpd
  88.  
  89.  
  90. smtp-amavis unix - - n - 2 smtp
  91. -o smtp_data_done_timeout=1200
  92. -o smtp_send_xforward_command=yes
  93. -o disable_dns_lookups=yes
  94. -o max_use=20
  95.  
  96. 127.0.0.1:10025 inet n - - - - smtpd
  97. -o content_filter=
  98. -o local_recipient_maps=
  99. -o relay_recipient_maps=
  100. -o smtpd_restriction_classes=
  101. -o smtpd_delay_reject=no
  102. -o smtpd_client_restrictions=permit_mynetworks,reject
  103. -o smtpd_helo_restrictions=
  104. -o smtpd_sender_restrictions=
  105. -o smtpd_recipient_restrictions=permit_mynetworks,reject
  106. -o smtpd_data_restrictions=reject_unauth_pipelining
  107. -o smtpd_end_of_data_restrictions=
  108. -o mynetworks=127.0.0.0/8
  109. -o smtpd_error_sleep_time=0
  110. -o smtpd_soft_error_limit=1001
  111. -o smtpd_hard_error_limit=1000
  112. -o smtpd_client_connection_count_limit=0
  113. -o smtpd_client_connection_rate_limit=0
  114. -o receive_override_options=no_header_body_checks,no_unknown_recipient_checks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement