With my limited knowledge of ASSP's code, I'm thinking its going wrong in the
localmailaddress function: sub localmailaddress {
my ($fh,$current_email) = @_;
d("localmailaddress - $current_email",1) if $WorkerNumber != 10001;
$current_email = &batv_remove_tag(0,$current_email,'');
$current_email =~ tr/A-Z/a-z/;
my $at_position = index($current_email, '@');
my $current_username = substr($current_email, 0, $at_position);
my $current_domain = substr($current_email, $at_position + 1);
my $ldapflt = $LDAPFilter;
$ldapflt =~ s/EMAILADDRESS/$current_email/go; $ldapflt =~
s/USERNAME/$current_username/go;
$ldapflt =~ s/DOMAIN/$current_domain/go;
my $ldaproot = $LDAPRoot;
$ldaproot =~ s/DOMAIN/$current_domain/go;
if ( $LocalAddresses_Flat && matchSL( $current_email, 'LocalAddresses_Flat' )
) {
$LDAPlist{'@'.$current_domain} = time if $ldaplistdb;
return 1;
}
if (&LDAPCacheFind($current_email,'LDAP')) {
$LDAPlist{'@'.$current_domain} = time if $ldaplistdb;
return 1;
}
if($DoLDAP && $CanUseLDAP && LDAPQuery($ldapflt, $ldaproot,$current_email)) {
$LDAPlist{'@'.$current_domain} = time if (!$LDAPoffline && $ldaplistdb);
return 1;
}
if($DoVRFY && (&matchHashKey('FlatVRFYMTA',"\@$current_domain") or
&matchHashKey('DomainVRFYMTA',$current_domain))
&& $CanUseNetSMTP
&& $current_email =~ /[^@]+\@[^@]+/o
&& localvrfy2MTA($fh,$current_email))
{
$LDAPlist{'@'.$current_domain} = time if (! ($fh &&
$Con{$fh}->{userTempFail}) && $ldaplistdb);
return 1;
}
return 0;
}
But I just can't see where its going wrong in there. It all looks right. I'm
wondering if its in the ldaplistdb or LDAP cache? v/r,Louis
> From: quantumsch...@outlook.com
> To: assp-user@lists.sourceforge.net
> Date: Sun, 31 Mar 2013 12:23:39 -0400
> Subject: Re: [Assp-user] Unknown recipient but listed in LocalAddresses_Flat
>
> Hi Fritz!
>
> I just wanted a clean start from the last build. The V1 box was my first
> implementation and I'm sure I might have haphazardly got it running. It had
> about a year or more of time running and I didn't want to bring over any
> possible junk. So with this build, I'm just funneling all outbound mail
> through the V2 box that I feel real comfortable with so it knew who my users
> were really sending to and get a fresh whitelist.
>
> v/r,
> Louis
> ----------------------------------------
>> Date: Sun, 31 Mar 2013 16:59:43 +0200
>> To: assp-user@lists.sourceforge.net
>> From: f...@iworld.de
>> Subject: Re: [Assp-user] Unknown recipient but listed in LocalAddresses_Flat
>>
>> Just curious: why did you nou use the whitelist fron V1?
>>
>> ------------------------------------------------------------------------------
>> Own the Future-Intel(R) Level Up Game Demo Contest 2013
>> Rise to greatness in Intel's independent game demo contest. Compete
>> for recognition, cash, and the chance to get your game on Steam.
>> $5K grand prize plus 10 genre and skill prizes. Submit your demo
>> by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2
>> _______________________________________________
>> Assp-user mailing list
>> Assp-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/assp-user
> ------------------------------------------------------------------------------
> Own the Future-Intel(R) Level Up Game Demo Contest 2013
> Rise to greatness in Intel's independent game demo contest. Compete
> for recognition, cash, and the chance to get your game on Steam.
> $5K grand prize plus 10 genre and skill prizes. Submit your demo
> by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2
> _______________________________________________
> Assp-user mailing list
> Assp-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/assp-user
------------------------------------------------------------------------------
Own the Future-Intel® Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest.
Compete for recognition, cash, and the chance to get your game
on Steam. $5K grand prize plus 10 genre and skill prizes.
Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d
_______________________________________________
Assp-user mailing list
Assp-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/assp-user