Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (229 - 231 of 332)

Ticket Resolution Summary Owner Reporter
#215 fixed Updated tickets are not showing up on the View Tickets bas nidhi.tare@…
Description

Hello. The email2trac plug-in is partially working for me. I can post new tickets, Cc, modify tickets etc but when I reply to a ticket in my email the updates don't show up in View Tickets.

I have set the ticket_update and ticket_update_by_subject to 1. Also I am using the proper format in the subject when I create a ticket update.

Subject: #34: Bas (Which will update ticket 34) does not show up in trac.

#216 fixed disallow multiple assignment of the same inline property bas Konstantin Ryabitsev <icon@…>
Description

(contd from #214)

Attached patch will only allow one assignment of the same inline property -- the first one. For example, take the following email using "outlook-style" quoting and top-posting:

I fixed your problem.

@status: closed
@resolution: fixed

----
From: Client
To: Developer
Sent: ...
Subject: Re: Please fix my problem

I will be fixing your problem shortly.

@status: accepted

Without the patch, the status will be set to "accepted" even though it's not the developer's intent. With this patch, the top-most assignment wins, and all further assignments are ignored.

#217 fixed Additional config option (`parentdir`) to avoid the need of sections for each project bas sto@…
Description

I've patched email2trac to support an additional configuration option (parentdir) to avoid the need to edit the email2trac.conf for each project when using the ENV_PARENT_DIR option with tracd.

When parentdir is defined on the DEFAULT section the variable is used to build the project PATH when there is no section for the named project.

I'm using it to have email2trac configured for each new project without changing the mail system.

To avoid touching the postfix alias database I'm using addresses of the form trac+PROJECT@mail.domain (I have recipient_delimiter = + on the postfix main.cf file) and the alias file has an entry like the following:

trac: /usr/local/sbin/email2trac-alias

Where /usr/local/sbin/email2trac-alias is a script that does more or less the following:

#!/bin/sh
parentdir="/srv/trac"
if [ -f "$parentdir/$EXTENSION/conf/trac.ini" ]; then
  exec /usr/local/bin/run_email2trac --project="$EXTENSION"
fi
exit 67 # Unknown user

I'm attaching my patch to this ticket.

Note: See TracQuery for help on using queries.