]> Pileus Git - ~andy/fetchmail/blob - pop3.c
First round of ODMR fixes.
[~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  
20 #include  "fetchmail.h"
21 #include  "socket.h"
22 #include  "i18n.h"
23
24 #if OPIE_ENABLE
25 #include <opie.h>
26 #endif /* OPIE_ENABLE */
27
28 #ifndef strstr          /* glibc-2.1 declares this as a macro */
29 extern char *strstr();  /* needed on sysV68 R3V7.1. */
30 #endif /* strstr */
31
32 static int last;
33 #ifdef SDPS_ENABLE
34 char *sdps_envfrom;
35 char *sdps_envto;
36 #endif /* SDPS_ENABLE */
37
38 #if OPIE_ENABLE
39 static char lastok[POPBUFSIZE+1];
40 #endif /* OPIE_ENABLE */
41
42 #define DOTLINE(s)      (s[0] == '.' && (s[1]=='\r'||s[1]=='\n'||s[1]=='\0'))
43
44 static int pop3_ok (int sock, char *argbuf)
45 /* parse command response */
46 {
47     int ok;
48     char buf [POPBUFSIZE+1];
49     char *bufp;
50
51     if ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
52     {   bufp = buf;
53         if (*bufp == '+' || *bufp == '-')
54             bufp++;
55         else
56             return(PS_PROTOCOL);
57
58         while (isalpha(*bufp))
59             bufp++;
60
61         if (*bufp)
62           *(bufp++) = '\0';
63
64         if (strcmp(buf,"+OK") == 0)
65         {
66 #if OPIE_ENABLE
67             strcpy(lastok, bufp);
68 #endif /* OPIE_ENABLE */
69             ok = 0;
70         }
71         else if (strncmp(buf,"-ERR", 4) == 0)
72         {
73             if (stage > STAGE_GETAUTH) 
74                 ok = PS_PROTOCOL;
75             /*
76              * We're checking for "lock busy", "unable to lock", 
77              * "already locked", "wait a few minutes" etc. here. 
78              * This indicates that we have to wait for the server to
79              * unwedge itself before we can poll again.
80              *
81              * PS_LOCKBUSY check empirically verified with two recent
82              * versions of the Berkeley popper; QPOP (version 2.2)  and
83              * QUALCOMM Pop server derived from UCB (version 2.1.4-R3)
84              * These are caught by the case-indifferent "lock" check.
85              * The "wait" catches "mail storage services unavailable,
86              * wait a few minutes and try again" on the InterMail server.
87              *
88              * If these aren't picked up on correctly, fetchmail will 
89              * think there is an authentication failure and wedge the
90              * connection in order to prevent futile polls.
91              *
92              * Gad, what a kluge.
93              */
94             else if (strstr(bufp,"lock")
95                      || strstr(bufp,"Lock")
96                      || strstr(bufp,"LOCK")
97                      || strstr(bufp,"wait")
98                      /* these are blessed by RFC 2449 */
99                      || strstr(bufp,"[IN-USE]")||strstr(bufp,"[LOGIN-DELAY]"))
100                 ok = PS_LOCKBUSY;
101             else if ((strstr(bufp,"Service")
102                      || strstr(bufp,"service"))
103                          && (strstr(bufp,"unavailable")))
104                 ok = PS_SERVBUSY;
105             else
106                 ok = PS_AUTHFAIL;
107             /*
108              * We always want to pass the user lock-busy messages, because
109              * they're red flags.  Other stuff (like AUTH failures on non-
110              * RFC1734 servers) only if we're debugging.
111              */
112             if (*bufp && (ok == PS_LOCKBUSY || outlevel >= O_MONITOR))
113               report(stderr, "%s\n", bufp);
114         }
115         else
116             ok = PS_PROTOCOL;
117
118         if (argbuf != NULL)
119             strcpy(argbuf,bufp);
120     }
121
122     return(ok);
123 }
124
125 static int pop3_getauth(int sock, struct query *ctl, char *greeting)
126 /* apply for connection authorization */
127 {
128     int ok;
129     char *start,*end;
130     char *msg;
131 #if OPIE_ENABLE
132     char *challenge;
133 #endif /* OPIE_ENABLE */
134 #if defined(GSSAPI)
135     flag has_gssapi = FALSE;
136 #endif /* defined(GSSAPI) */
137 #if defined(KERBEROS_V4) || defined(KERBEROS_V5)
138     flag has_kerberos = FALSE;
139 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
140     flag has_cram = FALSE;
141 #ifdef OPIE_ENABLE
142     flag has_otp = FALSE;
143 #endif /* OPIE_ENABLE */
144
145 #ifdef SDPS_ENABLE
146     /*
147      * This needs to catch both demon.co.uk and demon.net.
148      * If we see either, and we're in multidrop mode, try to use
149      * the SDPS *ENV extension.
150      */
151     if (!(ctl->server.sdps) && MULTIDROP(ctl) && strstr(greeting, "demon."))
152         ctl->server.sdps = TRUE;
153 #endif /* SDPS_ENABLE */
154
155     switch (ctl->server.protocol) {
156     case P_POP3:
157 #ifdef RPA_ENABLE
158         /* CompuServe POP3 Servers as of 990730 want AUTH first for RPA */
159         if (strstr(ctl->remotename, "@compuserve.com"))
160         {
161             /* AUTH command should return a list of available mechanisms */
162             if (gen_transact(sock, "AUTH") == 0)
163             {
164                 char buffer[10];
165                 flag has_rpa = FALSE;
166
167                 while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0)
168                 {
169                     if (DOTLINE(buffer))
170                         break;
171                     if (strncasecmp(buffer, "rpa", 3) == 0)
172                         has_rpa = TRUE;
173                 }
174                 if (has_rpa && !POP3_auth_rpa(ctl->remotename, 
175                                               ctl->password, sock))
176                     return(PS_SUCCESS);
177             }
178
179             return(PS_AUTHFAIL);
180         }
181 #endif /* RPA_ENABLE */
182
183         /*
184          * CAPA command may return a list including available
185          * authentication mechanisms.  if it doesn't, no harm done, we
186          * just fall back to a plain login.  Note that this code 
187          * latches the server's authentication type, so that in daemon mode
188          * the CAPA check only needs to be done once at start of run.
189          *
190          * APOP was introduced in RFC 1450, and CAPA not until
191          * RFC2449. So the < check is an easy way to prevent CAPA from
192          * being sent to the more primitive POP3 servers dating from
193          * RFC 1081 and RFC 1225, which seem more likely to choke on
194          * it.  This certainly catches IMAP-2000's POP3 gateway.
195          * 
196          * These authentication methods are blessed by RFC1734,
197          * describing the POP3 AUTHentication command.
198          */
199         if (ctl->server.authenticate == A_ANY 
200             && strchr(greeting, '<') 
201             && gen_transact(sock, "CAPA") == 0)
202         {
203             char buffer[64];
204
205             /* determine what authentication methods we have available */
206             while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0)
207             {
208                 if (DOTLINE(buffer))
209                     break;
210 #if defined(GSSAPI)
211                 if (strstr(buffer, "GSSAPI"))
212                     has_gssapi = TRUE;
213 #endif /* defined(GSSAPI) */
214 #if defined(KERBEROS_V4)
215                 if (strstr(buffer, "KERBEROS_V4"))
216                     has_kerberos = TRUE;
217 #endif /* defined(KERBEROS_V4)  */
218 #ifdef OPIE_ENABLE
219                 if (strstr(buffer, "X-OTP"))
220                     has_otp = TRUE;
221 #endif /* OPIE_ENABLE */
222                 if (strstr(buffer, "CRAM-MD5"))
223                     has_cram = TRUE;
224             }
225         }
226
227         /*
228          * OK, we have an authentication type now.
229          */
230 #if defined(KERBEROS_V4)
231         /* 
232          * Servers doing KPOP have to go through a dummy login sequence
233          * rather than doing SASL.
234          */
235         if (has_kerberos &&
236 #if INET6_ENABLE
237             ctl->server.service && (strcmp(ctl->server.service, KPOP_PORT)!=0)
238 #else /* INET6_ENABLE */
239             ctl->server.port != KPOP_PORT
240 #endif /* INET6_ENABLE */
241             && (ctl->server.authenticate == A_KERBEROS_V4
242              || ctl->server.authenticate == A_KERBEROS_V5
243              || ctl->server.authenticate == A_ANY))
244         {
245             ok = do_rfc1731(sock, "AUTH", ctl->server.truename);
246             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
247                 break;
248         }
249 #endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
250
251 #if defined(GSSAPI)
252         if (has_gssapi &&
253             (ctl->server.authenticate == A_GSSAPI ||
254              ctl->server.authenticate == A_ANY))
255         {
256             ok = do_gssauth(sock,"AUTH",ctl->server.truename,ctl->remotename);
257             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
258                 break;
259         }
260 #endif /* defined(GSSAPI) */
261
262 #ifdef OPIE_ENABLE
263         if (has_otp &&
264             (ctl->server.authenticate == A_OTP ||
265              ctl->server.authenticate == A_ANY))
266         {
267             ok = do_otp(sock, "AUTH", ctl);
268             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
269                 break;
270         }
271 #endif /* OPIE_ENABLE */
272
273         if (has_cram &&
274             (ctl->server.authenticate == A_CRAM_MD5 ||
275              ctl->server.authenticate == A_ANY))
276         {
277             ok = do_cram_md5(sock, "AUTH", ctl, NULL);
278             if (ok == PS_SUCCESS || ctl->server.authenticate != A_ANY)
279                 break;
280         }
281
282         /* ordinary validation, no one-time password or RPA */ 
283         gen_transact(sock, "USER %s", ctl->remotename);
284         strcpy(shroud, ctl->password);
285         ok = gen_transact(sock, "PASS %s", ctl->password);
286         shroud[0] = '\0';
287         break;
288
289     case P_APOP:
290         /* build MD5 digest from greeting timestamp + password */
291         /* find start of timestamp */
292         for (start = greeting;  *start != 0 && *start != '<';  start++)
293             continue;
294         if (*start == 0) {
295             report(stderr,
296                    _("Required APOP timestamp not found in greeting\n"));
297             return(PS_AUTHFAIL);
298         }
299
300         /* find end of timestamp */
301         for (end = start;  *end != 0  && *end != '>';  end++)
302             continue;
303         if (*end == 0 || end == start + 1) {
304             report(stderr, 
305                    _("Timestamp syntax error in greeting\n"));
306             return(PS_AUTHFAIL);
307         }
308         else
309             *++end = '\0';
310
311         /* copy timestamp and password into digestion buffer */
312         xalloca(msg, char *, (end-start+1) + strlen(ctl->password) + 1);
313         strcpy(msg,start);
314         strcat(msg,ctl->password);
315
316         strcpy(ctl->digest, MD5Digest((unsigned char *)msg));
317
318         ok = gen_transact(sock, "APOP %s %s", ctl->remotename, ctl->digest);
319         break;
320
321     case P_RPOP:
322         if ((ok = gen_transact(sock,"USER %s", ctl->remotename)) == 0)
323             ok = gen_transact(sock, "RPOP %s", ctl->password);
324         break;
325
326     default:
327         report(stderr, _("Undefined protocol request in POP3_auth\n"));
328         ok = PS_ERROR;
329     }
330
331     if (ok != 0)
332     {
333         /* maybe we detected a lock-busy condition? */
334         if (ok == PS_LOCKBUSY)
335             report(stderr, _("lock busy!  Is another session active?\n")); 
336
337         return(ok);
338     }
339
340     /*
341      * Empirical experience shows some server/OS combinations
342      * may need a brief pause even after any lockfiles on the
343      * server are released, to give the server time to finish
344      * copying back very large mailfolders from the temp-file...
345      * this is only ever an issue with extremely large mailboxes.
346      */
347     sleep(3); /* to be _really_ safe, probably need sleep(5)! */
348
349     /* we're peek-capable if use of TOP is enabled */
350     peek_capable = !(ctl->fetchall || ctl->keep);
351
352     /* we're approved */
353     return(PS_SUCCESS);
354 }
355
356 static int pop3_gettopid( int sock, int num , char *id)
357 {
358     int ok;
359     int got_it;
360     char buf [POPBUFSIZE+1];
361     sprintf( buf, "TOP %d 1", num );
362     if ((ok = gen_transact(sock, buf )) != 0)
363        return ok; 
364     got_it = 0;
365     while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0) 
366     {
367         if (DOTLINE(buf))
368             break;
369         if ( ! got_it && ! strncasecmp("Message-Id:", buf, 11 )) {
370             got_it = 1;
371             /* prevent stack overflows */
372             buf[IDLEN+12] = 0;
373             sscanf( buf+12, "%s", id);
374         }
375     }
376     return 0;
377 }
378
379 static int pop3_slowuidl( int sock,  struct query *ctl, int *countp, int *newp)
380 {
381     /* This approach tries to get the message headers from the
382      * remote hosts and compares the message-id to the already known
383      * ones:
384      *  + if the first message containes a new id, all messages on
385      *    the server will be new
386      *  + if the first is known, try to estimate the last known message
387      *    on the server and check. If this works you know the total number
388      *    of messages to get.
389      *  + Otherwise run a binary search to determine the last known message
390      */
391     int ok, nolinear = 0;
392     int first_nr, list_len, try_id, try_nr, add_id;
393     int num;
394     char id [IDLEN+1];
395     
396     if( (ok = pop3_gettopid( sock, 1, id )) != 0 )
397         return ok;
398     
399     if( ( first_nr = str_nr_in_list(&ctl->oldsaved, id) ) == -1 ) {
400         /* the first message is unknown -> all messages are new */
401         *newp = *countp;        
402         return 0;
403     }
404
405     /* check where we expect the latest known message */
406     list_len = count_list( &ctl->oldsaved );
407     try_id = list_len  - first_nr; /* -1 + 1 */
408     if( try_id > 1 ) {
409         if( try_id <= *countp ) {
410             if( (ok = pop3_gettopid( sock, try_id, id )) != 0 )
411                 return ok;
412     
413             try_nr = str_nr_last_in_list(&ctl->oldsaved, id);
414         } else {
415             try_id = *countp+1;
416             try_nr = -1;
417         }
418         if( try_nr != list_len -1 ) {
419             /* some messages inbetween have been deleted... */
420             if( try_nr == -1 ) {
421                 nolinear = 1;
422
423                 for( add_id = 1<<30; add_id > try_id-1; add_id >>= 1 )
424                     ;
425                 for( ; add_id; add_id >>= 1 ) {
426                     if( try_nr == -1 ) {
427                         if( try_id - add_id <= 1 ) {
428                             continue;
429                         }
430                         try_id -= add_id;
431                     } else 
432                         try_id += add_id;
433                     
434                     if( (ok = pop3_gettopid( sock, try_id, id )) != 0 )
435                         return ok;
436                     try_nr = str_nr_in_list(&ctl->oldsaved, id);
437                 }
438                 if( try_nr == -1 ) {
439                     try_id--;
440                 }
441             } else {
442                 report(stderr, 
443                        _("Messages inserted into list on server. Cannot handle this.\n"));
444                 return -1;
445             }
446         } 
447     }
448     /* the first try_id messages are known -> copy them to the newsaved list */
449     for( num = first_nr; num < list_len; num++ )
450     {
451         struct idlist   *new = save_str(&ctl->newsaved, 
452                                 str_from_nr_list(&ctl->oldsaved, num),
453                                 UID_UNSEEN);
454         new->val.status.num = num - first_nr + 1;
455     }
456
457     if( nolinear ) {
458         free_str_list(&ctl->oldsaved);
459         ctl->oldsaved = 0;
460         last = try_id;
461     }
462
463     *newp = *countp - try_id;
464     return 0;
465 }
466
467 static int pop3_getrange(int sock, 
468                          struct query *ctl,
469                          const char *folder,
470                          int *countp, int *newp, int *bytes)
471 /* get range of messages to be fetched */
472 {
473     int ok;
474     char buf [POPBUFSIZE+1];
475
476     /* Ensure that the new list is properly empty */
477     ctl->newsaved = (struct idlist *)NULL;
478
479 #ifdef MBOX
480     /* Alain Knaff suggests this, but it's not RFC standard */
481     if (folder)
482         if ((ok = gen_transact(sock, "MBOX %s", folder)))
483             return ok;
484 #endif /* MBOX */
485
486     /* get the total message count */
487     gen_send(sock, "STAT");
488     ok = pop3_ok(sock, buf);
489     if (ok == 0)
490         sscanf(buf,"%d %d", countp, bytes);
491     else
492         return(ok);
493
494     /*
495      * Newer, RFC-1725-conformant POP servers may not have the LAST command.
496      * We work as hard as possible to hide this ugliness, but it makes 
497      * counting new messages intrinsically quadratic in the worst case.
498      */
499     last = 0;
500     *newp = -1;
501     if (*countp > 0 && !ctl->fetchall)
502     {
503         char id [IDLEN+1];
504
505         if (!ctl->server.uidl) {
506             gen_send(sock, "LAST");
507             ok = pop3_ok(sock, buf);
508         } else
509             ok = 1;
510         if (ok == 0)
511         {
512             if (sscanf(buf, "%d", &last) == 0)
513             {
514                 report(stderr, _("protocol error\n"));
515                 return(PS_ERROR);
516             }
517             *newp = (*countp - last);
518         }
519         else
520         {
521             /* grab the mailbox's UID list */
522             if ((ok = gen_transact(sock, "UIDL")) != 0)
523             {
524                 /* don't worry, yet! do it the slow way */
525                 if((ok = pop3_slowuidl( sock, ctl, countp, newp))!=0)
526                 {
527                     report(stderr, _("protocol error while fetching UIDLs\n"));
528                     return(PS_ERROR);
529                 }
530             }
531             else
532             {
533                 int     num;
534
535                 *newp = 0;
536                 while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
537                 {
538                     if (DOTLINE(buf))
539                         break;
540                     else if (sscanf(buf, "%d %s", &num, id) == 2)
541                     {
542                         struct idlist   *new;
543
544                         new = save_str(&ctl->newsaved, id, UID_UNSEEN);
545                         new->val.status.num = num;
546
547                         if (str_in_list(&ctl->oldsaved, id, FALSE)) {
548                             new->val.status.mark = UID_SEEN;
549                             str_set_mark(&ctl->oldsaved, id, UID_SEEN);
550                         }
551                         else
552                             (*newp)++;
553                     }
554                 }
555             }
556         }
557     }
558
559     return(PS_SUCCESS);
560 }
561
562 static int pop3_getsizes(int sock, int count, int *sizes)
563 /* capture the sizes of all messages */
564 {
565     int ok;
566
567     if ((ok = gen_transact(sock, "LIST")) != 0)
568         return(ok);
569     else
570     {
571         char buf [POPBUFSIZE+1];
572
573         while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
574         {
575             int num, size;
576
577             if (DOTLINE(buf))
578                 break;
579             else if (sscanf(buf, "%d %d", &num, &size) == 2)
580                 sizes[num - 1] = size;
581         }
582
583         return(ok);
584     }
585 }
586
587 static int pop3_is_old(int sock, struct query *ctl, int num)
588 /* is the given message old? */
589 {
590     if (!ctl->oldsaved)
591         return (num <= last);
592     else
593         return (str_in_list(&ctl->oldsaved,
594                             str_find(&ctl->newsaved, num), FALSE));
595 }
596
597 #ifdef UNUSED
598 /*
599  * We could use this to fetch headers only as we do for IMAP.  The trouble 
600  * is that there's no way to fetch the body only.  So the following RETR 
601  * would have to re-fetch the header.  Enough messages have longer headers
602  * than bodies to make this a net loss.
603  */
604 static int pop_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
605 /* request headers of nth message */
606 {
607     int ok;
608     char buf[POPBUFSIZE+1];
609
610     gen_send(sock, "TOP %d 0", number);
611     if ((ok = pop3_ok(sock, buf)) != 0)
612         return(ok);
613
614     *lenp = -1;         /* we got sizes from the LIST response */
615
616     return(PS_SUCCESS);
617 }
618 #endif /* UNUSED */
619
620 static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp)
621 /* request nth message */
622 {
623     int ok;
624     char buf[POPBUFSIZE+1];
625
626 #ifdef SDPS_ENABLE
627     /*
628      * See http://www.demon.net/services/mail/sdps-tech.html
629      * for a description of what we're parsing here.
630      */
631     if (ctl->server.sdps)
632     {
633         int     linecount = 0;
634
635         sdps_envfrom = (char *)NULL;
636         sdps_envto = (char *)NULL;
637         gen_send(sock, "*ENV %d", number);
638         do {
639             if (gen_recv(sock, buf, sizeof(buf)))
640             {
641                 break;
642             }
643             linecount++;
644             switch (linecount) {
645             case 4:
646                 /* No need to wrap envelope from address */
647                 sdps_envfrom = xmalloc(strlen(buf)+1);
648                 strcpy(sdps_envfrom,buf);
649                 break;
650             case 5:
651                 /* Wrap address with To: <> so nxtaddr() likes it */
652                 sdps_envto = xmalloc(strlen(buf)+7);
653                 sprintf(sdps_envto,"To: <%s>",buf);
654                 break;
655             }
656         } while
657             (!(buf[0] == '.' && (buf[1] == '\r' || buf[1] == '\n' || buf[1] == '\0')));
658     }
659 #endif /* SDPS_ENABLE */
660
661     /*
662      * Though the POP RFCs don't document this fact, on almost every
663      * POP3 server I know of messages are marked "seen" only at the
664      * time the OK response to a RETR is issued.
665      *
666      * This means we can use TOP to fetch the message without setting its
667      * seen flag.  This is good!  It means that if the protocol exchange
668      * craps out during the message, it will still be marked `unseen' on
669      * the server.  (Exception: in early 1999 SpryNet's POP3 servers were
670      * reported to mark messages seen on a TOP fetch.)
671      *
672      * However...*don't* do this if we're using keep to suppress deletion!
673      * In that case, marking the seen flag is the only way to prevent the
674      * message from being re-fetched on subsequent runs.
675      *
676      * Also use RETR if fetchall is on.  This gives us a workaround
677      * for servers like usa.net's that bungle TOP.  It's pretty
678      * harmless because fetchall guarantees that any message dropped
679      * by an interrupted RETR will be picked up on the next poll of the
680      * site.
681      *
682      * We take advantage here of the fact that, according to all the
683      * POP RFCs, "if the number of lines requested by the POP3 client
684      * is greater than than the number of lines in the body, then the
685      * POP3 server sends the entire message.").
686      *
687      * The line count passed (99999999) is the maximum value CompuServe will
688      * accept; it's much lower than the natural value 2147483646 (the maximum
689      * twos-complement signed 32-bit integer minus 1) */
690     if (ctl->keep || ctl->fetchall)
691         gen_send(sock, "RETR %d", number);
692     else
693         gen_send(sock, "TOP %d 99999999", number);
694     if ((ok = pop3_ok(sock, buf)) != 0)
695         return(ok);
696
697     *lenp = -1;         /* we got sizes from the LIST response */
698
699     return(PS_SUCCESS);
700 }
701
702 static int pop3_delete(int sock, struct query *ctl, int number)
703 /* delete a given message */
704 {
705     /* actually, mark for deletion -- doesn't happen until QUIT time */
706     return(gen_transact(sock, "DELE %d", number));
707 }
708
709 static int pop3_logout(int sock, struct query *ctl)
710 /* send logout command */
711 {
712     int ok;
713
714     ok = gen_transact(sock, "QUIT");
715     if (!ok)
716         expunge_uids(ctl);
717
718     if (ctl->lastid)
719     {
720         free(ctl->lastid);
721         ctl->lastid = NULL;
722     }
723
724     return(ok);
725 }
726
727 const static struct method pop3 =
728 {
729     "POP3",             /* Post Office Protocol v3 */
730 #if INET6_ENABLE
731     "pop3",             /* standard POP3 port */
732     "pop3s",            /* ssl POP3 port */
733 #else /* INET6_ENABLE */
734     110,                /* standard POP3 port */
735     995,                /* ssl POP3 port */
736 #endif /* INET6_ENABLE */
737     FALSE,              /* this is not a tagged protocol */
738     TRUE,               /* this uses a message delimiter */
739     pop3_ok,            /* parse command response */
740     pop3_getauth,       /* get authorization */
741     pop3_getrange,      /* query range of messages */
742     pop3_getsizes,      /* we can get a list of sizes */
743     pop3_is_old,        /* how do we tell a message is old? */
744     pop3_fetch,         /* request given message */
745     NULL,               /* no way to fetch body alone */
746     NULL,               /* no message trailer */
747     pop3_delete,        /* how to delete a message */
748     pop3_logout,        /* log out, we're done */
749     FALSE,              /* no, we can't re-poll */
750 };
751
752 int doPOP3 (struct query *ctl)
753 /* retrieve messages using POP3 */
754 {
755 #ifndef MBOX
756     if (ctl->mailboxes->id) {
757         fprintf(stderr,_("Option --remote is not supported with POP3\n"));
758         return(PS_SYNTAX);
759     }
760 #endif /* MBOX */
761     peek_capable = !ctl->fetchall;
762     return(do_protocol(ctl, &pop3));
763 }
764 #endif /* POP3_ENABLE */
765
766 /* pop3.c ends here */