Guest User

Untitled

a guest
May 14th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. May 14 18:05:30 mydomain postfix/cleanup[2845]: 4506C2086: message-id=<20180514180530.4506C2086@mydomain.com>
  2. May 14 18:05:30 mydomain postfix/qmgr[1446]: 4506C2086: from=<root@mydomain.com>, size=352, nrcpt=1 (queue active)
  3. May 14 18:05:30 mydomain postfix/smtp[2847]: warning: database /etc/postfix/generic.db is older than source file /etc/postfix/generic
  4. May 14 18:05:31 mydomain postfix/smtp[2847]: 4506C2086: to=<user@gmail.com>, relay=in.mailjet.com[104.XXX.xx.xx]:2525, delay=1.7, delays=0.02/0.01/1.3/0.33, dsn=2.0.0, status=sent (250 OK queued as 64ced0eb-ab23-498b-be32-2c267c128ce4)
  5. May 14 18:05:31 mydomain postfix/qmgr[1446]: 4506C2086: removed
  6.  
  7. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  8.  
  9.  
  10. # Debian specific: Specifying a file name will cause the first
  11. # line of that file to be used as the name. The Debian default
  12. # is /etc/mailname.
  13. #myorigin = /etc/mailname
  14. virtual_alias_maps = hash:/etc/postfix/virtual
  15.  
  16. smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
  17. biff = no
  18.  
  19. # appending .domain is the MUA's job.
  20. append_dot_mydomain = no
  21.  
  22. # Uncomment the next line to generate "delayed mail" warnings
  23. #delay_warning_time = 4h
  24.  
  25. readme_directory = no
  26.  
  27. # TLS parameters
  28. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  29. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  30. smtpd_use_tls=yes
  31. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  32. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  33.  
  34. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  35. # information on enabling SSL in the smtp client.
  36.  
  37. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
  38. myhostname = mydomain.com
  39. alias_maps = hash:/etc/aliases
  40. alias_database = hash:/etc/aliases
  41. myorigin = /etc/mailname
  42. mydestination = $myhostname, mydomain.com, localhost.com, localhost
  43. relayhost = in.mailjet.com:2525
  44. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  45. mailbox_size_limit = 0
  46. recipient_delimiter = +
  47. inet_interfaces = loopback-only
  48. #default_transport = error
  49. #relay_transport = error
  50. inet_protocols = all
  51. smtp_tls_security_level = encrypt
  52. smtp_sasl_auth_enable = yes
  53. smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
  54. smtp_sasl_security_options = noanonymous
  55. smtp_generic_maps = hash:/etc/postfix/generic
  56.  
  57. # See man 5 aliases for format
  58. postmaster: root
  59. root: support@mydomain.com
  60.  
  61. mydomain.com
Add Comment
Please, Sign In to add comment