Cine has asked for the wisdom of the Perl Monks concerning the following question:
andmy $head = $mail->head(); if (!$head->get('From') || !$head->get('To') || $head->get('From') eq "<>" || $head->get('To') eq "<>" ) {goto N +EXT;}
my $head = $mail->head(); if (!$head->get('From') || !$head->get('To') || $head->get('From') =~ /^<>$/ || $head->get('To') =~ /^<>$/) {got +o NEXT;}
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Weird eq behaviour
by choocroot (Friar) on Jul 25, 2002 at 12:49 UTC | |
by Cine (Friar) on Jul 25, 2002 at 13:00 UTC | |
by choocroot (Friar) on Jul 25, 2002 at 13:18 UTC | |
Re: Weird eq behaviour
by jmcnamara (Monsignor) on Jul 25, 2002 at 12:48 UTC | |
by Cine (Friar) on Jul 25, 2002 at 12:51 UTC |