diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-01-20 23:50:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-01-20 23:50:54 +0000 |
commit | ed8bfa5d0ae5d78c36b94b499a5cc364d338032b (patch) | |
tree | 76b546f5ef14ec701ca9aa2326d719e1c19b7e69 | |
parent | 8cb12a0d11623133bf88b325cc157ab724f64033 (diff) | |
download | fetchmail-ed8bfa5d0ae5d78c36b94b499a5cc364d338032b.tar.gz fetchmail-ed8bfa5d0ae5d78c36b94b499a5cc364d338032b.tar.bz2 fetchmail-ed8bfa5d0ae5d78c36b94b499a5cc364d338032b.zip |
Almost ready to release.
svn path=/trunk/; revision=1598
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | fetchmail.c | 2 | ||||
-rw-r--r-- | fetchmail.man | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -29,8 +29,10 @@ fetchmail-4.3.6 () * New --smtpaddress option from Henning P. Schmiedehausen allows you to force the hostname used in MAIL FROM lines. * If link can't find the bind library, force `no dns' on all connections. +* Change name of ordinary-user lockfile so .fetchmail can be used as a + logging directory. -There are 279 people on fetchmail-friends and 119 on fetchmail-announce. +There are 271 people on fetchmail-friends and 119 on fetchmail-announce. fetchmail-4.3.5 (Mon Dec 15 06:07:08 EST 1997) * Added Kent Robotti's fetchsetup configuration script. diff --git a/fetchmail.c b/fetchmail.c index 90446961..e6c45c02 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -148,7 +148,7 @@ int main (int argc, char **argv) sprintf(tmpbuf, "%s/fetchmail.pid", PID_DIR); else { strcpy(tmpbuf, home); - strcat(tmpbuf, "/.fetchmail"); + strcat(tmpbuf, "/.fetchmail.pid"); } /* perhaps we just want to check options? */ diff --git a/fetchmail.man b/fetchmail.man index 04232137..5a749ef3 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -1435,7 +1435,7 @@ UIDL command). your FTP run control file, which (if present) will be searched for passwords as a last resort before prompting for one interactively. .TP 5 -~/.fetchmail +~/.fetchmail.pid lock file to help prevent concurrent runs (non-root mode). .TP 5 /var/run/fetchmail.pid |