[Rt-commit] r4092 - in rt/branches/3.4-RELEASE: . lib/RT lib/RT/Interface

alexmv at bestpractical.com alexmv at bestpractical.com
Mon Nov 14 17:35:41 EST 2005


Author: alexmv
Date: Mon Nov 14 17:35:40 2005
New Revision: 4092

Modified:
   rt/branches/3.4-RELEASE/   (props changed)
   rt/branches/3.4-RELEASE/lib/RT/EmailParser.pm
   rt/branches/3.4-RELEASE/lib/RT/Interface/Email.pm
Log:
 r7175 at zoq-fot-pik:  chmrr | 2005-11-14 17:35:03 -0500
 RT-Ticket: 7010
 RT-Status: resolved
 RT-Update: correspond
  * Treat our email addresses as case-insensitive


Modified: rt/branches/3.4-RELEASE/lib/RT/EmailParser.pm
==============================================================================
--- rt/branches/3.4-RELEASE/lib/RT/EmailParser.pm	(original)
+++ rt/branches/3.4-RELEASE/lib/RT/EmailParser.pm	Mon Nov 14 17:35:40 2005
@@ -435,7 +435,7 @@
     # Example: the following rule would tell RT not to Cc 
     #   "tickets at noc.example.com"
     if ( defined($RT::RTAddressRegexp) &&
-                       $address =~ /$RT::RTAddressRegexp/ ) {
+                       $address =~ /$RT::RTAddressRegexp/i ) {
         return(1);
     } else {
         return (undef);

Modified: rt/branches/3.4-RELEASE/lib/RT/Interface/Email.pm
==============================================================================
--- rt/branches/3.4-RELEASE/lib/RT/Interface/Email.pm	(original)
+++ rt/branches/3.4-RELEASE/lib/RT/Interface/Email.pm	Mon Nov 14 17:35:40 2005
@@ -198,7 +198,7 @@
     # Example: the following rule would tell RT not to Cc 
     #   "tickets at noc.example.com"
     if ( defined($RT::RTAddressRegexp) &&
-                       $address =~ /$RT::RTAddressRegexp/ ) {
+                       $address =~ /$RT::RTAddressRegexp/i ) {
         return(1);
     } else {
         return (undef);


More information about the Rt-commit mailing list