Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (163 - 165 of 332)

Ticket Resolution Summary Owner Reporter
#170 duplicate Inline Properties bas samuel@…
Description

I have found it annoying to specify ticket attributes in the subject of an email. It would be nice if it was possible to specify ticket attributes in the message body, in stead.

Another disadvantage of specifying ticket attributes in the message subject is that unintentional ticket attribute modifications are likely when replying to a previous "email2trac" email. Specifying them in the message body eliminates this possibility.

#171 fixed Specify ticket properties in message body bas samuel@…
Description

I have found it annoying to specify ticket attributes in the subject of an email. It would be nice if it was possible to specify ticket attributes in the message body, in stead.

Another disadvantage of specifying ticket attributes in the message subject is that unintentional ticket attribute modifications are likely when replying to a previous "email2trac" email. Specifying them in the message body eliminates this possibility.

#173 fixed Extend email_quote to accept regexes bas samuel@…
Description

Several email clients (importantly, including gmail) prefixes reply quotes with the line:

"On <date> <somebody> wrote:"

Email2trac is currently unable to strip this from messages using email_quote. However, this could easily be done by allowing email_quote to accept regular expressions.

The only modification necessary to make this work is to change line 1067 in email2trac.py.in:

  • if line.startswith(self.EMAIL_QUOTE):

+ if re.match(self.EMAIL_QUOTE, line):

Note: See TracQuery for help on using queries.