X-Git-Url: https://code.th-h.de/?p=usenet%2Fyapfaq.git;a=blobdiff_plain;f=yapfaq.pl;h=a6dc98619623d26efa39cba79c75e923f9e8b0a7;hp=ac9764e296dfa14d954260ebdc00113afbdc5149;hb=5ddba442dab41b5b28d060320a9e2363a768a9a5;hpb=c2cafcca0009684fc16c87776cf5d62b74863ae5 diff --git a/yapfaq.pl b/yapfaq.pl index ac9764e..a6dc986 100644 --- a/yapfaq.pl +++ b/yapfaq.pl @@ -12,7 +12,7 @@ # It can be redistributed and/or modified under the same terms under # which Perl itself is published. -my $Version = "0.6-unreleased"; +my $Version = "0.6"; my $NNTPServer = "localhost"; my $NNTPUser = ""; @@ -151,7 +151,7 @@ sub readconfig{ unless($$Config[$i]{'posting-frequency'} =~ /^\s*\d+\s*[dwmy]\s*$/) { $Error .= "E: The Posting-frequency for your project \"$$Config[$i]{'name'}\" is invalid.\n" } - unless($$Config[$i]{'expires'} =~ /^\s*\d+\s*[dwmy]\s*$/) { + unless(!$$Config[$i]{'expires'} || $$Config[$i]{'expires'} =~ /^\s*\d+\s*[dwmy]\s*$/) { $$Config[$i]{'expires'} = '3m'; # set default: 3 month warn "$0: W: The Expires for your project \"$$Config[$i]{'name'}\" is invalid - set to 3 month.\n"; } @@ -266,6 +266,9 @@ sub postfaq { } post(\@Article); + # Test mode? + return if($Options{'t'}); + if($Options{'v'}) { print "$$ActName: Save status information.\n"; }