Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (118 - 120 of 332)

Ticket Resolution Summary Owner Reporter
#2 fixed patch to make update via email work with trac 0.11 dev bas tbaschak@…
Description

I wasn't able to get email2trac update tickets with 0.11dev, it kept complaining about syntax errors with subtracting an int and a datetime type, so I created the following patch which works, but might be messy and not quite follow the flow of the python script.

#295 fixed Patch to get email2trac to work correctly with the Agilo plugin bas anonymous
Description

The Agilo plugin breaks email2trac because it redefines Ticket. The following patch is a quick hack to get it working again.

--- email2trac.orig 2012-05-04 17:31:44.959978983 -0400
+++ email2trac 2012-05-04 17:32:03.960302778 -0400
@@ -1187,6 +1187,10 @@
         self.logger.debug('function new_ticket')

         tkt = Ticket(self.env)
+        from agilo.utils.config import AgiloConfig
+        from agilo.ticket.model import AgiloTicket
+        if AgiloConfig(self.env).is_agilo_enabled:
+            tkt = AgiloTicket(self.env)

         self.set_reply_fields(tkt, msg)
#154 fixed [Patch] strip_signature and strip_quotes more effective bas hju@…
Description

Both options had no effekt in our environment (trac 0.11, email2trac 0.30)

Signatures where not effected at all.

If you use the "reply" option with setting "Text der ursprünglichen Nachricht beifügen" in outlook (don't know the english version of this outlook option), mails are getting longer and longer making the comments very difficult to read.

The attached patch solves this for me.

Note: See TracQuery for help on using queries.