aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-10 13:01:16 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-10 13:01:16 +0000
commita6b119455ce2c0f8d66cf54b9d368db26006d88a (patch)
tree6b56645af386808c9c867e497fbe959565829fe6
parent459517cb5e4935fe0ced6bd6992c7ef15c6d49e6 (diff)
downloadfetchmail-a6b119455ce2c0f8d66cf54b9d368db26006d88a.tar.gz
fetchmail-a6b119455ce2c0f8d66cf54b9d368db26006d88a.tar.bz2
fetchmail-a6b119455ce2c0f8d66cf54b9d368db26006d88a.zip
Minor tweaks.
svn path=/trunk/; revision=1496
-rw-r--r--driver.c2
-rw-r--r--fetchmail.man10
-rw-r--r--imap.c2
-rw-r--r--pop3.c2
4 files changed, 13 insertions, 3 deletions
diff --git a/driver.c b/driver.c
index 3ec6e522..b16848a4 100644
--- a/driver.c
+++ b/driver.c
@@ -72,7 +72,9 @@
#define SMTP_PORT 25 /* standard SMTP service port */
+#ifndef strstr /* glibc-2.1 declares this as a macro */
extern char *strstr(); /* needed on sysV68 R3V7.1. */
+#endif /* strstr */
int fetchlimit; /* how often to tear down the server connection */
int batchcount; /* count of messages sent in current batch */
diff --git a/fetchmail.man b/fetchmail.man
index f044017c..bcd349e2 100644
--- a/fetchmail.man
+++ b/fetchmail.man
@@ -1,4 +1,8 @@
'\" t
+.\" ** The above line should force tbl to be used as a preprocessor **
+.\"
+.\" Man page for fetchmail
+.\"
.\" For license terms, see the file COPYING in this directory.
.TH fetchmail 1
.SH NAME
@@ -172,9 +176,9 @@ machine in the server's queue of undelivered mail.
.B \-U, --uidl
(Keyword: uidl)
Force UIDL use (effective only with POP3). Force client-side tracking
-of `newness' of messages. Use with `keep' to use a mailbox as a baby
-news drop for a group of users; if the mailbox is periodically purged,
-every member will get a chance to read the message.
+of `newness' of messages (UIDL stands for ``unique ID listing'' and is
+described in RFC1725). Use with `keep' to use a mailbox as a baby
+news drop for a group of users.
.TP
.B \-P, --port
(Keyword: port)
diff --git a/imap.c b/imap.c
index 317a3394..315f5407 100644
--- a/imap.c
+++ b/imap.c
@@ -26,7 +26,9 @@
#include <krb.h>
#endif /* KERBEROS_V4 */
+#ifndef strstr /* glibc-2.1 declares this as a macro */
extern char *strstr(); /* needed on sysV68 R3V7.1. */
+#endif /* strstr */
/* imap_version values */
#define IMAP2 -1 /* IMAP2 or IMAP2BIS, RFC1176 */
diff --git a/pop3.c b/pop3.c
index d3b95742..24c63147 100644
--- a/pop3.c
+++ b/pop3.c
@@ -23,7 +23,9 @@
#include <opie.h>
#endif /* HAVE_LIBOPIE */
+#ifndef strstr /* glibc-2.1 declares this as a macro */
extern char *strstr(); /* needed on sysV68 R3V7.1. */
+#endif /* strstr */
static int last;