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 /fetchmail.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 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/fetchmail.c b/fetchmail.c index d61efc17..8be194b9 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -197,13 +197,6 @@ char **argv; hostp->servername); exit(PS_SYNTAX); } - if (hostp->protocol == P_RPOP && hostp->port >= 1024) - { - (void) fprintf(stderr, - "%s configuration invalid, can't do RPOP to an unprivileged port\n", - hostp->servername); - exit(PS_SYNTAX); - } /* expand MDA commands */ if (hostp->mda[0]) @@ -393,7 +386,6 @@ int proto; case P_POP3: return("POP3"); break; case P_IMAP: return("IMAP"); break; case P_APOP: return("APOP"); break; - case P_RPOP: return("RPOP"); break; default: return("unknown?!?"); break; } } @@ -433,7 +425,6 @@ struct hostrec *queryctl; break; case P_POP3: case P_APOP: - case P_RPOP: return(doPOP3(queryctl)); break; case P_IMAP: @@ -484,8 +475,6 @@ struct hostrec *queryctl; else if (outlevel == O_VERBOSE) if (queryctl->protocol == P_APOP) printf(" APOP secret = '%s'\n", queryctl->password); - else if (queryctl->protocol == P_RPOP) - printf(" RPOP secret = '%s'\n", queryctl->password); else printf(" Password = '%s'\n", queryctl->password); printf(" Protocol is %s", showproto(queryctl->protocol)); |