Skip Menu |

This queue is for tickets about the Net-Server-Mail CPAN distribution.

Report information
The Basics
Id: 18804
Status: resolved
Priority: 0/
Queue: Net-Server-Mail

People
Owner: x.guimard [...] free.fr
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.13
Fixed in: 0.14



Subject: bug in example program: checking the recipient address
IMO there is a bug in the example program checking for the recipient address: ----------------- elsif(grep $domain eq $_, @local_domains) { return(0, 554, "$recipient: Recipient address rejected: Rela +y access denied"); } ----------------- should be something like ----------------- elsif(not(grep $domain eq $_, @local_domains)) { return(0, 554, "$recipient: Recipient address rejected: Rela +y access denied"); } ----------------- (Note the "not" in the first line of the source.)
Subject: bug.diff
32c32 < elsif(grep $domain eq $_, @local_domains) --- > elsif(not(grep $domain eq $_, @local_domains))
I'm the new maintener of Net::Server::Mail since Saturday. Your bug has been fixed in revision 0.14