I am trying to create a filter within Proton Mail, that adds a label ‘mailing list’ whenever Proton marks an email as from a mailing list.
It doesn’t seem so easily possible as far as i can tell and I don’t have the time (or will at the moment) to try and create it with a Sieve filter.
Is there an easy way to do this?
You must log in or register to comment.
Often such emails have a “List-Unsubscribe” header entry, thus you could check on that.
if allof( exists "List-Unsubscribe" ) { fileinto "mailing list"; }
This worked as expected! Thank you very much!
You are welcome!