Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-11 Thread Paul Hirose
This seems to be a recurring issue: http://www.gossamer-threads.com/lists/rt/users/82186 http://www.gossamer-threads.com/lists/rt/users/81328 and others. Using RT382 and we see the same thing. During the 82186 (this) thread, there's mention of having given every queue its own

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jesse Vincent
On Sun, Feb 01, 2009 at 03:58:23PM -0500, Jerrad Pierce wrote: From this point forward, the tag in the e-mail will be on the right instead of the left. I cannot figure out exactly what causes this shift. Can someone clue me in? Can we prevent it? Same thing occurs here. Never really

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jerrad Pierce
On Sun, Feb 01, 2009 at 03:58:23PM -0500, Jerrad Pierce wrote: From this point forward, the tag in the e-mail will be on the right instead of the left. I cannot figure out exactly what causes this shift. Can someone clue me in? Can we prevent it? Same thing occurs here. Never really

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jerrad Pierce
In particular, I have the following local/lib/RT/Interface/Email_Local.pm: http://codepad.org/pSthWrxD -- Cambridge Energy Alliance: Save money. Save the planet. ___ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help:

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jesse Vincent
On Mon, Feb 02, 2009 at 03:53:18PM -0500, Jerrad Pierce wrote: In particular, I have the following local/lib/RT/Interface/Email_Local.pm: http://codepad.org/pSthWrxD Does RT work correctly without your custom code? -- Cambridge Energy Alliance: Save money. Save the planet. --

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jerrad Pierce
Doh! Must amend $ExtractSubjectTagMatch in RT_SiteConfig to match the RE in my code. (Actually, why does RT::Interface::Email have a mix of config hard-coded regexpen?) ___ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jo Rhett
On Feb 2, 2009, at 9:54 AM, Jesse Vincent wrote: This is the subject-token extraction kicking in. It's designed to let two RT's talk to each other. There's a global scrip. I'm not sure why it would kick in for your own RT's tag though. Patches gratefully appreciated. Okay, so it seems

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jesse Vincent
Likewise, I assume that if I got off my butt and created a patch which set this list based on all of the configured subject tags you'd be okay with that? Certainly. It probably makes sense to extract the code from lib/RT/Interface/Email.pm's ParseTicketId so it can be used by both.

Re: [rt-users] queue tag moved from left of subject to right of subject?

2009-02-02 Thread Jerrad Pierce
For anyone interested in using that queue name in tag hack, this is the other half to keep RT from munging subjects: Set($ExtractSubjectTagMatch, qr/\[.+?\s+(?:\w+\s+)?\#\d+\]/); Set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex} ?