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