Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 332)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#104 fixed tiny syntax error in email2trac.py.in bas anonymous
Description
Index: email2trac.py.in
===================================================================
--- email2trac.py.in	(revision 233)
+++ email2trac.py.in	(working copy)
@@ -687,7 +687,7 @@
 			else:
 				value = field.get('value')
 				options = field.get('options')
-				if value and options and value not in options
+				if value and options and value not in options:
 					value = options[int(value)]
 
 			if self.DEBUG > 10:
#208 fixed Ticket URL is not absolute in sent ticket notification bas mark_kids@…
Description
Hi,

Don't know if this is related to the trac 0.12 compatibility of your script.

But the ticket URL in the notification doesn't give the absolute URL.

Basically what I did was I've created a ticket using my email and it worked.
The problem is the link to the ticket is broken.



    Type:  defect               |       Status:  new
Priority:  major                |   Resolution:  fixed
--------------------------------+---------------------------------------
--------------------------------+----
 {{{


  this is a test


 }}}

--
Ticket URL: </ticket/39>
#275 worksforme Ticket updates do not display reporter address ('From'-header) bas rvengelen@…
Description

When updating an existing ticket through email2trac, the added comment does not contain the From: header.

The wanted result is something like the following:

  • original message:
From: Some One <someone@example.org>
To: An Other <another@example.org>
CC: <email2trac@example.org>
Date: Tue, 18 Oct 2011 15:44:06 +0200
Subject: RE: some subject (reference: #9304:)

...

  • gets translated in a new comment added to ticket 9304 containing the following:
On Tue, 18 Oct 2011 15:44:06 +0200 Some One <someone@example.org> wrote:

Messagetext

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