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