Opened 13 years ago

Last modified 7 years ago

#8647 closed defect

Ticket without cc field makes notification failed — at Version 1

Reported by: guillaume.mella@… Owned by: jeangui
Priority: low Component: DefaultCcPlugin
Severity: critical Keywords:
Cc: Trac Release: 0.12

Description (last modified by Ryan J Ollos)

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

Change History (1)

comment:1 Changed 12 years ago by Ryan J Ollos

Description: modified (diff)
Note: See TracTickets for help on using tickets.