aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/pop.c
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-10 23:09:04 +0000
committerGerd Moellmann1999-10-10 23:09:04 +0000
commitb358f91c169048fc9d6b749e4cebcc8477f19d7d (patch)
treefa2a5dcb1fa03ab36a2ca76f06675b8d92208f5b /lib-src/pop.c
parent99b62845fee55bd8e745a1fcbe6a843572ef3ef4 (diff)
downloademacs-b358f91c169048fc9d6b749e4cebcc8477f19d7d.tar.gz
emacs-b358f91c169048fc9d6b749e4cebcc8477f19d7d.zip
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.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r--lib-src/pop.c4
1 files changed, 0 insertions, 4 deletions
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));
152#define ERROR_MAX 80 /* a pretty arbitrary size */ 152#define ERROR_MAX 80 /* a pretty arbitrary size */
153#define POP_PORT 110 153#define POP_PORT 110
154#define KPOP_PORT 1109 154#define KPOP_PORT 1109
155#ifdef WINDOWSNT
156#define POP_SERVICE "pop3" /* we don't want the POP2 port! */ 155#define POP_SERVICE "pop3" /* we don't want the POP2 port! */
157#else
158#define POP_SERVICE "pop"
159#endif
160#ifdef KERBEROS 156#ifdef KERBEROS
161#define KPOP_SERVICE "kpop" 157#define KPOP_SERVICE "kpop"
162#endif 158#endif