diff options
-rw-r--r-- | Omni/Cloud/Mail.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Omni/Cloud/Mail.nix b/Omni/Cloud/Mail.nix index 787c7cb..aeb3a34 100644 --- a/Omni/Cloud/Mail.nix +++ b/Omni/Cloud/Mail.nix @@ -24,6 +24,11 @@ Known issues: virusScanning = false; # ur on ur own localDnsResolver = true; + # Define proper virtual aliases instead of placeholder + extraVirtualAliases = { + "blocked@simatime.com" = "ben@simatime.com"; + }; + loginAccounts = { "ben@simatime.com" = { hashedPasswordFile = "/home/ben/hashed-mail-password"; @@ -53,4 +58,16 @@ Known issues: }; }; }; + + # Configure Postfix to block perfora.net using the NixOS services.postfix.headerChecks option + services.postfix.headerChecks = [ + { + pattern = "/^Received:.*perfora\\.net/"; + action = "REJECT Domain perfora.net is blocked"; + } + { + pattern = "/^From:.*perfora\\.net/"; + action = "REJECT Domain perfora.net is blocked"; + } + ]; } |