Opened 14 years ago
Closed 8 years ago
#8647 closed defect (wontfix)
Ticket without cc field makes notification failed
Reported by: | Owned by: | jeangui | |
---|---|---|---|
Priority: | low | Component: | DefaultCcPlugin |
Severity: | critical | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description (last modified by )
Hello,
I tried to install defaultCC plugin onto one trac config(0.12) which was using email2trac(1.6.0 or 2.0.2). Then the tickets submited from emails didn't get notified to the owner and default cc list was not added to the cc list.
In this configuration, the ticket['cc']
was empty. Then I just added two new lines in the main.py/ticket_created method so the cc field get inited:
if ticket['cc']: ticket['cc'] += ', ' else: ticket['cc'] = ''
Hope it helps...
Thanks to all trac contributors! -- Guillaume
Attachments (0)
Change History (4)
comment:1 Changed 12 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 12 years ago by
comment:3 Changed 12 years ago by
This is similar to #5894. I need to investigate further because I'm probably not understanding how default values are set when tickets are created across interfaces such as email2trac.
comment:4 Changed 8 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Closing since the plugin won't be developed further.
This rather seems like the fault of email2trac for sending
None
for the CC field rather than an empty string.