summaryrefslogtreecommitdiff
path: root/etc/postfix
AgeCommit message (Collapse)Author
2025-03-04pacdiffXiao Pan
2025-02-28postfix hide client hostname and ipXiao Pan
Details see `man postconf.5`. It seems smtpd_hide_client_session config for port 25 smtp MTA this must be no, port 587 and 465 (submission and submissions) MTU can be set to yes in master.cf. Port 25 smtp MTA receives messages from others to me. Port 587 and 465 (submission and submissions) MTU receives messages from me to others. main.cf is configs for all. master.cf I can set configs specifically to submission and submissions. Before, when others receives my email that send from my laptop, it will leak my laptop's hostname and ip in one of its `Received` header like `Received: from <my-hostname> (<my-domain-name> [<my-ip>]) by mail.flylightning.xyz ...`. After set smtpd_hide_client_session to yes, that line changed to `Received: by mail.flylightning.xyz ...`, note there's no `from ...` that leaks my ip.
2025-02-22pacdiffXiao Pan
2024-12-12pacdiffXiao Pan
2024-10-25pacdiffXiao Pan
2024-07-05fix: postfix smtpd_use_tls will be deprecated, so remvoeXiao Pan
postfix log warning "/etc/postfix/main.cf: support for parameter "smtpd_use_tls" will be removed; instead, specify "smtpd_tls_security_level"". I am already using smtpd_tls_security_level, so I just removed smtpd_use_tls. Also see https://github.com/LukeSmithxyz/emailwiz/issues/112 `man 5 postconf` has documentation about smtpd_tls_security_level
2024-05-01pacdiffXiao Pan
2024-04-08pacnewXiao Pan
2024-04-05Add email server configsXiao Pan
References: https://github.com/LukeSmithxyz/emailwiz https://landchad.net/ https://wiki.archlinux.org/title/Postfix https://wiki.archlinux.org/title/Dovecot https://wiki.archlinux.org/title/OpenDKIM https://wiki.archlinux.org/title/OpenDMARC Maybe useful: https://doc.dovecot.org/settings/core/#dovecot-core-settings https://workaround.org https://kyun.host/docs/guides/email `man postconf.5` More necessary commands notes see arch_install.md
2024-04-04defaultXiao Pan
2024-04-04defaultXiao Pan
2024-04-04use xyz for root emailsXiao Pan
2024-04-04defaultXiao Pan