Advertisement
Guest User

Untitled

a guest
May 2nd, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. @@ postconf -n
  2.  
  3. alias_database = hash:/etc/postfix/aliases
  4. alias_maps = $alias_database hash:/var/lib/mailman/data/aliases
  5. broken_sasl_auth_clients = yes
  6. disable_vrfy_command = yes
  7. fallback_transport = virtual
  8. home_mailbox = .maildir/
  9. local_recipient_maps = unix:passwd.byname $alias_maps $virtual_maps $virtual_mailbox_maps
  10. mail_owner = postfix
  11. mail_spool_directory = /var/spool/mail
  12. mailq_path = /usr/bin/mailq
  13. manpage_directory = /usr/share/man
  14. mydestination = $myhostname, localhost.$mydomain
  15. mydomain = cyt.hu
  16. myhostname = mail.cyt.hu
  17. mynetworks = 127.0.0.1/32
  18. mynetworks_style = host
  19. myorigin = $mydomain
  20. newaliases_path = /usr/bin/newaliases
  21. queue_directory = /mnt/data/mail
  22. recipient_delimiter = +
  23. sample_directory = /etc/postfix
  24. sendmail_path = /usr/sbin/sendmail
  25. setgid_group = postdrop
  26. show_user_unknown_table_name = no
  27. smtpd_banner = $myhostname ESMTP $mail_name
  28. smtpd_client_restrictions =
  29. smtpd_helo_required = yes
  30. smtpd_helo_restrictions =
  31. smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_invalid_hostname, reject_non_fqdn_hostname, reject_non_fqdn_sender, reject_non_fqdn_recipient, reject_unknown_sender_domain, reject_unknown_recipient_domain, reject_unauth_pipelining, permit
  32. transport_maps = pcre:/etc/postfix/transport
  33. unknown_local_recipient_reject_code = 450
  34. virtual_gid_maps = static:207
  35. virtual_mailbox_base = /var/spool/postfix/virtual
  36. virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
  37. virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
  38. virtual_minimum_uid = 207
  39. virtual_overquota_bounce = yes
  40. virtual_uid_maps = static:207
  41.  
  42.  
  43. @@ /etc/postfix/transport
  44.  
  45. /autoreply/ vacation:
  46.  
  47.  
  48. @@ /etc/postfix/virtual.pcre
  49.  
  50. /^([^@]+)@((?!autoreply)[^@]+)$/ $1@$2, $1@autoreply.$2
  51.  
  52.  
  53. @@ /var/lib/mailman/data/aliases
  54.  
  55. teszt2: "|/usr/lib64/mailman/mail/mailman post teszt2"
  56. ...
  57.  
  58.  
  59. @@ /var/lib/mailman/data/virtual-mailman
  60.  
  61. teszt2@cyt.hu teszt2
  62.  
  63.  
  64.  
  65. @@ and the log from the problem
  66. ...
  67. Feb 19 13:16:27 thor postfix/cleanup[15667]: maps_find: virtual_alias_maps: hash:/var/lib/mailman/data/virtual-mailman(0,lock|fold_fix): teszt2@cyt.hu = teszt2
  68. Feb 19 13:16:27 thor postfix/cleanup[15667]: mail_addr_find: teszt2@cyt.hu -> teszt2
  69. ...
  70. Feb 19 13:16:27 thor postfix/cleanup[15667]: rewrite_clnt: local: teszt2 -> teszt2@cyt.hu
  71. ...
  72. Feb 19 13:16:27 thor postfix/qmgr[15662]: resolve_clnt: `root@cyt.hu' -> `teszt2@cyt.hu' -> transp=`virtual' host=`cyt.hu' rcpt=`teszt2@cyt.hu' flags= class=virtual
  73. ...
  74. Feb 19 13:16:27 thor postfix/virtual[15671]: E819FE2FF44: to=<teszt2@cyt.hu>, relay=virtual, delay=0.07, delays=0.05/0.01/0/0.01, dsn=5.1.1, status=bounced (unknown user: "teszt2@cyt.hu")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement