aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--daemon.c5
-rw-r--r--fetchmail.c6
-rw-r--r--fetchmail.h5
-rw-r--r--fetchmail.man10
-rw-r--r--getpass.c3
-rw-r--r--md5global.h3
-rw-r--r--md5ify.c3
-rw-r--r--options.c5
-rw-r--r--pop3.c6
-rw-r--r--rcfile_l.l3
-rw-r--r--rcfile_y.y5
-rw-r--r--socket.c3
-rw-r--r--uid.c3
-rw-r--r--xmalloc.c3
14 files changed, 24 insertions, 39 deletions
diff --git a/daemon.c b/daemon.c
index 7acbb874..771b6e8b 100644
--- a/daemon.c
+++ b/daemon.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
@@ -184,7 +183,7 @@ nottyDetach:
}
if (logfile)
- fd = open(logfile, O_CREAT|O_WRONLY, 0777); /* stdout */
+ fd = open(logfile, O_CREAT|O_WRONLY|O_APPEND, 0777); /* stdout */
else
if (dup(fd) < 0) { /* stdout */
perror("dup");
diff --git a/fetchmail.c b/fetchmail.c
index e3369d2b..ba70a6a4 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1,13 +1,11 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: fetchmail.c
project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
- Extensively hacked and improved by esr.
+ programmer: Eric S. Raymond <esr@thyrsus.com>
description: main driver module for fetchmail
***********************************************************************/
diff --git a/fetchmail.h b/fetchmail.h
index 6c7eced3..82471678 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -1,12 +1,11 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: fetchmail.h
project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
+ programmer: Eric S. Raymond <esr@thyrsus.com>
description: global constant, type, and variable definitions.
***********************************************************************/
diff --git a/fetchmail.man b/fetchmail.man
index d7110970..49fcf20d 100644
--- a/fetchmail.man
+++ b/fetchmail.man
@@ -601,11 +601,11 @@ requires either that both the USER and HOME environment variables are
correctly set, or that \fBgetpwuid\fR(3) be able to retrieve a password
entry from your user ID.
.SH BUGS AND KNOWN PROBLEMS
-Use of any of the supported protocols other than APOP requires that
-the program send unencrypted passwords over the TCP/IP connection to
-the mail server. This creates a risk that name/password pairs might
-be snaffled with a packet sniffer or more sophisticated monitoring
-software.
+Use of any of the supported protocols other than APOP or KPOP requires
+that the program send unencrypted passwords over the TCP/IP connection
+to the mail server. This creates a risk that name/password pairs
+might be snaffled with a packet sniffer or more sophisticated
+monitoring software.
.PP
Send comments, bug reports, gripes, and the like to Eric S. Raymond
<esr@thyrsus.com>.
diff --git a/getpass.c b/getpass.c
index 84079baf..ae639328 100644
--- a/getpass.c
+++ b/getpass.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
diff --git a/md5global.h b/md5global.h
index fb98e5b8..bde8db06 100644
--- a/md5global.h
+++ b/md5global.h
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*
* md5global.h Global declarations for MD5 module used by fetchmail
diff --git a/md5ify.c b/md5ify.c
index 8999c6d6..7cb23b6c 100644
--- a/md5ify.c
+++ b/md5ify.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
diff --git a/options.c b/options.c
index c2a4445b..39852bd3 100644
--- a/options.c
+++ b/options.c
@@ -1,12 +1,11 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: options.c
project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
+ programmer: Eric S. Raymond, <esr@thyrsus.com>
description: command-line option processing
***********************************************************************/
diff --git a/pop3.c b/pop3.c
index c17127b9..5c5eed11 100644
--- a/pop3.c
+++ b/pop3.c
@@ -1,13 +1,11 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: pop3.c
project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
- Hacks and bug fixes by esr.
+ programmer: Eric S. Raymond <esr@thyrsus.com>
description: POP3 client code.
***********************************************************************/
diff --git a/rcfile_l.l b/rcfile_l.l
index 9a86d8b4..ffd4fadd 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -1,7 +1,6 @@
%{
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
diff --git a/rcfile_y.y b/rcfile_y.y
index f1197ada..bb3e7bb9 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -1,13 +1,12 @@
%{
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
/***********************************************************************
module: rcfile_y.y
project: fetchmail
- programmer: Carl Harris, ceharris@mal.com
+ programmer: Eric S. Raymond <esr@thyrsus.com>
Extensively hacked and fixed by esr.
description: configuration file parser
diff --git a/socket.c b/socket.c
index 3cfb9f0a..62ea92b5 100644
--- a/socket.c
+++ b/socket.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
diff --git a/uid.c b/uid.c
index afa43bfa..eb87d4dc 100644
--- a/uid.c
+++ b/uid.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/
diff --git a/xmalloc.c b/xmalloc.c
index b5d03f89..3679b508 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -1,5 +1,4 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
* For license terms, see the file COPYING in this directory.
*/