about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>2001-08-17 15:05:27 +0000
committerGraham Barr <gbarr@pobox.com>2001-08-17 15:05:27 +0000
commit8f4a54a2c85f107f43cb0fc35f5db26241d871d4 (patch)
tree692596da04942d8e5dc8a91d4530b01cf64c801f
parent85256885bd136ff4b26fa3e2b302e4f3928dc178 (diff)
downloadperl-libnet-8f4a54a2c85f107f43cb0fc35f5db26241d871d4.tar.gz
Increment VERSIONs
-rw-r--r--ChangeLog57
-rw-r--r--MANIFEST12
-rw-r--r--Makefile.PL39
-rw-r--r--Net/Cmd.pm6
-rw-r--r--Net/NNTP.pm4
-rw-r--r--Net/SMTP.pm4
-rw-r--r--Net/Time.pm4
7 files changed, 66 insertions, 60 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a0fa30..fcd4576 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,60 @@
+Change 625 on 2001/08/17 by <gbarr@pobox.com> (Graham Barr)
+
+        Doc updates and add cc and bcc as aliases for recipient
+
+Change 624 on 2001/08/17 by <gbarr@pobox.com> (Graham Barr)
+
+        Don't set ENV variables
+
+Change 623 on 2001/08/17 by <gbarr@pobox.com> (Graham Barr)
+
+        Support mixed case in the EHLO response
+
+Change 622 on 2001/08/06 by <gbarr@pobox.com> (Graham Barr)
+
+        Documentation update
+
+Change 621 on 2001/08/06 by <gbarr@pobox.com> (Graham Barr)
+
+        Set the status if command returns due to the connection being closed
+
+Change 620 on 2001/08/06 by <gbarr@pobox.com> (Graham Barr)
+
+        Fix for _msg_spec when passed the same msg number twice, pass N instead of N-N
+
+Change 619 on 2001/05/29 by <gbarr@pobox.com> (Graham Barr)
+
+        Remove DummyInetd
+
+Change 618 on 2001/05/29 by <gbarr@pobox.com> (Graham Barr)
+
+        Move snpp into its own distribution
+
+Change 615 on 2001/05/29 by <gbarr@pobox.com> (Graham Barr)
+
+        Move PH to its own dist
+
+Change 614 on 2001/05/29 by <gbarr@pobox.com> (Graham Barr)
+
+        Move TFTP out of libnet
+
+Change 612 on 2001/03/29 by <gbarr@pobox.com> (Graham Barr)
+
+        Support some non standard servers that return more than
+        just a number in response to SIZE. But the size must be
+        the last thing on the response line [Jeffery W Long]
+
+Change 603 on 2000/10/06 by <gbarr@pobox.com> (Graham Barr)
+
+        Net::Config
+        - Added documentation for ftp_firewall_type
+
+Change 574 on 2000/08/24 by <gbarr@pobox.com> (Graham Barr)
+
+        Net::FTP
+        - Make listen socket listen on same interfacce as the command connection
+          this fixes a problem when going via a SOCKS firewall
+
 Change 458 on 2000/03/29 by <gbarr@pobox.com> (Graham Barr)
 
         Net::Cmd, Net::FTP
diff --git a/MANIFEST b/MANIFEST
index 9d93a4e..92fba33 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -27,18 +27,6 @@ demos/nntp.mirror
 demos/pop3
 demos/smtp.self
 demos/time
-htdocs/Net/Cmd.html
-htdocs/Net/Config.html
-htdocs/Net/Domain.html
-htdocs/Net/FTP.html
-htdocs/Net/NNTP.html
-htdocs/Net/Netrc.html
-htdocs/Net/POP3.html
-htdocs/Net/SMTP.html
-htdocs/Net/Time.html
-htdocs/Net/libnetFAQ.html
-htdocs/index.html
-libnet.ppd
 t/ftp.t
 t/hostname.t
 t/nntp.t
diff --git a/Makefile.PL b/Makefile.PL
index 77de498..6daf48c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -100,42 +100,3 @@ WriteMakefile(
   @ppd,
 );
 
