Change: Authenticate only if $NNTPUser is set.
[usenet/yapfaq.git] / yapfaq.pl
index 5b7160a..bce9684 100644 (file)
--- a/yapfaq.pl
+++ b/yapfaq.pl
@@ -305,7 +305,7 @@ sub post {
   my $NewsConnection = Net::NNTP->new($NNTPServer, Reader => 1)
     or die "$0: E: Can't connect to news server '$NNTPServer'!\n";
 
-  $NewsConnection->authinfo ($NNTPUser, $NNTPPass);
+  $NewsConnection->authinfo ($NNTPUser, $NNTPPass) if (defined($NNTPUser));
   $NewsConnection->post();
   $NewsConnection->datasend (@$ArticleR);
   $NewsConnection->dataend();
This page took 0.010366 seconds and 4 git commands to generate.