]> Pileus Git - ~andy/fetchmail/blob - pop3.c
POP3: some UID flags may not be set properly on UIDL lists. (Sunil Shetye)
[~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             */
454            if (ok == PS_SUCCESS &&
455                SSLOpen(sock,ctl->sslcert,ctl->sslkey,"tls1",ctl->sslcertck, ctl->sslcertpath,ctl->sslfingerprint,realhost,ctl->server.pollname) == -1)
456            {
457                if (!ctl->sslproto && !ctl->wehaveauthed)
458                {
459                    ctl->sslproto = xstrdup("");
460                    /* repoll immediately */
461                    return(PS_REPOLL);
462                }
463                report(stderr,
464                        GT_("SSL connection failed.\n"));
465                 return PS_SOCKET;
466             }
467            did_stls = TRUE;
468
469            /*
470             * RFC 2595 says this:
471             *
472             * "Once TLS has been started, the client MUST discard cached
473             * information about server capabilities and SHOULD re-issue the
474             * CAPABILITY command.  This is necessary to protect against
475             * man-in-the-middle attacks which alter the capabilities list prior
476             * to STARTTLS.  The server MAY advertise different capabilities
477             * after STARTTLS."
478             */
479            capa_probe(sock);
480         }
481 #endif /* SSL_ENABLE */
482
483         /*
484          * OK, we have an authentication type now.
485          */
486 #if defined(KERBEROS_V4)
487         /* 
488          * Servers doing KPOP have to go through a dummy login sequence
489          * rather than doing SASL.
490          */
491         if (has_kerberos &&
492             ctl->server.service && (strcmp(ctl->server.service, KPOP_PORT)!=0)
493             && (ctl->server.authenticate == A_KERBEROS_V4
494              || ctl->server.authenticate == A_KERBEROS_V5
495              || ctl->server.authenticate == A_ANY))
496         {
497             ok = do_rfc1731(sock, "AUTH", ctl->server.truename);
498             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
499                 break;
500         }
501 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
502
503 #if defined(GSSAPI)
504         if (has_gssapi &&
505             (ctl->server.authenticate == A_GSSAPI ||
506              ctl->server.authenticate == A_ANY))
507         {
508             ok = do_gssauth(sock,"AUTH","pop",ctl->server.truename,ctl->remotename);
509             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
510                 break;
511         }
512 #endif /* defined(GSSAPI) */
513
514 #ifdef OPIE_ENABLE
515         if (has_otp &&
516             (ctl->server.authenticate == A_OTP ||
517              ctl->server.authenticate == A_ANY))
518         {
519             ok = do_otp(sock, "AUTH", ctl);
520             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
521                 break;
522         }
523 #endif /* OPIE_ENABLE */
524
525         if (ctl->server.authenticate == A_CRAM_MD5 || 
526             (has_cram && ctl->server.authenticate == A_ANY))
527         {
528             ok = do_cram_md5(sock, "AUTH", ctl, NULL);
529             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
530                 break;
531         }
532
533         /* ordinary validation, no one-time password or RPA */ 
534         if ((ok = gen_transact(sock, "USER %s", ctl->remotename)))
535             break;
536
537 #ifdef OPIE_ENABLE
538         /* see RFC1938: A One-Time Password System */
539         if ((challenge = strstr(lastok, "otp-"))) {
540           char response[OPIE_RESPONSE_MAX+1];
541           int i;
542           char *n = xstrdup("");
543
544           i = opiegenerator(challenge, !strcmp(ctl->password, "opie") ? n : ctl->password, response);
545           free(n);
546           if ((i == -2) && !run.poll_interval) {
547             char secret[OPIE_SECRET_MAX+1];
548             fprintf(stderr, GT_("Secret pass phrase: "));
549             if (opiereadpass(secret, sizeof(secret), 0))
550               i = opiegenerator(challenge,  secret, response);
551             memset(secret, 0, sizeof(secret));
552           };
553
554           if (i) {
555             ok = PS_ERROR;
556             break;
557           };
558
559           ok = gen_transact(sock, "PASS %s", response);
560           break;
561         }
562 #endif /* OPIE_ENABLE */
563
564         strlcpy(shroud, ctl->password, sizeof(shroud));
565         ok = gen_transact(sock, "PASS %s", ctl->password);
566         shroud[0] = '\0';
567 #ifdef SSL_ENABLE
568         /* this is for servers which claim to support TLS, but actually
569          * don't! */
570         if (did_stls && ok == PS_SOCKET && !ctl->sslproto && !ctl->wehaveauthed)
571         {
572             ctl->sslproto = xstrdup("");
573             /* repoll immediately */
574             ok = PS_REPOLL;
575         }
576 #endif
577         break;
578
579     case P_APOP:
580         /* build MD5 digest from greeting timestamp + password */
581         /* find start of timestamp */
582         for (start = greeting;  *start != 0 && *start != '<';  start++)
583             continue;
584         if (*start == 0) {
585             report(stderr,
586                    GT_("Required APOP timestamp not found in greeting\n"));
587             return(PS_AUTHFAIL);
588         }
589
590         /* find end of timestamp */
591         for (end = start;  *end != 0  && *end != '>';  end++)
592             continue;
593         if (*end == 0 || end == start + 1) {
594             report(stderr, 
595                    GT_("Timestamp syntax error in greeting\n"));
596             return(PS_AUTHFAIL);
597         }
598         else
599             *++end = '\0';
600
601         /* copy timestamp and password into digestion buffer */
602         msg = xmalloc((end-start+1) + strlen(ctl->password) + 1);
603         strcpy(msg,start);
604         strcat(msg,ctl->password);
605         strcpy(ctl->digest, MD5Digest((unsigned char *)msg));
606         free(msg);
607
608         ok = gen_transact(sock, "APOP %s %s", ctl->remotename, ctl->digest);
609         break;
610
611     case P_RPOP:
612         if ((ok = gen_transact(sock,"USER %s", ctl->remotename)) == 0)
613             ok = gen_transact(sock, "RPOP %s", ctl->password);
614         break;
615
616     default:
617         report(stderr, GT_("Undefined protocol request in POP3_auth\n"));
618         ok = PS_ERROR;
619     }
620
621     if (ok != 0)
622     {
623         /* maybe we detected a lock-busy condition? */
624         if (ok == PS_LOCKBUSY)
625             report(stderr, GT_("lock busy!  Is another session active?\n")); 
626
627         return(ok);
628     }
629
630 /* Disable the sleep. Based on patch by Brian Candler 2004-04-19/2004-11-08,
631  * accepted by Matthias Andree.
632  *
633  * Rationale: the server must have locked the spool before returning +OK;
634  * this sleep just wastes time and hence, for modem and GSM CSD users, money. */
635 #ifdef WANT_BOGUS
636     /*
637      * Empirical experience shows some server/OS combinations
638      * may need a brief pause even after any lockfiles on the
639      * server are released, to give the server time to finish
640      * copying back very large mailfolders from the temp-file...
641      * this is only ever an issue with extremely large mailboxes.
642      */
643     sleep(3); /* to be _really_ safe, probably need sleep(5)! */
644 #endif
645
646     /* we're approved */
647     return(PS_SUCCESS);
648 }
649
650 /* cut off C string at first POSIX space */
651 static void trim(char *s) {
652     s += strcspn(s, POSIX_space);
653     s[0] = '\0';
654 }
655
656 /* XXX FIXME: using the Message-ID is unsafe, some messages (spam,
657  * broken messages) do not have Message-ID headers, and messages without
658  * those appear to break this code and cause fetchmail (at least version
659  * 6.2.3) to not delete such messages properly after retrieval.
660  * See Sourceforge Bug #780933.
661  *
662  * The other problem is that the TOP command itself is optional, too... */
663 static int pop3_gettopid(int sock, int num , char *id, size_t idsize)
664 {
665     int ok;
666     int got_it;
667     char buf [POPBUFSIZE+1];
668     snprintf(buf, sizeof(buf), "TOP %d 1", num);
669     if ((ok = gen_transact(sock, buf )) != 0)
670        return ok;
671     got_it = 0;
672     while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0) 
673     {
674         if (DOTLINE(buf))
675             break;
676         if (!got_it && 0 == strncasecmp("Message-Id:", buf, 11)) {
677             char *p = buf + 11;
678             got_it = 1;
679             p += strspn(p, POSIX_space);
680             strlcpy(id, p, idsize);
681             trim(id);
682         }
683     }
684     /* XXX FIXME: do not return success here if no Message-ID header was
685      * found. */
686     return 0;
687 }
688
689 /** Parse the UID response (leading +OK must have been
690  * stripped off) in buf, store the number in gotnum, and store the ID
691  * into the caller-provided buffer "id" of size "idsize".
692  * Returns PS_SUCCESS or PS_PROTOCOL for failure. */
693 static int parseuid(const char *buf, unsigned long *gotnum, char *id, size_t idsize)
694 {
695     const char *i;
696     char *j;
697
698     /* skip leading blanks ourselves */
699     i = buf;
700     i += strspn(i, POSIX_space);
701     errno = 0;
702     *gotnum = strtoul(i, &j, 10);
703     if (j == i || !*j || errno || NULL == strchr(POSIX_space, *j)) {
704         report(stderr, GT_("Cannot handle UIDL response from upstream server.\n"));
705         return PS_PROTOCOL;
706     }
707     j += strspn(j, POSIX_space);
708     strlcpy(id, j, idsize);
709     trim(id);
710     return PS_SUCCESS;
711 }
712
713 /** request UIDL for single message \a num and stuff the result into the
714  * buffer \a id which can hold \a idsize bytes */
715 static int pop3_getuidl(int sock, int num, char *id /** output */, size_t idsize)
716 {
717     int ok;
718     char buf [POPBUFSIZE+1];
719     unsigned long gotnum;
720
721     gen_send(sock, "UIDL %d", num);
722     if ((ok = pop3_ok(sock, buf)) != 0)
723         return(ok);
724     if ((ok = parseuid(buf, &gotnum, id, idsize)))
725         return ok;
726     if (gotnum != (unsigned long)num) {
727         report(stderr, GT_("Server responded with UID for wrong message.\n"));
728         return PS_PROTOCOL;
729     }
730     return(PS_SUCCESS);
731 }
732
733 static int pop3_fastuidl( int sock,  struct query *ctl, unsigned int count, int *newp)
734 {
735     int ok;
736     unsigned int first_nr, last_nr, try_nr;
737     char id [IDLEN+1];
738
739     first_nr = 0;
740     last_nr = count + 1;
741     while (first_nr < last_nr - 1)
742     {
743         struct idlist   *newl;
744
745         try_nr = (first_nr + last_nr) / 2;
746         if ((ok = pop3_getuidl(sock, try_nr, id, sizeof(id))) != 0)
747             return ok;
748         if ((newl = str_in_list(&ctl->oldsaved, id, FALSE)))
749         {
750             flag mark = newl->val.status.mark;
751             if (mark == UID_DELETED || mark == UID_EXPUNGED)
752             {
753                 if (outlevel >= O_VERBOSE)
754                     report(stderr, GT_("id=%s (num=%d) was deleted, but is still present!\n"), id, try_nr);
755                 /* just mark it as seen now! */
756                 newl->val.status.mark = mark = UID_SEEN;
757             }
758
759             /* narrow the search region! */
760             if (mark == UID_UNSEEN)
761             {
762                 if (outlevel >= O_DEBUG)
763                     report(stdout, GT_("%u is unseen\n"), try_nr);
764                 last_nr = try_nr;
765             }
766             else
767                 first_nr = try_nr;
768
769             /* save the number */
770             newl->val.status.num = try_nr;
771         }
772         else
773         {
774             if (outlevel >= O_DEBUG)
775                 report(stdout, GT_("%u is unseen\n"), try_nr);
776             last_nr = try_nr;
777
778             /* save it */
779             newl = save_str(&ctl->oldsaved, id, UID_UNSEEN);
780             newl->val.status.num = try_nr;
781         }
782     }
783     if (outlevel >= O_DEBUG && last_nr <= count)
784         report(stdout, GT_("%u is first unseen\n"), last_nr);
785
786     /* update last! */
787     *newp = count - first_nr;
788     last = first_nr;
789     return 0;
790 }
791
792 static int pop3_slowuidl( int sock,  struct query *ctl, int *countp, int *newp)
793 {
794     /* XXX FIXME: this code is severely broken. A Cc:d mailing list
795      * message will arrive twice with the same Message-ID, so this
796      * slowuidl code will break. Same goes for messages without
797      * Message-ID headers at all. This code would best be removed. */
798     /* This approach tries to get the message headers from the
799      * remote hosts and compares the message-id to the already known
800      * ones:
801      *  + if the first message containes a new id, all messages on
802      *    the server will be new
803      *  + if the first is known, try to estimate the last known message
804      *    on the server and check. If this works you know the total number
805      *    of messages to get.
806      *  + Otherwise run a binary search to determine the last known message
807      */
808     int ok, nolinear = 0;
809     int first_nr, list_len, try_id, try_nr, add_id;
810     int num;
811     char id [IDLEN+1];
812
813     if ((ok = pop3_gettopid(sock, 1, id, sizeof(id))) != 0)
814         return ok;
815
816     if( ( first_nr = str_nr_in_list(&ctl->oldsaved, id) ) == -1 ) {
817         /* the first message is unknown -> all messages are new */
818         *newp = *countp;        
819         return 0;
820     }
821
822     /* check where we expect the latest known message */
823     list_len = count_list( &ctl->oldsaved );
824     try_id = list_len  - first_nr; /* -1 + 1 */
825     if( try_id > 1 ) {
826         if( try_id <= *countp ) {
827             if ((ok = pop3_gettopid(sock, try_id, id, sizeof(id))) != 0)
828                 return ok;
829     
830             try_nr = str_nr_last_in_list(&ctl->oldsaved, id);
831         } else {
832             try_id = *countp+1;
833             try_nr = -1;
834         }
835         if( try_nr != list_len -1 ) {
836             /* some messages inbetween have been deleted... */
837             if( try_nr == -1 ) {
838                 nolinear = 1;
839
840                 for( add_id = 1<<30; add_id > try_id-1; add_id >>= 1 )
841                     ;
842                 for( ; add_id; add_id >>= 1 ) {
843                     if( try_nr == -1 ) {
844                         if( try_id - add_id <= 1 ) {
845                             continue;
846                         }
847                         try_id -= add_id;
848                     } else 
849                         try_id += add_id;
850                     
851                     if ((ok = pop3_gettopid(sock, try_id, id, sizeof(id))) != 0)
852                         return ok;
853                     try_nr = str_nr_in_list(&ctl->oldsaved, id);
854                 }
855                 if( try_nr == -1 ) {
856                     try_id--;
857                 }
858             } else {
859                 report(stderr, 
860                        GT_("Messages inserted into list on server. Cannot handle this.\n"));
861                 return -1;
862             }
863         } 
864     }
865     /* the first try_id messages are known -> copy them to the newsaved list */
866     for( num = first_nr; num < list_len; num++ )
867     {
868         struct idlist   *newl = save_str(&ctl->newsaved, 
869                                 str_from_nr_list(&ctl->oldsaved, num),
870                                 UID_UNSEEN);
871         newl->val.status.num = num - first_nr + 1;
872     }
873
874     if( nolinear ) {
875         free_str_list(&ctl->oldsaved);
876         ctl->oldsaved = 0;
877         last = try_id;
878     }
879
880     *newp = *countp - try_id;
881     return 0;
882 }
883
884 static int pop3_getrange(int sock, 
885                          struct query *ctl,
886                          const char *folder,
887                          int *countp, int *newp, int *bytes)
888 /* get range of messages to be fetched */
889 {
890     int ok;
891     char buf [POPBUFSIZE+1];
892
893     (void)folder;
894     /* Ensure that the new list is properly empty */
895     ctl->newsaved = (struct idlist *)NULL;
896
897 #ifdef MBOX
898     /* Alain Knaff suggests this, but it's not RFC standard */
899     if (folder)
900         if ((ok = gen_transact(sock, "MBOX %s", folder)))
901             return ok;
902 #endif /* MBOX */
903
904     /* get the total message count */
905     gen_send(sock, "STAT");
906     ok = pop3_ok(sock, buf);
907     if (ok == 0)
908         sscanf(buf,"%d %d", countp, bytes);
909     else
910         return(ok);
911
912     /*
913      * Newer, RFC-1725/1939-conformant POP servers may not have the LAST
914      * command.  We work as hard as possible to hide this, but it makes
915      * counting new messages intrinsically quadratic in the worst case.
916      */
917     last = 0;
918     *newp = -1;
919     /* if there are messages, and UIDL is desired, use UIDL
920      * also use UIDL if fetchall is unset */
921     if (*countp > 0 && (!ctl->fetchall || ctl->server.uidl))
922     {
923         int fastuidl;
924         char id [IDLEN+1];
925
926         /* should we do fast uidl this time? */
927         fastuidl = ctl->fastuidl;
928         if (*countp > 7 &&              /* linear search is better if there are few mails! */
929             !ctl->fetchall &&           /* with fetchall, all uids are required */
930             !ctl->flush &&              /* with flush, it is safer to disable fastuidl */
931             NUM_NONZERO (fastuidl))
932         {
933             if (fastuidl == 1)
934                 dofastuidl = 1;
935             else
936                 dofastuidl = ctl->fastuidlcount != 0;
937         }
938         else
939             dofastuidl = 0;
940
941         if (!ctl->server.uidl) {
942             gen_send(sock, "LAST");
943             ok = pop3_ok(sock, buf);
944         } else
945             ok = 1;
946
947         if (ok == 0)
948         {
949             /* scan LAST reply */
950             if (sscanf(buf, "%d", &last) == 0)
951             {
952                 report(stderr, GT_("protocol error\n"));
953                 return(PS_ERROR);
954             }
955             *newp = (*countp - last);
956         }
957         else
958         {
959             /* do UIDL */
960             if (dofastuidl)
961                 return(pop3_fastuidl( sock, ctl, *countp, newp));
962             /* grab the mailbox's UID list */
963             if ((ok = gen_transact(sock, "UIDL")) != 0)
964             {
965                 /* don't worry, yet! do it the slow way */
966                 if ((ok = pop3_slowuidl(sock, ctl, countp, newp)))
967                 {
968                     report(stderr, GT_("protocol error while fetching UIDLs\n"));
969                     return(PS_ERROR);
970                 }
971             }
972             else
973             {
974                 /* UIDL worked - parse reply */
975                 unsigned long unum;
976
977                 *newp = 0;
978                 while ((ok = gen_recv(sock, buf, sizeof(buf))) == PS_SUCCESS)
979                 {
980                     if (DOTLINE(buf))
981                         break;
982
983                     if (parseuid(buf, &unum, id, sizeof(id)) == PS_SUCCESS)
984                     {
985                         struct idlist   *old, *newl;
986
987                         newl = save_str(&ctl->newsaved, id, UID_UNSEEN);
988                         newl->val.status.num = unum;
989
990                         if ((old = str_in_list(&ctl->oldsaved, id, FALSE)))
991                         {
992                             flag mark = old->val.status.mark;
993                             if (mark == UID_DELETED || mark == UID_EXPUNGED)
994                             {
995                                 /* XXX FIXME: switch 3 occurrences from
996                                  * (int)unum or (unsigned int)unum to
997                                  * remove the cast and use %lu - not now
998                                  * though, time for new release */
999                                 if (outlevel >= O_VERBOSE)
1000                                     report(stderr, GT_("id=%s (num=%d) was deleted, but is still present!\n"), id, (int)unum);
1001                                 /* just mark it as seen now! */
1002                                 old->val.status.mark = mark = UID_SEEN;
1003                             }
1004                             newl->val.status.mark = mark;
1005                             if (mark == UID_UNSEEN)
1006                             {
1007                                 (*newp)++;
1008                                 if (outlevel >= O_DEBUG)
1009                                     report(stdout, GT_("%u is unseen\n"), (unsigned int)unum);
1010                             }
1011                         }
1012                         else
1013                         {
1014                             (*newp)++;
1015                             if (outlevel >= O_DEBUG)
1016                                 report(stdout, GT_("%u is unseen\n"), (unsigned int)unum);
1017                             /* add it to oldsaved also! In case, we do not
1018                              * swap the lists (say, due to socket error),
1019                              * the same mail will not be downloaded again.
1020                              */
1021                             old = save_str(&ctl->oldsaved, id, UID_UNSEEN);
1022                         }
1023                         /* save the number */
1024                         old->val.status.num = unum;
1025                     } else
1026                         return PS_ERROR;
1027                 } /* multi-line loop for UIDL reply */
1028             } /* UIDL parser */
1029         } /* do UIDL */
1030     }
1031
1032     return(PS_SUCCESS);
1033 }
1034
1035 static int pop3_getpartialsizes(int sock, int first, int last, int *sizes)
1036 /* capture the size of message #first */
1037 {
1038     int ok = 0, i, num;
1039     char buf [POPBUFSIZE+1];
1040     unsigned int size;
1041
1042     for (i = first; i <= last; i++) {
1043         gen_send(sock, "LIST %d", i);
1044         if ((ok = pop3_ok(sock, buf)) != 0)
1045             return(ok);
1046         if (sscanf(buf, "%d %u", &num, &size) == 2) {
1047             if (num == i)
1048                 sizes[i - first] = size;
1049             else
1050                 /* warn about possible attempt to induce buffer overrun
1051                  *
1052                  * we expect server reply message number and requested
1053                  * message number to match */
1054                 report(stderr, "Warning: ignoring bogus data for message sizes returned by server.\n");
1055         }
1056     }
1057     return(ok);
1058 }
1059
1060 static int pop3_getsizes(int sock, int count, int *sizes)
1061 /* capture the sizes of all messages */
1062 {
1063     int ok;
1064
1065     if ((ok = gen_transact(sock, "LIST")) != 0)
1066         return(ok);
1067     else
1068     {
1069         char buf [POPBUFSIZE+1];
1070
1071         while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
1072         {
1073             unsigned int num, size;
1074
1075             if (DOTLINE(buf))
1076                 break;
1077             else if (sscanf(buf, "%u %u", &num, &size) == 2) {
1078                 if (num > 0 && num <= (unsigned)count)
1079                     sizes[num - 1] = size;
1080                 else
1081                     /* warn about possible attempt to induce buffer overrun */
1082                     report(stderr, "Warning: ignoring bogus data for message sizes returned by server.\n");
1083             }
1084         }
1085
1086         return(ok);
1087     }
1088 }
1089
1090 static int pop3_is_old(int sock, struct query *ctl, int num)
1091 /* is the given message old? */
1092 {
1093     struct idlist *newl;
1094     if (!ctl->oldsaved)
1095         return (num <= last);
1096     else if (dofastuidl)
1097     {
1098         char id [IDLEN+1];
1099
1100         if (num <= last)
1101             return(TRUE);
1102
1103         /* in fast uidl, we manipulate the old list only! */
1104
1105         if ((newl = id_find(&ctl->oldsaved, num)))
1106         {
1107             /* we already have the id! */
1108             return(newl->val.status.mark != UID_UNSEEN);
1109         }
1110
1111         /* get the uidl first! */
1112         if (pop3_getuidl(sock, num, id, sizeof(id)) != PS_SUCCESS)
1113             return(TRUE);
1114
1115         if ((newl = str_in_list(&ctl->oldsaved, id, FALSE))) {
1116             /* we already have the id! */
1117             newl->val.status.num = num;
1118             return(newl->val.status.mark != UID_UNSEEN);
1119         }
1120
1121         /* save it */
1122         newl = save_str(&ctl->oldsaved, id, UID_UNSEEN);
1123         newl->val.status.num = num;
1124         return(FALSE);
1125     }
1126     else
1127         return ((newl = id_find(&ctl->newsaved, num)) != NULL &&
1128             newl->val.status.mark != UID_UNSEEN);
1129 }
1130
1131 #ifdef UNUSED
1132 /*
1133  * We could use this to fetch headers only as we do for IMAP.  The trouble 
1134  * is that there's no way to fetch the body only.  So the following RETR 
1135  * would have to re-fetch the header.  Enough messages have longer headers
1136  * than bodies to make this a net loss.
1137  */
1138 static int pop_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
1139 /* request headers of nth message */
1140 {
1141     int ok;
1142     char buf[POPBUFSIZE+1];
1143
1144     gen_send(sock, "TOP %d 0", number);
1145     if ((ok = pop3_ok(sock, buf)) != 0)
1146         return(ok);
1147
1148     *lenp = -1;         /* we got sizes from the LIST response */
1149
1150     return(PS_SUCCESS);
1151 }
1152 #endif /* UNUSED */
1153
1154 static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp)
1155 /* request nth message */
1156 {
1157     int ok;
1158     char buf[POPBUFSIZE+1];
1159
1160 #ifdef SDPS_ENABLE
1161     /*
1162      * See http://www.demon.net/helpdesk/producthelp/mail/sdps-tech.html/
1163      * for a description of what we're parsing here.
1164      * -- updated 2006-02-22
1165      */
1166     if (ctl->server.sdps)
1167     {
1168         int     linecount = 0;
1169
1170         sdps_envfrom = (char *)NULL;
1171         sdps_envto = (char *)NULL;
1172         gen_send(sock, "*ENV %d", number);
1173         do {
1174             if (gen_recv(sock, buf, sizeof(buf)))
1175             {
1176                 break;
1177             }
1178             linecount++;
1179             switch (linecount) {
1180             case 4:
1181                 /* No need to wrap envelope from address */
1182                 /* FIXME: some parts of fetchmail don't handle null
1183                  * envelope senders, so use <> to mark null sender
1184                  * as a workaround. */
1185                 if (strspn(buf, " \t") == strlen(buf))
1186                     strcpy(buf, "<>");
1187                 sdps_envfrom = xmalloc(strlen(buf)+1);
1188                 strcpy(sdps_envfrom,buf);
1189                 break;
1190             case 5:
1191                 /* Wrap address with To: <> so nxtaddr() likes it */
1192                 sdps_envto = xmalloc(strlen(buf)+7);
1193                 sprintf(sdps_envto,"To: <%s>",buf);
1194                 break;
1195             }
1196         } while
1197             (!(buf[0] == '.' && (buf[1] == '\r' || buf[1] == '\n' || buf[1] == '\0')));
1198     }
1199 #else
1200     (void)ctl;
1201 #endif /* SDPS_ENABLE */
1202
1203     /*
1204      * Though the POP RFCs don't document this fact, on almost every
1205      * POP3 server I know of messages are marked "seen" only at the
1206      * time the OK response to a RETR is issued.
1207      *
1208      * This means we can use TOP to fetch the message without setting its
1209      * seen flag.  This is good!  It means that if the protocol exchange
1210      * craps out during the message, it will still be marked `unseen' on
1211      * the server.  (Exception: in early 1999 SpryNet's POP3 servers were
1212      * reported to mark messages seen on a TOP fetch.)
1213      *
1214      * However...*don't* do this if we're using keep to suppress deletion!
1215      * In that case, marking the seen flag is the only way to prevent the
1216      * message from being re-fetched on subsequent runs.
1217      *
1218      * Also use RETR (that means no TOP, no peek) if fetchall is on.
1219      * This gives us a workaround for servers like usa.net's that bungle
1220      * TOP.  It's pretty harmless because fetchall guarantees that any
1221      * message dropped by an interrupted RETR will be picked up on the
1222      * next poll of the site.
1223      *
1224      * We take advantage here of the fact that, according to all the
1225      * POP RFCs, "if the number of lines requested by the POP3 client
1226      * is greater than than the number of lines in the body, then the
1227      * POP3 server sends the entire message.").
1228      *
1229      * The line count passed (99999999) is the maximum value CompuServe will
1230      * accept; it's much lower than the natural value 2147483646 (the maximum
1231      * twos-complement signed 32-bit integer minus 1) */
1232     if (!peek_capable)
1233         gen_send(sock, "RETR %d", number);
1234     else
1235         gen_send(sock, "TOP %d 99999999", number);
1236     if ((ok = pop3_ok(sock, buf)) != 0)
1237         return(ok);
1238
1239     *lenp = -1;         /* we got sizes from the LIST response */
1240
1241     return(PS_SUCCESS);
1242 }
1243
1244 static void mark_uid_seen(struct query *ctl, int number)
1245 /* Tell the UID code we've seen this. */
1246 {
1247     struct idlist       *sdp;
1248
1249     if ((sdp = id_find(&ctl->newsaved, number)))
1250         sdp->val.status.mark = UID_SEEN;
1251     /* mark it as seen in oldsaved also! In case, we do not swap the lists
1252      * (say, due to socket error), the same mail will not be downloaded
1253      * again.
1254      */
1255     if ((sdp = id_find(&ctl->oldsaved, number)))
1256         sdp->val.status.mark = UID_SEEN;
1257 }
1258
1259 static int pop3_delete(int sock, struct query *ctl, int number)
1260 /* delete a given message */
1261 {
1262     int ok;
1263     mark_uid_seen(ctl, number);
1264     /* actually, mark for deletion -- doesn't happen until QUIT time */
1265     ok = gen_transact(sock, "DELE %d", number);
1266     if (ok != PS_SUCCESS)
1267         return(ok);
1268     delete_str(dofastuidl ? &ctl->oldsaved : &ctl->newsaved, number);
1269     return(PS_SUCCESS);
1270 }
1271
1272 static int pop3_mark_seen(int sock, struct query *ctl, int number)
1273 /* mark a given message as seen */
1274 {
1275     (void)sock;
1276     mark_uid_seen(ctl, number);
1277     return(PS_SUCCESS);
1278 }
1279
1280 static int pop3_logout(int sock, struct query *ctl)
1281 /* send logout command */
1282 {
1283     int ok;
1284
1285 #ifdef __UNUSED__
1286     /*
1287      * We used to do this in case the server marks messages deleted when seen.
1288      * (Yes, this has been reported, in the MercuryP/NLM server.
1289      * It's even legal under RFC 1939 (section 8) as a site policy.)
1290      * It interacted badly with UIDL, though.  Thomas Zajic wrote:
1291      * "Running 'fetchmail -F -v' and checking the logs, I found out
1292      * that fetchmail did in fact flush my mailbox properly, but sent
1293      * a RSET just before sending QUIT to log off.  This caused the
1294      * POP3 server to undo/forget about the previous DELEs, resetting
1295      * my mailbox to its original (ie.  unflushed) state. The
1296      * ~/.fetchids file did get flushed though, so the next time
1297      * fetchmail was run it saw all the old messages as new ones ..."
1298      */
1299      if (ctl->keep)
1300         gen_transact(sock, "RSET");
1301 #endif /* __UNUSED__ */
1302
1303     ok = gen_transact(sock, "QUIT");
1304     if (!ok)
1305         expunge_uids(ctl);
1306
1307     return(ok);
1308 }
1309
1310 static const struct method pop3 =
1311 {
1312     "POP3",             /* Post Office Protocol v3 */
1313     "pop3",             /* port for plain and TLS POP3 */
1314     "pop3s",            /* port for SSL POP3 */
1315     FALSE,              /* this is not a tagged protocol */
1316     TRUE,               /* this uses a message delimiter */
1317     pop3_ok,            /* parse command response */
1318     pop3_getauth,       /* get authorization */
1319     pop3_getrange,      /* query range of messages */
1320     pop3_getsizes,      /* we can get a list of sizes */
1321     pop3_getpartialsizes,       /* we can get the size of 1 mail */
1322     pop3_is_old,        /* how do we tell a message is old? */
1323     pop3_fetch,         /* request given message */
1324     NULL,               /* no way to fetch body alone */
1325     NULL,               /* no message trailer */
1326     pop3_delete,        /* how to delete a message */
1327     pop3_mark_seen,     /* how to mark a message as seen */
1328     NULL,               /* no action at end of mailbox */
1329     pop3_logout,        /* log out, we're done */
1330     FALSE,              /* no, we can't re-poll */
1331 };
1332
1333 int doPOP3 (struct query *ctl)
1334 /* retrieve messages using POP3 */
1335 {
1336 #ifndef MBOX
1337     if (ctl->mailboxes->id) {
1338         fprintf(stderr,GT_("Option --folder is not supported with POP3\n"));
1339         return(PS_SYNTAX);
1340     }
1341 #endif /* MBOX */
1342
1343     return(do_protocol(ctl, &pop3));
1344 }
1345 #endif /* POP3_ENABLE */
1346
1347 /* pop3.c ends here */