View Single Post
  #3 (permalink)  
Old 07-14-2008, 12:57 PM
mmorse mmorse is offline
Moderator
 
Posts: 6,237
Default

If you're concerned about sieve rules just dealing with Zimbra's bugzilla then the problem isn't you
Quote:
# zimbra-bugzilla
if allof (header :contains "from" "DONOTREPLY@zimbra.com" ,
exists "X-Bugzilla-Reason:" )
{
fileinto "zimbra-bugzilla";
stop;
The from after some of our upgrades & server moves is currently either:
DONOTREPLY@www1.zimbra.mail.ac4.yahoo.net
DONOTREPLY@www2.zimbra.mail.ac4.yahoo.net
DONOTREPLY@www3.zimbra.mail.ac4.yahoo.net
DONOTREPLY@www4.zimbra.mail.ac4.yahoo.net
We'll look into correcting that.

You could change that filter to do a 'anyof' if you don't interact with other bugzillas, or still do 'allof' with a header contains and do subject contains '[Bug' instead of the DONOTREPLY@zimbra.com address - again if you dont interact with others but you could do X-Bugzilla-Component: ZCS or just add all the 4 frontend addresses above.

Some more new headers in this version if you'd like to sort your mail even more:
X-Bugzilla-Reason:
X-Bugzilla-Type:
X-Bugzilla-Watch-Reason:
X-Bugzilla-Product:
X-Bugzilla-Component:
X-Bugzilla-Keywords:
X-Bugzilla-Severity:
X-Bugzilla-Who:
X-Bugzilla-Status:
X-Bugzilla-Priority:
X-Bugzilla-Assigned-To:
X-Bugzilla-Changed-Fields:
Reply With Quote