Custom Query (332 matches)
Results (136 - 138 of 332)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#37 | fixed | greedy matching in Subject line | bas | dmaziuk@… |
Description |
Current TICKET_RE greedy-matching (the default), so Subject like
will fail to update the ticket properly (ticketnr_fields will match to the colon after Re instead of the one after worksforme). The fix is to use non-greedy qualifier: .*?: instead of .*: |
|||
#315 | wontfix | Guide to setup email2trac step by step. | bas | anonymous |
Description |
I'm trying to install email2trac. and reading the Wiki. How to config email2trac.conf, mail client,... It's is difficult to install without a full guide step by step. For example, I have trac on /usr/share/trac/projects/support email: support@… password: @@@@@@ and a mail client (sendmail, fetchmail...) How to config all to get mail from email address and make a ticket. It's will be easy for newbiew and others. Thanks you. |
|||
#34 | fixed | Have newer seen such a good work before! | bas | anonymous |
Description |
Source of this problem is in TicketEmailParser::notify(). Here it tries to set hrefs: self.env.abs_href = Href(self.get_config('project', 'url')) self.env.href = Href(self.get_config('project', 'url')) Unfortunately as of Trac version 0.11 abs_href and href are properties that don't have function for setting value (see http://trac.edgewall.org/browser/trunk/trac/env.py): href = property(_get_href, 'The application root path') abs_href = property(_get_abs_href, 'The application URL') So when trying to set hrefs you get str object is not callable exception. As a workaround I added set functions to above properties. See attached diff. |