diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-08-26 21:31:20 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-08-26 21:31:20 +0000 |
commit | aa0d39fe51eb00dcb82969d273782b25884f105a (patch) | |
tree | f66545a418d82ccf393e6091e5bb942bf69eea5f /fetchmail.c | |
parent | 2f5adc9ba38c8df30e80cb7ad04f1a54de557f80 (diff) | |
download | fetchmail-aa0d39fe51eb00dcb82969d273782b25884f105a.tar.gz fetchmail-aa0d39fe51eb00dcb82969d273782b25884f105a.tar.bz2 fetchmail-aa0d39fe51eb00dcb82969d273782b25884f105a.zip |
We have IMAP support.
svn path=/trunk/; revision=65
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 99a81e68..15d966b3 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -290,6 +290,9 @@ struct hostrec *queryctl; case P_APOP: return(doPOP3(queryctl)); break; + case P_IMAP: + return(doIMAP(queryctl)); + break; default: fprintf(stderr,"popclient: unsupported protocol selected.\n"); return(PS_PROTOCOL); |