[rt-users] CanonicalizeEmailAddressMatch

2013-03-29 Thread Camron W. Fox
Alle, Is it possible to use multiple entries for CanonicalizeEmailAddressMatch? For example: Set( $CanonicalizeEmailAddressMatch, '@example\.ac\.jp$|@example\.org$|@example\.com$'); Best Regards, Camron -- Camron W. Fox Hilo Office High Performance Computing Group Fujitsu Management

Re: [rt-users] CanonicalizeEmailAddressMatch

2013-03-29 Thread k...@rice.edu
On Fri, Mar 29, 2013 at 07:10:53AM -1000, Camron W. Fox wrote: Alle, Is it possible to use multiple entries for CanonicalizeEmailAddressMatch? For example: Set( $CanonicalizeEmailAddressMatch, '@example\.ac\.jp$|@example\.org$|@example\.com$'); Best Regards, Camron Hi Camron,

[rt-users] CanonicalizeEmailAddressMatch

2012-02-02 Thread Dalal, Kamber Z
Need the proper syntax for 'CanonicalizeEmailAddressMatch' setting to match either @domaina or @domainb to allow 'CanonicalizeEmailAddressReplace' it with @domainc. Thank you, Kamber Dalal RT Training Sessions (http://bestpractical.com/services/training.html) * Boston — March 5 6,

Re: [rt-users] CanonicalizeEmailAddressMatch

2012-02-02 Thread Kevin Falcone
On Thu, Feb 02, 2012 at 09:00:06AM -0500, Dalal, Kamber Z wrote: Need the proper syntax for 'CanonicalizeEmailAddressMatch' setting to match either @domaina or @domainb to allow 'CanonicalizeEmailAddressReplace' it with @domainc. It's just a perl regular expression, so literally

Re: [rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-23 Thread Kenneth Marshall
Camron, We do not include the '@' in our regex here, but if you do, shouldn't it be escaped as well as the '.' characters? Cheers, Ken On Wed, Apr 22, 2009 at 11:14:33AM -1000, Camron W. Fox wrote: Alle, Running RT 3.6.6, RHEL 5.3, Apache 2.2.3 and Perl v5.8.8. When we try to use

Re: [rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-23 Thread Camron W. Fox
Kenneth Marshall wrote: Camron, We do not include the '@' in our regex here, but if you do, shouldn't it be escaped as well as the '.' characters? Cheers, Ken Ken, We're just following the example from the documentation and RT_Config.pm: # RT provides functionality which

Re: [rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-23 Thread Kenneth Marshall
It is a bit pedantic, but have you flushed the Mason cache and restarted RT? Ken On Thu, Apr 23, 2009 at 07:42:50AM -1000, Camron W. Fox wrote: Kenneth Marshall wrote: Camron, We do not include the '@' in our regex here, but if you do, shouldn't it be escaped as well as the '.'

Re: [rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-23 Thread Camron W. Fox
Kenneth Marshall wrote: It is a bit pedantic, but have you flushed the Mason cache and restarted RT? Ken Ken, We *did* restart Apache, but as we weren't using CanonicalizeEmailAddressMatch/Replace prior to this, there shouldn't be anything cached there, should there? Best

Re: [rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-23 Thread Kenneth Marshall
Do a recursive grep on the files in the Mason cache for the variable or regex. It may be cached but I am not familiar enough with the startup process to know without checking. A cached no value would result in the behavior you are seeing. Cheers, Ken On Thu, Apr 23, 2009 at 08:19:24AM -1000,

[rt-users] CanonicalizeEmailAddressMatch/Replace Problems

2009-04-22 Thread Camron W. Fox
Alle, Running RT 3.6.6, RHEL 5.3, Apache 2.2.3 and Perl v5.8.8. When we try to use the following in RT_SiteConfig.pm, nothing changes: Set($CanonicalizeEmailAddressMatch , '@domain\.example\.ac\.jp$'); Set($CanonicalizeEmailAddressReplace , '@domain.example.org'); Internally,