diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 13:36:25 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 13:36:25 +0000 |
commit | 701af5a98743f6e49f435d66385ba10f95457b27 (patch) | |
tree | 6669912840d903400f0bc1720df0ea3ebf63e4a3 | |
parent | 7533130239f331d5420107768142056525c50c9e (diff) | |
download | fetchmail-701af5a98743f6e49f435d66385ba10f95457b27.tar.gz fetchmail-701af5a98743f6e49f435d66385ba10f95457b27.tar.bz2 fetchmail-701af5a98743f6e49f435d66385ba10f95457b27.zip |
Changed copyrights, they're now by reference.
svn path=/trunk/; revision=299
-rw-r--r-- | daemon.c | 5 | ||||
-rw-r--r-- | fetchmail.c | 6 | ||||
-rw-r--r-- | fetchmail.h | 5 | ||||
-rw-r--r-- | fetchmail.man | 10 | ||||
-rw-r--r-- | getpass.c | 3 | ||||
-rw-r--r-- | md5global.h | 3 | ||||
-rw-r--r-- | md5ify.c | 3 | ||||
-rw-r--r-- | options.c | 5 | ||||
-rw-r--r-- | pop3.c | 6 | ||||
-rw-r--r-- | rcfile_l.l | 3 | ||||
-rw-r--r-- | rcfile_y.y | 5 | ||||
-rw-r--r-- | socket.c | 3 | ||||
-rw-r--r-- | uid.c | 3 | ||||
-rw-r--r-- | xmalloc.c | 3 |
14 files changed, 24 insertions, 39 deletions
@@ -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>. @@ -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 @@ -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. */ @@ -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 ***********************************************************************/ @@ -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. ***********************************************************************/ @@ -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. */ @@ -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 @@ -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. */ @@ -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. */ @@ -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. */ |