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