Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (100 - 102 of 332)

Ticket Resolution Summary Owner Reporter
#166 fixed Propose using '&' instead of comma as field separator on subject line bas Dennis McRitchie <dmcr@…>
Description

Currently, fields on subject lines are separated by commas. e.g.,

Subject: This is a test ticket#?priority=minor,cc=knight,component=component1

This poses a problem when a keyword's value is itself a comma-separated list such as the 'cc' field. e.g.,

Subject: This is a test ticket#?priority=blocker,cc=knight,dmcr,component=component2

However, using '&' instead of comma as a field separator allows such specifications, and is consistent with standard web usage. e.g.,

This is a test ticket#?priority=blocker&cc=knight,dmcr&component=component2

The only change needed is on email2trac line 524:

fields = string.split(str, '&')

Dennis

#117 fixed propagate fail to calling environment bas admin-egon@…
Description

given a setup where fetchmail uses mda "...run_email2trac" the mda should give a non-zero return code on failure...

#73 fixed Project name is no longer optional (regression in 0.30) bas email2trac@…
Description

Using email2trac.conf:

[DEFAULT]
project: /var/www/cgi-bin/garage/trac/support

email2trac -n -f email2trac.conf produces error message:

No Trac project is defined in the email2trac config file.

Currently, the workaround is to use email2trac.conf:

[DEFAULT]
project: /var/www/cgi-bin/garage/trac/support

[support]
project: /var/www/cgi-bin/garage/trac/support

with the command email2trac -n -f email2trac.conf -p support

If the old behavior is no longer supported, then the documentation needs to be updated accordingly.

Note: See TracQuery for help on using queries.