1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
|
/*
* imap.c -- IMAP2bis/IMAP4 protocol methods
*
* Copyright 1996 by Eric S. Raymond
* All rights reserved.
* For license terms, see the file COPYING in this directory.
*/
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#include "fetchmail.h"
#include "socket.h"
extern char *strstr(); /* needed on sysV68 R3V7.1. */
/* imap_version values */
#define IMAP2 -1 /* IMAP2 or IMAP2BIS, RFC1176 */
#define IMAP4 0 /* IMAP4 rev 0, RFC1730 */
#define IMAP4rev1 1 /* IMAP4 rev 1, RFC2060 */
static int count, seen, recent, unseen, deletecount, imap_version;
int imap_ok (FILE *sockfp, char *argbuf)
/* parse command response */
{
char buf [POPBUFSIZE+1];
seen = 0;
do {
int ok;
if (ok = gen_recv(sockfp, buf, sizeof(buf)))
return(ok);
/* interpret untagged status responses */
if (strstr(buf, "EXISTS"))
count = atoi(buf+2);
if (strstr(buf, "RECENT"))
recent = atoi(buf+2);
if (strstr(buf, "UNSEEN"))
unseen = atoi(buf+2);
if (strstr(buf, "FLAGS"))
seen = (strstr(buf, "Seen") != (char *)NULL);
} while
(tag[0] != '\0' && strncmp(buf, tag, strlen(tag)));
if (tag[0] == '\0')
{
strcpy(argbuf, buf);
return(PS_SUCCESS);
}
else
{
char *cp;
/* skip the tag */
for (cp = buf; !isspace(*cp); cp++)
continue;
while (isspace(*cp))
cp++;
if (strncmp(cp, "OK", 2) == 0)
{
strcpy(argbuf, cp);
return(PS_SUCCESS);
}
else if (strncmp(cp, "BAD", 2) == 0)
return(PS_ERROR);
else
return(PS_PROTOCOL);
}
}
int imap_getauth(FILE *sockfp, struct query *ctl, char *buf)
/* apply for connection authorization */
{
char rbuf [POPBUFSIZE+1];
/* try to get authorized */
int ok = gen_transact(sockfp,
"LOGIN %s \"%s\"",
ctl->remotename, ctl->password);
if (ok)
return(ok);
/* probe to see if we're running IMAP4 and can use RFC822.PEEK */
gen_send(sockfp, "CAPABILITY");
if (ok = gen_recv(sockfp, rbuf, sizeof(rbuf)))
return(ok);
if (strstr(rbuf, "BAD"))
{
imap_version = IMAP2;
if (outlevel == O_VERBOSE)
error(0, 0, "Protocol identified as IMAP2 or IMAP2BIS");
}
else if (strstr(rbuf, "IMAP4rev1"))
{
imap_version = IMAP4rev1;
if (outlevel == O_VERBOSE)
error(0, 0, "Protocol identified as IMAP4 rev 1");
}
else
{
imap_version = IMAP4;
if (outlevel == O_VERBOSE)
error(0, 0, "Protocol identified as IMAP4 rev 0");
}
peek_capable = (imap_version >= IMAP4);
return(PS_SUCCESS);
}
static int imap_getrange(FILE *sockfp, struct query *ctl, int*countp, int*newp)
/* get range of messages to be fetched */
{
int ok;
/* find out how many messages are waiting */
recent = unseen = 0;
ok = gen_transact(sockfp,
"SELECT %s",
ctl->mailbox ? ctl->mailbox : "INBOX");
if (ok != 0)
{
error(0, 0, "mailbox selection failed");
return(ok);
}
*countp = count;
if (unseen) /* optional response, but better if we see it */
*newp = unseen;
else if (recent) /* mandatory */
*newp = recent;
else
*newp = -1; /* should never happen, RECENT is mandatory */
deletecount = 0;
return(PS_SUCCESS);
}
static int imap_getsizes(FILE *sockfp, int count, int *sizes)
/* capture the sizes of all messages */
{
char buf [POPBUFSIZE+1];
gen_send(sockfp, "FETCH 1:%d RFC822.SIZE", count);
while (SockGets(buf, sizeof(buf), sockfp))
{
int num, size, ok;
if (ok = gen_recv(sockfp, buf, sizeof(buf)))
return(ok);
if (strstr(buf, "OK"))
break;
else if (sscanf(buf, "* %d FETCH (RFC822.SIZE %d)", &num, &size) == 2)
sizes[num - 1] = size;
else
sizes[num - 1] = -1;
}
return(PS_SUCCESS);
}
static int imap_is_old(FILE *sockfp, struct query *ctl, int number)
/* is the given message old? */
{
int ok;
/* expunges change the fetch numbers */
number -= deletecount;
if ((ok = gen_transact(sockfp, "FETCH %d FLAGS", number)) != 0)
return(PS_ERROR);
return(seen);
}
static int imap_fetch(FILE *sockfp, struct query *ctl, int number, int *lenp)
/* request nth message */
{
char buf [POPBUFSIZE+1], *fetch;
int num;
/* expunges change the fetch numbers */
number -= deletecount;
/*
* If we're using IMAP4, we can fetch the message without setting its
* seen flag. This is good! It means that if the protocol exchange
* craps out during the message, it will still be marked `unseen' on
* the server.
*
* However...*don't* do this if we're using keep to suppress deletion!
* In that case, marking the seen flag is the only way to prevent the
* message from being re-fetched on subsequent runs.
*/
switch (imap_version)
{
case IMAP4rev1: /* RFC 2060 */
if (!ctl->keep)
gen_send(sockfp, "FETCH %d BODY.PEEK[]", number);
else
gen_send(sockfp, "FETCH %d BODY", number);
break;
case IMAP4: /* RFC 1730 */
if (!ctl->keep)
gen_send(sockfp, "FETCH %d RFC822.PEEK", number);
else
gen_send(sockfp, "FETCH %d RFC822", number);
break;
default: /* RFC 1176 */
gen_send(sockfp, "FETCH %d RFC822", number);
break;
}
/* looking for FETCH response */
do {
int ok;
if (ok = gen_recv(sockfp, buf, sizeof(buf)))
return(ok);
} while
/* third token can be "RFC822" or "BODY[]" */
(sscanf(buf+2, "%d FETCH (%*s {%d}", &num, lenp) != 2);
if (num != number)
return(PS_ERROR);
else
return(PS_SUCCESS);
}
static int imap_trail(FILE *sockfp, struct query *ctl, int number)
/* discard tail of FETCH response after reading message text */
{
char buf [POPBUFSIZE+1];
/* expunges change the fetch numbers */
/* number -= deletecount; */
return(gen_recv(sockfp, buf, sizeof(buf)));
}
static int imap_delete(FILE *sockfp, struct query *ctl, int number)
/* set delete flag for given message */
{
int ok;
/* expunges change the fetch numbers */
number -= deletecount;
/* use SILENT if possible as a minor throughput optimization */
if ((ok = gen_transact(sockfp,
imap_version >= IMAP4
? "STORE %d +FLAGS.SILENT (\\Deleted)"
: "STORE %d +FLAGS (\\Deleted)",
number)))
return(ok);
/*
* We do an expunge after each message, rather than just before quit,
* so that a line hit during a long session won't result in lots of
* messages being fetched again during the next session.
*/
if ((ok = gen_transact(sockfp, "EXPUNGE")))
return(ok);
deletecount++;
return(PS_SUCCESS);
}
const static struct method imap =
{
"IMAP", /* Internet Message Access Protocol */
143, /* standard IMAP2bis/IMAP4 port */
1, /* this is a tagged protocol */
0, /* no message delimiter */
imap_ok, /* parse command response */
imap_getauth, /* get authorization */
imap_getrange, /* query range of messages */
imap_getsizes, /* grab message sizes */
imap_is_old, /* no UID check */
imap_fetch, /* request given message */
imap_trail, /* eat message trailer */
imap_delete, /* delete the message */
"LOGOUT", /* the IMAP exit command */
};
int doIMAP(struct query *ctl)
/* retrieve messages using IMAP Version 2bis or Version 4 */
{
return(do_protocol(ctl, &imap));
}
/* imap.c ends here */
|