Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (166 - 168 of 332)

Ticket Resolution Summary Owner Reporter
#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):

#174 fixed Setting PYTHON_EGG_CACHE based on parameter for run_email2trac bas pepl@…
Description

Since I could not get run_email2trac to run with my postfix 2.5.1/Ubuntu Hardy setup because I could not set PYTHON_EGG_CACHE in /etc/aliases (Command output: local: fatal: execvp PYTHON_EGG_CACHE=/some/path/.egg-cache: No such file or directory

I patched run_email2trac to except a parameter -eeggcache which if set will be passed on to email2trac

Works like email2trac: |"/usr/local/bin/run_email2trac --eggcache /some/path/.egg-cache" in aliases then. Patch attached

#175 fixed TD: saving email to /tmp/xxx error when trying to email to blog bas roland.wells@…
Description

email2trac works beautifully in creating new tickets and updating existing tickets, but when I try to use to post to a new (or update a) blog, I get the following error (in syslog as well as bounced to email):


Command died with status 1: "/usr/local/bin/email2trac --project=olives". Command output: TD:

saving email to /tmp/tmpr3914I.email2trac

Final-Recipient: rfc822; trac@... Original-Recipient: rfc822;trac@... Action: failed Status: 5.3.0 Diagnostic-Code: x-unix; TD: saving email to /tmp/tmpr3914I.email2trac


FreeBSD, trac .11.6, email2trac 1.0.0, fullblog 0.1

Note: See TracQuery for help on using queries.