On Thu, Mar 29, 2007 at 10:13:40AM -0000, josellm wrote: > I have a notification config that always_notify_owner and > always_notify_reporter but no to always_notify_updater, but when I am > reporter or owner and update a ticket, the trac system notification > send me a mail. this is normal? How can I no receive notifications if > i am the updater and the owner or reporter?
diff notification.py notification.py.orig 224c224 < if notify_updater: --- > if notify_reporter: 244,247c244,247 < # if notify_reporter and (updater == self.reporter): < # filter_out = False < # if notify_owner and (updater == self.owner): < # filter_out = False --- > if notify_reporter and (updater == self.reporter): > filter_out = False > if notify_owner and (updater == self.owner): > filter_out = False 250d249 < ccrecipients = [r for r in torecipients if r and r != updater] HTH, Rainer --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
