Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (319 - 321 of 332)

Ticket Resolution Summary Owner Reporter
#362 fixed Case for "mail delivery failed" bas kshetriamrit@…
Description

I have a case where there are multiple recipient for a mail. But one of the email is returning "mail delivery failed" email which is again used to comment on the ticket.

And this process is going in a loop.

Do we have any mechanism to control this? I searched but found nothing.

Thanks

#364 fixed notify_sender doesn't work, probably since r633 bas kroseneg@…
Description

Error message:

Failure sending notification on creation of ticket #22212: global name 'sender_email' is not defined

sender_email was used globally for self.email_addr, now tn.email2trac_notify_reporter is used.

This patch fixes the problem:

--- email2trac.py.in	(revision 660)
+++ email2trac.py.in	(working copy)
@@ -2486,7 +2486,7 @@
 
                 if self.email2trac_notify_reporter:
                     if not self.email2trac_notify_reporter in torcpts:
-                        torcpts.append(sender_email)
+                        torcpts.append(self.email2trac_notify_reporter)
 
                 if self.email2trac_replyto:
                     # use to rewrite reply to
#365 fixed email2trac doesn't work with discussionplugin 0.9 bas anonymous
Description

trying to use email2trac v2.8.8 with discussionplugin v0.9dev. I think the discussionplugin API must have changed and there is an incompatibility

2015-05-09 16:46:03,957 email2trac wol: Traceback (most recent call last):

2015-05-09 16:46:03,957 email2trac wol: File "/usr/local/bin/email2trac", line 2915, in <module>

tktparser.parse(sys.stdin)

2015-05-09 16:46:03,957 email2trac wol: File "/usr/local/bin/email2trac", line 1823, in parse

self.parse_subject_field(m, subject, spam_msg)

2015-05-09 16:46:03,957 email2trac wol: File "/usr/local/bin/email2trac", line 1938, in parse_subject_field

self.discussion_topic_reply(m, subject[result.end('topic'):])

2015-05-09 16:46:03,957 email2trac wol: File "/usr/local/bin/email2trac", line 1589, in discussion_topic_reply

topic = api.get_topic(context, self.id)

2015-05-09 16:46:03,957 email2trac wol: File "build/bdist.linux-x86_64/egg/tracdiscussion/api.py", line 1699, in get_topic

(id,))

2015-05-09 16:46:03,957 email2trac wol: File "build/bdist.linux-x86_64/egg/tracdiscussion/model.py", line 54, in _get_item

cursor = context.db.cursor()

2015-05-09 16:46:03,958 email2trac wol: AttributeError?: 'RenderingContext?' object has no attribute 'db'

Note: See TracQuery for help on using queries.