﻿id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release
10171,CC parsing should use NotifyEmail.addrsep_re.split(ticket['cc']),mitar,dkgdkg,"CC parsing should use `NotifyEmail.addrsep_re.split(ticket['cc'])` as this is what it is used by Trac:

{{{
#!python
from trac.notification import NotifyEmail

...

        if not username or username == 'anonymous':
            return False
        return (self.allow_owner and (ticket['owner'] == username)) or \
            (self.allow_reporter and (ticket['reporter'] == username)) or \
            (self.allow_cc and username in NotifyEmail.addrsep_re.split(ticket['cc']))
}}}",defect,closed,normal,SensitiveTicketsPlugin,normal,fixed,,mmitar@…,0.12
