Custom Query (332 matches)
Results (298 - 300 of 332)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#133 | fixed | Emails contain an incorrect ticket URL | bas | thomasdn@… |
Description |
When receiving e-mails from email2trac the footer contains a URL to the ticket. The URL however is not valid. Here is an example: Ticket URL: </ticket/2201> trac.sikkerhed.org <https://trac.sikkerhed.org/> Sikkerhed.org ApS The correct URL in this case is: https://trac.sikkerhed.org/ticket/2201 |
|||
#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. |