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