Skip to content
Snippets Groups Projects
Verified Commit 4e648709 authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[Mail] Update Postfix changelog

parent 2da923cf
No related branches found
No related tags found
No related merge requests found
# v1.0.3
- Re-open port 25 for incoming mails
- Move away ENV from Dockerfile (better to have only one self-documented place, ie Compose)
- Remove `smtps` service from `master.cf` as it is obsolete and not mapped to any host port
- Remove `virtual_minimum_uid` already set to the default and does not seem useful without `virtual_uid_maps`
- Remove unused files (old private key, old rsyslog config)
- Try to clarify some comments (not sure they are tho)
- Fix syntax for milter filters (from Romain's hotfix on monitoring)
# v1.0.2 # v1.0.2
Support for LDAPS Support for LDAPS
......
...@@ -140,15 +140,15 @@ adduser opendmarc postdrop ...@@ -140,15 +140,15 @@ adduser opendmarc postdrop
# SSL : récupération des certificats (qui seront utilisés pour la connexion SMTP) # SSL : récupération des certificats (qui seront utilisés pour la connexion SMTP)
postconf -e "smtpd_tls_cert_file = ${SSL_CERT}" postconf -e "smtpd_tls_cert_file = ${SSL_CERT}"
postconf -e "smtpd_tls_key_file = ${SSL_KEY}" postconf -e "smtpd_tls_key_file = ${SSL_KEY}"
postconf -e "smtpd_tls_security_level = may"
# Activation du port 587 (port "submission") # Activation du port 587 (port "submission")
cat <<EOF >> /etc/postfix/master.cf cat <<EOF >> /etc/postfix/master.cf
submission inet n - y - - smtpd submission inet n - y - - smtpd
EOF EOF
# Autorise le SSL pour des mails sortants mais n'interdit pas le clair lorsque ce n'est pas disponible # Autorise TLS pour des mails entrants et sortants mais n'interdit pas le clair lorsque ce n'est pas disponible
postconf -e "smtp_tls_security_level=may" postconf -e "smtp_tls_security_level=may"
postconf -e "smtpd_tls_security_level=may"
# 9. Logs # 9. Logs
# On garde les fichiers de logs pour les monter dans l'exporter # On garde les fichiers de logs pour les monter dans l'exporter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment