summaryrefslogtreecommitdiff
path: root/Omni
diff options
context:
space:
mode:
authorBen Sima (aider) <ben@bsima.me>2025-03-18 21:55:34 -0400
committerBen Sima <ben@bsima.me>2025-04-11 12:30:18 -0400
commit63def24ec7c20dcd226695e30cd8ae9390f5bc10 (patch)
tree8eea972d54130d5808bee458c947c74f2f6d7eb0 /Omni
parent1a4c53f754d4e40bf524d1b50c101b974dc95907 (diff)
Block optaltechtld.com domain to prevent spam emails
Added header checks for optaltechtld.com domain to block incoming spam emails claiming to be from MetaMask. The configuration includes checks for Received, From, Return-Path, and Sender headers containing this domain, rejecting any matching messages at the mail server level.
Diffstat (limited to 'Omni')
-rw-r--r--Omni/Cloud/Mail.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/Omni/Cloud/Mail.nix b/Omni/Cloud/Mail.nix
index 728ec09..bc14d93 100644
--- a/Omni/Cloud/Mail.nix
+++ b/Omni/Cloud/Mail.nix
@@ -88,5 +88,23 @@ Known issues:
pattern = "/^Sender:.*novastells\\.com\\.es/";
action = "REJECT Domain novastells.com.es is blocked";
}
+
+ # Block optaltechtld.com domain
+ {
+ pattern = "/^Received:.*optaltechtld\\.com/";
+ action = "REJECT Domain optaltechtld.com is blocked";
+ }
+ {
+ pattern = "/^From:.*optaltechtld\\.com/";
+ action = "REJECT Domain optaltechtld.com is blocked";
+ }
+ {
+ pattern = "/^Return-Path:.*optaltechtld\\.com/";
+ action = "REJECT Domain optaltechtld.com is blocked";
+ }
+ {
+ pattern = "/^Sender:.*optaltechtld\\.com/";
+ action = "REJECT Domain optaltechtld.com is blocked";
+ }
];
}