From 701af5a98743f6e49f435d66385ba10f95457b27 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 11 Oct 1996 13:36:25 +0000 Subject: Changed copyrights, they're now by reference. svn path=/trunk/; revision=299 --- daemon.c | 5 ++--- fetchmail.c | 6 ++---- fetchmail.h | 5 ++--- fetchmail.man | 10 +++++----- getpass.c | 3 +-- md5global.h | 3 +-- md5ify.c | 3 +-- options.c | 5 ++--- pop3.c | 6 ++---- rcfile_l.l | 3 +-- rcfile_y.y | 5 ++--- socket.c | 3 +-- uid.c | 3 +-- xmalloc.c | 3 +-- 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 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 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 . 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, 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 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 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. */ -- cgit v1.2.3