Mercurial > emacs
annotate lib-src/pop.c @ 91921:2e27479c19fe
Reverted previous erroneous change.
| author | Bastien Guerry <bzg@altern.org> |
|---|---|
| date | Sun, 17 Feb 2008 23:31:06 +0000 |
| parents | b394429bd805 |
| children | c70e45a7acfd f991f10f15ec |
| 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. */ |
|
87901
b394429bd805
(pop_stat, pop_last): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
87700
diff
changeset
|
384 if (fromserver + 4 == end_ptr || *end_ptr != ' ' || errno) |
|
87700
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 |
|
87901
b394429bd805
(pop_stat, pop_last): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
87700
diff
changeset
|
391 fromserver = end_ptr; |
| 9158 | 392 |
|
87700
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
393 errno = 0; |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
394 *size = strtol (fromserver + 1, &end_ptr, 10); |
|
87901
b394429bd805
(pop_stat, pop_last): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
87700
diff
changeset
|
395 if (fromserver + 1 == end_ptr || errno) |
|
87700
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
396 { |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
397 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
|
398 pop_trash (server); |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
399 return (-1); |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
400 } |
| 9158 | 401 |
| 402 return (0); | |
| 403 } | |
| 404 | |
| 405 /* | |
| 406 * Function: pop_list | |
| 407 * | |
| 408 * Purpose: Performs the POP "list" command and returns (in value | |
| 409 * parameters) two malloc'd zero-terminated arrays -- one of | |
| 410 * message IDs, and a parallel one of sizes. | |
| 411 * | |
| 412 * Arguments: | |
| 413 * server The pop connection to talk to. | |
| 414 * message The number of the one message about which to get | |
| 415 * information, or 0 to get information about all | |
| 416 * messages. | |
| 417 * | |
| 418 * Return value: 0 on success, non-zero with error in pop_error on | |
| 419 * failure. | |
| 420 * | |
| 421 * Side effects: On failure, may make further operations on the | |
| 422 * connection impossible. | |
| 423 */ | |
| 424 int | |
| 425 pop_list (server, message, IDs, sizes) | |
| 426 popserver server; | |
| 427 int message; | |
| 428 int **IDs; | |
| 429 int **sizes; | |
| 430 { | |
| 431 int how_many, i; | |
| 432 char *fromserver; | |
| 433 | |
| 434 if (server->in_multi) | |
| 435 { | |
| 436 strcpy (pop_error, "In multi-line query in pop_list"); | |
| 437 return (-1); | |
| 438 } | |
| 439 | |
| 440 if (message) | |
| 441 how_many = 1; | |
| 442 else | |
| 443 { | |
| 444 int count, size; | |
| 445 if (pop_stat (server, &count, &size)) | |
| 446 return (-1); | |
| 447 how_many = count; | |
| 448 } | |
| 449 | |
| 450 *IDs = (int *) malloc ((how_many + 1) * sizeof (int)); | |
| 451 *sizes = (int *) malloc ((how_many + 1) * sizeof (int)); | |
| 452 if (! (*IDs && *sizes)) | |
| 453 { | |
| 454 strcpy (pop_error, "Out of memory in pop_list"); | |
| 455 return (-1); | |
| 456 } | |
| 457 | |
| 458 if (message) | |
| 459 { | |
| 460 sprintf (pop_error, "LIST %d", message); | |
| 461 if (sendline (server, pop_error)) | |
| 462 { | |
| 463 free ((char *) *IDs); | |
| 464 free ((char *) *sizes); | |
| 465 return (-1); | |
| 466 } | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
467 if (pop_getline (server, &fromserver) < 0) |
| 9158 | 468 { |
| 469 free ((char *) *IDs); | |
| 470 free ((char *) *sizes); | |
| 471 return (-1); | |
| 472 } | |
| 473 if (strncmp (fromserver, "+OK ", 4)) | |
| 474 { | |
| 475 if (! strncmp (fromserver, "-ERR", 4)) | |
| 476 strncpy (pop_error, fromserver, ERROR_MAX); | |
| 477 else | |
| 478 { | |
| 479 strcpy (pop_error, | |
| 480 "Unexpected response from server in pop_list"); | |
| 481 pop_trash (server); | |
| 482 } | |
| 483 free ((char *) *IDs); | |
| 484 free ((char *) *sizes); | |
| 485 return (-1); | |
| 486 } | |
| 487 (*IDs)[0] = atoi (&fromserver[4]); | |
| 488 fromserver = index (&fromserver[4], ' '); | |
| 489 if (! fromserver) | |
| 490 { | |
| 491 strcpy (pop_error, | |
| 492 "Badly formatted response from server in pop_list"); | |
| 493 pop_trash (server); | |
| 494 free ((char *) *IDs); | |
| 495 free ((char *) *sizes); | |
| 496 return (-1); | |
| 497 } | |
| 498 (*sizes)[0] = atoi (fromserver); | |
| 499 (*IDs)[1] = (*sizes)[1] = 0; | |
| 500 return (0); | |
| 501 } | |
| 502 else | |
| 503 { | |
| 504 if (pop_multi_first (server, "LIST", &fromserver)) | |
| 505 { | |
| 506 free ((char *) *IDs); | |
| 507 free ((char *) *sizes); | |
| 508 return (-1); | |
| 509 } | |
| 510 for (i = 0; i < how_many; i++) | |
| 511 { | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
512 if (pop_multi_next (server, &fromserver) <= 0) |
| 9158 | 513 { |
| 514 free ((char *) *IDs); | |
| 515 free ((char *) *sizes); | |
| 516 return (-1); | |
| 517 } | |
| 518 (*IDs)[i] = atoi (fromserver); | |
| 519 fromserver = index (fromserver, ' '); | |
| 520 if (! fromserver) | |
| 521 { | |
| 522 strcpy (pop_error, | |
| 523 "Badly formatted response from server in pop_list"); | |
| 524 free ((char *) *IDs); | |
| 525 free ((char *) *sizes); | |
| 526 pop_trash (server); | |
| 527 return (-1); | |
| 528 } | |
| 529 (*sizes)[i] = atoi (fromserver); | |
| 530 } | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
531 if (pop_multi_next (server, &fromserver) < 0) |
| 9158 | 532 { |
| 533 free ((char *) *IDs); | |
| 534 free ((char *) *sizes); | |
| 535 return (-1); | |
| 536 } | |
| 537 else if (fromserver) | |
| 538 { | |
| 539 strcpy (pop_error, | |
| 540 "Too many response lines from server in pop_list"); | |
| 541 free ((char *) *IDs); | |
| 542 free ((char *) *sizes); | |
| 543 return (-1); | |
| 544 } | |
| 545 (*IDs)[i] = (*sizes)[i] = 0; | |
| 546 return (0); | |
| 547 } | |
| 548 } | |
| 549 | |
| 550 /* | |
| 551 * Function: pop_retrieve | |
| 552 * | |
| 553 * Purpose: Retrieve a specified message from the maildrop. | |
| 554 * | |
| 555 * Arguments: | |
| 556 * server The server to retrieve from. | |
| 557 * message The message number to retrieve. | |
| 558 * markfrom | |
| 559 * If true, then mark the string "From " at the beginning | |
| 560 * of lines with '>'. | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
561 * 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
|
562 * message is assigned. |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49053
diff
changeset
|
563 * |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
564 * 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
|
565 * 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
|
566 * with pop_error set. |
| 9158 | 567 * |
| 568 * Side effects: May kill connection on error. | |
| 569 */ | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
570 int |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
571 pop_retrieve (server, message, markfrom, msg_buf) |
| 9158 | 572 popserver server; |
| 573 int message; | |
| 574 int markfrom; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
575 char **msg_buf; |
| 9158 | 576 { |
| 577 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0; | |
| 578 char *ptr, *fromserver; | |
| 579 int ret; | |
| 580 | |
| 581 if (server->in_multi) | |
| 582 { | |
| 583 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
|
584 return (-1); |
| 9158 | 585 } |
| 586 | |
| 587 if (pop_list (server, message, &IDs, &sizes)) | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
588 return (-1); |
| 9158 | 589 |
| 590 if (pop_retrieve_first (server, message, &fromserver)) | |
| 591 { | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
592 return (-1); |
| 9158 | 593 } |
| 594 | |
| 595 /* | |
| 596 * The "5" below is an arbitrary constant -- I assume that if | |
| 597 * there are "From" lines in the text to be marked, there | |
| 598 * probably won't be more than 5 of them. If there are, I | |
| 599 * allocate more space for them below. | |
| 600 */ | |
| 601 bufsize = sizes[0] + (markfrom ? 5 : 0); | |
|
14238
b55e97028105
(pop_retrieve, getline): Avoid type clashes.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
602 ptr = (char *)malloc (bufsize); |
| 9158 | 603 free ((char *) IDs); |
| 604 free ((char *) sizes); | |
| 605 | |
| 606 if (! ptr) | |
| 607 { | |
| 608 strcpy (pop_error, "Out of memory in pop_retrieve"); | |
| 609 pop_retrieve_flush (server); | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
610 return (-1); |
| 9158 | 611 } |
| 612 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
613 while ((ret = pop_retrieve_next (server, &fromserver)) >= 0) |
| 9158 | 614 { |
| 615 if (! fromserver) | |
| 616 { | |
| 617 ptr[cp] = '\0'; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
618 *msg_buf = ptr; |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
619 return (cp); |
| 9158 | 620 } |
| 621 if (markfrom && fromserver[0] == 'F' && fromserver[1] == 'r' && | |
| 622 fromserver[2] == 'o' && fromserver[3] == 'm' && | |
| 623 fromserver[4] == ' ') | |
| 624 { | |
| 625 if (++fromcount == 5) | |
| 626 { | |
| 627 bufsize += 5; | |
|
14238
b55e97028105
(pop_retrieve, getline): Avoid type clashes.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
628 ptr = (char *)realloc (ptr, bufsize); |
| 9158 | 629 if (! ptr) |
| 630 { | |
| 631 strcpy (pop_error, "Out of memory in pop_retrieve"); | |
| 632 pop_retrieve_flush (server); | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
633 return (-1); |
| 9158 | 634 } |
| 635 fromcount = 0; | |
| 636 } | |
| 637 ptr[cp++] = '>'; | |
| 638 } | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
639 bcopy (fromserver, &ptr[cp], ret); |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
640 cp += ret; |
| 9158 | 641 ptr[cp++] = '\n'; |
| 642 } | |
| 643 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
644 free (ptr); |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
645 return (-1); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49053
diff
changeset
|
646 } |
| 9158 | 647 |
| 648 int | |
| 649 pop_retrieve_first (server, message, response) | |
| 650 popserver server; | |
| 651 int message; | |
| 652 char **response; | |
| 653 { | |
| 654 sprintf (pop_error, "RETR %d", message); | |
| 655 return (pop_multi_first (server, pop_error, response)); | |
| 656 } | |
| 657 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
658 /* |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
659 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
|
660 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
|
661 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
|
662 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
|
663 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
|
664 */ |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
665 |
| 9158 | 666 int |
| 667 pop_retrieve_next (server, line) | |
| 668 popserver server; | |
| 669 char **line; | |
| 670 { | |
| 671 return (pop_multi_next (server, line)); | |
| 672 } | |
| 673 | |
| 674 int | |
| 675 pop_retrieve_flush (server) | |
| 676 popserver server; | |
| 677 { | |
| 678 return (pop_multi_flush (server)); | |
| 679 } | |
| 680 | |
| 681 int | |
| 682 pop_top_first (server, message, lines, response) | |
| 683 popserver server; | |
| 684 int message, lines; | |
| 685 char **response; | |
| 686 { | |
| 687 sprintf (pop_error, "TOP %d %d", message, lines); | |
| 688 return (pop_multi_first (server, pop_error, response)); | |
| 689 } | |
| 690 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
691 /* |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
692 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
|
693 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
|
694 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
|
695 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
|
696 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
|
697 */ |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
698 |
| 9158 | 699 int |
| 700 pop_top_next (server, line) | |
| 701 popserver server; | |
| 702 char **line; | |
| 703 { | |
| 704 return (pop_multi_next (server, line)); | |
| 705 } | |
| 706 | |
| 707 int | |
| 708 pop_top_flush (server) | |
| 709 popserver server; | |
| 710 { | |
| 711 return (pop_multi_flush (server)); | |
| 712 } | |
| 713 | |
| 714 int | |
| 715 pop_multi_first (server, command, response) | |
| 716 popserver server; | |
| 717 char *command; | |
| 718 char **response; | |
| 719 { | |
| 720 if (server->in_multi) | |
| 721 { | |
| 722 strcpy (pop_error, | |
| 723 "Already in multi-line query in pop_multi_first"); | |
| 724 return (-1); | |
| 725 } | |
| 726 | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
727 if (sendline (server, command) || (pop_getline (server, response) < 0)) |
| 9158 | 728 { |
| 729 return (-1); | |
| 730 } | |
| 731 | |
| 732 if (0 == strncmp (*response, "-ERR", 4)) | |
| 733 { | |
| 734 strncpy (pop_error, *response, ERROR_MAX); | |
| 735 return (-1); | |
| 736 } | |
| 737 else if (0 == strncmp (*response, "+OK", 3)) | |
| 738 { | |
| 739 for (*response += 3; **response == ' '; (*response)++) /* empty */; | |
| 740 server->in_multi = 1; | |
| 741 return (0); | |
| 742 } | |
| 743 else | |
| 744 { | |
| 745 strcpy (pop_error, | |
| 746 "Unexpected response from server in pop_multi_first"); | |
| 747 return (-1); | |
| 748 } | |
| 749 } | |
| 750 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
751 /* |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
752 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
|
753 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
|
754 (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
|
755 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
|
756 (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
|
757 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
|
758 0, LINE is set to null. */ |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
759 |
| 9158 | 760 int |
| 761 pop_multi_next (server, line) | |
| 762 popserver server; | |
| 763 char **line; | |
| 764 { | |
| 765 char *fromserver; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
766 int ret; |
| 9158 | 767 |
| 768 if (! server->in_multi) | |
| 769 { | |
| 770 strcpy (pop_error, "Not in multi-line query in pop_multi_next"); | |
| 771 return (-1); | |
| 772 } | |
| 773 | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
774 if ((ret = pop_getline (server, &fromserver)) < 0) |
| 9158 | 775 { |
| 776 return (-1); | |
| 777 } | |
| 778 | |
| 779 if (fromserver[0] == '.') | |
| 780 { | |
| 781 if (! fromserver[1]) | |
| 782 { | |
| 783 *line = 0; | |
| 784 server->in_multi = 0; | |
| 785 return (0); | |
| 786 } | |
| 787 else | |
| 788 { | |
| 789 *line = fromserver + 1; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
790 return (ret - 1); |
| 9158 | 791 } |
| 792 } | |
| 793 else | |
| 794 { | |
| 795 *line = fromserver; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
796 return (ret); |
| 9158 | 797 } |
| 798 } | |
| 799 | |
| 800 int | |
| 801 pop_multi_flush (server) | |
| 802 popserver server; | |
| 803 { | |
| 804 char *line; | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
805 int ret; |
| 9158 | 806 |
| 807 if (! server->in_multi) | |
| 808 { | |
| 809 return (0); | |
| 810 } | |
| 811 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
812 while ((ret = pop_multi_next (server, &line))) |
| 9158 | 813 { |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
814 if (ret < 0) |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
815 return (-1); |
| 9158 | 816 } |
| 817 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
818 return (0); |
| 9158 | 819 } |
| 820 | |
| 821 /* Function: pop_delete | |
| 822 * | |
| 823 * Purpose: Delete a specified message. | |
| 824 * | |
| 825 * Arguments: | |
| 826 * server Server from which to delete the message. | |
| 827 * message Message to delete. | |
| 828 * | |
| 829 * Return value: 0 on success, non-zero with error in pop_error | |
| 830 * otherwise. | |
| 831 */ | |
| 832 int | |
| 833 pop_delete (server, message) | |
| 834 popserver server; | |
| 835 int message; | |
| 836 { | |
| 837 if (server->in_multi) | |
| 838 { | |
| 839 strcpy (pop_error, "In multi-line query in pop_delete"); | |
| 840 return (-1); | |
| 841 } | |
| 842 | |
| 843 sprintf (pop_error, "DELE %d", message); | |
| 844 | |
| 845 if (sendline (server, pop_error) || getok (server)) | |
| 846 return (-1); | |
| 847 | |
| 848 return (0); | |
| 849 } | |
| 850 | |
| 851 /* | |
| 852 * Function: pop_noop | |
| 853 * | |
| 854 * Purpose: Send a noop command to the server. | |
| 855 * | |
| 856 * Argument: | |
| 857 * server The server to send to. | |
| 858 * | |
| 859 * Return value: 0 on success, non-zero with error in pop_error | |
| 860 * otherwise. | |
| 861 * | |
| 862 * Side effects: Closes connection on error. | |
| 863 */ | |
| 864 int | |
| 865 pop_noop (server) | |
| 866 popserver server; | |
| 867 { | |
| 868 if (server->in_multi) | |
| 869 { | |
| 870 strcpy (pop_error, "In multi-line query in pop_noop"); | |
| 871 return (-1); | |
| 872 } | |
| 873 | |
| 874 if (sendline (server, "NOOP") || getok (server)) | |
| 875 return (-1); | |
| 876 | |
| 877 return (0); | |
| 878 } | |
| 879 | |
| 880 /* | |
| 881 * Function: pop_last | |
| 882 * | |
| 883 * Purpose: Find out the highest seen message from the server. | |
| 884 * | |
| 885 * Arguments: | |
| 886 * server The server. | |
| 887 * | |
| 888 * Return value: If successful, the highest seen message, which is | |
| 889 * greater than or equal to 0. Otherwise, a negative number with | |
| 890 * the error explained in pop_error. | |
| 891 * | |
| 892 * Side effects: Closes the connection on error. | |
| 893 */ | |
| 894 int | |
| 895 pop_last (server) | |
| 896 popserver server; | |
| 897 { | |
| 898 char *fromserver; | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
899 |
| 9158 | 900 if (server->in_multi) |
| 901 { | |
| 902 strcpy (pop_error, "In multi-line query in pop_last"); | |
| 903 return (-1); | |
| 904 } | |
| 905 | |
| 906 if (sendline (server, "LAST")) | |
| 907 return (-1); | |
| 908 | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
909 if (pop_getline (server, &fromserver) < 0) |
| 9158 | 910 return (-1); |
| 911 | |
| 912 if (! strncmp (fromserver, "-ERR", 4)) | |
| 913 { | |
| 914 strncpy (pop_error, fromserver, ERROR_MAX); | |
| 915 return (-1); | |
| 916 } | |
| 917 else if (strncmp (fromserver, "+OK ", 4)) | |
| 918 { | |
| 919 strcpy (pop_error, "Unexpected response from server in pop_last"); | |
| 920 pop_trash (server); | |
| 921 return (-1); | |
| 922 } | |
| 923 else | |
| 924 { | |
|
87700
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
925 char *end_ptr; |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
926 int count; |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
927 errno = 0; |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
928 count = strtol (&fromserver[4], &end_ptr, 10); |
|
87901
b394429bd805
(pop_stat, pop_last): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
87700
diff
changeset
|
929 if (fromserver + 4 == end_ptr || errno) |
|
87700
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
930 { |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
931 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
|
932 pop_trash (server); |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
933 return (-1); |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
934 } |
|
2e70121a6595
(pop_stat, pop_last): Check validity of string-to-integer
Chong Yidong <cyd@stupidchicken.com>
parents:
87649
diff
changeset
|
935 return count; |
| 9158 | 936 } |
| 937 } | |
| 938 | |
| 939 /* | |
| 940 * Function: pop_reset | |
| 941 * | |
| 942 * Purpose: Reset the server to its initial connect state | |
| 943 * | |
| 944 * Arguments: | |
| 945 * server The server. | |
| 946 * | |
| 947 * Return value: 0 for success, non-0 with error in pop_error | |
| 948 * otherwise. | |
| 949 * | |
| 950 * Side effects: Closes the connection on error. | |
| 951 */ | |
| 952 int | |
| 953 pop_reset (server) | |
| 954 popserver server; | |
| 955 { | |
| 956 if (pop_retrieve_flush (server)) | |
| 957 { | |
| 958 return (-1); | |
| 959 } | |
| 960 | |
| 961 if (sendline (server, "RSET") || getok (server)) | |
| 962 return (-1); | |
| 963 | |
| 964 return (0); | |
| 965 } | |
| 966 | |
| 967 /* | |
| 968 * Function: pop_quit | |
| 969 * | |
| 970 * Purpose: Quit the connection to the server, | |
| 971 * | |
| 972 * Arguments: | |
| 973 * server The server to quit. | |
| 974 * | |
| 975 * Return value: 0 for success, non-zero otherwise with error in | |
| 976 * pop_error. | |
| 977 * | |
| 14036 | 978 * Side Effects: The popserver passed in is unusable after this |
| 9158 | 979 * function is called, even if an error occurs. |
| 980 */ | |
| 981 int | |
| 982 pop_quit (server) | |
| 983 popserver server; | |
| 984 { | |
| 985 int ret = 0; | |
| 986 | |
| 987 if (server->file >= 0) | |
| 988 { | |
| 989 if (pop_retrieve_flush (server)) | |
| 990 { | |
| 991 ret = -1; | |
| 992 } | |
| 993 | |
| 994 if (sendline (server, "QUIT") || getok (server)) | |
| 995 { | |
| 996 ret = -1; | |
| 997 } | |
| 998 | |
| 999 close (server->file); | |
| 1000 } | |
| 1001 | |
| 1002 if (server->buffer) | |
| 1003 free (server->buffer); | |
| 1004 free ((char *) server); | |
| 1005 | |
| 1006 return (ret); | |
| 1007 } | |
| 1008 | |
|
15102
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1009 #ifdef WINDOWSNT |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1010 static int have_winsock = 0; |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1011 #endif |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1012 |
| 9158 | 1013 /* |
| 1014 * Function: socket_connection | |
| 1015 * | |
| 1016 * Purpose: Opens the network connection with the mail host, without | |
| 1017 * doing any sort of I/O with it or anything. | |
| 1018 * | |
| 1019 * Arguments: | |
| 1020 * host The host to which to connect. | |
| 1021 * flags Option flags. | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1022 * |
| 9158 | 1023 * Return value: A file descriptor indicating the connection, or -1 |
| 1024 * indicating failure, in which case an error has been copied | |
| 1025 * into pop_error. | |
| 1026 */ | |
| 1027 static int | |
| 1028 socket_connection (host, flags) | |
| 1029 char *host; | |
| 1030 int flags; | |
| 1031 { | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1032 #ifdef HAVE_GETADDRINFO |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1033 struct addrinfo *res, *it; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1034 struct addrinfo hints; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1035 int ret; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1036 #else /* !HAVE_GETADDRINFO */ |
| 9158 | 1037 struct hostent *hostent; |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1038 #endif |
| 9158 | 1039 struct servent *servent; |
| 1040 struct sockaddr_in addr; | |
| 1041 char found_port = 0; | |
| 1042 char *service; | |
| 1043 int sock; | |
|
86235
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1044 char *realhost; |
| 9158 | 1045 #ifdef KERBEROS |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1046 #ifdef KERBEROS5 |
| 9158 | 1047 krb5_error_code rem; |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1048 krb5_context kcontext = 0; |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1049 krb5_auth_context auth_context = 0; |
| 9158 | 1050 krb5_ccache ccdef; |
| 1051 krb5_principal client, server; | |
| 1052 krb5_error *err_ret; | |
| 1053 register char *cp; | |
| 1054 #else | |
| 1055 KTEXT ticket; | |
| 1056 MSG_DAT msg_data; | |
| 1057 CREDENTIALS cred; | |
| 1058 Key_schedule schedule; | |
| 1059 int rem; | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1060 #endif /* KERBEROS5 */ |
| 9158 | 1061 #endif /* KERBEROS */ |
| 1062 | |
| 1063 int try_count = 0; | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1064 int connect_ok; |
| 9158 | 1065 |
|
15102
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1066 #ifdef WINDOWSNT |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1067 { |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1068 WSADATA winsockData; |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1069 if (WSAStartup (0x101, &winsockData) == 0) |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1070 have_winsock = 1; |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1071 } |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1072 #endif |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1073 |
| 9158 | 1074 bzero ((char *) &addr, sizeof (addr)); |
| 1075 addr.sin_family = AF_INET; | |
| 1076 | |
|
70857
d2542ee8a5c9
(pop_open, socket_connection, KPOP_SERVICE): Added
Francesco Potort? <pot@gnu.org>
parents:
68647
diff
changeset
|
1077 /** "kpop" service is never used: look for 20060515 to see why **/ |
| 9158 | 1078 #ifdef KERBEROS |
| 1079 service = (flags & POP_NO_KERBEROS) ? POP_SERVICE : KPOP_SERVICE; | |
| 1080 #else | |
| 1081 service = POP_SERVICE; | |
| 1082 #endif | |
| 1083 | |
| 1084 #ifdef HESIOD | |
| 1085 if (! (flags & POP_NO_HESIOD)) | |
| 1086 { | |
| 1087 servent = hes_getservbyname (service, "tcp"); | |
| 1088 if (servent) | |
| 1089 { | |
| 1090 addr.sin_port = servent->s_port; | |
| 1091 found_port = 1; | |
| 1092 } | |
| 1093 } | |
| 1094 #endif | |
| 1095 if (! found_port) | |
| 1096 { | |
| 1097 servent = getservbyname (service, "tcp"); | |
| 1098 if (servent) | |
| 1099 { | |
| 1100 addr.sin_port = servent->s_port; | |
| 1101 } | |
| 1102 else | |
| 1103 { | |
|
70857
d2542ee8a5c9
(pop_open, socket_connection, KPOP_SERVICE): Added
Francesco Potort? <pot@gnu.org>
parents:
68647
diff
changeset
|
1104 /** "kpop" service is never used: look for 20060515 to see why **/ |
| 9158 | 1105 #ifdef KERBEROS |
| 1106 addr.sin_port = htons ((flags & POP_NO_KERBEROS) ? | |
| 1107 POP_PORT : KPOP_PORT); | |
| 1108 #else | |
| 1109 addr.sin_port = htons (POP_PORT); | |
| 1110 #endif | |
| 1111 } | |
| 1112 } | |
| 1113 | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1114 #define POP_SOCKET_ERROR "Could not create socket for POP connection: " |
| 9158 | 1115 |
| 1116 sock = socket (PF_INET, SOCK_STREAM, 0); | |
| 1117 if (sock < 0) | |
| 1118 { | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1119 strcpy (pop_error, POP_SOCKET_ERROR); |
| 9158 | 1120 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
|
1121 ERROR_MAX - sizeof (POP_SOCKET_ERROR)); |
| 9158 | 1122 return (-1); |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1123 |
| 9158 | 1124 } |
| 1125 | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1126 #ifdef HAVE_GETADDRINFO |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1127 memset (&hints, 0, sizeof(hints)); |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1128 hints.ai_socktype = SOCK_STREAM; |
|
86504
8b582ee742ce
(socket_connection): Remove AI_ADDRCONFIG.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86235
diff
changeset
|
1129 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
|
1130 hints.ai_family = AF_INET; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1131 do |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1132 { |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1133 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
|
1134 try_count++; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1135 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
|
1136 { |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1137 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
|
1138 return (-1); |
|
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 } while (ret != 0); |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1141 |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1142 if (ret == 0) |
|
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 it = res; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1145 while (it) |
|
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 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
|
1148 { |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1149 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
|
1150 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
|
1151 sizeof (addr.sin_addr)); |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1152 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
|
1153 break; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1154 } |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1155 it = it->ai_next; |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1156 } |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1157 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
|
1158 if (connect_ok) |
|
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1159 { |
|
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1160 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
|
1161 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
|
1162 } |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1163 freeaddrinfo (res); |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1164 } |
|
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1165 #else /* !HAVE_GETADDRINFO */ |
|
45328
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1166 do |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1167 { |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1168 hostent = gethostbyname (host); |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1169 try_count++; |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1170 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
|
1171 { |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1172 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
|
1173 return (-1); |
|
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 } while (! hostent); |
|
cbcc456b9a76
(socket_connection): Move the code to resolve the POP
Eli Zaretskii <eliz@gnu.org>
parents:
42439
diff
changeset
|
1176 |
| 9158 | 1177 while (*hostent->h_addr_list) |
| 1178 { | |
| 1179 bcopy (*hostent->h_addr_list, (char *) &addr.sin_addr, | |
| 1180 hostent->h_length); | |
| 1181 if (! connect (sock, (struct sockaddr *) &addr, sizeof (addr))) | |
| 1182 break; | |
| 1183 hostent->h_addr_list++; | |
| 1184 } | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1185 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
|
1186 if (! connect_ok) |
|
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1187 { |
|
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1188 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
|
1189 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
|
1190 } |
|
79cf32b82b23
(socket_connection): Move realhost out of #ifdefs.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
86210
diff
changeset
|
1191 |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1192 #endif /* !HAVE_GETADDRINFO */ |
| 9158 | 1193 |
| 1194 #define CONNECT_ERROR "Could not connect to POP server: " | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1195 |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1196 if (! connect_ok) |
| 9158 | 1197 { |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1198 CLOSESOCKET (sock); |
| 9158 | 1199 strcpy (pop_error, CONNECT_ERROR); |
| 1200 strncat (pop_error, strerror (errno), | |
| 1201 ERROR_MAX - sizeof (CONNECT_ERROR)); | |
| 1202 return (-1); | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1203 |
| 9158 | 1204 } |
| 1205 | |
| 1206 #ifdef KERBEROS | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1207 |
| 9158 | 1208 #define KRB_ERROR "Kerberos error connecting to POP server: " |
| 1209 if (! (flags & POP_NO_KERBEROS)) | |
| 1210 { | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1211 #ifdef KERBEROS5 |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1212 if ((rem = krb5_init_context (&kcontext))) |
| 9158 | 1213 { |
| 1214 krb5error: | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1215 if (auth_context) |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1216 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
|
1217 if (kcontext) |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1218 krb5_free_context (kcontext); |
| 9158 | 1219 strcpy (pop_error, KRB_ERROR); |
| 1220 strncat (pop_error, error_message (rem), | |
| 1221 ERROR_MAX - sizeof(KRB_ERROR)); | |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1222 CLOSESOCKET (sock); |
| 9158 | 1223 return (-1); |
| 1224 } | |
| 1225 | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1226 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
|
1227 goto krb5error; |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1228 |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1229 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
|
1230 goto krb5error; |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1231 |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1232 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
|
1233 goto krb5error; |
| 9158 | 1234 |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1235 for (cp = realhost; *cp; cp++) |
| 9158 | 1236 { |
| 1237 if (isupper (*cp)) | |
| 1238 { | |
| 1239 *cp = tolower (*cp); | |
| 1240 } | |
| 1241 } | |
| 1242 | |
|
86210
7ae58179773b
(socket_connection): Use getaddrinfo if available.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
78257
diff
changeset
|
1243 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
|
1244 POP_SERVICE, FALSE, &server)) |
|
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1245 goto krb5error; |
| 9158 | 1246 |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1247 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
|
1248 (krb5_pointer) &sock, "KPOPV1.0", client, server, |
| 9158 | 1249 AP_OPTS_MUTUAL_REQUIRED, |
| 1250 0, /* no checksum */ | |
| 1251 0, /* no creds, use ccache instead */ | |
| 1252 ccdef, | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1253 &err_ret, |
| 9158 | 1254 0, /* don't need subsession key */ |
| 1255 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
|
1256 krb5_free_principal (kcontext, server); |
| 9158 | 1257 if (rem) |
| 1258 { | |
| 1259 if (err_ret && err_ret->text.length) | |
| 1260 { | |
| 1261 strcpy (pop_error, KRB_ERROR); | |
| 1262 strncat (pop_error, error_message (rem), | |
| 1263 ERROR_MAX - sizeof (KRB_ERROR)); | |
| 1264 strncat (pop_error, " [server says '", | |
| 1265 ERROR_MAX - strlen (pop_error) - 1); | |
| 1266 strncat (pop_error, err_ret->text.data, | |
| 1267 min (ERROR_MAX - strlen (pop_error) - 1, | |
| 1268 err_ret->text.length)); | |
| 1269 strncat (pop_error, "']", | |
| 1270 ERROR_MAX - strlen (pop_error) - 1); | |
| 1271 } | |
| 1272 else | |
| 1273 { | |
| 1274 strcpy (pop_error, KRB_ERROR); | |
| 1275 strncat (pop_error, error_message (rem), | |
| 1276 ERROR_MAX - sizeof (KRB_ERROR)); | |
| 1277 } | |
| 1278 if (err_ret) | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1279 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
|
1280 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
|
1281 krb5_free_context (kcontext); |
| 9158 | 1282 |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1283 CLOSESOCKET (sock); |
| 9158 | 1284 return (-1); |
| 1285 } | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1286 #else /* ! KERBEROS5 */ |
| 9158 | 1287 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
|
1288 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
|
1289 (char *) krb_realmofhost (realhost), |
| 9158 | 1290 (unsigned long) 0, &msg_data, &cred, schedule, |
| 1291 (struct sockaddr_in *) 0, | |
| 1292 (struct sockaddr_in *) 0, | |
| 1293 "KPOPV0.1"); | |
| 1294 free ((char *) ticket); | |
| 1295 if (rem != KSUCCESS) | |
| 1296 { | |
| 1297 strcpy (pop_error, KRB_ERROR); | |
| 1298 strncat (pop_error, krb_err_txt[rem], | |
| 1299 ERROR_MAX - sizeof (KRB_ERROR)); | |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1300 CLOSESOCKET (sock); |
| 9158 | 1301 return (-1); |
| 1302 } | |
|
19018
f1f7c254aa77
Support auto-configuration of both Kerberos V4 and
Richard M. Stallman <rms@gnu.org>
parents:
17683
diff
changeset
|
1303 #endif /* KERBEROS5 */ |
| 9158 | 1304 } |
| 1305 #endif /* KERBEROS */ | |
| 1306 | |
| 1307 return (sock); | |
| 1308 } /* socket_connection */ | |
| 1309 | |
| 1310 /* | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1311 * Function: pop_getline |
| 9158 | 1312 * |
| 1313 * Purpose: Get a line of text from the connection and return a | |
| 1314 * pointer to it. The carriage return and linefeed at the end of | |
| 1315 * the line are stripped, but periods at the beginnings of lines | |
| 1316 * are NOT dealt with in any special way. | |
| 1317 * | |
| 1318 * Arguments: | |
| 1319 * server The server from which to get the line of text. | |
| 1320 * | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1321 * 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
|
1322 * 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
|
1323 * 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
|
1324 * 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
|
1325 * case of error, an error message is copied into pop_error. |
| 9158 | 1326 * |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1327 * Notes: The line returned is overwritten with each call to pop_getline. |
| 9158 | 1328 * |
| 1329 * Side effects: Closes the connection on error. | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1330 * |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1331 * THE RETURNED LINE MAY CONTAIN EMBEDDED NULLS! |
| 9158 | 1332 */ |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1333 static int |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1334 pop_getline (server, line) |
| 9158 | 1335 popserver server; |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1336 char **line; |
| 9158 | 1337 { |
| 1338 #define GETLINE_ERROR "Error reading from server: " | |
| 1339 | |
| 1340 int ret; | |
|
9674
e5a897cf215d
(getline): When a search of already-read input for CRLF
Richard M. Stallman <rms@gnu.org>
parents:
9613
diff
changeset
|
1341 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
|
1342 |
| 9158 | 1343 if (server->data) |
| 1344 { | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1345 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
|
1346 server->data); |
| 9158 | 1347 if (cp) |
| 1348 { | |
| 1349 int found; | |
| 1350 int data_used; | |
| 1351 | |
| 1352 found = server->buffer_index; | |
| 1353 data_used = (cp + 2) - server->buffer - found; | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1354 |
| 9158 | 1355 *cp = '\0'; /* terminate the string to be returned */ |
| 1356 server->data -= data_used; | |
| 1357 server->buffer_index += data_used; | |
| 1358 | |
| 1359 if (pop_debug) | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1360 /* Embedded nulls will truncate this output prematurely, |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1361 but that's OK because it's just for debugging anyway. */ |
| 9158 | 1362 fprintf (stderr, "<<< %s\n", server->buffer + found); |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1363 *line = server->buffer + found; |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1364 return (data_used - 2); |
| 9158 | 1365 } |
| 1366 else | |
| 1367 { | |
| 1368 bcopy (server->buffer + server->buffer_index, | |
| 1369 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
|
1370 /* 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
|
1371 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
|
1372 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
|
1373 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
|
1374 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
|
1375 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
|
1376 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
|
1377 search_offset = server->data - 1; |
| 9158 | 1378 server->buffer_index = 0; |
| 1379 } | |
| 1380 } | |
| 1381 else | |
| 1382 { | |
| 1383 server->buffer_index = 0; | |
| 1384 } | |
| 1385 | |
| 1386 while (1) | |
| 1387 { | |
| 22236 | 1388 /* There's a "- 1" here to leave room for the null that we put |
| 1389 at the end of the read data below. We put the null there so | |
| 1390 that find_crlf knows where to stop when we call it. */ | |
| 1391 if (server->data == server->buffer_size - 1) | |
| 9158 | 1392 { |
| 22236 | 1393 server->buffer_size += GETLINE_INCR; |
| 1394 server->buffer = (char *)realloc (server->buffer, server->buffer_size); | |
| 1395 if (! server->buffer) | |
| 9158 | 1396 { |
| 22236 | 1397 strcpy (pop_error, "Out of memory in pop_getline"); |
| 1398 pop_trash (server); | |
| 1399 return (-1); | |
| 9158 | 1400 } |
| 1401 } | |
| 22236 | 1402 ret = RECV (server->file, server->buffer + server->data, |
| 1403 server->buffer_size - server->data - 1, 0); | |
| 9158 | 1404 if (ret < 0) |
| 1405 { | |
| 1406 strcpy (pop_error, GETLINE_ERROR); | |
| 1407 strncat (pop_error, strerror (errno), | |
| 1408 ERROR_MAX - sizeof (GETLINE_ERROR)); | |
| 1409 pop_trash (server); | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1410 return (-1); |
| 9158 | 1411 } |
| 1412 else if (ret == 0) | |
| 1413 { | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1414 strcpy (pop_error, "Unexpected EOF from server in pop_getline"); |
| 9158 | 1415 pop_trash (server); |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1416 return (-1); |
| 9158 | 1417 } |
| 1418 else | |
| 1419 { | |
|
9591
0774e217e8aa
Don't declare malloc, realloc, free.
Richard M. Stallman <rms@gnu.org>
parents:
9158
diff
changeset
|
1420 char *cp; |
| 9158 | 1421 server->data += ret; |
|
9591
0774e217e8aa
Don't declare malloc, realloc, free.
Richard M. Stallman <rms@gnu.org>
parents:
9158
diff
changeset
|
1422 server->buffer[server->data] = '\0'; |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1423 |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1424 cp = find_crlf (server->buffer + search_offset, |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1425 server->data - search_offset); |
| 9158 | 1426 if (cp) |
| 1427 { | |
| 1428 int data_used = (cp + 2) - server->buffer; | |
| 1429 *cp = '\0'; | |
| 1430 server->data -= data_used; | |
| 1431 server->buffer_index = data_used; | |
| 1432 | |
| 1433 if (pop_debug) | |
| 1434 fprintf (stderr, "<<< %s\n", server->buffer); | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1435 *line = server->buffer; |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1436 return (data_used - 2); |
| 9158 | 1437 } |
|
17683
975d093d45fb
(getline): Don't miss CRLF pairs when the CR and LF are
Richard M. Stallman <rms@gnu.org>
parents:
16697
diff
changeset
|
1438 /* 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
|
1439 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
|
1440 search_offset += ret - 1; |
| 9158 | 1441 } |
| 1442 } | |
| 1443 | |
| 1444 /* NOTREACHED */ | |
| 1445 } | |
| 1446 | |
| 1447 /* | |
| 1448 * Function: sendline | |
| 1449 * | |
| 1450 * Purpose: Sends a line of text to the POP server. The line of text | |
| 1451 * passed into this function should NOT have the carriage return | |
| 1452 * and linefeed on the end of it. Periods at beginnings of lines | |
| 1453 * will NOT be treated specially by this function. | |
| 1454 * | |
| 1455 * Arguments: | |
| 1456 * server The server to which to send the text. | |
| 1457 * line The line of text to send. | |
| 1458 * | |
| 1459 * Return value: Upon successful completion, a value of 0 will be | |
| 1460 * returned. Otherwise, a non-zero value will be returned, and | |
| 1461 * an error will be copied into pop_error. | |
| 1462 * | |
| 1463 * Side effects: Closes the connection on error. | |
| 1464 */ | |
| 1465 static int | |
| 1466 sendline (server, line) | |
| 1467 popserver server; | |
| 1468 char *line; | |
| 1469 { | |
| 1470 #define SENDLINE_ERROR "Error writing to POP server: " | |
| 1471 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
|
1472 char *buf; |
| 9158 | 1473 |
|
64293
0238a53b950b
Don't include des.h (or variants thereof); krb.h will do it.
Ken Raeburn <raeburn@raeburn.org>
parents:
64083
diff
changeset
|
1474 /* 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
|
1475 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
|
1476 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
|
1477 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
|
1478 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
|
1479 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
|
1480 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
|
1481 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
|
1482 |
|
0238a53b950b
Don't include des.h (or variants thereof); krb.h will do it.
Ken Raeburn <raeburn@raeburn.org>
parents:
64083
diff
changeset
|
1483 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
|
1484 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
|
1485 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
|
1486 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
|
1487 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
|
1488 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
|
1489 ret = fullwrite (server->file, buf, strlen (buf)); |
| 9158 | 1490 |
| 1491 if (ret < 0) | |
| 1492 { | |
| 1493 pop_trash (server); | |
| 1494 strcpy (pop_error, SENDLINE_ERROR); | |
| 1495 strncat (pop_error, strerror (errno), | |
| 1496 ERROR_MAX - sizeof (SENDLINE_ERROR)); | |
| 1497 return (ret); | |
| 1498 } | |
| 1499 | |
| 1500 if (pop_debug) | |
| 1501 fprintf (stderr, ">>> %s\n", line); | |
| 1502 | |
| 1503 return (0); | |
| 1504 } | |
| 1505 | |
| 1506 /* | |
| 1507 * Procedure: fullwrite | |
| 1508 * | |
| 1509 * Purpose: Just like write, but keeps trying until the entire string | |
| 1510 * has been written. | |
| 1511 * | |
| 1512 * Return value: Same as write. Pop_error is not set. | |
| 1513 */ | |
| 1514 static int | |
| 1515 fullwrite (fd, buf, nbytes) | |
| 1516 int fd; | |
| 1517 char *buf; | |
| 1518 int nbytes; | |
| 1519 { | |
| 1520 char *cp; | |
|
20204
44f91b648e03
(fullwrite): Get rid of an extra call to write. Problem
Karl Heuer <kwzh@gnu.org>
parents:
19978
diff
changeset
|
1521 int ret = 0; |
| 9158 | 1522 |
| 1523 cp = buf; | |
|
20204
44f91b648e03
(fullwrite): Get rid of an extra call to write. Problem
Karl Heuer <kwzh@gnu.org>
parents:
19978
diff
changeset
|
1524 while (nbytes && ((ret = SEND (fd, cp, nbytes, 0)) > 0)) |
| 9158 | 1525 { |
| 1526 cp += ret; | |
| 1527 nbytes -= ret; | |
| 1528 } | |
| 1529 | |
| 1530 return (ret); | |
| 1531 } | |
| 1532 | |
| 1533 /* | |
| 1534 * Procedure getok | |
| 1535 * | |
| 1536 * Purpose: Reads a line from the server. If the return indicator is | |
| 1537 * positive, return with a zero exit status. If not, return with | |
| 1538 * a negative exit status. | |
| 1539 * | |
| 1540 * Arguments: | |
| 1541 * server The server to read from. | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1542 * |
| 9158 | 1543 * Returns: 0 for success, else for failure and puts error in pop_error. |
| 1544 * | |
| 14036 | 1545 * Side effects: On failure, may make the connection unusable. |
| 9158 | 1546 */ |
| 1547 static int | |
| 1548 getok (server) | |
| 1549 popserver server; | |
| 1550 { | |
| 1551 char *fromline; | |
| 1552 | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1553 if (pop_getline (server, &fromline) < 0) |
| 9158 | 1554 { |
| 1555 return (-1); | |
| 1556 } | |
| 1557 | |
| 1558 if (! strncmp (fromline, "+OK", 3)) | |
| 1559 return (0); | |
| 1560 else if (! strncmp (fromline, "-ERR", 4)) | |
| 1561 { | |
| 1562 strncpy (pop_error, fromline, ERROR_MAX); | |
| 1563 pop_error[ERROR_MAX-1] = '\0'; | |
| 1564 return (-1); | |
| 1565 } | |
| 1566 else | |
| 1567 { | |
| 1568 strcpy (pop_error, | |
| 1569 "Unexpected response from server; expecting +OK or -ERR"); | |
| 1570 pop_trash (server); | |
| 1571 return (-1); | |
| 1572 } | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1573 } |
| 9158 | 1574 |
| 1575 #if 0 | |
| 1576 /* | |
| 1577 * Function: gettermination | |
| 1578 * | |
| 1579 * Purpose: Gets the next line and verifies that it is a termination | |
| 1580 * line (nothing but a dot). | |
| 1581 * | |
| 1582 * Return value: 0 on success, non-zero with pop_error set on error. | |
| 1583 * | |
| 1584 * Side effects: Closes the connection on error. | |
| 1585 */ | |
| 1586 static int | |
| 1587 gettermination (server) | |
| 1588 popserver server; | |
| 1589 { | |
| 1590 char *fromserver; | |
| 1591 | |
|
21295
f399e51d6d11
(pop_getline): Renamed from getline.
Richard M. Stallman <rms@gnu.org>
parents:
20418
diff
changeset
|
1592 if (pop_getline (server, &fromserver) < 0) |
| 9158 | 1593 return (-1); |
| 1594 | |
| 1595 if (strcmp (fromserver, ".")) | |
| 1596 { | |
| 1597 strcpy (pop_error, | |
| 1598 "Unexpected response from server in gettermination"); | |
| 1599 pop_trash (server); | |
| 1600 return (-1); | |
| 1601 } | |
| 1602 | |
| 1603 return (0); | |
| 1604 } | |
| 1605 #endif | |
| 1606 | |
| 1607 /* | |
| 1608 * Function pop_close | |
| 1609 * | |
| 1610 * Purpose: Close a pop connection, sending a "RSET" command to try to | |
| 1611 * preserve any changes that were made and a "QUIT" command to | |
| 1612 * try to get the server to quit, but ignoring any responses that | |
| 1613 * are received. | |
| 1614 * | |
| 14036 | 1615 * Side effects: The server is unusable after this function returns. |
| 9158 | 1616 * Changes made to the maildrop since the session was started (or |
| 1617 * since the last pop_reset) may be lost. | |
| 1618 */ | |
|
42439
d8a417105504
Remove unnecessary whitespaces.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42412
diff
changeset
|
1619 void |
| 9158 | 1620 pop_close (server) |
| 1621 popserver server; | |
| 1622 { | |
| 1623 pop_trash (server); | |
| 1624 free ((char *) server); | |
| 1625 | |
| 1626 return; | |
| 1627 } | |
| 1628 | |
| 1629 /* | |
| 1630 * Function: pop_trash | |
| 1631 * | |
| 1632 * Purpose: Like pop_close or pop_quit, but doesn't deallocate the | |
| 1633 * memory associated with the server. It is legal to call | |
| 1634 * pop_close or pop_quit after this function has been called. | |
| 1635 */ | |
| 1636 static void | |
| 1637 pop_trash (server) | |
| 1638 popserver server; | |
| 1639 { | |
| 1640 if (server->file >= 0) | |
| 1641 { | |
|
15102
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1642 /* 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
|
1643 if (server->trash_started) |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1644 return; |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1645 server->trash_started = 1; |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1646 |
| 9158 | 1647 sendline (server, "RSET"); |
| 1648 sendline (server, "QUIT"); | |
| 1649 | |
|
15108
442458addd50
(SEND, RECV): Renamed from send, recv.
Richard M. Stallman <rms@gnu.org>
parents:
15102
diff
changeset
|
1650 CLOSESOCKET (server->file); |
| 9158 | 1651 server->file = -1; |
| 1652 if (server->buffer) | |
| 1653 { | |
| 1654 free (server->buffer); | |
| 1655 server->buffer = 0; | |
| 1656 } | |
| 1657 } | |
|
15102
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1658 |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1659 #ifdef WINDOWSNT |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1660 if (have_winsock) |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1661 WSACleanup (); |
|
ed550d0805ca
[WINDOWSNT]: Include winsock.h and ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14238
diff
changeset
|
1662 #endif |
| 9158 | 1663 } |
| 1664 | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1665 /* 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
|
1666 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
|
1667 null, or 0 if it does not contain one. */ |
| 9158 | 1668 |
| 1669 static char * | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1670 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
|
1671 char *in_string; |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1672 int len; |
| 9158 | 1673 { |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1674 while (len--) |
| 9158 | 1675 { |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1676 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
|
1677 { |
|
530b4511e5b3
Only include ../src/config.h if HAVE_CONFIG_H is
Richard M. Stallman <rms@gnu.org>
parents:
9600
diff
changeset
|
1678 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
|
1679 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
|
1680 } |
|
530b4511e5b3
Only include ../src/config.h if HAVE_CONFIG_H is
Richard M. Stallman <rms@gnu.org>
parents:
9600
diff
changeset
|
1681 else |
|
530b4511e5b3
Only include ../src/config.h if HAVE_CONFIG_H is
Richard M. Stallman <rms@gnu.org>
parents:
9600
diff
changeset
|
1682 in_string++; |
| 9158 | 1683 } |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
20204
diff
changeset
|
1684 return (0); |
| 9158 | 1685 } |
| 1686 | |
| 1687 #endif /* MAIL_USE_POP */ | |
| 52401 | 1688 |
| 1689 /* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d | |
| 1690 (do not change this comment) */ |
