I’ve been applying “Train as Spam” to these emails, but they keep appearing in my Inbox. Is there a way I can get SpamSieve to recognize all emails from the “onmicrosoft.com” domain as spam? If not, I’ll set up an Inbox Rule to send them straight to the Trash.
Here’s an AppleScript to make it easy to create domain blocklist rules:
display dialog "Enter domain to block (starting with the “@”):" default answer ""
set _domain to text returned of the result
tell application "SpamSieve"
tell blocklist
make rule with properties {text to match:_domain, match field:from field, match style:ends with style}
end tell
end tell