Modify ↓
Opened 16 years ago
Closed 12 years ago
#4767 closed defect (fixed)
DefaultCC always sends to Plugin@domain.com
Reported by: | anonymous | Owned by: | Ryan J Ollos |
---|---|---|---|
Priority: | normal | Component: | DefaultCcPlugin |
Severity: | normal | Keywords: | |
Cc: | Thanatermesis, mho2@… | Trac Release: | 0.11 |
Description
Somehow DefaultCC always adds Plugin@… to the To: list. Any suggestion?
Attachments (0)
Change History (9)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Cc: | Thanatermesis added; anonymous removed |
---|
Could be nice if we have a group of default CC's instead of assign emails to the components, on that way we can use more than one group of emails to any component, imagine the case:
- Component: Kernel
- Group-Emails: C-Coders, Packagers, Testers
comment:3 Changed 16 years ago by
I've been able to use AnnouncerPlugin (which support groups) and DefaultCC to do that.
comment:4 Changed 15 years ago by
i have similar problem. emails always get send to plugin@<domain.com>. Both my use_public_cc and use_short_addr are set to false.
comment:5 Changed 15 years ago by
Cc: | mho2@… added |
---|
comment:7 Changed 13 years ago by
That's because DefaultCC updates the 'cc' field by user 'DefaultCC Plugin', and Trac tries to send mail to updater. It seems to me that the following fix is appropriate.
-
main.py
old new 40 40 if ticket['cc']: 41 41 ticket['cc'] += ', ' 42 42 ticket['cc'] += comp_default_cc.cc 43 ticket.save_changes( 'DefaultCC Plugin', '')43 ticket.save_changes(ticket['reporter'], '') 44 44 45 45 def ticket_changed(self, ticket, comment, author, old_values): 46 46 return
comment:8 Changed 12 years ago by
Owner: | changed from jeangui to Ryan J Ollos |
---|---|
Status: | new → assigned |
comment:9 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
I think that's a combination of the username "DefaultCC Plugin" and a particular notification configuration, namely use_public_cc, use_short_addr. Setting these two conf vars, I get
which is slightly different to what you seem to have.
Could you post the content of your [notification] section and the header of an email sent when new tickets are created?