Skip to Content.
Sympa Menu

devel - Re: [sympa-dev] Bug in function 'list_check_smtp'

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Sergiy Zhuk <address@concealed>
  • To: Tanel Kokk <address@concealed>
  • Cc: address@concealed
  • Subject: Re: [sympa-dev] Bug in function 'list_check_smtp'
  • Date: Wed, 20 Feb 2002 11:03:42 -0800 (PST)

hi

On Wed, 20 Feb 2002, Tanel Kokk wrote:

> S: 553 5.5.4 <<>>... Domain name required for sender address
>
> I think it depends on Net::SMTP module version. It depends, how
> Net::SMTP process parameter '<>'.

yes, you're right, I've just tested it.
It is safe to replace '<>' with $smtp->mail('')

I've attached the diff just to make it more convenient for cvs commiters...

thanks

--
rgds,
serge
--- wwsympa.fcgi.orig Wed Feb 20 11:00:25 2002
+++ wwsympa.fcgi Wed Feb 20 11:00:39 2002
@@ -4244,7 +4244,7 @@
if( $smtp = Net::SMTP->new($smtp_relay,
Hello => $smtp_relay,
Timeout => 30) ) {
- $smtp->mail('<>');
+ $smtp->mail('');
for(@suf) {
$conf = $smtp->to($_);
last if $conf;



Archive powered by MHonArc 2.6.19+.

Top of Page