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