From: Gerd Moellmann Date: Sun, 10 Oct 1999 23:09:04 +0000 (+0000) Subject: Use "pop3" as the POP service name on all platforms, X-Git-Tag: emacs-pretest-21.0.90~6476 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b358f91c169048fc9d6b749e4cebcc8477f19d7d;p=emacs.git Use "pop3" as the POP service name on all platforms, instead of using "pop" on Unix and "pop3" on Windows NT. "pop3" has been the standard service name since RFC 1340 was published in July 1992, so I think it's safe to start using it by default. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index f036480180e..51a5c307e47 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,10 @@ +1999-10-11 Jonathan I. Kamens + + * pop.c: Use "pop3" as the POP service name on all platforms, + instead of using "pop" on Unix and "pop3" on Windows NT. "pop3" + has been the standard service name since RFC 1340 was published in + July 1992, so I think it's safe to start using it by default. + 1999-09-27 Dave Love * make-docfile.c (scan_lisp_file): Fix typo causing infloop. diff --git a/lib-src/pop.c b/lib-src/pop.c index 69e6e465234..57a5b197b0b 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -152,11 +152,7 @@ static char *find_crlf _P((char *, int)); #define ERROR_MAX 80 /* a pretty arbitrary size */ #define POP_PORT 110 #define KPOP_PORT 1109 -#ifdef WINDOWSNT #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ -#else -#define POP_SERVICE "pop" -#endif #ifdef KERBEROS #define KPOP_SERVICE "kpop" #endif