Mail filters for custom headers like List-Unsubscribe or Authentication-Results copying messages from IMAP accounts to Local Folders do not work on the Yahoo! IMAP accoun… (gụkwuo)
Mail filters for custom headers like List-Unsubscribe or Authentication-Results copying messages from IMAP accounts to Local Folders do not work on the Yahoo! IMAP account. For example:
filter1.jpg:
name="_Inbox2: List-Unsubscribe <https"
enabled="yes"
type="17"
action="Copy to folder"
actionValue="mailbox://nobody@Local%20Folders/Inbox/_Inbox2"
action="Stop execution"
condition="OR (\"list-unsubscribe\",contains,<https)"
(should copy messages from IMAP folders to _Inbox 2 on Local Folders)
filter2.jpg:
name="Spam: Authentication-Results dkim=unknown | Received-SPF fail | X-Antivirus-Status Infected"
enabled="yes"
type="17"
action="Copy to folder"
actionValue="mailbox://nobody@Local%20Folders/Junk"
action="Stop execution"
condition="OR (\"authentication-results\",contains,dkim=unknown) OR (\"authentication-results\",contains,dkim=perm_fail) OR (\"authentication-results\",contains,dkim=none) OR (\"received-spf\",begins with,fail) OR (\"received-spf\",begins with,softfail) OR (\"received-spf\",begins with,none) OR (\"x-antivirus-status\",is,Infected)"
(should copy messages from IMAP folders to _Inbox 2 on Local Folders)
But filter3.jpg works well:
name="Inbox"
enabled="yes"
type="17"
action="Copy to folder"
actionValue="mailbox://nobody@Local%20Folders/Inbox"
condition="OR (subject,doesn't contain,t[k\6iq69pd+}'cr)"
(copies all remaining messages from IMAP folders to Inbox on Local Folders)
(the snippets above are fragments of the msgFilterRules.dat file)
Filters1 and 2 work well on other IMAP accouns, like for example wp.pl. So this is about Yahoo or something is corrupted.
My question is, what wrong is here ? And by the way - how to create filter copying all messages from IMAP to Local Folders ? Is better way then filter3 looking for random string in the subject or somewhere else ?
Thank you.