id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,branch,changelog,apichanges,internalchanges 8580,Tickets with multiple-owners do not get email notifications,gmr@…,Emmanuel Blot,"In trac/ticket/notification.py, Line 254: http://trac.edgewall.org/browser/tags/trac-0.11.5/trac/ticket/notification.py#L253 If there are multiple ticket owners, the string is not split into a list and does not extend the torecipients list. Because of this, the owners of a ticket will not be notified of changes to the ticket. It is possible with custom workflows and custom fields to end up with multiple owners in a single ticket. This fix will not impact the basic workflow with a single ticket owner. The fix for this is to replace line 254: {{{ torecipients.append(row[2]) }}} with {{{ torecipients.extend(row[2] and row[2].replace(',', ' ').split()) }}}",defect,closed,normal,,notification,0.11.5,normal,duplicate,,,,,,