aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-04 14:29:37 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-04 14:29:37 +0000
commit313a954360f1659a3a27e1b02c8de7d2aaf99e15 (patch)
treeed4ec54503517e0b5939a6b08b25c61d7674bedc /pop3.c
parent8a8b194fae862aa28acc0fd38962423a98e44ef0 (diff)
downloadfetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.tar.gz
fetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.tar.bz2
fetchmail-313a954360f1659a3a27e1b02c8de7d2aaf99e15.zip
Enable conditioning out of POP3, IMAP, ETRN.
svn path=/trunk/; revision=1477
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 9e6fe993..090b292c 100644
--- a/pop3.c
+++ b/pop3.c
@@ -5,7 +5,7 @@
*/
#include "config.h"
-
+#ifdef POP3_ENABLE
#include <stdio.h>
#include <string.h>
#include <ctype.h>
@@ -517,5 +517,6 @@ int doPOP3 (struct query *ctl)
peek_capable = FALSE;
return(do_protocol(ctl, &pop3));
}
+#endif /* POP3_ENABLE */
/* pop3.c ends here */