1 /* pop.c: client routines for talking to a POP3-protocol post-office server
2 Copyright (c) 1991, 1993, 1996 Free Software Foundation, Inc.
3 Written by Jonathan Kamens, jik@security.ov.com.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #define NO_SHORTNAMES /* Tell config not to load remap.h */
24 #include <../src/config.h>
32 /* Cancel these substitutions made in config.h */
39 #include <sys/types.h>
44 #define RECV(s,buf,len,flags) recv(s,buf,len,flags)
45 #define SEND(s,buf,len,flags) send(s,buf,len,flags)
46 #define CLOSESOCKET(s) closesocket(s)
48 #include <netinet/in.h>
49 #include <sys/socket.h>
50 #define RECV(s,buf,len,flags) read(s,buf,len)
51 #define SEND(s,buf,len,flags) write(s,buf,len)
52 #define CLOSESOCKET(s) close(s)
63 * It really shouldn't be necessary to put this declaration here, but
64 * the version of hesiod.h that Athena has installed in release 7.2
65 * doesn't declare this function; I don't know if the 7.3 version of
68 extern struct servent
*hes_getservbyname (/* char *, char * */);
82 #include <kerberos/des.h>
83 #include <kerberos/krb.h>
86 #include <krb5/krb5.h>
87 #include <krb5/ext-proto.h>
92 extern char *getenv (/* char * */);
93 extern char *getlogin (/* void */);
94 extern char *getpass (/* char * */);
95 extern char *strerror (/* int */);
96 extern char *index ();
100 extern int krb_sendauth (/* long, int, KTEXT, char *, char *, char *,
101 u_long, MSG_DAT *, CREDENTIALS *, Key_schedule,
102 struct sockaddr_in *, struct sockaddr_in *,
104 extern char *krb_realmofhost (/* char * */);
106 #endif /* KERBEROS */
109 #if !defined(HAVE_H_ERRNO) || !defined(HAVE_CONFIG_H)
114 static int socket_connection (/* char *, int */);
115 static char *getline (/* popserver */);
116 static int sendline (/* popserver, char * */);
117 static int fullwrite (/* int, char *, int */);
118 static int getok (/* popserver */);
120 static int gettermination (/* popserver */);
122 static void pop_trash (/* popserver */);
123 static char *find_crlf (/* char * */);
125 #define ERROR_MAX 80 /* a pretty arbitrary size */
127 #define KPOP_PORT 1109
129 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */
131 #define POP_SERVICE "pop"
135 #define KPOP_SERVICE "k5pop";
137 #define KPOP_SERVICE "kpop"
141 char pop_error
[ERROR_MAX
];
145 #define min(a,b) (((a) < (b)) ? (a) : (b))
149 * Function: pop_open (char *host, char *username, char *password,
152 * Purpose: Establishes a connection with a post-office server, and
153 * completes the authorization portion of the session.
156 * host The server host with which the connection should be
157 * established. Optional. If omitted, internal
158 * heuristics will be used to determine the server host,
161 * The username of the mail-drop to access. Optional.
162 * If omitted, internal heuristics will be used to
163 * determine the username, if possible.
165 * The password to use for authorization. If omitted,
166 * internal heuristics will be used to determine the
167 * password, if possible.
168 * flags A bit mask containing flags controlling certain
169 * functions of the routine. Valid flags are defined in
172 * Return value: Upon successful establishment of a connection, a
173 * non-null popserver will be returned. Otherwise, null will be
174 * returned, and the string variable pop_error will contain an
175 * explanation of the error.
178 pop_open (host
, username
, password
, flags
)
187 /* Determine the user name */
190 username
= getenv ("USER");
191 if (! (username
&& *username
))
193 username
= getlogin ();
194 if (! (username
&& *username
))
196 struct passwd
*passwd
;
197 passwd
= getpwuid (getuid ());
198 if (passwd
&& passwd
->pw_name
&& *passwd
->pw_name
)
200 username
= passwd
->pw_name
;
204 strcpy (pop_error
, "Could not determine username");
212 * Determine the mail host.
217 host
= getenv ("MAILHOST");
221 if ((! host
) && (! (flags
& POP_NO_HESIOD
)))
223 struct hes_postoffice
*office
;
224 office
= hes_getmailhost (username
);
225 if (office
&& office
->po_type
&& (! strcmp (office
->po_type
, "POP"))
226 && office
->po_name
&& *office
->po_name
&& office
->po_host
229 host
= office
->po_host
;
230 username
= office
->po_name
;
244 strcpy (pop_error
, "Could not determine POP server");
248 /* Determine the password */
250 #define DONT_NEED_PASSWORD (! (flags & POP_NO_KERBEROS))
252 #define DONT_NEED_PASSWORD 0
255 if ((! password
) && (! DONT_NEED_PASSWORD
))
257 if (! (flags
& POP_NO_GETPASS
))
259 password
= getpass ("Enter POP password:");
263 strcpy (pop_error
, "Could not determine POP password");
268 flags
|= POP_NO_KERBEROS
;
272 sock
= socket_connection (host
, flags
);
276 server
= (popserver
) malloc (sizeof (struct _popserver
));
279 strcpy (pop_error
, "Out of memory in pop_open");
282 server
->buffer
= (char *) malloc (GETLINE_MIN
);
283 if (! server
->buffer
)
285 strcpy (pop_error
, "Out of memory in pop_open");
286 free ((char *) server
);
292 server
->buffer_index
= 0;
293 server
->buffer_size
= GETLINE_MIN
;
294 server
->in_multi
= 0;
295 server
->trash_started
= 0;
301 * I really shouldn't use the pop_error variable like this, but....
303 if (strlen (username
) > ERROR_MAX
- 6)
307 "Username too long; recompile pop.c with larger ERROR_MAX");
310 sprintf (pop_error
, "USER %s", username
);
312 if (sendline (server
, pop_error
) || getok (server
))
317 if (strlen (password
) > ERROR_MAX
- 6)
321 "Password too long; recompile pop.c with larger ERROR_MAX");
324 sprintf (pop_error
, "PASS %s", password
);
326 if (sendline (server
, pop_error
) || getok (server
))
337 * Purpose: Issue the STAT command to the server and return (in the
338 * value parameters) the number of messages in the maildrop and
339 * the total size of the maildrop.
341 * Return value: 0 on success, or non-zero with an error in pop_error
344 * Side effects: On failure, may make further operations on the
345 * connection impossible.
348 pop_stat (server
, count
, size
)
355 if (server
->in_multi
)
357 strcpy (pop_error
, "In multi-line query in pop_stat");
361 if (sendline (server
, "STAT") || (! (fromserver
= getline (server
))))
364 if (strncmp (fromserver
, "+OK ", 4))
366 if (0 == strncmp (fromserver
, "-ERR", 4))
368 strncpy (pop_error
, fromserver
, ERROR_MAX
);
373 "Unexpected response from POP server in pop_stat");
379 *count
= atoi (&fromserver
[4]);
381 fromserver
= index (&fromserver
[4], ' ');
385 "Badly formatted response from server in pop_stat");
390 *size
= atoi (fromserver
+ 1);
398 * Purpose: Performs the POP "list" command and returns (in value
399 * parameters) two malloc'd zero-terminated arrays -- one of
400 * message IDs, and a parallel one of sizes.
403 * server The pop connection to talk to.
404 * message The number of the one message about which to get
405 * information, or 0 to get information about all
408 * Return value: 0 on success, non-zero with error in pop_error on
411 * Side effects: On failure, may make further operations on the
412 * connection impossible.
415 pop_list (server
, message
, IDs
, sizes
)
424 if (server
->in_multi
)
426 strcpy (pop_error
, "In multi-line query in pop_list");
435 if (pop_stat (server
, &count
, &size
))
440 *IDs
= (int *) malloc ((how_many
+ 1) * sizeof (int));
441 *sizes
= (int *) malloc ((how_many
+ 1) * sizeof (int));
442 if (! (*IDs
&& *sizes
))
444 strcpy (pop_error
, "Out of memory in pop_list");
450 sprintf (pop_error
, "LIST %d", message
);
451 if (sendline (server
, pop_error
))
453 free ((char *) *IDs
);
454 free ((char *) *sizes
);
457 if (! (fromserver
= getline (server
)))
459 free ((char *) *IDs
);
460 free ((char *) *sizes
);
463 if (strncmp (fromserver
, "+OK ", 4))
465 if (! strncmp (fromserver
, "-ERR", 4))
466 strncpy (pop_error
, fromserver
, ERROR_MAX
);
470 "Unexpected response from server in pop_list");
473 free ((char *) *IDs
);
474 free ((char *) *sizes
);
477 (*IDs
)[0] = atoi (&fromserver
[4]);
478 fromserver
= index (&fromserver
[4], ' ');
482 "Badly formatted response from server in pop_list");
484 free ((char *) *IDs
);
485 free ((char *) *sizes
);
488 (*sizes
)[0] = atoi (fromserver
);
489 (*IDs
)[1] = (*sizes
)[1] = 0;
494 if (pop_multi_first (server
, "LIST", &fromserver
))
496 free ((char *) *IDs
);
497 free ((char *) *sizes
);
500 for (i
= 0; i
< how_many
; i
++)
502 if (pop_multi_next (server
, &fromserver
))
504 free ((char *) *IDs
);
505 free ((char *) *sizes
);
508 (*IDs
)[i
] = atoi (fromserver
);
509 fromserver
= index (fromserver
, ' ');
513 "Badly formatted response from server in pop_list");
514 free ((char *) *IDs
);
515 free ((char *) *sizes
);
519 (*sizes
)[i
] = atoi (fromserver
);
521 if (pop_multi_next (server
, &fromserver
))
523 free ((char *) *IDs
);
524 free ((char *) *sizes
);
530 "Too many response lines from server in pop_list");
531 free ((char *) *IDs
);
532 free ((char *) *sizes
);
535 (*IDs
)[i
] = (*sizes
)[i
] = 0;
541 * Function: pop_retrieve
543 * Purpose: Retrieve a specified message from the maildrop.
546 * server The server to retrieve from.
547 * message The message number to retrieve.
549 * If true, then mark the string "From " at the beginning
552 * Return value: A string pointing to the message, if successful, or
553 * null with pop_error set if not.
555 * Side effects: May kill connection on error.
558 pop_retrieve (server
, message
, markfrom
)
563 int *IDs
, *sizes
, bufsize
, fromcount
= 0, cp
= 0;
564 char *ptr
, *fromserver
;
567 if (server
->in_multi
)
569 strcpy (pop_error
, "In multi-line query in pop_retrieve");
573 if (pop_list (server
, message
, &IDs
, &sizes
))
576 if (pop_retrieve_first (server
, message
, &fromserver
))
582 * The "5" below is an arbitrary constant -- I assume that if
583 * there are "From" lines in the text to be marked, there
584 * probably won't be more than 5 of them. If there are, I
585 * allocate more space for them below.
587 bufsize
= sizes
[0] + (markfrom
? 5 : 0);
588 ptr
= (char *)malloc (bufsize
);
590 free ((char *) sizes
);
594 strcpy (pop_error
, "Out of memory in pop_retrieve");
595 pop_retrieve_flush (server
);
599 while (! (ret
= pop_retrieve_next (server
, &fromserver
)))
608 if (markfrom
&& fromserver
[0] == 'F' && fromserver
[1] == 'r' &&
609 fromserver
[2] == 'o' && fromserver
[3] == 'm' &&
610 fromserver
[4] == ' ')
612 if (++fromcount
== 5)
615 ptr
= (char *)realloc (ptr
, bufsize
);
618 strcpy (pop_error
, "Out of memory in pop_retrieve");
619 pop_retrieve_flush (server
);
626 linesize
= strlen (fromserver
);
627 bcopy (fromserver
, &ptr
[cp
], linesize
);
640 pop_retrieve_first (server
, message
, response
)
645 sprintf (pop_error
, "RETR %d", message
);
646 return (pop_multi_first (server
, pop_error
, response
));
650 pop_retrieve_next (server
, line
)
654 return (pop_multi_next (server
, line
));
658 pop_retrieve_flush (server
)
661 return (pop_multi_flush (server
));
665 pop_top_first (server
, message
, lines
, response
)
670 sprintf (pop_error
, "TOP %d %d", message
, lines
);
671 return (pop_multi_first (server
, pop_error
, response
));
675 pop_top_next (server
, line
)
679 return (pop_multi_next (server
, line
));
683 pop_top_flush (server
)
686 return (pop_multi_flush (server
));
690 pop_multi_first (server
, command
, response
)
695 if (server
->in_multi
)
698 "Already in multi-line query in pop_multi_first");
702 if (sendline (server
, command
) || (! (*response
= getline (server
))))
707 if (0 == strncmp (*response
, "-ERR", 4))
709 strncpy (pop_error
, *response
, ERROR_MAX
);
712 else if (0 == strncmp (*response
, "+OK", 3))
714 for (*response
+= 3; **response
== ' '; (*response
)++) /* empty */;
715 server
->in_multi
= 1;
721 "Unexpected response from server in pop_multi_first");
727 pop_multi_next (server
, line
)
733 if (! server
->in_multi
)
735 strcpy (pop_error
, "Not in multi-line query in pop_multi_next");
739 fromserver
= getline (server
);
745 if (fromserver
[0] == '.')
750 server
->in_multi
= 0;
755 *line
= fromserver
+ 1;
767 pop_multi_flush (server
)
772 if (! server
->in_multi
)
777 while (! pop_multi_next (server
, &line
))
788 /* Function: pop_delete
790 * Purpose: Delete a specified message.
793 * server Server from which to delete the message.
794 * message Message to delete.
796 * Return value: 0 on success, non-zero with error in pop_error
800 pop_delete (server
, message
)
804 if (server
->in_multi
)
806 strcpy (pop_error
, "In multi-line query in pop_delete");
810 sprintf (pop_error
, "DELE %d", message
);
812 if (sendline (server
, pop_error
) || getok (server
))
821 * Purpose: Send a noop command to the server.
824 * server The server to send to.
826 * Return value: 0 on success, non-zero with error in pop_error
829 * Side effects: Closes connection on error.
835 if (server
->in_multi
)
837 strcpy (pop_error
, "In multi-line query in pop_noop");
841 if (sendline (server
, "NOOP") || getok (server
))
850 * Purpose: Find out the highest seen message from the server.
855 * Return value: If successful, the highest seen message, which is
856 * greater than or equal to 0. Otherwise, a negative number with
857 * the error explained in pop_error.
859 * Side effects: Closes the connection on error.
867 if (server
->in_multi
)
869 strcpy (pop_error
, "In multi-line query in pop_last");
873 if (sendline (server
, "LAST"))
876 if (! (fromserver
= getline (server
)))
879 if (! strncmp (fromserver
, "-ERR", 4))
881 strncpy (pop_error
, fromserver
, ERROR_MAX
);
884 else if (strncmp (fromserver
, "+OK ", 4))
886 strcpy (pop_error
, "Unexpected response from server in pop_last");
892 return (atoi (&fromserver
[4]));
897 * Function: pop_reset
899 * Purpose: Reset the server to its initial connect state
904 * Return value: 0 for success, non-0 with error in pop_error
907 * Side effects: Closes the connection on error.
913 if (pop_retrieve_flush (server
))
918 if (sendline (server
, "RSET") || getok (server
))
927 * Purpose: Quit the connection to the server,
930 * server The server to quit.
932 * Return value: 0 for success, non-zero otherwise with error in
935 * Side Effects: The popserver passed in is unusable after this
936 * function is called, even if an error occurs.
944 if (server
->file
>= 0)
946 if (pop_retrieve_flush (server
))
951 if (sendline (server
, "QUIT") || getok (server
))
956 close (server
->file
);
960 free (server
->buffer
);
961 free ((char *) server
);
967 static int have_winsock
= 0;
971 * Function: socket_connection
973 * Purpose: Opens the network connection with the mail host, without
974 * doing any sort of I/O with it or anything.
977 * host The host to which to connect.
978 * flags Option flags.
980 * Return value: A file descriptor indicating the connection, or -1
981 * indicating failure, in which case an error has been copied
985 socket_connection (host
, flags
)
989 struct hostent
*hostent
;
990 struct servent
*servent
;
991 struct sockaddr_in addr
;
999 krb5_principal client
, server
;
1000 krb5_error
*err_ret
;
1006 Key_schedule schedule
;
1009 #endif /* KERBEROS */
1015 WSADATA winsockData
;
1016 if (WSAStartup (0x101, &winsockData
) == 0)
1023 hostent
= gethostbyname (host
);
1025 if ((! hostent
) && ((h_errno
!= TRY_AGAIN
) || (try_count
== 5)))
1027 strcpy (pop_error
, "Could not determine POP server's address");
1030 } while (! hostent
);
1032 bzero ((char *) &addr
, sizeof (addr
));
1033 addr
.sin_family
= AF_INET
;
1036 service
= (flags
& POP_NO_KERBEROS
) ? POP_SERVICE
: KPOP_SERVICE
;
1038 service
= POP_SERVICE
;
1042 if (! (flags
& POP_NO_HESIOD
))
1044 servent
= hes_getservbyname (service
, "tcp");
1047 addr
.sin_port
= servent
->s_port
;
1054 servent
= getservbyname (service
, "tcp");
1057 addr
.sin_port
= servent
->s_port
;
1062 addr
.sin_port
= htons ((flags
& POP_NO_KERBEROS
) ?
1063 POP_PORT
: KPOP_PORT
);
1065 addr
.sin_port
= htons (POP_PORT
);
1070 #define SOCKET_ERROR "Could not create socket for POP connection: "
1072 sock
= socket (PF_INET
, SOCK_STREAM
, 0);
1075 strcpy (pop_error
, SOCKET_ERROR
);
1076 strncat (pop_error
, strerror (errno
),
1077 ERROR_MAX
- sizeof (SOCKET_ERROR
));
1082 while (*hostent
->h_addr_list
)
1084 bcopy (*hostent
->h_addr_list
, (char *) &addr
.sin_addr
,
1086 if (! connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)))
1088 hostent
->h_addr_list
++;
1091 #define CONNECT_ERROR "Could not connect to POP server: "
1093 if (! *hostent
->h_addr_list
)
1096 strcpy (pop_error
, CONNECT_ERROR
);
1097 strncat (pop_error
, strerror (errno
),
1098 ERROR_MAX
- sizeof (CONNECT_ERROR
));
1104 #define KRB_ERROR "Kerberos error connecting to POP server: "
1105 if (! (flags
& POP_NO_KERBEROS
))
1110 if (rem
= krb5_cc_default (&ccdef
))
1113 strcpy (pop_error
, KRB_ERROR
);
1114 strncat (pop_error
, error_message (rem
),
1115 ERROR_MAX
- sizeof(KRB_ERROR
));
1120 if (rem
= krb5_cc_get_principal (ccdef
, &client
))
1125 for (cp
= hostent
->h_name
; *cp
; cp
++)
1129 *cp
= tolower (*cp
);
1133 if (rem
= krb5_sname_to_principal (hostent
->h_name
, POP_SERVICE
,
1139 rem
= krb5_sendauth ((krb5_pointer
) &sock
, "KPOPV1.0", client
, server
,
1140 AP_OPTS_MUTUAL_REQUIRED
,
1141 0, /* no checksum */
1142 0, /* no creds, use ccache instead */
1144 0, /* don't need seq # */
1145 0, /* don't need subsession key */
1147 0); /* don't need reply */
1148 krb5_free_principal (server
);
1151 if (err_ret
&& err_ret
->text
.length
)
1153 strcpy (pop_error
, KRB_ERROR
);
1154 strncat (pop_error
, error_message (rem
),
1155 ERROR_MAX
- sizeof (KRB_ERROR
));
1156 strncat (pop_error
, " [server says '",
1157 ERROR_MAX
- strlen (pop_error
) - 1);
1158 strncat (pop_error
, err_ret
->text
.data
,
1159 min (ERROR_MAX
- strlen (pop_error
) - 1,
1160 err_ret
->text
.length
));
1161 strncat (pop_error
, "']",
1162 ERROR_MAX
- strlen (pop_error
) - 1);
1166 strcpy (pop_error
, KRB_ERROR
);
1167 strncat (pop_error
, error_message (rem
),
1168 ERROR_MAX
- sizeof (KRB_ERROR
));
1171 krb5_free_error (err_ret
);
1177 ticket
= (KTEXT
) malloc (sizeof (KTEXT_ST
));
1178 rem
= krb_sendauth (0L, sock
, ticket
, "pop", hostent
->h_name
,
1179 (char *) krb_realmofhost (hostent
->h_name
),
1180 (unsigned long) 0, &msg_data
, &cred
, schedule
,
1181 (struct sockaddr_in
*) 0,
1182 (struct sockaddr_in
*) 0,
1184 free ((char *) ticket
);
1185 if (rem
!= KSUCCESS
)
1187 strcpy (pop_error
, KRB_ERROR
);
1188 strncat (pop_error
, krb_err_txt
[rem
],
1189 ERROR_MAX
- sizeof (KRB_ERROR
));
1195 #endif /* KERBEROS */
1198 } /* socket_connection */
1203 * Purpose: Get a line of text from the connection and return a
1204 * pointer to it. The carriage return and linefeed at the end of
1205 * the line are stripped, but periods at the beginnings of lines
1206 * are NOT dealt with in any special way.
1209 * server The server from which to get the line of text.
1211 * Returns: A non-null pointer if successful, or a null pointer on any
1212 * error, with an error message copied into pop_error.
1214 * Notes: The line returned is overwritten with each call to getline.
1216 * Side effects: Closes the connection on error.
1222 #define GETLINE_ERROR "Error reading from server: "
1225 int search_offset
= 0;
1229 char *cp
= find_crlf (server
->buffer
+ server
->buffer_index
);
1235 found
= server
->buffer_index
;
1236 data_used
= (cp
+ 2) - server
->buffer
- found
;
1238 *cp
= '\0'; /* terminate the string to be returned */
1239 server
->data
-= data_used
;
1240 server
->buffer_index
+= data_used
;
1243 fprintf (stderr
, "<<< %s\n", server
->buffer
+ found
);
1244 return (server
->buffer
+ found
);
1248 bcopy (server
->buffer
+ server
->buffer_index
,
1249 server
->buffer
, server
->data
);
1250 /* Record the fact that we've searched the data already in
1251 the buffer for a CRLF, so that when we search below, we
1252 don't have to search the same data twice. There's a "-
1253 1" here to account for the fact that the last character
1254 of the data we have may be the CR of a CRLF pair, of
1255 which we haven't read the second half yet, so we may have
1256 to search it again when we read more data. */
1257 search_offset
= server
->data
- 1;
1258 server
->buffer_index
= 0;
1263 server
->buffer_index
= 0;
1268 /* There's a "- 1" here to leave room for the null that we put
1269 at the end of the read data below. We put the null there so
1270 that find_crlf knows where to stop when we call it. */
1271 if (server
->data
== server
->buffer_size
- 1)
1273 server
->buffer_size
+= GETLINE_INCR
;
1274 server
->buffer
= (char *)realloc (server
->buffer
, server
->buffer_size
);
1275 if (! server
->buffer
)
1277 strcpy (pop_error
, "Out of memory in getline");
1282 ret
= RECV (server
->file
, server
->buffer
+ server
->data
,
1283 server
->buffer_size
- server
->data
- 1, 0);
1286 strcpy (pop_error
, GETLINE_ERROR
);
1287 strncat (pop_error
, strerror (errno
),
1288 ERROR_MAX
- sizeof (GETLINE_ERROR
));
1294 strcpy (pop_error
, "Unexpected EOF from server in getline");
1301 server
->data
+= ret
;
1302 server
->buffer
[server
->data
] = '\0';
1304 cp
= find_crlf (server
->buffer
+ search_offset
);
1307 int data_used
= (cp
+ 2) - server
->buffer
;
1309 server
->data
-= data_used
;
1310 server
->buffer_index
= data_used
;
1313 fprintf (stderr
, "<<< %s\n", server
->buffer
);
1314 return (server
->buffer
);
1316 search_offset
+= ret
;
1324 * Function: sendline
1326 * Purpose: Sends a line of text to the POP server. The line of text
1327 * passed into this function should NOT have the carriage return
1328 * and linefeed on the end of it. Periods at beginnings of lines
1329 * will NOT be treated specially by this function.
1332 * server The server to which to send the text.
1333 * line The line of text to send.
1335 * Return value: Upon successful completion, a value of 0 will be
1336 * returned. Otherwise, a non-zero value will be returned, and
1337 * an error will be copied into pop_error.
1339 * Side effects: Closes the connection on error.
1342 sendline (server
, line
)
1346 #define SENDLINE_ERROR "Error writing to POP server: "
1349 ret
= fullwrite (server
->file
, line
, strlen (line
));
1351 { /* 0 indicates that a blank line was written */
1352 ret
= fullwrite (server
->file
, "\r\n", 2);
1358 strcpy (pop_error
, SENDLINE_ERROR
);
1359 strncat (pop_error
, strerror (errno
),
1360 ERROR_MAX
- sizeof (SENDLINE_ERROR
));
1365 fprintf (stderr
, ">>> %s\n", line
);
1371 * Procedure: fullwrite
1373 * Purpose: Just like write, but keeps trying until the entire string
1376 * Return value: Same as write. Pop_error is not set.
1379 fullwrite (fd
, buf
, nbytes
)
1388 while ((ret
= SEND (fd
, cp
, nbytes
, 0)) > 0)
1400 * Purpose: Reads a line from the server. If the return indicator is
1401 * positive, return with a zero exit status. If not, return with
1402 * a negative exit status.
1405 * server The server to read from.
1407 * Returns: 0 for success, else for failure and puts error in pop_error.
1409 * Side effects: On failure, may make the connection unusable.
1417 if (! (fromline
= getline (server
)))
1422 if (! strncmp (fromline
, "+OK", 3))
1424 else if (! strncmp (fromline
, "-ERR", 4))
1426 strncpy (pop_error
, fromline
, ERROR_MAX
);
1427 pop_error
[ERROR_MAX
-1] = '\0';
1433 "Unexpected response from server; expecting +OK or -ERR");
1441 * Function: gettermination
1443 * Purpose: Gets the next line and verifies that it is a termination
1444 * line (nothing but a dot).
1446 * Return value: 0 on success, non-zero with pop_error set on error.
1448 * Side effects: Closes the connection on error.
1451 gettermination (server
)
1456 fromserver
= getline (server
);
1460 if (strcmp (fromserver
, "."))
1463 "Unexpected response from server in gettermination");
1473 * Function pop_close
1475 * Purpose: Close a pop connection, sending a "RSET" command to try to
1476 * preserve any changes that were made and a "QUIT" command to
1477 * try to get the server to quit, but ignoring any responses that
1480 * Side effects: The server is unusable after this function returns.
1481 * Changes made to the maildrop since the session was started (or
1482 * since the last pop_reset) may be lost.
1489 free ((char *) server
);
1495 * Function: pop_trash
1497 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the
1498 * memory associated with the server. It is legal to call
1499 * pop_close or pop_quit after this function has been called.
1505 if (server
->file
>= 0)
1507 /* avoid recursion; sendline can call pop_trash */
1508 if (server
->trash_started
)
1510 server
->trash_started
= 1;
1512 sendline (server
, "RSET");
1513 sendline (server
, "QUIT");
1515 CLOSESOCKET (server
->file
);
1519 free (server
->buffer
);
1530 /* Return a pointer to the first CRLF in IN_STRING,
1531 or 0 if it does not contain one. */
1534 find_crlf (in_string
)
1541 else if (*in_string
== '\r')
1543 if (*++in_string
== '\n')
1544 return (in_string
- 1);
1552 #endif /* MAIL_USE_POP */