-sub MY::postamble {
-
-  return '' unless $] >= 5.00503;
-
-<<'ESQ';
-
-dist : ppd
-
-ESQ
-}
-
-sub MY::postamble {
-
-  my $ppd = $] >= 5.00503 ? 'ppd' : '';
-  my $mkhtml = "../bin/mkhtml";
-  my $html = '';
-
-  if ( -x $mkhtml ) {
-    $mkhtml = <<EDQ;
-mkhtml :
-        $mkhtml .
-        ../bin/mkindex >htdocs/index.html
-
-EDQ
-    $html = 'mkhtml';
-  }
-  else { $mkhtml = '' }
-
-  return '' unless length($ppd.$html);
-
-<<"EDQ";
-
-distdir : $ppd $html
-
-$mkhtml
-
-EDQ
-}
-
diff --git a/Net/Cmd.pm b/Net/Cmd.pm
index 0007047..a23a437 100644
--- a/Net/Cmd.pm
+++ b/Net/Cmd.pm
@@ -1,4 +1,4 @@
-# Net::Cmd.pm $Id: //depot/libnet/Net/Cmd.pm#24 $
+# Net::Cmd.pm $Id: //depot/libnet/Net/Cmd.pm#25 $
 #
 # Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@ BEGIN {
   }
 }
 
-$VERSION = "2.18";
+$VERSION = "2.19";
 @ISA     = qw(Exporter);
 @EXPORT  = qw(CMD_INFO CMD_OK CMD_MORE CMD_REJECT CMD_ERROR CMD_PENDING);
 
@@ -639,6 +639,6 @@ it under the same terms as Perl itself.
 
 =for html <hr>
 
-I<$Id: //depot/libnet/Net/Cmd.pm#24 $>
+I<$Id: //depot/libnet/Net/Cmd.pm#25 $>
 
 =cut
diff --git a/Net/NNTP.pm b/Net/NNTP.pm
index c61b83e..56c97b3 100644
--- a/Net/NNTP.pm
+++ b/Net/NNTP.pm
@@ -14,7 +14,7 @@ use Carp;
 use Time::Local;
 use Net::Config;
 
-$VERSION = "2.19"; # $Id: //depot/libnet/Net/NNTP.pm#12 $
+$VERSION = "2.20"; # $Id: //depot/libnet/Net/NNTP.pm#13 $
 @ISA     = qw(Net::Cmd IO::Socket::INET);
 
 sub new
@@ -1064,6 +1064,6 @@ it under the same terms as Perl itself.
 
 =for html <hr>
 
-I<$Id: //depot/libnet/Net/NNTP.pm#12 $>
+I<$Id: //depot/libnet/Net/NNTP.pm#13 $>
 
 =cut
diff --git a/Net/SMTP.pm b/Net/SMTP.pm
index 2236c54..a2f2d2e 100644
--- a/Net/SMTP.pm
+++ b/Net/SMTP.pm
@@ -16,7 +16,7 @@ use IO::Socket;
 use Net::Cmd;
 use Net::Config;
 
-$VERSION = "2.15"; # $Id: //depot/libnet/Net/SMTP.pm#15 $
+$VERSION = "2.16"; # $Id: //depot/libnet/Net/SMTP.pm#16 $
 
 @ISA = qw(Net::Cmd IO::Socket::INET);
 
@@ -609,6 +609,6 @@ it under the same terms as Perl itself.
 
 =for html <hr>
 
-I<$Id: //depot/libnet/Net/SMTP.pm#15 $>
+I<$Id: //depot/libnet/Net/SMTP.pm#16 $>
 
 =cut
diff --git a/Net/Time.pm b/Net/Time.pm
index 9a4f351..3fad07e 100644
--- a/Net/Time.pm
+++ b/Net/Time.pm
@@ -17,7 +17,7 @@ use IO::Select;
 @ISA = qw(Exporter);
 @EXPORT_OK = qw(inet_time inet_daytime);
 
-$VERSION = "2.08"; # $Id: //depot/libnet/Net/Time.pm#8 $
+$VERSION = "2.09"; # $Id: //depot/libnet/Net/Time.pm#9 $
 
 $TIMEOUT = 120;
 
@@ -146,6 +146,6 @@ it under the same terms as Perl itself.
 
 =for html <hr>
 
-I<$Id: //depot/libnet/Net/Time.pm#8 $>
+I<$Id: //depot/libnet/Net/Time.pm#9 $>
 
 =cut