View Single Post
Old 15 Aug 2019, 11:04 PM   #4
ChinaLamb
The "e" in e-mail
 
Join Date: Dec 2004
Location: a virtually impossible but finitely improbable position
Posts: 2,320
I had another brainstorm, but I've run into a dead end with this too...

I used the following sieve script, and placed it as the first script in my account:

if
allof(
address :is ["To","Cc","Resent-To","X-Delivered-To"] "contactlist@mydomain",
not address :regex "From" ["me@mydoman", me2@mydomain"]
)
{
discard;
stop;
}

This seems to discard emails from outside the fastmail platform, but emails sent from other fastmail accounts are still forwarded to the contact list....

It appears that emails from within the Fastmail platform get routed to forward to the contactlist alias, BEFORE they reach the sieve script...

Thoughts?
ChinaLamb is offline   Reply With Quote