mailman #21
4 changed files with 15 additions and 7 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
ACCOUNT_EMAIL_VERIFICATION='none'
|
||||||
|
|
||||||
# This file is imported by the Mailman Suite. It is used to override
|
# This file is imported by the Mailman Suite. It is used to override
|
||||||
# the default settings from /usr/share/mailman3-web/settings.py.
|
# the default settings from /usr/share/mailman3-web/settings.py.
|
||||||
|
|
||||||
|
|
|
@ -250,6 +250,12 @@ outgoing: mailman.mta.deliver.deliver
|
||||||
|
|
||||||
# How to connect to the outgoing MTA. If smtp_user and smtp_pass is given,
|
# How to connect to the outgoing MTA. If smtp_user and smtp_pass is given,
|
||||||
# then Mailman will attempt to log into the MTA when making a new connection.
|
# then Mailman will attempt to log into the MTA when making a new connection.
|
||||||
|
# smtp_host: smtp.ionos.de
|
||||||
|
# smtp_port: 587
|
||||||
|
# smtp_user: ${smtp_user}
|
||||||
|
# smtp_pass: ${smtp_password}
|
||||||
|
# smtp_secure_mode: starttls
|
||||||
|
|
||||||
smtp_host: localhost
|
smtp_host: localhost
|
||||||
smtp_port: 25
|
smtp_port: 25
|
||||||
smtp_user:
|
smtp_user:
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
|
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
|
||||||
|
|
||||||
|
|
||||||
# Debian specific: Specifying a file name will cause the first
|
# Debian specific: Specifying a file name will cause the first
|
||||||
# line of that file to be used as the name. The Debian default
|
# line of that file to be used as the name. The Debian default
|
||||||
# is /etc/mailname.
|
# is /etc/mailname.
|
||||||
|
@ -21,8 +20,6 @@ readme_directory = no
|
||||||
# fresh installs.
|
# fresh installs.
|
||||||
compatibility_level = 3.6
|
compatibility_level = 3.6
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# TLS parameters
|
# TLS parameters
|
||||||
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
|
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
|
||||||
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
|
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
|
||||||
|
@ -32,7 +29,6 @@ smtp_tls_CApath=/etc/ssl/certs
|
||||||
smtp_tls_security_level=may
|
smtp_tls_security_level=may
|
||||||
smtp_tls_session_cache_database = <%text>btree:${data_directory}/smtp_scache</%text>
|
smtp_tls_session_cache_database = <%text>btree:${data_directory}/smtp_scache</%text>
|
||||||
|
|
||||||
|
|
||||||
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
|
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
|
||||||
myhostname = ${hostname}
|
myhostname = ${hostname}
|
||||||
alias_maps = hash:/etc/aliases
|
alias_maps = hash:/etc/aliases
|
||||||
|
@ -49,8 +45,8 @@ unknown_local_recipient_reject_code = 550
|
||||||
owner_request_special = no
|
owner_request_special = no
|
||||||
|
|
||||||
transport_maps =
|
transport_maps =
|
||||||
hash:/opt/mailman/mm/var/data/postfix_lmtp
|
hash:/var/lib/mailman3/data/postfix_lmtp
|
||||||
local_recipient_maps =
|
local_recipient_maps =
|
||||||
hash:/opt/mailman/mm/var/data/postfix_lmtp
|
hash:/var/lib/mailman3/data/postfix_lmtp
|
||||||
relay_domains =
|
relay_domains =
|
||||||
hash:/opt/mailman/mm/var/data/postfix_domains
|
hash:/var/lib/mailman3/data/postfix_domains
|
||||||
|
|
|
@ -35,6 +35,10 @@
|
||||||
'mailman': {
|
'mailman': {
|
||||||
'hostname': 'mailman.ckn.li',
|
'hostname': 'mailman.ckn.li',
|
||||||
'site_owner_email': 'martin.seibert@seibert.group',
|
'site_owner_email': 'martin.seibert@seibert.group',
|
||||||
|
'smtp_host': 'smtp.ionos.de',
|
||||||
|
'smtp_port': 465,
|
||||||
|
'smtp_user': '!decrypt:encrypt$gAAAAABoWEcZlLxiTKluyg3gZ-un2fYkuviW9BD9tTW8mfKBL5d41Z1X7LtI5CDnhhLXTGFpPnY1thr17h22oW3Ybz_WPgvbJVepnVwmeQwvMpg2psATKAY=',
|
||||||
|
'smtp_password': '!decrypt:encrypt$gAAAAABoWDusH3XY4ONh8MnmfBbyHW477ipjSycb3TiDGXxO5eujum80zXjNrOblswCGRTHsW9UasM_dXeeGBsa7KcK4s6AK_eynXCWeLCtXfrUSE_oEd7c='
|
||||||
},
|
},
|
||||||
'overwrite_nameservers': [
|
'overwrite_nameservers': [
|
||||||
'8.8.8.8',
|
'8.8.8.8',
|
||||||
|
|
Loading…
Reference in a new issue