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