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