]> Pileus Git - ~andy/fetchmail/blob - pop3.c
e32103d7f32eea76a51f5c0320cd0a95ffa5b559
[~andy/fetchmail] / pop3.c
1 /*
2  * pop3.c -- POP3 protocol methods
3  *
4  * Copyright 1998 by Eric S. Raymond.
5  * For license terms, see the file COPYING in this directory.
6  */
7
8 #include  "config.h"
9 #ifdef POP3_ENABLE
10 #include  <stdio.h>
11 #include  <string.h>
12 #include  <ctype.h>
13 #if defined(HAVE_UNISTD_H)
14 #include <unistd.h>
15 #endif
16 #if defined(STDC_HEADERS)
17 #include  <stdlib.h>
18 #endif
19 #include  <errno.h>
20
21 #include  "fetchmail.h"
22 #include  "socket.h"
23 #include  "i18n.h"
24
25 #ifdef OPIE_ENABLE
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 #include <opie.h>
30 #ifdef __cplusplus
31 }
32 #endif
33 #endif /* OPIE_ENABLE */
34
35 /* global variables: please reinitialize them explicitly for proper
36  * working in daemon mode */
37
38 /* TODO: session variables to be initialized before server greeting */
39 #ifdef OPIE_ENABLE
40 static char lastok[POPBUFSIZE+1];
41 #endif /* OPIE_ENABLE */
42
43 /* session variables initialized in capa_probe() or pop3_getauth() */
44 #if defined(GSSAPI)
45 flag has_gssapi = FALSE;
46 #endif /* defined(GSSAPI) */
47 #if defined(KERBEROS_V4) || defined(KERBEROS_V5)
48 flag has_kerberos = FALSE;
49 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
50 static flag has_cram = FALSE;
51 #ifdef OPIE_ENABLE
52 flag has_otp = FALSE;
53 #endif /* OPIE_ENABLE */
54 #ifdef SSL_ENABLE
55 static flag has_ssl = FALSE;
56 #endif /* SSL_ENABLE */
57
58 /* mailbox variables initialized in pop3_getrange() */
59 static int last;
60
61 /* mail variables initialized in pop3_fetch() */
62 #ifdef SDPS_ENABLE
63 char *sdps_envfrom;
64 char *sdps_envto;
65 #endif /* SDPS_ENABLE */
66
67 #ifdef NTLM_ENABLE
68 #include "ntlm.h"
69
70 /*
71  * NTLM support by Grant Edwards.
72  *
73  * Handle MS-Exchange NTLM authentication method.  This is the same
74  * as the NTLM auth used by Samba for SMB related services. We just
75  * encode the packets in base64 instead of sending them out via a
76  * network interface.
77  * 
78  * Much source (ntlm.h, smb*.c smb*.h) was borrowed from Samba.
79  */
80
81 static int do_pop3_ntlm(int sock, struct query *ctl,
82         int msn_instead /** if true, send AUTH MSN, else send AUTH NTLM */)
83 {
84     tSmbNtlmAuthRequest request;
85     tSmbNtlmAuthChallenge challenge;
86     tSmbNtlmAuthResponse response;
87
88     char msgbuf[2048];
89     int result,len;
90   
91     gen_send(sock, msn_instead ? "AUTH MSN" : "AUTH NTLM");
92
93     if ((result = gen_recv(sock, msgbuf, sizeof msgbuf)))
94         return result;
95   
96     if (msgbuf[0] != '+')
97         return PS_AUTHFAIL;
98   
99     buildSmbNtlmAuthRequest(&request,ctl->remotename,NULL);
100
101     if (outlevel >= O_DEBUG)
102         dumpSmbNtlmAuthRequest(stdout, &request);
103
104     memset(msgbuf,0,sizeof msgbuf);
105     to64frombits (msgbuf, &request, SmbLength(&request));
106   
107     if (outlevel >= O_MONITOR)
108         report(stdout, "POP3> %s\n", msgbuf);
109   
110     strcat(msgbuf,"\r\n");
111     SockWrite (sock, msgbuf, strlen (msgbuf));
112
113     if ((gen_recv(sock, msgbuf, sizeof msgbuf)))
114         return result;
115   
116     len = from64tobits (&challenge, msgbuf, sizeof(msgbuf));
117     
118     if (outlevel >= O_DEBUG)
119         dumpSmbNtlmAuthChallenge(stdout, &challenge);
120     
121     buildSmbNtlmAuthResponse(&challenge, &response,ctl->remotename,ctl->password);
122   
123     if (outlevel >= O_DEBUG)
124         dumpSmbNtlmAuthResponse(stdout, &response);
125   
126     memset(msgbuf,0,sizeof msgbuf);
127     to64frombits (msgbuf, &response, SmbLength(&response));
128
129     if (outlevel >= O_MONITOR)
130         report(stdout, "POP3> %s\n", msgbuf);
131       
132     strcat(msgbuf,"\r\n");
133     SockWrite (sock, msgbuf, strlen (msgbuf));
134   
135     if ((result = gen_recv (sock, msgbuf, sizeof msgbuf)))
136         return result;
137   
138     if (strstr (msgbuf, "OK"))
139         return PS_SUCCESS;
140     else
141         return PS_AUTHFAIL;
142 }
143 #endif /* NTLM */
144
145
146 #define DOTLINE(s)      (s[0] == '.' && (s[1]=='\r'||s[1]=='\n'||s[1]=='\0'))
147
148 static int pop3_ok (int sock, char *argbuf)
149 /* parse command response */
150 {
151     int ok;
152     char buf [POPBUFSIZE+1];
153     char *bufp;
154
155     if ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
156     {   bufp = buf;
157         if (*bufp == '+' || *bufp == '-')
158             bufp++;
159         else
160             return(PS_PROTOCOL);
161
162         while (isalpha((unsigned char)*bufp))
163             bufp++;
164
165         if (*bufp)
166           *(bufp++) = '\0';
167
168         if (strcmp(buf,"+OK") == 0)
169         {
170 #ifdef OPIE_ENABLE
171             strcpy(lastok, bufp);
172 #endif /* OPIE_ENABLE */
173             ok = 0;
174         }
175         else if (strncmp(buf,"-ERR", 4) == 0)
176         {
177             if (stage == STAGE_FETCH)
178                 ok = PS_TRANSIENT;
179             else if (stage > STAGE_GETAUTH)
180                 ok = PS_PROTOCOL;
181             /*
182              * We're checking for "lock busy", "unable to lock", 
183              * "already locked", "wait a few minutes" etc. here. 
184              * This indicates that we have to wait for the server to
185              * unwedge itself before we can poll again.
186              *
187              * PS_LOCKBUSY check empirically verified with two recent
188              * versions of the Berkeley popper; QPOP (version 2.2)  and
189              * QUALCOMM Pop server derived from UCB (version 2.1.4-R3)
190              * These are caught by the case-indifferent "lock" check.
191              * The "wait" catches "mail storage services unavailable,
192              * wait a few minutes and try again" on the InterMail server.
193              *
194              * If these aren't picked up on correctly, fetchmail will 
195              * think there is an authentication failure and wedge the
196              * connection in order to prevent futile polls.
197              *
198              * Gad, what a kluge.
199              */
200             else if (strstr(bufp,"lock")
201                      || strstr(bufp,"Lock")
202                      || strstr(bufp,"LOCK")
203                      || strstr(bufp,"wait")
204                      /* these are blessed by RFC 2449 */
205                      || strstr(bufp,"[IN-USE]")||strstr(bufp,"[LOGIN-DELAY]"))
206                 ok = PS_LOCKBUSY;
207             else if ((strstr(bufp,"Service")
208                      || strstr(bufp,"service"))
209                          && (strstr(bufp,"unavailable")))
210                 ok = PS_SERVBUSY;
211             else
212                 ok = PS_AUTHFAIL;
213             /*
214              * We always want to pass the user lock-busy messages, because
215              * they're red flags.  Other stuff (like AUTH failures on non-
216              * RFC1734 servers) only if we're debugging.
217              */
218             if (*bufp && (ok == PS_LOCKBUSY || outlevel >= O_MONITOR))
219               report(stderr, "%s\n", bufp);
220         }
221         else
222             ok = PS_PROTOCOL;
223
224 #if POPBUFSIZE > MSGBUFSIZE
225 #error "POPBUFSIZE must not be larger than MSGBUFSIZE"
226 #endif
227         if (argbuf != NULL)
228             strcpy(argbuf,bufp);
229     }
230
231     return(ok);
232 }
233
234
235
236 static int capa_probe(int sock)
237 /* probe the capabilities of the remote server */
238 {
239     int ok;
240
241 #if defined(GSSAPI)
242     has_gssapi = FALSE;
243 #endif /* defined(GSSAPI) */
244 #if defined(KERBEROS_V4) || defined(KERBEROS_V5)
245     has_kerberos = FALSE;
246 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
247     has_cram = FALSE;
248 #ifdef OPIE_ENABLE
249     has_otp = FALSE;
250 #endif /* OPIE_ENABLE */
251
252     ok = gen_transact(sock, "CAPA");
253     if (ok == PS_SUCCESS)
254     {
255         char buffer[64];
256
257         /* determine what authentication methods we have available */
258         while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0)
259         {
260             if (DOTLINE(buffer))
261                 break;
262 #ifdef SSL_ENABLE
263             if (strstr(buffer, "STLS"))
264                 has_ssl = TRUE;
265 #endif /* SSL_ENABLE */
266 #if defined(GSSAPI)
267             if (strstr(buffer, "GSSAPI"))
268                 has_gssapi = TRUE;
269 #endif /* defined(GSSAPI) */
270 #if defined(KERBEROS_V4)
271             if (strstr(buffer, "KERBEROS_V4"))
272                 has_kerberos = TRUE;
273 #endif /* defined(KERBEROS_V4)  */
274 #ifdef OPIE_ENABLE
275             if (strstr(buffer, "X-OTP"))
276                 has_otp = TRUE;
277 #endif /* OPIE_ENABLE */
278             if (strstr(buffer, "CRAM-MD5"))
279                 has_cram = TRUE;
280         }
281     }
282     return(ok);
283 }
284
285 static void set_peek_capable(struct query *ctl)
286 {
287     /* we're peek-capable means that the use of TOP is enabled,
288      * see pop3_fetch for details - short story, we can use TOP if
289      * we have a means of reliably tracking which mail we need to
290      * refetch should the connection abort in the middle.
291      * fetchall forces RETR, as does keep without UIDL */
292     peek_capable = !ctl->fetchall && (!ctl->keep || ctl->server.uidl);
293 }
294
295 static int pop3_getauth(int sock, struct query *ctl, char *greeting)
296 /* apply for connection authorization */
297 {
298     int ok;
299     char *start,*end;
300     char *msg;
301 #ifdef OPIE_ENABLE
302     char *challenge;
303 #endif /* OPIE_ENABLE */
304 #ifdef SSL_ENABLE
305     flag did_stls = FALSE;
306 #endif /* SSL_ENABLE */
307
308 #if defined(GSSAPI)
309     has_gssapi = FALSE;
310 #endif /* defined(GSSAPI) */
311 #if defined(KERBEROS_V4) || defined(KERBEROS_V5)
312     has_kerberos = FALSE;
313 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
314     has_cram = FALSE;
315 #ifdef OPIE_ENABLE
316     has_otp = FALSE;
317 #endif /* OPIE_ENABLE */
318 #ifdef SSL_ENABLE
319     has_ssl = FALSE;
320 #endif /* SSL_ENABLE */
321
322     /* Set this up before authentication quits early. */
323     set_peek_capable(ctl);
324     /*
325      * The "Maillennium POP3/PROXY server" deliberately truncates
326      * TOP replies after c. 64 or 80 kByte (we have varying reports), so
327      * disable TOP. Comcast once spewed marketing babble to the extent
328      * of protecting Outlook -- pretty overzealous to break a protocol
329      * for that that Microsoft could have read, too. Comcast aren't
330      * alone in using this software though.
331      * <http://lists.ccil.org/pipermail/fetchmail-friends/2004-April/008523.html>
332      * (Thanks to Ed Wilts for reminding me of that.)
333      *
334      * The warning is printed once per server, until fetchmail exits.
335      * It will be suppressed when --fetchall or other circumstances make
336      * us use RETR anyhow.
337      *
338      * Matthias Andree
339      */
340     if (peek_capable && strstr(greeting, "Maillennium POP3/PROXY server")) {
341         if ((ctl->server.workarounds & WKA_TOP) == 0) {
342             report(stdout, GT_("Warning: \"Maillennium POP3/PROXY server\" found, using RETR command instead of TOP.\n"));
343             ctl->server.workarounds |= WKA_TOP;
344         }
345         peek_capable = 0;
346     }
347     if (ctl->server.authenticate == A_SSH) {
348         return PS_SUCCESS;
349     }
350
351 #ifdef SDPS_ENABLE
352     /*
353      * This needs to catch both demon.co.uk and demon.net.
354      * If we see either, and we're in multidrop mode, try to use
355      * the SDPS *ENV extension.
356      */
357     if (!(ctl->server.sdps) && MULTIDROP(ctl) && strstr(greeting, "demon."))
358         ctl->server.sdps = TRUE;
359 #endif /* SDPS_ENABLE */
360
361 #ifdef NTLM_ENABLE
362     /* MSN servers require the use of NTLM (MSN) authentication */
363     if (!strcasecmp(ctl->server.pollname, "pop3.email.msn.com") ||
364             ctl->server.authenticate == A_MSN)
365         return (do_pop3_ntlm(sock, ctl, 1) == 0) ? PS_SUCCESS : PS_AUTHFAIL;
366     if (ctl->server.authenticate == A_NTLM)
367         return (do_pop3_ntlm(sock, ctl, 0) == 0) ? PS_SUCCESS : PS_AUTHFAIL;
368 #else
369     if (ctl->server.authenticate == A_NTLM || ctl->server.authenticate == A_MSN)
370     {
371         report(stderr,
372            GT_("Required NTLM capability not compiled into fetchmail\n"));
373     }
374 #endif
375
376     switch (ctl->server.protocol) {
377     case P_POP3:
378 #ifdef RPA_ENABLE
379         /* XXX FIXME: AUTH probing (RFC1734) should become global */
380         /* CompuServe POP3 Servers as of 990730 want AUTH first for RPA */
381         if (strstr(ctl->remotename, "@compuserve.com"))
382         {
383             /* AUTH command should return a list of available mechanisms */
384             if (gen_transact(sock, "AUTH") == 0)
385             {
386                 char buffer[10];
387                 flag has_rpa = FALSE;
388
389                 while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0)
390                 {
391                     if (DOTLINE(buffer))
392                         break;
393                     if (strncasecmp(buffer, "rpa", 3) == 0)
394                         has_rpa = TRUE;
395                 }
396                 if (has_rpa && !POP3_auth_rpa(ctl->remotename, 
397                                               ctl->password, sock))
398                     return(PS_SUCCESS);
399             }
400
401             return(PS_AUTHFAIL);
402         }
403 #endif /* RPA_ENABLE */
404
405         /*
406          * CAPA command may return a list including available
407          * authentication mechanisms.  if it doesn't, no harm done, we
408          * just fall back to a plain login.  Note that this code 
409          * latches the server's authentication type, so that in daemon mode
410          * the CAPA check only needs to be done once at start of run.
411          *
412          * If CAPA fails, then force the authentication method to PASSORD
413          * and repoll immediately.
414          *
415          * These authentication methods are blessed by RFC1734,
416          * describing the POP3 AUTHentication command.
417          */
418         if ((ctl->server.authenticate == A_ANY) ||
419             (ctl->server.authenticate == A_GSSAPI) ||
420             (ctl->server.authenticate == A_KERBEROS_V4) ||
421             (ctl->server.authenticate == A_OTP) ||
422             (ctl->server.authenticate == A_CRAM_MD5))
423         {
424             if ((ok = capa_probe(sock)) != PS_SUCCESS)
425             /* we are in STAGE_GETAUTH! */
426                 if (ok == PS_AUTHFAIL ||
427                     /* Some servers directly close the socket. However, if we
428                      * have already authenticated before, then a previous CAPA
429                      * must have succeeded. In that case, treat this as a
430                      * genuine socket error and do not change the auth method.
431                      */
432                     (ok == PS_SOCKET && !ctl->wehaveauthed))
433                 {
434                     ctl->server.authenticate = A_PASSWORD;
435                     /* repoll immediately */
436                     ok = PS_REPOLL;
437                     break;
438                 }
439         }
440
441 #ifdef SSL_ENABLE
442         if (has_ssl
443             && !ctl->use_ssl
444             && (!ctl->sslproto || !strcmp(ctl->sslproto,"tls1")))
445         {
446             char *realhost;
447
448            realhost = ctl->server.via ? ctl->server.via : ctl->server.pollname;
449            ok = gen_transact(sock, "STLS");
450
451            /* We use "tls1" instead of ctl->sslproto, as we want STLS,
452             * not other SSL protocols */
453            if (ok == PS_SUCCESS &&
454                SSLOpen(sock,ctl->sslcert,ctl->sslkey,"tls1",ctl->sslcertck,
455                    ctl->sslcertpath,ctl->sslfingerprint,
456                    realhost,ctl->server.pollname) == -1)
457            {
458                if (!ctl->sslproto && !ctl->wehaveauthed)
459                {
460                    ctl->sslproto = xstrdup("");
461                    /* repoll immediately without TLS */
462                    return PS_REPOLL;
463                }
464                report(stderr,
465                        GT_("SSL connection failed.\n"));
466                return PS_SOCKET;
467            } else {
468                if (outlevel >= O_VERBOSE && !ctl->sslproto)
469                    report(stdout, GT_("%s: opportunistic upgrade to TLS.\n"), realhost);
470            }
471            did_stls = TRUE;
472
473            /*
474             * RFC 2595 says this:
475             *
476             * "Once TLS has been started, the client MUST discard cached
477             * information about server capabilities and SHOULD re-issue the
478             * CAPABILITY command.  This is necessary to protect against
479             * man-in-the-middle attacks which alter the capabilities list prior
480             * to STARTTLS.  The server MAY advertise different capabilities
481             * after STARTTLS."
482             */
483            capa_probe(sock);
484         }
485 #endif /* SSL_ENABLE */
486
487         /*
488          * OK, we have an authentication type now.
489          */
490 #if defined(KERBEROS_V4)
491         /* 
492          * Servers doing KPOP have to go through a dummy login sequence
493          * rather than doing SASL.
494          */
495         if (has_kerberos &&
496             ctl->server.service && (strcmp(ctl->server.service, KPOP_PORT)!=0)
497             && (ctl->server.authenticate == A_KERBEROS_V4
498              || ctl->server.authenticate == A_KERBEROS_V5
499              || ctl->server.authenticate == A_ANY))
500         {
501             ok = do_rfc1731(sock, "AUTH", ctl->server.truename);
502             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
503                 break;
504         }
505 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
506
507 #if defined(GSSAPI)
508         if (has_gssapi &&
509             (ctl->server.authenticate == A_GSSAPI ||
510              ctl->server.authenticate == A_ANY))
511         {
512             ok = do_gssauth(sock,"AUTH","pop",ctl->server.truename,ctl->remotename);
513             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
514                 break;
515         }
516 #endif /* defined(GSSAPI) */
517
518 #ifdef OPIE_ENABLE
519         if (has_otp &&
520             (ctl->server.authenticate == A_OTP ||
521              ctl->server.authenticate == A_ANY))
522         {
523             ok = do_otp(sock, "AUTH", ctl);
524             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
525                 break;
526         }
527 #endif /* OPIE_ENABLE */
528
529         if (ctl->server.authenticate == A_CRAM_MD5 || 
530             (has_cram && ctl->server.authenticate == A_ANY))
531         {
532             ok = do_cram_md5(sock, "AUTH", ctl, NULL);
533             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
534                 break;
535         }
536
537         /* ordinary validation, no one-time password or RPA */ 
538         if ((ok = gen_transact(sock, "USER %s", ctl->remotename)))
539             break;
540
541 #ifdef OPIE_ENABLE
542         /* see RFC1938: A One-Time Password System */
543         if ((challenge = strstr(lastok, "otp-"))) {
544           char response[OPIE_RESPONSE_MAX+1];
545           int i;
546           char *n = xstrdup("");
547
548           i = opiegenerator(challenge, !strcmp(ctl->password, "opie") ? n : ctl->password, response);
549           free(n);
550           if ((i == -2) && !run.poll_interval) {
551             char secret[OPIE_SECRET_MAX+1];
552             fprintf(stderr, GT_("Secret pass phrase: "));
553             if (opiereadpass(secret, sizeof(secret), 0))
554               i = opiegenerator(challenge,  secret, response);
555             memset(secret, 0, sizeof(secret));
556           };
557
558           if (i) {
559             ok = PS_ERROR;
560             break;
561           };
562
563           ok = gen_transact(sock, "PASS %s", response);
564           break;
565         }
566 #endif /* OPIE_ENABLE */
567
568         strlcpy(shroud, ctl->password, sizeof(shroud));
569         ok = gen_transact(sock, "PASS %s", ctl->password);
570         shroud[0] = '\0';
571 #ifdef SSL_ENABLE
572         /* this is for servers which claim to support TLS, but actually
573          * don't! */
574         if (did_stls && ok == PS_SOCKET && !ctl->sslproto && !ctl->wehaveauthed)
575         {
576             ctl->sslproto = xstrdup("");
577             /* repoll immediately */
578             ok = PS_REPOLL;
579         }
580 #endif
581         break;
582
583     case P_APOP:
584         /* build MD5 digest from greeting timestamp + password */
585         /* find start of timestamp */
586         for (start = greeting;  *start != 0 && *start != '<';  start++)
587             continue;
588         if (*start == 0) {
589             report(stderr,
590                    GT_("Required APOP timestamp not found in greeting\n"));
591             return(PS_AUTHFAIL);
592         }
593
594         /* find end of timestamp */
595         for (end = start;  *end != 0  && *end != '>';  end++)
596             continue;
597         if (*end == 0 || end == start + 1) {
598             report(stderr, 
599                    GT_("Timestamp syntax error in greeting\n"));
600             return(PS_AUTHFAIL);
601         }
602         else
603             *++end = '\0';
604
605         /* copy timestamp and password into digestion buffer */
606         msg = xmalloc((end-start+1) + strlen(ctl->password) + 1);
607         strcpy(msg,start);
608         strcat(msg,ctl->password);
609         strcpy(ctl->digest, MD5Digest((unsigned char *)msg));
610         free(msg);
611
612         ok = gen_transact(sock, "APOP %s %s", ctl->remotename, ctl->digest);
613         break;
614
615     case P_RPOP:
616         if ((ok = gen_transact(sock,"USER %s", ctl->remotename)) == 0)
617             ok = gen_transact(sock, "RPOP %s", ctl->password);
618         break;
619
620     default:
621         report(stderr, GT_("Undefined protocol request in POP3_auth\n"));
622         ok = PS_ERROR;
623     }
624
625     if (ok != 0)
626     {
627         /* maybe we detected a lock-busy condition? */
628         if (ok == PS_LOCKBUSY)
629             report(stderr, GT_("lock busy!  Is another session active?\n")); 
630
631         return(ok);
632     }
633
634 /* Disable the sleep. Based on patch by Brian Candler 2004-04-19/2004-11-08,
635  * accepted by Matthias Andree.
636  *
637  * Rationale: the server must have locked the spool before returning +OK;
638  * this sleep just wastes time and hence, for modem and GSM CSD users, money. */
639 #ifdef WANT_BOGUS
640     /*
641      * Empirical experience shows some server/OS combinations
642      * may need a brief pause even after any lockfiles on the
643      * server are released, to give the server time to finish
644      * copying back very large mailfolders from the temp-file...
645      * this is only ever an issue with extremely large mailboxes.
646      */
647     sleep(3); /* to be _really_ safe, probably need sleep(5)! */
648 #endif
649
650     /* we're approved */
651     return(PS_SUCCESS);
652 }
653
654 /* cut off C string at first POSIX space */
655 static void trim(char *s) {
656     s += strcspn(s, POSIX_space);
657     s[0] = '\0';
658 }
659
660 /* XXX FIXME: using the Message-ID is unsafe, some messages (spam,
661  * broken messages) do not have Message-ID headers, and messages without
662  * those appear to break this code and cause fetchmail (at least version
663  * 6.2.3) to not delete such messages properly after retrieval.
664  * See Sourceforge Bug #780933.
665  *
666  * The other problem is that the TOP command itself is optional, too... */
667 static int pop3_gettopid(int sock, int num , char *id, size_t idsize)
668 {
669     int ok;
670     int got_it;
671     char buf [POPBUFSIZE+1];
672     snprintf(buf, sizeof(buf), "TOP %d 1", num);
673     if ((ok = gen_transact(sock, buf )) != 0)
674        return ok;
675     got_it = 0;
676     while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0) 
677     {
678         if (DOTLINE(buf))
679             break;
680         if (!got_it && 0 == strncasecmp("Message-Id:", buf, 11)) {
681             char *p = buf + 11;
682             got_it = 1;
683             p += strspn(p, POSIX_space);
684             strlcpy(id, p, idsize);
685             trim(id);
686         }
687     }
688     /* XXX FIXME: do not return success here if no Message-ID header was
689      * found. */
690     return 0;
691 }
692
693 /** Parse the UID response (leading +OK must have been
694  * stripped off) in buf, store the number in gotnum, and store the ID
695  * into the caller-provided buffer "id" of size "idsize".
696  * Returns PS_SUCCESS or PS_PROTOCOL for failure. */
697 static int parseuid(const char *buf, unsigned long *gotnum, char *id, size_t idsize)
698 {
699     const char *i;
700     char *j;
701
702     /* skip leading blanks ourselves */
703     i = buf;
704     i += strspn(i, POSIX_space);
705     errno = 0;
706     *gotnum = strtoul(i, &j, 10);
707     if (j == i || !*j || errno || NULL == strchr(POSIX_space, *j)) {
708         report(stderr, GT_("Cannot handle UIDL response from upstream server.\n"));
709         return PS_PROTOCOL;
710     }
711     j += strspn(j, POSIX_space);
712     strlcpy(id, j, idsize);
713     trim(id);
714     return PS_SUCCESS;
715 }
716
717 /** request UIDL for single message \a num and stuff the result into the
718  * buffer \a id which can hold \a idsize bytes */
719 static int pop3_getuidl(int sock, int num, char *id /** output */, size_t idsize)
720 {
721     int ok;
722     char buf [POPBUFSIZE+1];
723     unsigned long gotnum;
724
725     gen_send(sock, "UIDL %d", num);
726     if ((ok = pop3_ok(sock, buf)) != 0)
727         return(ok);
728     if ((ok = parseuid(buf, &gotnum, id, idsize)))
729         return ok;
730     if (gotnum != (unsigned long)num) {
731         report(stderr, GT_("Server responded with UID for wrong message.\n"));
732         return PS_PROTOCOL;
733     }
734     return(PS_SUCCESS);
735 }
736
737 static int pop3_fastuidl( int sock,  struct query *ctl, unsigned int count, int *newp)
738 {
739     int ok;
740     unsigned int first_nr, last_nr, try_nr;
741     char id [IDLEN+1];
742
743     first_nr = 0;
744     last_nr = count + 1;
745     while (first_nr < last_nr - 1)
746     {
747         struct idlist   *newl;
748
749         try_nr = (first_nr + last_nr) / 2;
750         if ((ok = pop3_getuidl(sock, try_nr, id, sizeof(id))) != 0)
751             return ok;
752         if ((newl = str_in_list(&ctl->oldsaved, id, FALSE)))
753         {
754             flag mark = newl->val.status.mark;
755             if (mark == UID_DELETED || mark == UID_EXPUNGED)
756             {
757                 if (outlevel >= O_VERBOSE)
758                     report(stderr, GT_("id=%s (num=%d) was deleted, but is still present!\n"), id, try_nr);
759                 /* just mark it as seen now! */
760                 newl->val.status.mark = mark = UID_SEEN;
761             }
762
763             /* narrow the search region! */
764             if (mark == UID_UNSEEN)
765             {
766                 if (outlevel >= O_DEBUG)
767                     report(stdout, GT_("%u is unseen\n"), try_nr);
768                 last_nr = try_nr;
769             }
770             else
771                 first_nr = try_nr;
772
773             /* save the number */
774             newl->val.status.num = try_nr;
775         }
776         else
777         {
778             if (outlevel >= O_DEBUG)
779                 report(stdout, GT_("%u is unseen\n"), try_nr);
780             last_nr = try_nr;
781
782             /* save it */
783             newl = save_str(&ctl->oldsaved, id, UID_UNSEEN);
784             newl->val.status.num = try_nr;
785         }
786     }
787     if (outlevel >= O_DEBUG && last_nr <= count)
788         report(stdout, GT_("%u is first unseen\n"), last_nr);
789
790     /* update last! */
791     *newp = count - first_nr;
792     last = first_nr;
793     return 0;
794 }
795
796 static int pop3_slowuidl( int sock,  struct query *ctl, int *countp, int *newp)
797 {
798     /* XXX FIXME: this code is severely broken. A Cc:d mailing list
799      * message will arrive twice with the same Message-ID, so this
800      * slowuidl code will break. Same goes for messages without
801      * Message-ID headers at all. This code would best be removed. */
802     /* This approach tries to get the message headers from the
803      * remote hosts and compares the message-id to the already known
804      * ones:
805      *  + if the first message containes a new id, all messages on
806      *    the server will be new
807      *  + if the first is known, try to estimate the last known message
808      *    on the server and check. If this works you know the total number
809      *    of messages to get.
810      *  + Otherwise run a binary search to determine the last known message
811      */
812     int ok, nolinear = 0;
813     int first_nr, list_len, try_id, try_nr, add_id;
814     int num;
815     char id [IDLEN+1];
816
817     if ((ok = pop3_gettopid(sock, 1, id, sizeof(id))) != 0)
818         return ok;
819
820     if( ( first_nr = str_nr_in_list(&ctl->oldsaved, id) ) == -1 ) {
821         /* the first message is unknown -> all messages are new */
822         *newp = *countp;        
823         return 0;
824     }
825
826     /* check where we expect the latest known message */
827     list_len = count_list( &ctl->oldsaved );
828     try_id = list_len  - first_nr; /* -1 + 1 */
829     if( try_id > 1 ) {
830         if( try_id <= *countp ) {
831             if ((ok = pop3_gettopid(sock, try_id, id, sizeof(id))) != 0)
832                 return ok;
833     
834             try_nr = str_nr_last_in_list(&ctl->oldsaved, id);
835         } else {
836             try_id = *countp+1;
837             try_nr = -1;
838         }
839         if( try_nr != list_len -1 ) {
840             /* some messages inbetween have been deleted... */
841             if( try_nr == -1 ) {
842                 nolinear = 1;
843
844                 for( add_id = 1<<30; add_id > try_id-1; add_id >>= 1 )
845                     ;
846                 for( ; add_id; add_id >>= 1 ) {
847                     if( try_nr == -1 ) {
848                         if( try_id - add_id <= 1 ) {
849                             continue;
850                         }
851                         try_id -= add_id;
852                     } else 
853                         try_id += add_id;
854                     
855                     if ((ok = pop3_gettopid(sock, try_id, id, sizeof(id))) != 0)
856                         return ok;
857                     try_nr = str_nr_in_list(&ctl->oldsaved, id);
858                 }
859                 if( try_nr == -1 ) {
860                     try_id--;
861                 }
862             } else {
863                 report(stderr, 
864                        GT_("Messages inserted into list on server. Cannot handle this.\n"));
865                 return -1;
866             }
867         } 
868     }
869     /* the first try_id messages are known -> copy them to the newsaved list */
870     for( num = first_nr; num < list_len; num++ )
871     {
872         struct idlist   *newl = save_str(&ctl->newsaved, 
873                                 str_from_nr_list(&ctl->oldsaved, num),
874                                 UID_UNSEEN);
875         newl->val.status.num = num - first_nr + 1;
876     }
877
878     if( nolinear ) {
879         free_str_list(&ctl->oldsaved);
880         ctl->oldsaved = 0;
881         last = try_id;
882     }
883
884     *newp = *countp - try_id;
885     return 0;
886 }
887
888 static int pop3_getrange(int sock, 
889                          struct query *ctl,
890                          const char *folder,
891                          int *countp, int *newp, int *bytes)
892 /* get range of messages to be fetched */
893 {
894     int ok;
895     char buf [POPBUFSIZE+1];
896
897     (void)folder;
898     /* Ensure that the new list is properly empty */
899     ctl->newsaved = (struct idlist *)NULL;
900
901 #ifdef MBOX
902     /* Alain Knaff suggests this, but it's not RFC standard */
903     if (folder)
904         if ((ok = gen_transact(sock, "MBOX %s", folder)))
905             return ok;
906 #endif /* MBOX */
907
908     /* get the total message count */
909     gen_send(sock, "STAT");
910     ok = pop3_ok(sock, buf);
911     if (ok == 0)
912         sscanf(buf,"%d %d", countp, bytes);
913     else
914         return(ok);
915
916     /*
917      * Newer, RFC-1725/1939-conformant POP servers may not have the LAST
918      * command.  We work as hard as possible to hide this, but it makes
919      * counting new messages intrinsically quadratic in the worst case.
920      */
921     last = 0;
922     *newp = -1;
923     /* if there are messages, and UIDL is desired, use UIDL
924      * also use UIDL if fetchall is unset */
925     if (*countp > 0 && (!ctl->fetchall || ctl->server.uidl))
926     {
927         int fastuidl;
928         char id [IDLEN+1];
929
930         /* should we do fast uidl this time? */
931         fastuidl = ctl->fastuidl;
932         if (*countp > 7 &&              /* linear search is better if there are few mails! */
933             !ctl->fetchall &&           /* with fetchall, all uids are required */
934             !ctl->flush &&              /* with flush, it is safer to disable fastuidl */
935             NUM_NONZERO (fastuidl))
936         {
937             if (fastuidl == 1)
938                 dofastuidl = 1;
939             else
940                 dofastuidl = ctl->fastuidlcount != 0;
941         }
942         else
943             dofastuidl = 0;
944
945         if (!ctl->server.uidl) {
946             gen_send(sock, "LAST");
947             ok = pop3_ok(sock, buf);
948         } else
949             ok = 1;
950
951         if (ok == 0)
952         {
953             /* scan LAST reply */
954             if (sscanf(buf, "%d", &last) == 0)
955             {
956                 report(stderr, GT_("protocol error\n"));
957                 return(PS_ERROR);
958             }
959             *newp = (*countp - last);
960         }
961         else
962         {
963             /* do UIDL */
964             if (dofastuidl)
965                 return(pop3_fastuidl( sock, ctl, *countp, newp));
966             /* grab the mailbox's UID list */
967             if ((ok = gen_transact(sock, "UIDL")) != 0)
968             {
969                 /* don't worry, yet! do it the slow way */
970                 if ((ok = pop3_slowuidl(sock, ctl, countp, newp)))
971                 {
972                     report(stderr, GT_("protocol error while fetching UIDLs\n"));
973                     return(PS_ERROR);
974                 }
975             }
976             else
977             {
978                 /* UIDL worked - parse reply */
979                 unsigned long unum;
980
981                 *newp = 0;
982                 while ((ok = gen_recv(sock, buf, sizeof(buf))) == PS_SUCCESS)
983                 {
984                     if (DOTLINE(buf))
985                         break;
986
987                     if (parseuid(buf, &unum, id, sizeof(id)) == PS_SUCCESS)
988                     {
989                         struct idlist   *old, *newl;
990
991                         newl = save_str(&ctl->newsaved, id, UID_UNSEEN);
992                         newl->val.status.num = unum;
993
994                         if ((old = str_in_list(&ctl->oldsaved, id, FALSE)))
995                         {
996                             flag mark = old->val.status.mark;
997                             if (mark == UID_DELETED || mark == UID_EXPUNGED)
998                             {
999                                 /* XXX FIXME: switch 3 occurrences from
1000                                  * (int)unum or (unsigned int)unum to
1001                                  * remove the cast and use %lu - not now
1002                                  * though, time for new release */
1003                                 if (outlevel >= O_VERBOSE)
1004                                     report(stderr, GT_("id=%s (num=%d) was deleted, but is still present!\n"), id, (int)unum);
1005                                 /* just mark it as seen now! */
1006                                 old->val.status.mark = mark = UID_SEEN;
1007                             }
1008                             newl->val.status.mark = mark;
1009                             if (mark == UID_UNSEEN)
1010                             {
1011                                 (*newp)++;
1012                                 if (outlevel >= O_DEBUG)
1013                                     report(stdout, GT_("%u is unseen\n"), (unsigned int)unum);
1014                             }
1015                         }
1016                         else
1017                         {
1018                             (*newp)++;
1019                             if (outlevel >= O_DEBUG)
1020                                 report(stdout, GT_("%u is unseen\n"), (unsigned int)unum);
1021                             /* add it to oldsaved also! In case, we do not
1022                              * swap the lists (say, due to socket error),
1023                              * the same mail will not be downloaded again.
1024                              */
1025                             old = save_str(&ctl->oldsaved, id, UID_UNSEEN);
1026                         }
1027                         /* save the number */
1028                         old->val.status.num = unum;
1029                     } else
1030                         return PS_ERROR;
1031                 } /* multi-line loop for UIDL reply */
1032             } /* UIDL parser */
1033         } /* do UIDL */
1034     }
1035
1036     return(PS_SUCCESS);
1037 }
1038
1039 static int pop3_getpartialsizes(int sock, int first, int last, int *sizes)
1040 /* capture the size of message #first */
1041 {
1042     int ok = 0, i, num;
1043     char buf [POPBUFSIZE+1];
1044     unsigned int size;
1045
1046     for (i = first; i <= last; i++) {
1047         gen_send(sock, "LIST %d", i);
1048         if ((ok = pop3_ok(sock, buf)) != 0)
1049             return(ok);
1050         if (sscanf(buf, "%d %u", &num, &size) == 2) {
1051             if (num == i)
1052                 sizes[i - first] = size;
1053             else
1054                 /* warn about possible attempt to induce buffer overrun
1055                  *
1056                  * we expect server reply message number and requested
1057                  * message number to match */
1058                 report(stderr, "Warning: ignoring bogus data for message sizes returned by server.\n");
1059         }
1060     }
1061     return(ok);
1062 }
1063
1064 static int pop3_getsizes(int sock, int count, int *sizes)
1065 /* capture the sizes of all messages */
1066 {
1067     int ok;
1068
1069     if ((ok = gen_transact(sock, "LIST")) != 0)
1070         return(ok);
1071     else
1072     {
1073         char buf [POPBUFSIZE+1];
1074
1075         while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
1076         {
1077             unsigned int num, size;
1078
1079             if (DOTLINE(buf))
1080                 break;
1081             else if (sscanf(buf, "%u %u", &num, &size) == 2) {
1082                 if (num > 0 && num <= (unsigned)count)
1083                     sizes[num - 1] = size;
1084                 else
1085                     /* warn about possible attempt to induce buffer overrun */
1086                     report(stderr, "Warning: ignoring bogus data for message sizes returned by server.\n");
1087             }
1088         }
1089
1090         return(ok);
1091     }
1092 }
1093
1094 static int pop3_is_old(int sock, struct query *ctl, int num)
1095 /* is the given message old? */
1096 {
1097     struct idlist *newl;
1098     if (!ctl->oldsaved)
1099         return (num <= last);
1100     else if (dofastuidl)
1101     {
1102         char id [IDLEN+1];
1103
1104         if (num <= last)
1105             return(TRUE);
1106
1107         /* in fast uidl, we manipulate the old list only! */
1108
1109         if ((newl = id_find(&ctl->oldsaved, num)))
1110         {
1111             /* we already have the id! */
1112             return(newl->val.status.mark != UID_UNSEEN);
1113         }
1114
1115         /* get the uidl first! */
1116         if (pop3_getuidl(sock, num, id, sizeof(id)) != PS_SUCCESS)
1117             return(TRUE);
1118
1119         if ((newl = str_in_list(&ctl->oldsaved, id, FALSE))) {
1120             /* we already have the id! */
1121             newl->val.status.num = num;
1122             return(newl->val.status.mark != UID_UNSEEN);
1123         }
1124
1125         /* save it */
1126         newl = save_str(&ctl->oldsaved, id, UID_UNSEEN);
1127         newl->val.status.num = num;
1128         return(FALSE);
1129     }
1130     else
1131         return ((newl = id_find(&ctl->newsaved, num)) != NULL &&
1132             newl->val.status.mark != UID_UNSEEN);
1133 }
1134
1135 #ifdef UNUSED
1136 /*
1137  * We could use this to fetch headers only as we do for IMAP.  The trouble 
1138  * is that there's no way to fetch the body only.  So the following RETR 
1139  * would have to re-fetch the header.  Enough messages have longer headers
1140  * than bodies to make this a net loss.
1141  */
1142 static int pop_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
1143 /* request headers of nth message */
1144 {
1145     int ok;
1146     char buf[POPBUFSIZE+1];
1147
1148     gen_send(sock, "TOP %d 0", number);
1149     if ((ok = pop3_ok(sock, buf)) != 0)
1150         return(ok);
1151
1152     *lenp = -1;         /* we got sizes from the LIST response */
1153
1154     return(PS_SUCCESS);
1155 }
1156 #endif /* UNUSED */
1157
1158 static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp)
1159 /* request nth message */
1160 {
1161     int ok;
1162     char buf[POPBUFSIZE+1];
1163
1164 #ifdef SDPS_ENABLE
1165     /*
1166      * See http://www.demon.net/helpdesk/producthelp/mail/sdps-tech.html/
1167      * for a description of what we're parsing here.
1168      * -- updated 2006-02-22
1169      */
1170     if (ctl->server.sdps)
1171     {
1172         int     linecount = 0;
1173
1174         sdps_envfrom = (char *)NULL;
1175         sdps_envto = (char *)NULL;
1176         gen_send(sock, "*ENV %d", number);
1177         do {
1178             if (gen_recv(sock, buf, sizeof(buf)))
1179             {
1180                 break;
1181             }
1182             linecount++;
1183             switch (linecount) {
1184             case 4:
1185                 /* No need to wrap envelope from address */
1186                 /* FIXME: some parts of fetchmail don't handle null
1187                  * envelope senders, so use <> to mark null sender
1188                  * as a workaround. */
1189                 if (strspn(buf, " \t") == strlen(buf))
1190                     strcpy(buf, "<>");
1191                 sdps_envfrom = xmalloc(strlen(buf)+1);
1192                 strcpy(sdps_envfrom,buf);
1193                 break;
1194             case 5:
1195                 /* Wrap address with To: <> so nxtaddr() likes it */
1196                 sdps_envto = xmalloc(strlen(buf)+7);
1197                 sprintf(sdps_envto,"To: <%s>",buf);
1198                 break;
1199             }
1200         } while
1201             (!(buf[0] == '.' && (buf[1] == '\r' || buf[1] == '\n' || buf[1] == '\0')));
1202     }
1203 #else
1204     (void)ctl;
1205 #endif /* SDPS_ENABLE */
1206
1207     /*
1208      * Though the POP RFCs don't document this fact, on almost every
1209      * POP3 server I know of messages are marked "seen" only at the
1210      * time the OK response to a RETR is issued.
1211      *
1212      * This means we can use TOP to fetch the message without setting its
1213      * seen flag.  This is good!  It means that if the protocol exchange
1214      * craps out during the message, it will still be marked `unseen' on
1215      * the server.  (Exception: in early 1999 SpryNet's POP3 servers were
1216      * reported to mark messages seen on a TOP fetch.)
1217      *
1218      * However...*don't* do this if we're using keep to suppress deletion!
1219      * In that case, marking the seen flag is the only way to prevent the
1220      * message from being re-fetched on subsequent runs.
1221      *
1222      * Also use RETR (that means no TOP, no peek) if fetchall is on.
1223      * This gives us a workaround for servers like usa.net's that bungle
1224      * TOP.  It's pretty harmless because fetchall guarantees that any
1225      * message dropped by an interrupted RETR will be picked up on the
1226      * next poll of the site.
1227      *
1228      * We take advantage here of the fact that, according to all the
1229      * POP RFCs, "if the number of lines requested by the POP3 client
1230      * is greater than than the number of lines in the body, then the
1231      * POP3 server sends the entire message.").
1232      *
1233      * The line count passed (99999999) is the maximum value CompuServe will
1234      * accept; it's much lower than the natural value 2147483646 (the maximum
1235      * twos-complement signed 32-bit integer minus 1) */
1236     if (!peek_capable)
1237         gen_send(sock, "RETR %d", number);
1238     else
1239         gen_send(sock, "TOP %d 99999999", number);
1240     if ((ok = pop3_ok(sock, buf)) != 0)
1241         return(ok);
1242
1243     *lenp = -1;         /* we got sizes from the LIST response */
1244
1245     return(PS_SUCCESS);
1246 }
1247
1248 static void mark_uid_seen(struct query *ctl, int number)
1249 /* Tell the UID code we've seen this. */
1250 {
1251     struct idlist       *sdp;
1252
1253     if ((sdp = id_find(&ctl->newsaved, number)))
1254         sdp->val.status.mark = UID_SEEN;
1255     /* mark it as seen in oldsaved also! In case, we do not swap the lists
1256      * (say, due to socket error), the same mail will not be downloaded
1257      * again.
1258      */
1259     if ((sdp = id_find(&ctl->oldsaved, number)))
1260         sdp->val.status.mark = UID_SEEN;
1261 }
1262
1263 static int pop3_delete(int sock, struct query *ctl, int number)
1264 /* delete a given message */
1265 {
1266     int ok;
1267     mark_uid_seen(ctl, number);
1268     /* actually, mark for deletion -- doesn't happen until QUIT time */
1269     ok = gen_transact(sock, "DELE %d", number);
1270     if (ok != PS_SUCCESS)
1271         return(ok);
1272     delete_str(dofastuidl ? &ctl->oldsaved : &ctl->newsaved, number);
1273     return(PS_SUCCESS);
1274 }
1275
1276 static int pop3_mark_seen(int sock, struct query *ctl, int number)
1277 /* mark a given message as seen */
1278 {
1279     (void)sock;
1280     mark_uid_seen(ctl, number);
1281     return(PS_SUCCESS);
1282 }
1283
1284 static int pop3_logout(int sock, struct query *ctl)
1285 /* send logout command */
1286 {
1287     int ok;
1288
1289 #ifdef __UNUSED__
1290     /*
1291      * We used to do this in case the server marks messages deleted when seen.
1292      * (Yes, this has been reported, in the MercuryP/NLM server.
1293      * It's even legal under RFC 1939 (section 8) as a site policy.)
1294      * It interacted badly with UIDL, though.  Thomas Zajic wrote:
1295      * "Running 'fetchmail -F -v' and checking the logs, I found out
1296      * that fetchmail did in fact flush my mailbox properly, but sent
1297      * a RSET just before sending QUIT to log off.  This caused the
1298      * POP3 server to undo/forget about the previous DELEs, resetting
1299      * my mailbox to its original (ie.  unflushed) state. The
1300      * ~/.fetchids file did get flushed though, so the next time
1301      * fetchmail was run it saw all the old messages as new ones ..."
1302      */
1303      if (ctl->keep)
1304         gen_transact(sock, "RSET");
1305 #endif /* __UNUSED__ */
1306
1307     ok = gen_transact(sock, "QUIT");
1308     if (!ok)
1309         expunge_uids(ctl);
1310
1311     return(ok);
1312 }
1313
1314 static const struct method pop3 =
1315 {
1316     "POP3",             /* Post Office Protocol v3 */
1317     "pop3",             /* port for plain and TLS POP3 */
1318     "pop3s",            /* port for SSL POP3 */
1319     FALSE,              /* this is not a tagged protocol */
1320     TRUE,               /* this uses a message delimiter */
1321     pop3_ok,            /* parse command response */
1322     pop3_getauth,       /* get authorization */
1323     pop3_getrange,      /* query range of messages */
1324     pop3_getsizes,      /* we can get a list of sizes */
1325     pop3_getpartialsizes,       /* we can get the size of 1 mail */
1326     pop3_is_old,        /* how do we tell a message is old? */
1327     pop3_fetch,         /* request given message */
1328     NULL,               /* no way to fetch body alone */
1329     NULL,               /* no message trailer */
1330     pop3_delete,        /* how to delete a message */
1331     pop3_mark_seen,     /* how to mark a message as seen */
1332     NULL,               /* no action at end of mailbox */
1333     pop3_logout,        /* log out, we're done */
1334     FALSE,              /* no, we can't re-poll */
1335 };
1336
1337 int doPOP3 (struct query *ctl)
1338 /* retrieve messages using POP3 */
1339 {
1340 #ifndef MBOX
1341     if (ctl->mailboxes->id) {
1342         fprintf(stderr,GT_("Option --folder is not supported with POP3\n"));
1343         return(PS_SYNTAX);
1344     }
1345 #endif /* MBOX */
1346
1347     return(do_protocol(ctl, &pop3));
1348 }
1349 #endif /* POP3_ENABLE */
1350
1351 /* pop3.c ends here */