summaryrefslogtreecommitdiff
path: root/lib-src/pop.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-10-10 23:09:04 +0000
committerGerd Moellmann <gerd@gnu.org>1999-10-10 23:09:04 +0000
commitb358f91c169048fc9d6b749e4cebcc8477f19d7d (patch)
treefa2a5dcb1fa03ab36a2ca76f06675b8d92208f5b /lib-src/pop.c
parent99b62845fee55bd8e745a1fcbe6a843572ef3ef4 (diff)
downloademacs-b358f91c169048fc9d6b749e4cebcc8477f19d7d.tar.gz
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));
#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