diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-09 16:44:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-09 16:44:21 +0000 |
commit | b8c59279404ee384839e86e5f68e94bb257c45d7 (patch) | |
tree | 4dfa94d54019cb60e594da0123f8f1af03b4ab74 /pop3.c | |
parent | 86c0cbc302f0be583bd4c1772b398bc1086d2264 (diff) | |
download | fetchmail-b8c59279404ee384839e86e5f68e94bb257c45d7.tar.gz fetchmail-b8c59279404ee384839e86e5f68e94bb257c45d7.tar.bz2 fetchmail-b8c59279404ee384839e86e5f68e94bb257c45d7.zip |
Removed all pretentions to RPOP support.
svn path=/trunk/; revision=267
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -109,16 +109,6 @@ char *greeting; goto badAuth; break; - case P_RPOP: - gen_send(socket,"USER %s", queryctl->remotename); - if (pop3_ok(socket, buf) != 0) - goto badAuth; - - gen_send(socket, "RPOP %s", queryctl->password); - if (pop3_ok(socket, buf) != 0) - goto badAuth; - break; - case P_APOP: gen_send(socket,"APOP %s %s", queryctl->remotename, queryctl->digest); if (pop3_ok(socket, buf) != 0) |