about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>1997-09-27 03:54:39 +0000
committerGraham Barr <gbarr@pobox.com>1997-09-27 03:54:39 +0000
commit43850f3449f97d6a1d37296214da29464e5015b2 (patch)
tree0460f3c26734bbc48c6cf94a3e0297d38267a435
parent0f1b70bcbc8fb10e9ad18eb517a2ce743706c73e (diff)
downloadperl-libnet-43850f3449f97d6a1d37296214da29464e5015b2.tar.gz
Email address and documentation changes
-rw-r--r--Net/Cmd.pm4
-rw-r--r--Net/Domain.pm4
-rw-r--r--Net/DummyInetd.pm4
-rw-r--r--Net/FTP.pm4
-rw-r--r--Net/NNTP.pm20
-rw-r--r--Net/Netrc.pm4
-rw-r--r--Net/PH.pm6
-rw-r--r--Net/POP3.pm4
-rw-r--r--Net/SMTP.pm4
-rw-r--r--Net/SNPP.pm4
-rw-r--r--Net/Time.pm4
-rw-r--r--README2
12 files changed, 41 insertions, 23 deletions
diff --git a/Net/Cmd.pm b/Net/Cmd.pm
index 09fc518..22081f9 100644
--- a/Net/Cmd.pm
+++ b/Net/Cmd.pm
@@ -1,6 +1,6 @@
 # Net::Cmd.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -540,7 +540,7 @@ of C<response> and C<status>. The sixth is C<CMD_PENDING>.
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/Domain.pm b/Net/Domain.pm
index 6bc7bdf..cfe398e 100644
--- a/Net/Domain.pm
+++ b/Net/Domain.pm
@@ -1,6 +1,6 @@
 # Net::Domain.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -281,7 +281,7 @@ Returns the remainder of the FQDN after the I<hostname> has been removed.
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>.
+Graham Barr <gbarr@pobox.com>.
 Adapted from Sys::Hostname by David Sundstrom <sunds@asictest.sc.ti.com>
 
 =head1 COPYRIGHT
diff --git a/Net/DummyInetd.pm b/Net/DummyInetd.pm
index 43c9d30..8247337 100644
--- a/Net/DummyInetd.pm
+++ b/Net/DummyInetd.pm
@@ -1,6 +1,6 @@
 # Net::DummyInetd.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -137,7 +137,7 @@ Returns the port number on which the I<DummyInetd> object is listening
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/FTP.pm b/Net/FTP.pm
index a2edee7..295eb7c 100644
--- a/Net/FTP.pm
+++ b/Net/FTP.pm
@@ -1060,6 +1060,10 @@ directory with the same leafname as C<LOCAL_FILE>.
 Returns C<REMOTE_FILE>, or the generated remote filename if C<REMOTE_FILE>
 is not given.
 
+B<NOTE>: If for some reason the transfer does not complete and an error is
+returned then the contents that had been transfered will not be remove
+automatically.
+
 =item put_unique ( LOCAL_FILE [, REMOTE_FILE ] )
 
 Same as put but uses the C<STOU> command.
diff --git a/Net/NNTP.pm b/Net/NNTP.pm
index c924ed9..61d75cb 100644
--- a/Net/NNTP.pm
+++ b/Net/NNTP.pm
@@ -1,6 +1,6 @@
 # Net::NNTP.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -917,10 +917,24 @@ specified.
 Returns a reference to a HASH where the keys are the message numbers and the
 values are the References: lines from the articles
 
-=item listgroup
+=item listgroup ( [ GROUP ] )
+
+Returns a reference to a list of all the active messages in C<GROUP>, or
+the current group if C<GROUP> is not specified.
 
 =item reader
 
+Tell the server that you are a reader and not another server.
+
+This is required by some servers. For example if you are connecting to
+an INN server and you have transfer permission your connection will
+be connected to the transfer daemon, not the NNTP daemon. Issuing
+this command will cause the transfer daemon to hand over control
+to the NNTP daemon.
+
+Some servers do not understand this command, but issuing it and ignoring
+the response is harmless.
+
 =back
 
 =head1 UNSUPPORTED
