I don't know if this ever got answered (probably, but I don't see it.) But 

it can be fixed by changing the above to:

     if ($DoOrgWhiting) {
                if (   $orgname =~ /'(' . $whiteSenderBaseRE . ')'/
             || $domainname =~ /'(' . $whiteSenderBaseRE . ')'/
             || $domainname =~ /'(' . $WLDRE . ')'/)
                 {


THIS IS WRONG !

use instead

     if ($DoOrgWhiting) {
                if (   $orgname =~ /($whiteSenderBaseRE)/
             || $domainname =~ /($whiteSenderBaseRE)/
             || $domainname =~ /($WLDRE)/)
                 {

Thomas



Von:    Todd Goodman <t...@bonedaddy.net>
An:     assp-test@lists.sourceforge.net, 
Datum:  06.09.2013 18:01
Betreff:        Re: [Assp-test] assp 1.99(13183) crashes with perl 5.18.0



krzf83 <at> gmail.com  <krzf83 <at> gmail.com> writes:

> 
> that is content of my whiteorg.txt file
> 
> \bpaypal\.com
> \bfacebook\.com
> \bamazon\.com
> \bdotpay\.pl
> 
> (ends with empty line)
> 
> Also line ~18259 of assp.pl look like this:
> 
>     if ($DoOrgWhiting) {
>                 if (   $orgname =~ ( '(' . $whiteSenderBaseRE . ')' )
>             || $domainname =~ ( '(' . $whiteSenderBaseRE . ')' )
>             || $domainname =~ ( '(' . $WLDRE . ')' ))
>                 {

I don't know if this ever got answered (probably, but I don't see it.) But 

it can be fixed by changing the above to:

     if ($DoOrgWhiting) {
                if (   $orgname =~ /'(' . $whiteSenderBaseRE . ')'/
             || $domainname =~ /'(' . $whiteSenderBaseRE . ')'/
             || $domainname =~ /'(' . $WLDRE . ')'/)
                 {

Todd


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft 
technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk

_______________________________________________
Assp-test mailing list
Assp-test@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/assp-test




DISCLAIMER:
*******************************************************
This email and any files transmitted with it may be confidential, legally 
privileged and protected in law and are intended solely for the use of the 

individual to whom it is addressed.
This email was multiple times scanned for viruses. There should be no 
known virus in this email!
*******************************************************


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk
_______________________________________________
Assp-test mailing list
Assp-test@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/assp-test

Reply via email to