Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 332)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#303 fixed Fwd: email2trac not compatible with trac 1.0? bas thomas.schabetsberger@…
Description
Dear Support,

I have updated to the latest stable release of trac 1.0. Now email2trac
stopped working. I get an error in the logs:

Sep 28 20:55:59 minerva email2trac trac: TRAC version 0.0 is not supported

Do you have an idea what to do?

Best regards,
Thomas







DDr. Thomas Schabetsberger
Einhornweg 26a
6068 Mils
Austria

Email: thomas.schabetsberger@webtek.at
Mobile: +43 664 2062399
Fax: +43 5223 20102 15


Der Inhalt dieser E-Mail samt Anlagen ist vertraulich und u. U. rechtlich
geschützt. Der Inhalt ist ausschließlich an einen bestimmten Empfänger
gerichtet. Eine Weitergabe, die Herstellung von Kopien oder der sonstige
Gebrauch durch Nichtadressaten ist nicht erlaubt. Ich bitte daher jeden
anderen Empfänger, der diese E-Mail versehentlich erhält, mich umgehend zu
informieren und die Nachricht zu löschen.
The information is intended to be for the use of the intended addressee
only.
Please be aware that any disclosure, copy, distribution or use of the
contents
of this message is prohibited. If you have received this e-mail in error
please notify me immediately by reply e-mail and delete this message and any
attachments from your system. Thank you for your cooperation.

Added by email2trac

#157 fixed workflow option is ignored (patch) bas thomas.moschny@…
Description

In order to avoid closed tickets being reopened by email2trac, I configured 'workflow: leave', but that didn't work at first. The following patch was needed.

--- email2trac-1.0.0/email2trac.py.in.orig	2009-09-02 10:57:42.000000000 +0200
+++ email2trac-1.0.0/email2trac.py.in	2009-10-21 15:40:53.000000000 +0200
@@ -660,7 +660,7 @@ class TicketEmailParser(object):
 			#b = controller.get_ticket_changes(req, tkt, 'reopen')
 			#print 'get_ticket_changes :', b
 
-			if self.WORKFLOW and (self.VERSION in ['0.11']) :
+			if self.WORKFLOW and self.VERSION == 0.11:
 				from trac.ticket.default_workflow import ConfigurableTicketWorkflow
 				from trac.test import Mock, MockPerm
 

In the long run, it might be a better idea to turn self.VERSION into a string.

#198 fixed Accept workflow transitions bas thomas.moschny@…
Description

The ability to specify ticket properties in message body (what was #171) is really helpful.

It would be cool to make status changes via specifying TracWorkflow transitions. Instead of

@status:closed
@resolution:fixed

that would read

@->resolve(fixed)

The difference is be that the transition would only be made if allowed.

Not sure this is worth the effort though.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.