@@ -1025,7 +1039,7 @@ L<Net::Cmd>
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/Netrc.pm b/Net/Netrc.pm
index 9be4b72..177b386 100644
--- a/Net/Netrc.pm
+++ b/Net/Netrc.pm
@@ -1,6 +1,6 @@
 # Net::Netrc.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -298,7 +298,7 @@ Return a list of login, password and account information fir the netrc entry
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 SEE ALSO
 
diff --git a/Net/PH.pm b/Net/PH.pm
index 9327416..f2e1b7e 100644
--- a/Net/PH.pm
+++ b/Net/PH.pm
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com> and
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com> and
 # Alex Hristov <hristov@slb.com>. All rights reserved. This program is free
 # software; you # can redistribute it and/or modify it under the same terms
 # as Perl itself.
@@ -935,7 +935,7 @@ L<Net::Cmd>
 
 =head1 AUTHORS
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 Alex Hristov <hristov@slb.com>
 
 =head1 ACKNOWLEDGMENTS
@@ -955,7 +955,7 @@ The encryption code is based upon cryptit.c, Copyright (C) 1988 by
 Steven Dorner and the University of Illinois Board of Trustees,
 and by CSNET.
 
-All other code is Copyright (c) 1996-1997 Graham Barr <gbarr@ti.com>
+All other code is Copyright (c) 1996-1997 Graham Barr <gbarr@pobox.com>
 and Alex Hristov <hristov@slb.com>. All rights reserved. This program is
 free software; you can redistribute it and/or modify it under the same
 terms as Perl itself.
diff --git a/Net/POP3.pm b/Net/POP3.pm
index 1d2e662..d2dd000 100644
--- a/Net/POP3.pm
+++ b/Net/POP3.pm
@@ -1,6 +1,6 @@
 # Net::POP3.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -465,7 +465,7 @@ L<Net::Cmd>
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/SMTP.pm b/Net/SMTP.pm
index f3d7172..a676005 100644
--- a/Net/SMTP.pm
+++ b/Net/SMTP.pm
@@ -1,6 +1,6 @@
 # Net::SMTP.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -531,7 +531,7 @@ L<Net::Cmd>
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/SNPP.pm b/Net/SNPP.pm
index 5685bfe..d3f10d8 100644
--- a/Net/SNPP.pm
+++ b/Net/SNPP.pm
@@ -1,6 +1,6 @@
 # Net::SNPP.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -387,7 +387,7 @@ RFC1861
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/Net/Time.pm b/Net/Time.pm
index c667a0f..2b88977 100644
--- a/Net/Time.pm
+++ b/Net/Time.pm
@@ -1,6 +1,6 @@
 # Net::Time.pm
 #
-# Copyright (c) 1995-1997 Graham Barr <gbarr@ti.com>. All rights reserved.
+# Copyright (c) 1995-1997 Graham Barr <gbarr@pobox.com>. All rights reserved.
 # This program is free software; you can redistribute it and/or
 # modify it under the same terms as Perl itself.
 
@@ -119,7 +119,7 @@ C<udp>. The result will be an ASCII string or I<undef> upon failure.
 
 =head1 AUTHOR
 
-Graham Barr <gbarr@ti.com>
+Graham Barr <gbarr@pobox.com>
 
 =head1 COPYRIGHT
 
diff --git a/README b/README
index 4818ca2..1dd64ae 100644
--- a/README
+++ b/README
@@ -80,7 +80,7 @@ SUPPORT
 
 Questions about how to use this library should be directed to the
 comp.lang.perl.modules USENET Newsgroup.  Bug reports and suggestions
-for improvements can be sendt to me at <gbarr@ti.com>.
+for improvements can be sendt to me at <gbarr@pobox.com>.
 
 Most of the modules in this library have an option to output a debug
 transcript to STDERR. When reporting bugs/problems please, if possible,