fix: slight bit of formatting and a renaming

Closes #84
This commit is contained in:
silver 2024-07-22 18:57:31 +01:00
parent 35920eda0c
commit 9c7d08c153
Signed by: silver
GPG key ID: 54E2C71918E93B74

View file

@ -92,7 +92,7 @@ with lib; let
} }
]; ];
configFile = sieveConfigFile =
# https://doc.dovecot.org/configuration_manual/sieve/examples/#plus-addressed-mail-filtering # https://doc.dovecot.org/configuration_manual/sieve/examples/#plus-addressed-mail-filtering
pkgs.writeText "basic_sieve" pkgs.writeText "basic_sieve"
'' ''
@ -105,32 +105,32 @@ with lib; let
# this should be close to teh last step # this should be close to teh last step
if allof ( if allof (
address :localpart ["To"] ["${toString create_config_to}"], address :localpart ["To"] ["${toString create_config_to}"],
address :domain ["To"] "skynet.ie" address :domain ["To"] "skynet.ie"
){ ){
if address :matches ["To"] "*@skynet.ie" { if address :matches ["To"] "*@skynet.ie" {
if header :is "X-Spam" "Yes" { if header :is "X-Spam" "Yes" {
fileinto :create "''${1}.Junk"; fileinto :create "''${1}.Junk";
stop; stop;
} else { } else {
fileinto :create "''${1}"; fileinto :create "''${1}";
stop; stop;
}
} }
}
} }
if allof ( if allof (
address :localpart ["From"] ["${toString create_config_to}"], address :localpart ["From"] ["${toString create_config_to}"],
address :domain ["From"] "skynet.ie" address :domain ["From"] "skynet.ie"
){ ){
if address :matches ["From"] "*@skynet.ie" { if address :matches ["From"] "*@skynet.ie" {
if header :is "X-Spam" "Yes" { if header :is "X-Spam" "Yes" {
fileinto :create "''${1}.Junk"; fileinto :create "''${1}.Junk";
stop; stop;
} else { } else {
fileinto :create "''${1}"; fileinto :create "''${1}";
stop; stop;
}
} }
}
} }
''; '';
in { in {
@ -477,7 +477,7 @@ in {
}; };
services.dovecot2.sieve.scripts = { services.dovecot2.sieve.scripts = {
before = configFile; before = sieveConfigFile;
}; };
# This is to add a bcc to outgoing mail # This is to add a bcc to outgoing mail