diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-06-17 09:17:22 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-06-17 09:17:22 +0200 |
commit | 9717856c4fdd917b58f9e5f2be5094b6d38aa646 (patch) | |
tree | beb17243f38b53020d1d1c251f67d2c38415bbde /systems/izumi/system-files/smtpd.conf | |
parent | 08ff3bc3215745859984aa2cb6a919ef67533099 (diff) |
systems: eliminate dead code related to izumi
Diffstat (limited to 'systems/izumi/system-files/smtpd.conf')
-rw-r--r-- | systems/izumi/system-files/smtpd.conf | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/systems/izumi/system-files/smtpd.conf b/systems/izumi/system-files/smtpd.conf deleted file mode 100644 index 9fe7503..0000000 --- a/systems/izumi/system-files/smtpd.conf +++ /dev/null @@ -1,24 +0,0 @@ -# The prefix on GUIX is not the default one — it is /etc . -table aliases file:/etc/aliases - -# The mail certificates are issued by Let‘s Encrypt and served by NGINX -pki marekpasnikowski.pl cert "/etc/letsencrypt/live/marekpasnikowski.pl/fullchain.pem" -pki marekpasnikowski.pl key "/etc/letsencrypt/live/marekpasnikowski.pl/privkey.pem" - -# Listen for local messages. -listen on lo - -# Listen for messages from the internet. -listen on enp1s0 tls port 25 pki "marekpasnikowski.pl" -listen on enp1s0 smtps port 465 pki "marekpasnikowski.pl" - -# There is no filtering in the design, so the two actions are enough. -action receive maildir alias <aliases> -action send relay - -# Match incoming messages. -match from local for local action receive -match from any for domain "marekpasnikowski.pl" action receive - -# Match outgoing messages. -match for any action send |