Guest User

Untitled

a guest
Nov 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. Nov 18 18:47:38 mail postfix/proxymap[26926]: error: unsupported dictionary type: mysql
  2. Nov 18 18:47:38 mail postfix/proxymap[26926]: message repeated 4 times: [error: unsupported dictionary type: mysql]
  3.  
  4. # Debian specific: Specifying a file name will cause the first
  5. # line of that file to be used as the name. The Debian default
  6. # is /etc/mailname.
  7. #myorigin = /etc/mailname
  8.  
  9. smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
  10. biff = no
  11.  
  12. # appending .domain is the MUA's job.
  13. append_dot_mydomain = no
  14.  
  15. # Uncomment the next line to generate "delayed mail" warnings
  16. #delay_warning_time = 4h
  17.  
  18. readme_directory = no
  19.  
  20. # See http://www.postfix.org/COMPATIBILITY_README.html -- default to 2 on
  21. # fresh installs.
  22. compatibility_level = 2
  23.  
  24. # TLS parameters
  25. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  26. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  27. smtpd_use_tls=yes
  28. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  29. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  30.  
  31. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  32. # information on enabling SSL in the smtp client.
  33.  
  34. smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated >defer_unauth_destination
  35. myhostname = mail
  36. alias_maps = hash:/etc/aliases
  37. alias_database = hash:/etc/aliases
  38. myorigin = /etc/mailname
  39. mydestination = mail.cloudflame.eu, localhost.cloudflame.eu, localhost
  40. relayhost =
  41. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 192.168.0.0/24
  42. mailbox_size_limit = 0
  43. recipient_delimiter = +
  44. inet_interfaces = all
  45. inet_protocols = all
  46.  
  47. #######
  48. virtual_mailbox_domains = proxy:mysql:/etc/postfix/sql/mysql_virtual_domains_maps.cf
  49. virtual_alias_maps =
  50. proxy:mysql:/etc/postfix/sql/mysql_virtual_alias_maps.cf,
  51. proxy:mysql:/etc/postfix/sql/mysql_virtual_alias_domain_maps.cf,
  52. proxy:mysql:/etc/postfix/sql/mysql_virtual_alias_domain_catchall_maps.cf
  53. virtual_mailbox_maps =
  54. proxy:mysql:/etc/postfix/sql/mysql_virtual_mailbox_maps.cf,
  55. proxy:mysql:/etc/postfix/sql/mysql_virtual_alias_domain_mailbox_maps.cf
  56. # if you let postfix store your mails directly (without using maildrop, dovecot deliver etc.)
  57. #virtual_mailbox_base = /var/mail/vmail
  58. # Additional for quota support
  59. virtual_create_maildirsize = yes
  60. virtual_mailbox_extended = yes
  61. virtual_mailbox_limit_maps = mysql:/etc/postfix/sql/mysql_virtual_mailbox_limit_maps.cf
  62. virtual_mailbox_limit_override = yes
  63. virtual_maildir_limit_message = Sorry, the user's maildir has overdrawn his diskspace quota, please try again later.
  64. virtual_overquota_bounce = yes
Add Comment
Please, Sign In to add comment