Fix typo.
[bpt/emacs.git] / lib-src / pop.c
CommitLineData
9c0f2dac 1/* pop.c: client routines for talking to a POP3-protocol post-office server
4ee9629e 2 Copyright (c) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc.
9c0f2dac
RS
3 Written by Jonathan Kamens, jik@security.ov.com.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
9c0f2dac 21
8148baf9
RS
22#ifdef HAVE_CONFIG_H
23#define NO_SHORTNAMES /* Tell config not to load remap.h */
c9c3d8f6 24#include <../src/config.h>
8148baf9
RS
25#else
26#define MAIL_USE_POP
27#endif
c9c3d8f6 28
8148baf9
RS
29#ifdef MAIL_USE_POP
30
9c0f2dac 31#include <sys/types.h>
c2668a61
RS
32#ifdef WINDOWSNT
33#include "ntlib.h"
34#include <winsock.h>
35#undef SOCKET_ERROR
de5c39cf
RS
36#define RECV(s,buf,len,flags) recv(s,buf,len,flags)
37#define SEND(s,buf,len,flags) send(s,buf,len,flags)
38#define CLOSESOCKET(s) closesocket(s)
c2668a61 39#else
9c0f2dac
RS
40#include <netinet/in.h>
41#include <sys/socket.h>
de5c39cf
RS
42#define RECV(s,buf,len,flags) read(s,buf,len)
43#define SEND(s,buf,len,flags) write(s,buf,len)
44#define CLOSESOCKET(s) close(s)
c2668a61 45#endif
9c0f2dac 46#include <pop.h>
625ad89f 47
9c0f2dac
RS
48#ifdef sun
49#include <malloc.h>
8148baf9 50#endif /* sun */
625ad89f 51
9c0f2dac
RS
52#ifdef HESIOD
53#include <hesiod.h>
54/*
55 * It really shouldn't be necessary to put this declaration here, but
56 * the version of hesiod.h that Athena has installed in release 7.2
57 * doesn't declare this function; I don't know if the 7.3 version of
58 * hesiod.h does.
59 */
60extern struct servent *hes_getservbyname (/* char *, char * */);
61#endif
625ad89f 62
9c0f2dac 63#include <pwd.h>
9c0f2dac
RS
64#include <netdb.h>
65#include <errno.h>
66#include <stdio.h>
a27738b6
RS
67#ifdef STDC_HEADERS
68#include <string.h>
020d3015
KH
69#define index strchr
70#endif
020d3015
KH
71#ifdef HAVE_UNISTD_H
72#include <unistd.h>
a27738b6 73#endif
625ad89f 74
9c0f2dac 75#ifdef KERBEROS
a27738b6
RS
76# ifdef HAVE_KRB5_H
77# include <krb5.h>
78# endif
79# ifdef HAVE_DES_H
80# include <des.h>
81# else
82# ifdef HAVE_KERBEROSIV_DES_H
83# include <kerberosIV/des.h>
84# else
85# ifdef HAVE_KERBEROS_DES_H
86# include <kerberos/des.h>
87# endif
88# endif
89# endif
90# ifdef HAVE_KRB_H
91# include <krb.h>
92# else
93# ifdef HAVE_KERBEROSIV_KRB_H
94# include <kerberosIV/krb.h>
95# else
96# ifdef HAVE_KERBEROS_KRB_H
97# include <kerberos/krb.h>
98# endif
99# endif
100# endif
101# ifdef HAVE_COM_ERR_H
102# include <com_err.h>
103# endif
8148baf9 104#endif /* KERBEROS */
9c0f2dac 105
8148baf9 106#ifdef KERBEROS
a27738b6 107#ifndef KERBEROS5
9c0f2dac 108extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
8148baf9
RS
109 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
110 struct sockaddr_in *, struct sockaddr_in *,
111 char * */);
9c0f2dac 112extern char *krb_realmofhost (/* char * */);
a27738b6 113#endif /* ! KERBEROS5 */
8148baf9 114#endif /* KERBEROS */
9c0f2dac 115
c2668a61 116#ifndef WINDOWSNT
8148baf9 117#if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
9c0f2dac
RS
118extern int h_errno;
119#endif
c2668a61 120#endif
9c0f2dac 121
d89d0243
KH
122#ifndef _P
123# ifdef __STDC__
124# define _P(a) a
125# else
126# define _P(a) ()
127# endif /* __STDC__ */
128#endif /* ! __P */
129
130static int socket_connection _P((char *, int));
60b0a379 131static int pop_getline _P((popserver, char **));
d89d0243
KH
132static int sendline _P((popserver, char *));
133static int fullwrite _P((int, char *, int));
134static int getok _P((popserver));
9c0f2dac 135#if 0
d89d0243 136static int gettermination _P((popserver));
9c0f2dac 137#endif
d89d0243
KH
138static void pop_trash _P((popserver));
139static char *find_crlf _P((char *, int));
7a481e50 140
9c0f2dac
RS
141#define ERROR_MAX 80 /* a pretty arbitrary size */
142#define POP_PORT 110
143#define KPOP_PORT 1109
c2668a61 144#define POP_SERVICE "pop3" /* we don't want the POP2 port! */
9c0f2dac 145#ifdef KERBEROS
9c0f2dac
RS
146#define KPOP_SERVICE "kpop"
147#endif
9c0f2dac
RS
148
149char pop_error[ERROR_MAX];
150int pop_debug = 0;
151
152#ifndef min
153#define min(a,b) (((a) < (b)) ? (a) : (b))
154#endif
155
156/*
157 * Function: pop_open (char *host, char *username, char *password,
158 * int flags)
159 *
160 * Purpose: Establishes a connection with a post-office server, and
161 * completes the authorization portion of the session.
162 *
163 * Arguments:
164 * host The server host with which the connection should be
165 * established. Optional. If omitted, internal
166 * heuristics will be used to determine the server host,
167 * if possible.
168 * username
169 * The username of the mail-drop to access. Optional.
170 * If omitted, internal heuristics will be used to
171 * determine the username, if possible.
172 * password
173 * The password to use for authorization. If omitted,
174 * internal heuristics will be used to determine the
175 * password, if possible.
176 * flags A bit mask containing flags controlling certain
177 * functions of the routine. Valid flags are defined in
178 * the file pop.h
179 *
180 * Return value: Upon successful establishment of a connection, a
181 * non-null popserver will be returned. Otherwise, null will be
182 * returned, and the string variable pop_error will contain an
183 * explanation of the error.
184 */
185popserver
186pop_open (host, username, password, flags)
187 char *host;
188 char *username;
189 char *password;
190 int flags;
191{
192 int sock;
193 popserver server;
194
195 /* Determine the user name */
196 if (! username)
197 {
198 username = getenv ("USER");
199 if (! (username && *username))
200 {
201 username = getlogin ();
202 if (! (username && *username))
203 {
204 struct passwd *passwd;
205 passwd = getpwuid (getuid ());
206 if (passwd && passwd->pw_name && *passwd->pw_name)
207 {
208 username = passwd->pw_name;
209 }
210 else
211 {
212 strcpy (pop_error, "Could not determine username");
213 return (0);
214 }
215 }
216 }
217 }
218
219 /*
220 * Determine the mail host.
221 */
222
223 if (! host)
224 {
225 host = getenv ("MAILHOST");
226 }
227
228#ifdef HESIOD
229 if ((! host) && (! (flags & POP_NO_HESIOD)))
230 {
231 struct hes_postoffice *office;
232 office = hes_getmailhost (username);
233 if (office && office->po_type && (! strcmp (office->po_type, "POP"))
234 && office->po_name && *office->po_name && office->po_host
235 && *office->po_host)
236 {
237 host = office->po_host;
238 username = office->po_name;
239 }
240 }
241#endif
242
243#ifdef MAILHOST
244 if (! host)
245 {
246 host = MAILHOST;
247 }
248#endif
249
250 if (! host)
251 {
252 strcpy (pop_error, "Could not determine POP server");
253 return (0);
254 }
255
256 /* Determine the password */
bbcac09c
RS
257#ifdef KERBEROS
258#define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
9c0f2dac 259#else
bbcac09c 260#define DONT_NEED_PASSWORD 0
9c0f2dac
RS
261#endif
262
263 if ((! password) && (! DONT_NEED_PASSWORD))
264 {
265 if (! (flags & POP_NO_GETPASS))
266 {
267 password = getpass ("Enter POP password:");
268 }
269 if (! password)
270 {
271 strcpy (pop_error, "Could not determine POP password");
272 return (0);
273 }
274 }
275 if (password)
bbcac09c 276 flags |= POP_NO_KERBEROS;
9c0f2dac
RS
277 else
278 password = username;
279
280 sock = socket_connection (host, flags);
281 if (sock == -1)
282 return (0);
283
284 server = (popserver) malloc (sizeof (struct _popserver));
285 if (! server)
286 {
287 strcpy (pop_error, "Out of memory in pop_open");
288 return (0);
289 }
290 server->buffer = (char *) malloc (GETLINE_MIN);
291 if (! server->buffer)
292 {
293 strcpy (pop_error, "Out of memory in pop_open");
294 free ((char *) server);
295 return (0);
296 }
297
298 server->file = sock;
299 server->data = 0;
300 server->buffer_index = 0;
301 server->buffer_size = GETLINE_MIN;
302 server->in_multi = 0;
c2668a61 303 server->trash_started = 0;
9c0f2dac
RS
304
305 if (getok (server))
306 return (0);
307
308 /*
309 * I really shouldn't use the pop_error variable like this, but....
310 */
311 if (strlen (username) > ERROR_MAX - 6)
312 {
313 pop_close (server);
314 strcpy (pop_error,
315 "Username too long; recompile pop.c with larger ERROR_MAX");
316 return (0);
317 }
318 sprintf (pop_error, "USER %s", username);
319
320 if (sendline (server, pop_error) || getok (server))
321 {
322 return (0);
323 }
324
325 if (strlen (password) > ERROR_MAX - 6)
326 {
327 pop_close (server);
328 strcpy (pop_error,
329 "Password too long; recompile pop.c with larger ERROR_MAX");
330 return (0);
331 }
332 sprintf (pop_error, "PASS %s", password);
333
334 if (sendline (server, pop_error) || getok (server))
335 {
336 return (0);
337 }
338
339 return (server);
340}
341
342/*
343 * Function: pop_stat
344 *
345 * Purpose: Issue the STAT command to the server and return (in the
346 * value parameters) the number of messages in the maildrop and
347 * the total size of the maildrop.
348 *
349 * Return value: 0 on success, or non-zero with an error in pop_error
350 * in failure.
351 *
352 * Side effects: On failure, may make further operations on the
353 * connection impossible.
354 */
355int
356pop_stat (server, count, size)
357 popserver server;
358 int *count;
359 int *size;
360{
361 char *fromserver;
362
363 if (server->in_multi)
364 {
365 strcpy (pop_error, "In multi-line query in pop_stat");
366 return (-1);
367 }
368
60b0a379 369 if (sendline (server, "STAT") || (pop_getline (server, &fromserver) < 0))
9c0f2dac
RS
370 return (-1);
371
372 if (strncmp (fromserver, "+OK ", 4))
373 {
374 if (0 == strncmp (fromserver, "-ERR", 4))
375 {
376 strncpy (pop_error, fromserver, ERROR_MAX);
377 }
378 else
379 {
380 strcpy (pop_error,
381 "Unexpected response from POP server in pop_stat");
382 pop_trash (server);
383 }
384 return (-1);
385 }
386
387 *count = atoi (&fromserver[4]);
388
389 fromserver = index (&fromserver[4], ' ');
390 if (! fromserver)
391 {
392 strcpy (pop_error,
393 "Badly formatted response from server in pop_stat");
394 pop_trash (server);
395 return (-1);
396 }
397
398 *size = atoi (fromserver + 1);
399
400 return (0);
401}
402
403/*
404 * Function: pop_list
405 *
406 * Purpose: Performs the POP "list" command and returns (in value
407 * parameters) two malloc'd zero-terminated arrays -- one of
408 * message IDs, and a parallel one of sizes.
409 *
410 * Arguments:
411 * server The pop connection to talk to.
412 * message The number of the one message about which to get
413 * information, or 0 to get information about all
414 * messages.
415 *
416 * Return value: 0 on success, non-zero with error in pop_error on
417 * failure.
418 *
419 * Side effects: On failure, may make further operations on the
420 * connection impossible.
421 */
422int
423pop_list (server, message, IDs, sizes)
424 popserver server;
425 int message;
426 int **IDs;
427 int **sizes;
428{
429 int how_many, i;
430 char *fromserver;
431
432 if (server->in_multi)
433 {
434 strcpy (pop_error, "In multi-line query in pop_list");
435 return (-1);
436 }
437
438 if (message)
439 how_many = 1;
440 else
441 {
442 int count, size;
443 if (pop_stat (server, &count, &size))
444 return (-1);
445 how_many = count;
446 }
447
448 *IDs = (int *) malloc ((how_many + 1) * sizeof (int));
449 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
450 if (! (*IDs && *sizes))
451 {
452 strcpy (pop_error, "Out of memory in pop_list");
453 return (-1);
454 }
455
456 if (message)
457 {
458 sprintf (pop_error, "LIST %d", message);
459 if (sendline (server, pop_error))
460 {
461 free ((char *) *IDs);
462 free ((char *) *sizes);
463 return (-1);
464 }
60b0a379 465 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
466 {
467 free ((char *) *IDs);
468 free ((char *) *sizes);
469 return (-1);
470 }
471 if (strncmp (fromserver, "+OK ", 4))
472 {
473 if (! strncmp (fromserver, "-ERR", 4))
474 strncpy (pop_error, fromserver, ERROR_MAX);
475 else
476 {
477 strcpy (pop_error,
478 "Unexpected response from server in pop_list");
479 pop_trash (server);
480 }
481 free ((char *) *IDs);
482 free ((char *) *sizes);
483 return (-1);
484 }
485 (*IDs)[0] = atoi (&fromserver[4]);
486 fromserver = index (&fromserver[4], ' ');
487 if (! fromserver)
488 {
489 strcpy (pop_error,
490 "Badly formatted response from server in pop_list");
491 pop_trash (server);
492 free ((char *) *IDs);
493 free ((char *) *sizes);
494 return (-1);
495 }
496 (*sizes)[0] = atoi (fromserver);
497 (*IDs)[1] = (*sizes)[1] = 0;
498 return (0);
499 }
500 else
501 {
502 if (pop_multi_first (server, "LIST", &fromserver))
503 {
504 free ((char *) *IDs);
505 free ((char *) *sizes);
506 return (-1);
507 }
508 for (i = 0; i < how_many; i++)
509 {
d89d0243 510 if (pop_multi_next (server, &fromserver) <= 0)
9c0f2dac
RS
511 {
512 free ((char *) *IDs);
513 free ((char *) *sizes);
514 return (-1);
515 }
516 (*IDs)[i] = atoi (fromserver);
517 fromserver = index (fromserver, ' ');
518 if (! fromserver)
519 {
520 strcpy (pop_error,
521 "Badly formatted response from server in pop_list");
522 free ((char *) *IDs);
523 free ((char *) *sizes);
524 pop_trash (server);
525 return (-1);
526 }
527 (*sizes)[i] = atoi (fromserver);
528 }
d89d0243 529 if (pop_multi_next (server, &fromserver) < 0)
9c0f2dac
RS
530 {
531 free ((char *) *IDs);
532 free ((char *) *sizes);
533 return (-1);
534 }
535 else if (fromserver)
536 {
537 strcpy (pop_error,
538 "Too many response lines from server in pop_list");
539 free ((char *) *IDs);
540 free ((char *) *sizes);
541 return (-1);
542 }
543 (*IDs)[i] = (*sizes)[i] = 0;
544 return (0);
545 }
546}
547
548/*
549 * Function: pop_retrieve
550 *
551 * Purpose: Retrieve a specified message from the maildrop.
552 *
553 * Arguments:
554 * server The server to retrieve from.
555 * message The message number to retrieve.
556 * markfrom
557 * If true, then mark the string "From " at the beginning
558 * of lines with '>'.
d89d0243
KH
559 * msg_buf Output parameter to which a buffer containing the
560 * message is assigned.
9c0f2dac 561 *
d89d0243
KH
562 * Return value: The number of bytes in msg_buf, which may contain
563 * embedded nulls, not including its final null, or -1 on error
564 * with pop_error set.
9c0f2dac
RS
565 *
566 * Side effects: May kill connection on error.
567 */
d89d0243
KH
568int
569pop_retrieve (server, message, markfrom, msg_buf)
9c0f2dac
RS
570 popserver server;
571 int message;
572 int markfrom;
d89d0243 573 char **msg_buf;
9c0f2dac
RS
574{
575 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0;
576 char *ptr, *fromserver;
577 int ret;
578
579 if (server->in_multi)
580 {
581 strcpy (pop_error, "In multi-line query in pop_retrieve");
d89d0243 582 return (-1);
9c0f2dac
RS
583 }
584
585 if (pop_list (server, message, &IDs, &sizes))
d89d0243 586 return (-1);
9c0f2dac
RS
587
588 if (pop_retrieve_first (server, message, &fromserver))
589 {
d89d0243 590 return (-1);
9c0f2dac
RS
591 }
592
593 /*
594 * The "5" below is an arbitrary constant -- I assume that if
595 * there are "From" lines in the text to be marked, there
596 * probably won't be more than 5 of them. If there are, I
597 * allocate more space for them below.
598 */
599 bufsize = sizes[0] + (markfrom ? 5 : 0);
7d665945 600 ptr = (char *)malloc (bufsize);
9c0f2dac
RS
601 free ((char *) IDs);
602 free ((char *) sizes);
603
604 if (! ptr)
605 {
606 strcpy (pop_error, "Out of memory in pop_retrieve");
607 pop_retrieve_flush (server);
d89d0243 608 return (-1);
9c0f2dac
RS
609 }
610
d89d0243 611 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0)
9c0f2dac 612 {
9c0f2dac
RS
613 if (! fromserver)
614 {
615 ptr[cp] = '\0';
d89d0243
KH
616 *msg_buf = ptr;
617 return (cp);
9c0f2dac
RS
618 }
619 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' &&
620 fromserver[2] == 'o' && fromserver[3] == 'm' &&
621 fromserver[4] == ' ')
622 {
623 if (++fromcount == 5)
624 {
625 bufsize += 5;
7d665945 626 ptr = (char *)realloc (ptr, bufsize);
9c0f2dac
RS
627 if (! ptr)
628 {
629 strcpy (pop_error, "Out of memory in pop_retrieve");
630 pop_retrieve_flush (server);
d89d0243 631 return (-1);
9c0f2dac
RS
632 }
633 fromcount = 0;
634 }
635 ptr[cp++] = '>';
636 }
d89d0243
KH
637 bcopy (fromserver, &ptr[cp], ret);
638 cp += ret;
9c0f2dac
RS
639 ptr[cp++] = '\n';
640 }
641
d89d0243
KH
642 free (ptr);
643 return (-1);
9c0f2dac
RS
644}
645
646int
647pop_retrieve_first (server, message, response)
648 popserver server;
649 int message;
650 char **response;
651{
652 sprintf (pop_error, "RETR %d", message);
653 return (pop_multi_first (server, pop_error, response));
654}
655
d89d0243
KH
656/*
657 Returns a negative number on error, 0 to indicate that the data has
658 all been read (i.e., the server has returned a "." termination
659 line), or a positive number indicating the number of bytes in the
660 returned buffer (which is null-terminated and may contain embedded
661 nulls, but the returned bytecount doesn't include the final null).
662 */
663
9c0f2dac
RS
664int
665pop_retrieve_next (server, line)
666 popserver server;
667 char **line;
668{
669 return (pop_multi_next (server, line));
670}
671
672int
673pop_retrieve_flush (server)
674 popserver server;
675{
676 return (pop_multi_flush (server));
677}
678
679int
680pop_top_first (server, message, lines, response)
681 popserver server;
682 int message, lines;
683 char **response;
684{
685 sprintf (pop_error, "TOP %d %d", message, lines);
686 return (pop_multi_first (server, pop_error, response));
687}
688
d89d0243
KH
689/*
690 Returns a negative number on error, 0 to indicate that the data has
691 all been read (i.e., the server has returned a "." termination
692 line), or a positive number indicating the number of bytes in the
693 returned buffer (which is null-terminated and may contain embedded
694 nulls, but the returned bytecount doesn't include the final null).
695 */
696
9c0f2dac
RS
697int
698pop_top_next (server, line)
699 popserver server;
700 char **line;
701{
702 return (pop_multi_next (server, line));
703}
704
705int
706pop_top_flush (server)
707 popserver server;
708{
709 return (pop_multi_flush (server));
710}
711
712int
713pop_multi_first (server, command, response)
714 popserver server;
715 char *command;
716 char **response;
717{
718 if (server->in_multi)
719 {
720 strcpy (pop_error,
721 "Already in multi-line query in pop_multi_first");
722 return (-1);
723 }
724
60b0a379 725 if (sendline (server, command) || (pop_getline (server, response) < 0))
9c0f2dac
RS
726 {
727 return (-1);
728 }
729
730 if (0 == strncmp (*response, "-ERR", 4))
731 {
732 strncpy (pop_error, *response, ERROR_MAX);
733 return (-1);
734 }
735 else if (0 == strncmp (*response, "+OK", 3))
736 {
737 for (*response += 3; **response == ' '; (*response)++) /* empty */;
738 server->in_multi = 1;
739 return (0);
740 }
741 else
742 {
743 strcpy (pop_error,
744 "Unexpected response from server in pop_multi_first");
745 return (-1);
746 }
747}
748
d89d0243
KH
749/*
750 Read the next line of data from SERVER and place a pointer to it
751 into LINE. Return -1 on error, 0 if there are no more lines to read
752 (i.e., the server has returned a line containing only "."), or a
753 positive number indicating the number of bytes in the LINE buffer
754 (not including the final null). The data in that buffer may contain
755 embedded nulls, but does not contain the final CRLF. When returning
756 0, LINE is set to null. */
757
9c0f2dac
RS
758int
759pop_multi_next (server, line)
760 popserver server;
761 char **line;
762{
763 char *fromserver;
d89d0243 764 int ret;
9c0f2dac
RS
765
766 if (! server->in_multi)
767 {
768 strcpy (pop_error, "Not in multi-line query in pop_multi_next");
769 return (-1);
770 }
771
60b0a379 772 if ((ret = pop_getline (server, &fromserver)) < 0)
9c0f2dac
RS
773 {
774 return (-1);
775 }
776
777 if (fromserver[0] == '.')
778 {
779 if (! fromserver[1])
780 {
781 *line = 0;
782 server->in_multi = 0;
783 return (0);
784 }
785 else
786 {
787 *line = fromserver + 1;
d89d0243 788 return (ret - 1);
9c0f2dac
RS
789 }
790 }
791 else
792 {
793 *line = fromserver;
d89d0243 794 return (ret);
9c0f2dac
RS
795 }
796}
797
798int
799pop_multi_flush (server)
800 popserver server;
801{
802 char *line;
d89d0243 803 int ret;
9c0f2dac
RS
804
805 if (! server->in_multi)
806 {
807 return (0);
808 }
809
d89d0243 810 while ((ret = pop_multi_next (server, &line)))
9c0f2dac 811 {
d89d0243
KH
812 if (ret < 0)
813 return (-1);
9c0f2dac
RS
814 }
815
d89d0243 816 return (0);
9c0f2dac
RS
817}
818
819/* Function: pop_delete
820 *
821 * Purpose: Delete a specified message.
822 *
823 * Arguments:
824 * server Server from which to delete the message.
825 * message Message to delete.
826 *
827 * Return value: 0 on success, non-zero with error in pop_error
828 * otherwise.
829 */
830int
831pop_delete (server, message)
832 popserver server;
833 int message;
834{
835 if (server->in_multi)
836 {
837 strcpy (pop_error, "In multi-line query in pop_delete");
838 return (-1);
839 }
840
841 sprintf (pop_error, "DELE %d", message);
842
843 if (sendline (server, pop_error) || getok (server))
844 return (-1);
845
846 return (0);
847}
848
849/*
850 * Function: pop_noop
851 *
852 * Purpose: Send a noop command to the server.
853 *
854 * Argument:
855 * server The server to send to.
856 *
857 * Return value: 0 on success, non-zero with error in pop_error
858 * otherwise.
859 *
860 * Side effects: Closes connection on error.
861 */
862int
863pop_noop (server)
864 popserver server;
865{
866 if (server->in_multi)
867 {
868 strcpy (pop_error, "In multi-line query in pop_noop");
869 return (-1);
870 }
871
872 if (sendline (server, "NOOP") || getok (server))
873 return (-1);
874
875 return (0);
876}
877
878/*
879 * Function: pop_last
880 *
881 * Purpose: Find out the highest seen message from the server.
882 *
883 * Arguments:
884 * server The server.
885 *
886 * Return value: If successful, the highest seen message, which is
887 * greater than or equal to 0. Otherwise, a negative number with
888 * the error explained in pop_error.
889 *
890 * Side effects: Closes the connection on error.
891 */
892int
893pop_last (server)
894 popserver server;
895{
896 char *fromserver;
897
898 if (server->in_multi)
899 {
900 strcpy (pop_error, "In multi-line query in pop_last");
901 return (-1);
902 }
903
904 if (sendline (server, "LAST"))
905 return (-1);
906
60b0a379 907 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
908 return (-1);
909
910 if (! strncmp (fromserver, "-ERR", 4))
911 {
912 strncpy (pop_error, fromserver, ERROR_MAX);
913 return (-1);
914 }
915 else if (strncmp (fromserver, "+OK ", 4))
916 {
917 strcpy (pop_error, "Unexpected response from server in pop_last");
918 pop_trash (server);
919 return (-1);
920 }
921 else
922 {
923 return (atoi (&fromserver[4]));
924 }
925}
926
927/*
928 * Function: pop_reset
929 *
930 * Purpose: Reset the server to its initial connect state
931 *
932 * Arguments:
933 * server The server.
934 *
935 * Return value: 0 for success, non-0 with error in pop_error
936 * otherwise.
937 *
938 * Side effects: Closes the connection on error.
939 */
940int
941pop_reset (server)
942 popserver server;
943{
944 if (pop_retrieve_flush (server))
945 {
946 return (-1);
947 }
948
949 if (sendline (server, "RSET") || getok (server))
950 return (-1);
951
952 return (0);
953}
954
955/*
956 * Function: pop_quit
957 *
958 * Purpose: Quit the connection to the server,
959 *
960 * Arguments:
961 * server The server to quit.
962 *
963 * Return value: 0 for success, non-zero otherwise with error in
964 * pop_error.
965 *
8e6208c5 966 * Side Effects: The popserver passed in is unusable after this
9c0f2dac
RS
967 * function is called, even if an error occurs.
968 */
969int
970pop_quit (server)
971 popserver server;
972{
973 int ret = 0;
974
975 if (server->file >= 0)
976 {
977 if (pop_retrieve_flush (server))
978 {
979 ret = -1;
980 }
981
982 if (sendline (server, "QUIT") || getok (server))
983 {
984 ret = -1;
985 }
986
987 close (server->file);
988 }
989
990 if (server->buffer)
991 free (server->buffer);
992 free ((char *) server);
993
994 return (ret);
995}
996
c2668a61
RS
997#ifdef WINDOWSNT
998static int have_winsock = 0;
999#endif
1000
9c0f2dac
RS
1001/*
1002 * Function: socket_connection
1003 *
1004 * Purpose: Opens the network connection with the mail host, without
1005 * doing any sort of I/O with it or anything.
1006 *
1007 * Arguments:
1008 * host The host to which to connect.
1009 * flags Option flags.
1010 *
1011 * Return value: A file descriptor indicating the connection, or -1
1012 * indicating failure, in which case an error has been copied
1013 * into pop_error.
1014 */
1015static int
1016socket_connection (host, flags)
1017 char *host;
1018 int flags;
1019{
1020 struct hostent *hostent;
1021 struct servent *servent;
1022 struct sockaddr_in addr;
1023 char found_port = 0;
1024 char *service;
1025 int sock;
1026#ifdef KERBEROS
a27738b6 1027#ifdef KERBEROS5
9c0f2dac 1028 krb5_error_code rem;
a27738b6
RS
1029 krb5_context kcontext = 0;
1030 krb5_auth_context auth_context = 0;
9c0f2dac
RS
1031 krb5_ccache ccdef;
1032 krb5_principal client, server;
1033 krb5_error *err_ret;
1034 register char *cp;
1035#else
1036 KTEXT ticket;
1037 MSG_DAT msg_data;
1038 CREDENTIALS cred;
1039 Key_schedule schedule;
1040 int rem;
51a66525 1041 char *realhost;
a27738b6 1042#endif /* KERBEROS5 */
9c0f2dac
RS
1043#endif /* KERBEROS */
1044
1045 int try_count = 0;
1046
c2668a61
RS
1047#ifdef WINDOWSNT
1048 {
1049 WSADATA winsockData;
1050 if (WSAStartup (0x101, &winsockData) == 0)
1051 have_winsock = 1;
1052 }
1053#endif
1054
9c0f2dac
RS
1055 do
1056 {
1057 hostent = gethostbyname (host);
1058 try_count++;
1059 if ((! hostent) && ((h_errno != TRY_AGAIN) || (try_count == 5)))
1060 {
1061 strcpy (pop_error, "Could not determine POP server's address");
1062 return (-1);
1063 }
1064 } while (! hostent);
1065
1066 bzero ((char *) &addr, sizeof (addr));
1067 addr.sin_family = AF_INET;
1068
1069#ifdef KERBEROS
1070 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE;
1071#else
1072 service = POP_SERVICE;
1073#endif
1074
1075#ifdef HESIOD
1076 if (! (flags & POP_NO_HESIOD))
1077 {
1078 servent = hes_getservbyname (service, "tcp");
1079 if (servent)
1080 {
1081 addr.sin_port = servent->s_port;
1082 found_port = 1;
1083 }
1084 }
1085#endif
1086 if (! found_port)
1087 {
1088 servent = getservbyname (service, "tcp");
1089 if (servent)
1090 {
1091 addr.sin_port = servent->s_port;
1092 }
1093 else
1094 {
1095#ifdef KERBEROS
1096 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ?
1097 POP_PORT : KPOP_PORT);
1098#else
1099 addr.sin_port = htons (POP_PORT);
1100#endif
1101 }
1102 }
1103
a27738b6 1104#define POP_SOCKET_ERROR "Could not create socket for POP connection: "
9c0f2dac
RS
1105
1106 sock = socket (PF_INET, SOCK_STREAM, 0);
1107 if (sock < 0)
1108 {
a27738b6 1109 strcpy (pop_error, POP_SOCKET_ERROR);
9c0f2dac 1110 strncat (pop_error, strerror (errno),
a27738b6 1111 ERROR_MAX - sizeof (POP_SOCKET_ERROR));
9c0f2dac
RS
1112 return (-1);
1113
1114 }
1115
1116 while (*hostent->h_addr_list)
1117 {
1118 bcopy (*hostent->h_addr_list, (char *) &addr.sin_addr,
1119 hostent->h_length);
1120 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr)))
1121 break;
1122 hostent->h_addr_list++;
1123 }
1124
1125#define CONNECT_ERROR "Could not connect to POP server: "
1126
1127 if (! *hostent->h_addr_list)
1128 {
de5c39cf 1129 CLOSESOCKET (sock);
9c0f2dac
RS
1130 strcpy (pop_error, CONNECT_ERROR);
1131 strncat (pop_error, strerror (errno),
1132 ERROR_MAX - sizeof (CONNECT_ERROR));
1133 return (-1);
1134
1135 }
1136
1137#ifdef KERBEROS
1138#define KRB_ERROR "Kerberos error connecting to POP server: "
1139 if (! (flags & POP_NO_KERBEROS))
1140 {
a27738b6
RS
1141#ifdef KERBEROS5
1142 if ((rem = krb5_init_context (&kcontext)))
9c0f2dac
RS
1143 {
1144 krb5error:
a27738b6
RS
1145 if (auth_context)
1146 krb5_auth_con_free (kcontext, auth_context);
1147 if (kcontext)
1148 krb5_free_context (kcontext);
9c0f2dac
RS
1149 strcpy (pop_error, KRB_ERROR);
1150 strncat (pop_error, error_message (rem),
1151 ERROR_MAX - sizeof(KRB_ERROR));
de5c39cf 1152 CLOSESOCKET (sock);
9c0f2dac
RS
1153 return (-1);
1154 }
1155
a27738b6
RS
1156 if ((rem = krb5_auth_con_init (kcontext, &auth_context)))
1157 goto krb5error;
1158
1159 if (rem = krb5_cc_default (kcontext, &ccdef))
1160 goto krb5error;
1161
1162 if (rem = krb5_cc_get_principal (kcontext, ccdef, &client))
1163 goto krb5error;
9c0f2dac
RS
1164
1165 for (cp = hostent->h_name; *cp; cp++)
1166 {
1167 if (isupper (*cp))
1168 {
1169 *cp = tolower (*cp);
1170 }
1171 }
1172
a27738b6
RS
1173 if (rem = krb5_sname_to_principal (kcontext, hostent->h_name,
1174 POP_SERVICE, FALSE, &server))
1175 goto krb5error;
9c0f2dac 1176
a27738b6
RS
1177 rem = krb5_sendauth (kcontext, &auth_context,
1178 (krb5_pointer) &sock, "KPOPV1.0", client, server,
9c0f2dac
RS
1179 AP_OPTS_MUTUAL_REQUIRED,
1180 0, /* no checksum */
1181 0, /* no creds, use ccache instead */
1182 ccdef,
9c0f2dac 1183 &err_ret,
a27738b6 1184 0, /* don't need subsession key */
9c0f2dac 1185 0); /* don't need reply */
a27738b6 1186 krb5_free_principal (kcontext, server);
9c0f2dac
RS
1187 if (rem)
1188 {
1189 if (err_ret && err_ret->text.length)
1190 {
1191 strcpy (pop_error, KRB_ERROR);
1192 strncat (pop_error, error_message (rem),
1193 ERROR_MAX - sizeof (KRB_ERROR));
1194 strncat (pop_error, " [server says '",
1195 ERROR_MAX - strlen (pop_error) - 1);
1196 strncat (pop_error, err_ret->text.data,
1197 min (ERROR_MAX - strlen (pop_error) - 1,
1198 err_ret->text.length));
1199 strncat (pop_error, "']",
1200 ERROR_MAX - strlen (pop_error) - 1);
1201 }
1202 else
1203 {
1204 strcpy (pop_error, KRB_ERROR);
1205 strncat (pop_error, error_message (rem),
1206 ERROR_MAX - sizeof (KRB_ERROR));
1207 }
1208 if (err_ret)
a27738b6
RS
1209 krb5_free_error (kcontext, err_ret);
1210 krb5_auth_con_free (kcontext, auth_context);
1211 krb5_free_context (kcontext);
9c0f2dac 1212
de5c39cf 1213 CLOSESOCKET (sock);
9c0f2dac
RS
1214 return (-1);
1215 }
a27738b6 1216#else /* ! KERBEROS5 */
9c0f2dac 1217 ticket = (KTEXT) malloc (sizeof (KTEXT_ST));
51a66525
CH
1218 realhost = strdup (hostent->h_name);
1219 rem = krb_sendauth (0L, sock, ticket, "pop", realhost,
1220 (char *) krb_realmofhost (realhost),
9c0f2dac
RS
1221 (unsigned long) 0, &msg_data, &cred, schedule,
1222 (struct sockaddr_in *) 0,
1223 (struct sockaddr_in *) 0,
1224 "KPOPV0.1");
1225 free ((char *) ticket);
6a7eabe0 1226 free (realhost);
9c0f2dac
RS
1227 if (rem != KSUCCESS)
1228 {
1229 strcpy (pop_error, KRB_ERROR);
1230 strncat (pop_error, krb_err_txt[rem],
1231 ERROR_MAX - sizeof (KRB_ERROR));
de5c39cf 1232 CLOSESOCKET (sock);
9c0f2dac
RS
1233 return (-1);
1234 }
a27738b6 1235#endif /* KERBEROS5 */
9c0f2dac
RS
1236 }
1237#endif /* KERBEROS */
1238
1239 return (sock);
1240} /* socket_connection */
1241
1242/*
60b0a379 1243 * Function: pop_getline
9c0f2dac
RS
1244 *
1245 * Purpose: Get a line of text from the connection and return a
1246 * pointer to it. The carriage return and linefeed at the end of
1247 * the line are stripped, but periods at the beginnings of lines
1248 * are NOT dealt with in any special way.
1249 *
1250 * Arguments:
1251 * server The server from which to get the line of text.
1252 *
d89d0243
KH
1253 * Returns: The number of characters in the line, which is returned in
1254 * LINE, not including the final null. A return value of 0
1255 * indicates a blank line. A negative return value indicates an
1256 * error (in which case the contents of LINE are undefined. In
1257 * case of error, an error message is copied into pop_error.
9c0f2dac 1258 *
60b0a379 1259 * Notes: The line returned is overwritten with each call to pop_getline.
9c0f2dac
RS
1260 *
1261 * Side effects: Closes the connection on error.
d89d0243
KH
1262 *
1263 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS!
9c0f2dac 1264 */
d89d0243 1265static int
60b0a379 1266pop_getline (server, line)
9c0f2dac 1267 popserver server;
d89d0243 1268 char **line;
9c0f2dac
RS
1269{
1270#define GETLINE_ERROR "Error reading from server: "
1271
1272 int ret;
b6606ad8
RS
1273 int search_offset = 0;
1274
9c0f2dac
RS
1275 if (server->data)
1276 {
d89d0243
KH
1277 char *cp = find_crlf (server->buffer + server->buffer_index,
1278 server->data);
9c0f2dac
RS
1279 if (cp)
1280 {
1281 int found;
1282 int data_used;
1283
1284 found = server->buffer_index;
1285 data_used = (cp + 2) - server->buffer - found;
1286
1287 *cp = '\0'; /* terminate the string to be returned */
1288 server->data -= data_used;
1289 server->buffer_index += data_used;
1290
1291 if (pop_debug)
d89d0243
KH
1292 /* Embedded nulls will truncate this output prematurely,
1293 but that's OK because it's just for debugging anyway. */
9c0f2dac 1294 fprintf (stderr, "<<< %s\n", server->buffer + found);
d89d0243
KH
1295 *line = server->buffer + found;
1296 return (data_used - 2);
9c0f2dac
RS
1297 }
1298 else
1299 {
1300 bcopy (server->buffer + server->buffer_index,
1301 server->buffer, server->data);
b6606ad8
RS
1302 /* Record the fact that we've searched the data already in
1303 the buffer for a CRLF, so that when we search below, we
1304 don't have to search the same data twice. There's a "-
1305 1" here to account for the fact that the last character
1306 of the data we have may be the CR of a CRLF pair, of
1307 which we haven't read the second half yet, so we may have
1308 to search it again when we read more data. */
1309 search_offset = server->data - 1;
9c0f2dac
RS
1310 server->buffer_index = 0;
1311 }
1312 }
1313 else
1314 {
1315 server->buffer_index = 0;
1316 }
1317
1318 while (1)
1319 {
bbcac09c
RS
1320 /* There's a "- 1" here to leave room for the null that we put
1321 at the end of the read data below. We put the null there so
1322 that find_crlf knows where to stop when we call it. */
1323 if (server->data == server->buffer_size - 1)
9c0f2dac 1324 {
bbcac09c
RS
1325 server->buffer_size += GETLINE_INCR;
1326 server->buffer = (char *)realloc (server->buffer, server->buffer_size);
1327 if (! server->buffer)
9c0f2dac 1328 {
bbcac09c
RS
1329 strcpy (pop_error, "Out of memory in pop_getline");
1330 pop_trash (server);
1331 return (-1);
0ea95737 1332 }
0ea95737 1333 }
bbcac09c
RS
1334 ret = RECV (server->file, server->buffer + server->data,
1335 server->buffer_size - server->data - 1, 0);
9c0f2dac
RS
1336 if (ret < 0)
1337 {
1338 strcpy (pop_error, GETLINE_ERROR);
1339 strncat (pop_error, strerror (errno),
1340 ERROR_MAX - sizeof (GETLINE_ERROR));
1341 pop_trash (server);
d89d0243 1342 return (-1);
9c0f2dac
RS
1343 }
1344 else if (ret == 0)
1345 {
60b0a379 1346 strcpy (pop_error, "Unexpected EOF from server in pop_getline");
9c0f2dac 1347 pop_trash (server);
d89d0243 1348 return (-1);
9c0f2dac
RS
1349 }
1350 else
1351 {
7a481e50 1352 char *cp;
9c0f2dac 1353 server->data += ret;
7a481e50 1354 server->buffer[server->data] = '\0';
9c0f2dac 1355
d89d0243
KH
1356 cp = find_crlf (server->buffer + search_offset,
1357 server->data - search_offset);
9c0f2dac
RS
1358 if (cp)
1359 {
1360 int data_used = (cp + 2) - server->buffer;
1361 *cp = '\0';
1362 server->data -= data_used;
1363 server->buffer_index = data_used;
1364
1365 if (pop_debug)
1366 fprintf (stderr, "<<< %s\n", server->buffer);
d89d0243
KH
1367 *line = server->buffer;
1368 return (data_used - 2);
9c0f2dac 1369 }
a8f44d07
RS
1370 /* As above, the "- 1" here is to account for the fact that
1371 we may have read a CR without its accompanying LF. */
1372 search_offset += ret - 1;
9c0f2dac
RS
1373 }
1374 }
1375
1376 /* NOTREACHED */
1377}
1378
1379/*
1380 * Function: sendline
1381 *
1382 * Purpose: Sends a line of text to the POP server. The line of text
1383 * passed into this function should NOT have the carriage return
1384 * and linefeed on the end of it. Periods at beginnings of lines
1385 * will NOT be treated specially by this function.
1386 *
1387 * Arguments:
1388 * server The server to which to send the text.
1389 * line The line of text to send.
1390 *
1391 * Return value: Upon successful completion, a value of 0 will be
1392 * returned. Otherwise, a non-zero value will be returned, and
1393 * an error will be copied into pop_error.
1394 *
1395 * Side effects: Closes the connection on error.
1396 */
1397static int
1398sendline (server, line)
1399 popserver server;
1400 char *line;
1401{
1402#define SENDLINE_ERROR "Error writing to POP server: "
1403 int ret;
1404
bbcac09c
RS
1405 ret = fullwrite (server->file, line, strlen (line));
1406 if (ret >= 0)
1407 { /* 0 indicates that a blank line was written */
1408 ret = fullwrite (server->file, "\r\n", 2);
9c0f2dac
RS
1409 }
1410
1411 if (ret < 0)
1412 {
1413 pop_trash (server);
1414 strcpy (pop_error, SENDLINE_ERROR);
1415 strncat (pop_error, strerror (errno),
1416 ERROR_MAX - sizeof (SENDLINE_ERROR));
1417 return (ret);
1418 }
1419
1420 if (pop_debug)
1421 fprintf (stderr, ">>> %s\n", line);
1422
1423 return (0);
1424}
1425
1426/*
1427 * Procedure: fullwrite
1428 *
1429 * Purpose: Just like write, but keeps trying until the entire string
1430 * has been written.
1431 *
1432 * Return value: Same as write. Pop_error is not set.
1433 */
1434static int
1435fullwrite (fd, buf, nbytes)
1436 int fd;
1437 char *buf;
1438 int nbytes;
1439{
1440 char *cp;
9d3f4cee 1441 int ret = 0;
9c0f2dac
RS
1442
1443 cp = buf;
9d3f4cee 1444 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0))
9c0f2dac
RS
1445 {
1446 cp += ret;
1447 nbytes -= ret;
1448 }
1449
1450 return (ret);
1451}
1452
1453/*
1454 * Procedure getok
1455 *
1456 * Purpose: Reads a line from the server. If the return indicator is
1457 * positive, return with a zero exit status. If not, return with
1458 * a negative exit status.
1459 *
1460 * Arguments:
1461 * server The server to read from.
1462 *
1463 * Returns: 0 for success, else for failure and puts error in pop_error.
1464 *
8e6208c5 1465 * Side effects: On failure, may make the connection unusable.
9c0f2dac
RS
1466 */
1467static int
1468getok (server)
1469 popserver server;
1470{
1471 char *fromline;
1472
60b0a379 1473 if (pop_getline (server, &fromline) < 0)
9c0f2dac
RS
1474 {
1475 return (-1);
1476 }
1477
1478 if (! strncmp (fromline, "+OK", 3))
1479 return (0);
1480 else if (! strncmp (fromline, "-ERR", 4))
1481 {
1482 strncpy (pop_error, fromline, ERROR_MAX);
1483 pop_error[ERROR_MAX-1] = '\0';
1484 return (-1);
1485 }
1486 else
1487 {
1488 strcpy (pop_error,
1489 "Unexpected response from server; expecting +OK or -ERR");
1490 pop_trash (server);
1491 return (-1);
1492 }
1493}
1494
1495#if 0
1496/*
1497 * Function: gettermination
1498 *
1499 * Purpose: Gets the next line and verifies that it is a termination
1500 * line (nothing but a dot).
1501 *
1502 * Return value: 0 on success, non-zero with pop_error set on error.
1503 *
1504 * Side effects: Closes the connection on error.
1505 */
1506static int
1507gettermination (server)
1508 popserver server;
1509{
1510 char *fromserver;
1511
60b0a379 1512 if (pop_getline (server, &fromserver) < 0)
9c0f2dac
RS
1513 return (-1);
1514
1515 if (strcmp (fromserver, "."))
1516 {
1517 strcpy (pop_error,
1518 "Unexpected response from server in gettermination");
1519 pop_trash (server);
1520 return (-1);
1521 }
1522
1523 return (0);
1524}
1525#endif
1526
1527/*
1528 * Function pop_close
1529 *
1530 * Purpose: Close a pop connection, sending a "RSET" command to try to
1531 * preserve any changes that were made and a "QUIT" command to
1532 * try to get the server to quit, but ignoring any responses that
1533 * are received.
1534 *
8e6208c5 1535 * Side effects: The server is unusable after this function returns.
9c0f2dac
RS
1536 * Changes made to the maildrop since the session was started (or
1537 * since the last pop_reset) may be lost.
1538 */
1539void
1540pop_close (server)
1541 popserver server;
1542{
1543 pop_trash (server);
1544 free ((char *) server);
1545
1546 return;
1547}
1548
1549/*
1550 * Function: pop_trash
1551 *
1552 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1553 * memory associated with the server. It is legal to call
1554 * pop_close or pop_quit after this function has been called.
1555 */
1556static void
1557pop_trash (server)
1558 popserver server;
1559{
1560 if (server->file >= 0)
1561 {
c2668a61
RS
1562 /* avoid recursion; sendline can call pop_trash */
1563 if (server->trash_started)
1564 return;
1565 server->trash_started = 1;
de5c39cf 1566
9c0f2dac
RS
1567 sendline (server, "RSET");
1568 sendline (server, "QUIT");
1569
de5c39cf 1570 CLOSESOCKET (server->file);
9c0f2dac
RS
1571 server->file = -1;
1572 if (server->buffer)
1573 {
1574 free (server->buffer);
1575 server->buffer = 0;
1576 }
1577 }
c2668a61
RS
1578
1579#ifdef WINDOWSNT
1580 if (have_winsock)
1581 WSACleanup ();
1582#endif
9c0f2dac
RS
1583}
1584
d89d0243
KH
1585/* Return a pointer to the first CRLF in IN_STRING, which can contain
1586 embedded nulls and has LEN characters in it not including the final
1587 null, or 0 if it does not contain one. */
9c0f2dac
RS
1588
1589static char *
d89d0243 1590find_crlf (in_string, len)
8148baf9 1591 char *in_string;
d89d0243 1592 int len;
9c0f2dac 1593{
d89d0243 1594 while (len--)
9c0f2dac 1595 {
d89d0243 1596 if (*in_string == '\r')
8148baf9
RS
1597 {
1598 if (*++in_string == '\n')
1599 return (in_string - 1);
1600 }
1601 else
1602 in_string++;
9c0f2dac 1603 }
d89d0243 1604 return (0);
9c0f2dac
RS
1605}
1606
1607#endif /* MAIL_USE_POP */