1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ IMAP v4r1 client following RFC 2060.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
9 * Gunnar Ritter. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by Gunnar Ritter
22 * and his contributors.
23 * 4. Neither the name of Gunnar Ritter nor the names of his contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY GUNNAR RITTER AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL GUNNAR RITTER OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #define n_FILE obs_imap
42 #ifndef HAVE_AMALGAMATION
47 # include <sys/socket.h>
51 # include <netinet/in.h>
53 # ifdef HAVE_ARPA_INET_H
54 # include <arpa/inet.h>
60 #define IMAP_ANSWER() \
62 if (mp->mb_type != MB_CACHE) {\
64 while (mp->mb_active & MB_COMD)\
65 ok = imap_answer(mp, 1);\
71 /* TODO IMAP_OUT() simply returns instead of doing "actioN" if imap_finish()
72 * TODO fails, which leaves behind leaks in, e.g., imap_append1()!
73 * TODO IMAP_XOUT() was added due to this, but (1) needs to be used everywhere
74 * TODO and (2) doesn't handle all I/O errors itself, yet, too.
75 * TODO I.e., that should be a function, not a macro ... or so.
76 * TODO This entire module needs MASSIVE work! */
77 #define IMAP_OUT(X,Y,ACTION) IMAP_XOUT(X, Y, ACTION, return STOP)
78 #define IMAP_XOUT(X,Y,ACTIONERR,ACTIONBAIL) \
80 if (mp->mb_type != MB_CACHE) {\
81 if (imap_finish(mp) == STOP) {\
84 if (n_poption & n_PO_VERBVERB)\
87 if (swrite(&mp->mb_sock, X) == STOP) {\
96 static struct record
{
97 struct record
*rec_next
;
98 unsigned long rec_count
;
123 static char *responded_tag
;
124 static char *responded_text
;
125 static char *responded_other_text
;
126 static long responded_other_number
;
132 MAILBOX_DATA_MAILBOX
,
137 MESSAGE_DATA_EXPUNGE
,
140 RESPONSE_OTHER_UNKNOWN
143 static enum list_attributes
{
145 LIST_NOINFERIORS
= 001,
151 static int list_hierarchy_delimiter
;
152 static char *list_name
;
155 struct list_item
*l_next
;
158 enum list_attributes l_attr
;
164 static char *imapbuf
; /* TODO not static, use pool */
165 static size_t imapbufsize
;
166 static sigjmp_buf imapjmp
;
167 static sighandler_type savealrm
;
168 static int imapkeepalive
;
169 static long had_exists
= -1;
170 static long had_expunge
= -1;
171 static long expunged_messages
;
172 static int volatile imaplock
;
173 static int same_imap_account
;
174 static bool_t _imap_rdonly
;
176 static char *imap_quotestr(char const *s
);
177 static char *imap_unquotestr(char const *s
);
178 static void imap_delim_init(struct mailbox
*mp
, struct url
const *urlp
);
179 static char const *imap_path_normalize(struct mailbox
*mp
, char const *cp
);
180 /* Returns NULL on error */
181 static char *imap_path_quote(struct mailbox
*mp
, char const *cp
);
182 static void imap_other_get(char *pp
);
183 static void imap_response_get(const char **cp
);
184 static void imap_response_parse(void);
185 static enum okay
imap_answer(struct mailbox
*mp
, int errprnt
);
186 static enum okay
imap_parse_list(void);
187 static enum okay
imap_finish(struct mailbox
*mp
);
188 static void imap_timer_off(void);
189 static void imapcatch(int s
);
190 static void _imap_maincatch(int s
);
191 static enum okay
imap_noop1(struct mailbox
*mp
);
192 static void rec_queue(enum rec_type type
, unsigned long cnt
);
193 static enum okay
rec_dequeue(void);
194 static void rec_rmqueue(void);
195 static void imapalarm(int s
);
196 static enum okay
imap_preauth(struct mailbox
*mp
, struct url
const *urlp
);
197 static enum okay
imap_capability(struct mailbox
*mp
);
198 static enum okay
imap_auth(struct mailbox
*mp
, struct ccred
*ccred
);
200 static enum okay
imap_cram_md5(struct mailbox
*mp
, struct ccred
*ccred
);
202 static enum okay
imap_login(struct mailbox
*mp
, struct ccred
*ccred
);
204 static enum okay
_imap_gssapi(struct mailbox
*mp
, struct ccred
*ccred
);
206 static enum okay
imap_flags(struct mailbox
*mp
, unsigned X
, unsigned Y
);
207 static void imap_init(struct mailbox
*mp
, int n
);
208 static void imap_setptr(struct mailbox
*mp
, int nmail
, int transparent
,
210 static bool_t
_imap_getcred(struct mailbox
*mbp
, struct ccred
*ccredp
,
212 static int _imap_setfile1(struct url
*urlp
, enum fedit_mode fm
,
214 static int imap_fetchdata(struct mailbox
*mp
, struct message
*m
,
215 size_t expected
, int need
, const char *head
,
216 size_t headsize
, long headlines
);
217 static void imap_putstr(struct mailbox
*mp
, struct message
*m
,
218 const char *str
, const char *head
, size_t headsize
,
220 static enum okay
imap_get(struct mailbox
*mp
, struct message
*m
,
222 static void commitmsg(struct mailbox
*mp
, struct message
*to
,
223 struct message
*from
, enum content_info content_info
);
224 static enum okay
imap_fetchheaders(struct mailbox
*mp
, struct message
*m
,
226 static enum okay
imap_exit(struct mailbox
*mp
);
227 static enum okay
imap_delete(struct mailbox
*mp
, int n
, struct message
*m
,
229 static enum okay
imap_close(struct mailbox
*mp
);
230 static enum okay
imap_update(struct mailbox
*mp
);
231 static enum okay
imap_store(struct mailbox
*mp
, struct message
*m
, int n
,
232 int c
, const char *sp
, int needstat
);
233 static enum okay
imap_unstore(struct message
*m
, int n
, const char *flag
);
234 static const char *tag(int new);
235 static char * imap_putflags(int f
);
236 static void imap_getflags(const char *cp
, char const **xp
, enum mflag
*f
);
237 static enum okay
imap_append1(struct mailbox
*mp
, const char *name
, FILE *fp
,
238 off_t off1
, long xsize
, enum mflag flag
, time_t t
);
239 static enum okay
imap_append0(struct mailbox
*mp
, const char *name
, FILE *fp
,
241 static enum okay
imap_list1(struct mailbox
*mp
, const char *base
,
242 struct list_item
**list
, struct list_item
**lend
,
244 static enum okay
imap_list(struct mailbox
*mp
, const char *base
, int strip
,
246 static void dopr(FILE *fp
);
247 static enum okay
imap_copy1(struct mailbox
*mp
, struct message
*m
, int n
,
249 static enum okay
imap_copyuid_parse(const char *cp
,
250 unsigned long *uidvalidity
, unsigned long *olduid
,
251 unsigned long *newuid
);
252 static enum okay
imap_appenduid_parse(const char *cp
,
253 unsigned long *uidvalidity
, unsigned long *uid
);
254 static enum okay
imap_copyuid(struct mailbox
*mp
, struct message
*m
,
256 static enum okay
imap_appenduid(struct mailbox
*mp
, FILE *fp
, time_t t
,
257 long off1
, long xsize
, long size
, long lines
, int flag
,
259 static enum okay
imap_appenduid_cached(struct mailbox
*mp
, FILE *fp
);
260 #ifdef HAVE_IMAP_SEARCH
261 static enum okay
imap_search2(struct mailbox
*mp
, struct message
*m
, int cnt
,
262 const char *spec
, int f
);
264 static enum okay
imap_remove1(struct mailbox
*mp
, const char *name
);
265 static enum okay
imap_rename1(struct mailbox
*mp
, const char *old
,
267 static char * imap_strex(char const *cp
, char const **xp
);
268 static enum okay
check_expunged(void);
271 imap_quotestr(char const *s
)
276 np
= n
= salloc(2 * strlen(s
) + 3);
279 if (*s
== '"' || *s
== '\\')
290 imap_unquotestr(char const *s
)
300 np
= n
= salloc(strlen(s
) + 1);
315 imap_delim_init(struct mailbox
*mp
, struct url
const *urlp
){
320 mp
->mb_imap_delim
[0] = '\0';
322 if((cp
= xok_vlook(imap_delim
, urlp
, OXM_ALL
)) != NULL
){
327 i
= sizeof(n_IMAP_DELIM
) -1;
331 if(i
< n_NELEM(mp
->mb_imap_delim
))
333 memcpy(&mb
.mb_imap_delim
[0], cp
, i
+1);
335 n_err(_("*imap-delim* for %s is too long: %s\n"),
336 urlp
->url_input
, cp
);
342 imap_path_normalize(struct mailbox
*mp
, char const *cp
){
343 char *rv_base
, *rv
, dc2
, dc
, c
, lc
;
347 /* Unless we operate in free fly, honour a non-set *imap-delim* to mean "use
348 * exactly what i have specified" */
349 if(mp
== NULL
|| mp
->mb_imap_delim
[0] == '\0')
350 dcp
= &n_IMAP_DELIM
[0];
352 dcp
= &mp
->mb_imap_delim
[0];
353 dc2
= ((dc
= *dcp
) != '\0') ? *++dcp
: dc
;
355 /* Plain names don't need path quoting */
360 for(cpx
= cp
;; ++cpx
)
361 if((c
= *cpx
) == '\0')
364 if(strchr(n_IMAP_DELIM
, c
)){
370 else if(dc2
&& strchr(dcp
, c
) != NULL
)
373 /* And we don't need to reevaluate what we have seen yet */
374 i
= PTR2SIZE(cpx
- cp
);
375 rv
= rv_base
= salloc(i
+ (j
= strlen(cpx
) +1));
378 memcpy(&rv
[i
], cpx
, j
);
383 /* Squeeze adjacent delimiters, convert remain to dc */
384 for(lc
= '\0'; (c
= *cp
++) != '\0'; lc
= c
){
385 if(c
== dc
|| (lc
!= '\0' && dc2
&& strchr(dcp
, c
) != NULL
))
387 if(c
!= dc
|| lc
!= dc
)
399 imap_path_encode(char const *cp
, bool_t
*err_or_null
){
400 /* To a large extend inspired by dovecot(1) */
403 ui8_t
*be16p_base
, *be16p
;
409 if(err_or_null
== NULL
)
410 err_or_null
= &err_def
;
413 /* Is this a string that works out as "plain US-ASCII"? */
415 if((c
= cp
[l
]) == '\0')
417 else if(c
<= 0x1F || c
>= 0x7F || c
== '&')
422 /* We need to encode in mUTF-7! For that, we first have to convert the
423 * local charset to UTF-8, then convert all characters which need to be
424 * encoded (except plain "&") to UTF-16BE first, then that to mUTF-7.
425 * We can skip the UTF-8 conversion occasionally, however */
426 if(!(n_psonce
& n_PSO_UNICODE
)){
430 emsg
= N_("iconv(3) from locale charset to UTF-8 failed");
432 if((icd
= iconv_open("utf-8", ok_vlook(ttycharset
))) == (iconv_t
)-1)
435 out
.s
= NULL
, out
.l
= 0;
436 in
.s
= n_UNCONST(cp
); /* logical */
439 if((ir
= n_iconv_str(icd
, n_ICONV_NONE
, &out
, &in
, NULL
)) == 0)
440 cp
= savestrbuf(out
.s
, out
.l
);
450 * So: Why not start all over again?
453 /* Is this a string that works out as "plain US-ASCII"? */
455 if((c
= cp
[l
]) == '\0')
457 else if(c
<= 0x1F || c
>= 0x7F || c
== '&')
461 /* We need to encode, save what we have, encode the rest */
464 for(cp
+= l
, l
= 0; cp
[l
] != '\0'; ++l
)
466 be16p_base
= salloc((l
<< 1) +1); /* XXX use n_string, resize */
468 out
.s
= salloc(l_plain
+ (l
<< 2) +1); /* XXX use n_string, resize */
470 memcpy(out
.s
, &cp
[-l_plain
], out
.l
= l_plain
);
473 DBG( l_plain
+= (l
<< 2); )
480 out
.s
[out
.l
+ 0] = '&';
481 out
.s
[out
.l
+ 1] = '-';
483 }else if(c
> 0x1F && c
< 0x7F)
486 static char const mb64ct
[] =
487 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
490 /* Convert consecutive non-representables */
491 emsg
= N_("Invalid UTF-8 sequence, cannot convert to UTF-32");
493 for(be16p
= be16p_base
, --cp
, ++l
;;){
494 if((utf32
= n_utf8_to_utf32(&cp
, &l
)) == UI32_MAX
)
497 /* TODO S-CText: magic utf16 conversions */
499 be16p
[1] = utf32
& 0xFF;
500 be16p
[0] = (utf32
>>= 8, utf32
&= 0xFF);
506 s7e
= 0xD800u
| (utf32
>> 10);
507 be16p
[1] = s7e
& 0xFF;
508 be16p
[0] = (s7e
>>= 8, s7e
&= 0xFF);
509 s7e
= 0xDC00u
| (utf32
&= 0x03FF);
510 be16p
[3] = s7e
& 0xFF;
511 be16p
[2] = (s7e
>>= 8, s7e
&= 0xFF);
517 if((c
= *cp
) > 0x1F && c
< 0x7F)
521 /* And then warp that UTF-16BE to mUTF-7 */
522 out
.s
[out
.l
++] = '&';
523 utf32
= (ui32_t
)PTR2SIZE(be16p
- be16p_base
);
526 for(; utf32
>= 3; be16p
+= 3, utf32
-= 3){
527 out
.s
[out
.l
+0] = mb64ct
[ be16p
[0] >> 2 ];
528 out
.s
[out
.l
+1] = mb64ct
[((be16p
[0] & 0x03) << 4) | (be16p
[1] >> 4)];
529 out
.s
[out
.l
+2] = mb64ct
[((be16p
[1] & 0x0F) << 2) | (be16p
[2] >> 6)];
530 out
.s
[out
.l
+3] = mb64ct
[ be16p
[2] & 0x3F];
534 out
.s
[out
.l
+ 0] = mb64ct
[be16p
[0] >> 2];
536 out
.s
[out
.l
+ 1] = mb64ct
[ (be16p
[0] & 0x03) << 4];
539 out
.s
[out
.l
+ 1] = mb64ct
[((be16p
[0] & 0x03) << 4) |
541 out
.s
[out
.l
+ 2] = mb64ct
[ (be16p
[1] & 0x0F) << 2];
545 out
.s
[out
.l
++] = '-';
549 assert(out
.l
<= l_plain
);
556 n_err(_("Cannot encode IMAP path %s\n %s\n"), cp
, V_(emsg
));
561 imap_path_decode(char const *path
, bool_t
*err_or_null
){
562 /* To a large extend inspired by dovecot(1) TODO use string */
565 ui8_t
*mb64p_base
, *mb64p
, *mb64xp
;
566 char const *emsg
, *cp
;
567 char *rv_base
, *rv
, c
;
571 if(err_or_null
== NULL
)
572 err_or_null
= &err_def
;
575 l
= l_orig
= strlen(path
);
576 rv
= rv_base
= salloc(l
<< 1);
577 memcpy(rv
, path
, l
+1);
579 /* xxx Don't check for invalid characters from malicious servers */
580 if(l
== 0 || (cp
= memchr(path
, '&', l
)) == NULL
)
585 emsg
= N_("Invalid mUTF-7 encoding");
586 i
= PTR2SIZE(cp
- path
);
592 if((c
= *cp
) != '&'){
593 if(c
<= 0x1F || c
>= 0x7F){
594 emsg
= N_("Invalid mUTF-7: unencoded control or 8-bit byte");
602 else if(*++cp
== '-'){
608 emsg
= N_("Invalid mUTF-7: incomplete input");
611 /* mUTF-7 -> UTF-16BE -> UTF-8 */
612 static ui8_t
const mb64dt
[256] = {
615 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
616 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
617 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,62, 63,XX
,XX
,XX
,
618 52,53,54,55, 56,57,58,59, 60,61,XX
,XX
, XX
,XX
,XX
,XX
,
619 XX
, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
620 15,16,17,18, 19,20,21,22, 23,24,25,XX
, XX
,XX
,XX
,XX
,
621 XX
,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
622 41,42,43,44, 45,46,47,48, 49,50,51,XX
, XX
,XX
,XX
,XX
,
623 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
624 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
625 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
626 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
627 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
628 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
629 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
,
630 XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
, XX
,XX
,XX
,XX
633 if(mb64p_base
== NULL
)
634 mb64p_base
= salloc(l
);
636 /* Decode the mUTF-7 to what is indeed UTF-16BE */
637 for(mb64p
= mb64p_base
;;){
639 if((mb64p
[0] = mb64dt
[(ui8_t
)cp
[0]]) == XX
||
640 (mb64p
[1] = mb64dt
[(ui8_t
)cp
[1]]) == XX
)
649 if((*mb64p
++ = mb64dt
[(ui8_t
)c
]) == XX
)
655 if((c
= *cp
++) == '-')
657 if((*mb64p
++ = mb64dt
[(ui8_t
)c
]) == XX
)
661 if(l
> 0 && *cp
== '-'){
671 if(l
>= 2 && cp
[0] == '&' && cp
[1] != '-'){
672 emsg
= N_("Invalid mUTF-7, consecutive encoded sequences");
676 /* Yet halfway decoded mUTF-7, go remaining way to gain UTF-16BE */
677 i
= PTR2SIZE(mb64p
- mb64p_base
);
678 mb64p
= mb64xp
= mb64p_base
;
681 ui8_t ul
, u0
, u1
, u2
, u3
;
683 ul
= (i
>= 4) ? 4 : i
& 0x3;
687 u2
= (ul
< 3) ? 0 : mb64xp
[2];
688 u3
= (ul
< 4) ? 0 : mb64xp
[3];
690 *mb64p
++ = (u0
<<= 2) | (u1
>> 4);
693 *mb64p
++ = (u1
<<= 4) | (u2
>> 2);
696 *mb64p
++ = (u2
<<= 6, u2
&= 0xC0) | u3
;
699 /* UTF-16BE we convert to UTF-8 */
700 i
= PTR2SIZE(mb64p
- mb64p_base
);
702 emsg
= N_("Odd bytecount for UTF-16BE input");
706 /* TODO S-CText: magic utf16 conversions */
707 emsg
= N_("Invalid UTF-16BE encoding");
709 for(mb64p
= mb64p_base
; i
> 0;){
717 /* Not a surrogate? */
718 if(uhi
< 0xD800 || uhi
> 0xDFFF){
722 }else if(uhi
> 0xDBFF)
725 emsg
= N_("Incomplete UTF-16BE surrogate pair");
731 if(ulo
< 0xDC00 || ulo
> 0xDFFF)
734 utf32
= (uhi
&= 0x03FF);
737 utf32
|= (ulo
&= 0x03FF);
742 utf32
= n_utf32_to_utf8(utf32
, rv
);
749 /* We can skip the UTF-8 conversion occasionally */
750 if(!(n_psonce
& n_PSO_UNICODE
)){
754 emsg
= N_("iconv(3) from UTF-8 to locale charset failed");
756 if((icd
= iconv_open(ok_vlook(ttycharset
), "utf-8")) == (iconv_t
)-1)
759 out
.s
= NULL
, out
.l
= 0;
760 in
.l
= strlen(in
.s
= rv_base
);
761 if((ir
= n_iconv_str(icd
, n_ICONV_NONE
, &out
, &in
, NULL
)) == 0)
762 /* Because the length of this is unpredictable, copy */
763 rv_base
= savestrbuf(out
.s
, out
.l
);
779 n_err(_("Cannot decode IMAP path %s\n %s\n"), path
, V_(emsg
));
780 memcpy(rv
= rv_base
, path
, ++l_orig
);
785 imap_path_quote(struct mailbox
*mp
, char const *cp
){
790 cp
= imap_path_normalize(mp
, cp
);
791 cp
= imap_path_encode(cp
, &err
);
792 rv
= err
? NULL
: imap_quotestr(cp
);
798 imap_other_get(char *pp
)
803 if (ascncasecmp(pp
, "FLAGS ", 6) == 0) {
805 response_other
= MAILBOX_DATA_FLAGS
;
806 } else if (ascncasecmp(pp
, "LIST ", 5) == 0) {
808 response_other
= MAILBOX_DATA_LIST
;
809 } else if (ascncasecmp(pp
, "LSUB ", 5) == 0) {
811 response_other
= MAILBOX_DATA_LSUB
;
812 } else if (ascncasecmp(pp
, "MAILBOX ", 8) == 0) {
814 response_other
= MAILBOX_DATA_MAILBOX
;
815 } else if (ascncasecmp(pp
, "SEARCH ", 7) == 0) {
817 response_other
= MAILBOX_DATA_SEARCH
;
818 } else if (ascncasecmp(pp
, "STATUS ", 7) == 0) {
820 response_other
= MAILBOX_DATA_STATUS
;
821 } else if (ascncasecmp(pp
, "CAPABILITY ", 11) == 0) {
823 response_other
= CAPABILITY_DATA
;
825 responded_other_number
= strtol(pp
, &xp
, 10);
828 if (ascncasecmp(xp
, "EXISTS\r\n", 8) == 0) {
829 response_other
= MAILBOX_DATA_EXISTS
;
830 } else if (ascncasecmp(xp
, "RECENT\r\n", 8) == 0) {
831 response_other
= MAILBOX_DATA_RECENT
;
832 } else if (ascncasecmp(xp
, "EXPUNGE\r\n", 9) == 0) {
833 response_other
= MESSAGE_DATA_EXPUNGE
;
834 } else if (ascncasecmp(xp
, "FETCH ", 6) == 0) {
836 response_other
= MESSAGE_DATA_FETCH
;
838 response_other
= RESPONSE_OTHER_UNKNOWN
;
840 responded_other_text
= pp
;
845 imap_response_get(const char **cp
)
848 if (ascncasecmp(*cp
, "OK ", 3) == 0) {
850 response_status
= RESPONSE_OK
;
851 } else if (ascncasecmp(*cp
, "NO ", 3) == 0) {
853 response_status
= RESPONSE_NO
;
854 } else if (ascncasecmp(*cp
, "BAD ", 4) == 0) {
856 response_status
= RESPONSE_BAD
;
857 } else if (ascncasecmp(*cp
, "PREAUTH ", 8) == 0) {
859 response_status
= RESPONSE_PREAUTH
;
860 } else if (ascncasecmp(*cp
, "BYE ", 4) == 0) {
862 response_status
= RESPONSE_BYE
;
864 response_status
= RESPONSE_OTHER
;
869 imap_response_parse(void)
871 static char *parsebuf
; /* TODO Use pool */
872 static size_t parsebufsize
;
874 const char *ip
= imapbuf
;
878 if (parsebufsize
< imapbufsize
)
879 parsebuf
= srealloc(parsebuf
, parsebufsize
= imapbufsize
);
880 memcpy(parsebuf
, imapbuf
, strlen(imapbuf
) + 1);
884 response_type
= RESPONSE_CONT
;
899 imap_response_get(&ip
);
900 pp
= &parsebuf
[ip
- imapbuf
];
901 switch (response_status
) {
903 response_type
= RESPONSE_FATAL
;
906 response_type
= RESPONSE_DATA
;
910 responded_tag
= parsebuf
;
911 while (*pp
&& *pp
!= ' ')
914 response_type
= RESPONSE_ILLEGAL
;
918 while (*pp
&& *pp
== ' ')
921 response_type
= RESPONSE_ILLEGAL
;
924 ip
= &imapbuf
[pp
- parsebuf
];
925 response_type
= RESPONSE_TAGGED
;
926 imap_response_get(&ip
);
927 pp
= &parsebuf
[ip
- imapbuf
];
930 if (response_type
!= RESPONSE_CONT
&& response_type
!= RESPONSE_ILLEGAL
&&
931 response_status
== RESPONSE_OTHER
)
937 imap_answer(struct mailbox
*mp
, int errprnt
)
944 if (mp
->mb_type
== MB_CACHE
)
948 if (sgetline(&imapbuf
, &imapbufsize
, NULL
, &mp
->mb_sock
) > 0) {
949 if (n_poption
& n_PO_VERBVERB
)
950 fputs(imapbuf
, stderr
);
951 imap_response_parse();
952 if (response_type
== RESPONSE_ILLEGAL
)
954 if (response_type
== RESPONSE_CONT
) {
958 if (response_status
== RESPONSE_OTHER
) {
959 if (response_other
== MAILBOX_DATA_EXISTS
) {
960 had_exists
= responded_other_number
;
961 rec_queue(REC_EXISTS
, responded_other_number
);
964 } else if (response_other
== MESSAGE_DATA_EXPUNGE
) {
965 rec_queue(REC_EXPUNGE
, responded_other_number
);
973 if (response_type
== RESPONSE_TAGGED
) {
974 if (asccasecmp(responded_tag
, tag(0)) == 0)
979 switch (response_status
) {
980 case RESPONSE_PREAUTH
:
981 mp
->mb_active
&= ~MB_PREAUTH
;
994 n_err(_("IMAP error: %s"), responded_text
);
996 case RESPONSE_UNKNOWN
: /* does not happen */
999 mp
->mb_active
= MB_NONE
;
1003 case RESPONSE_OTHER
:
1007 if (response_status
!= RESPONSE_OTHER
&&
1008 ascncasecmp(responded_text
, "[ALERT] ", 8) == 0)
1009 n_err(_("IMAP alert: %s"), &responded_text
[8]);
1011 mp
->mb_active
&= ~MB_COMD
;
1014 mp
->mb_active
= MB_NONE
;
1022 imap_parse_list(void)
1030 cp
= responded_other_text
;
1031 list_attributes
= LIST_NONE
;
1033 while (*cp
&& *cp
!= ')') {
1035 if (ascncasecmp(&cp
[1], "Noinferiors ", 12) == 0) {
1036 list_attributes
|= LIST_NOINFERIORS
;
1038 } else if (ascncasecmp(&cp
[1], "Noselect ", 9) == 0) {
1039 list_attributes
|= LIST_NOSELECT
;
1041 } else if (ascncasecmp(&cp
[1], "Marked ", 7) == 0) {
1042 list_attributes
|= LIST_MARKED
;
1044 } else if (ascncasecmp(&cp
[1], "Unmarked ", 9) == 0) {
1045 list_attributes
|= LIST_UNMARKED
;
1057 list_hierarchy_delimiter
= EOF
;
1061 list_hierarchy_delimiter
= *cp
++ & 0377;
1062 if (cp
[0] != '"' || cp
[1] != ' ')
1065 } else if (cp
[0] == 'N' && cp
[1] == 'I' && cp
[2] == 'L' && cp
[3] == ' ') {
1066 list_hierarchy_delimiter
= EOF
;
1073 while (*cp
&& *cp
!= '\r')
1083 imap_finish(struct mailbox
*mp
)
1086 while (mp
->mb_sock
.s_fd
> 0 && mp
->mb_active
& MB_COMD
)
1093 imap_timer_off(void)
1096 if (imapkeepalive
> 0) {
1098 safe_signal(SIGALRM
, savealrm
);
1106 NYD_X
; /* Signal handler */
1109 n_err_sighdl(_("Interrupt\n"));
1110 siglongjmp(imapjmp
, 1);
1113 n_err_sighdl(_("Received SIGPIPE during IMAP operation\n"));
1119 _imap_maincatch(int s
)
1121 NYD_X
; /* Signal handler */
1123 if (interrupts
++ == 0) {
1124 n_err_sighdl(_("Interrupt\n"));
1127 n_go_onintr_for_imap();
1131 imap_noop1(struct mailbox
*mp
)
1134 FILE *queuefp
= NULL
;
1137 snprintf(o
, sizeof o
, "%s NOOP\r\n", tag(1));
1138 IMAP_OUT(o
, MB_COMD
, return STOP
)
1144 imap_fileof(char const *xcp
)
1146 char const *cp
= xcp
;
1151 if (cp
[0] == ':' && cp
[1] == '/' && cp
[2] == '/') {
1155 if (cp
[0] == '/' && state
== 1) {
1173 sighandler_type
volatile oldint
, oldpipe
;
1174 enum okay
volatile rv
= STOP
;
1177 if (mb
.mb_type
!= MB_IMAP
)
1181 if ((oldint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1182 safe_signal(SIGINT
, &_imap_maincatch
);
1183 oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1184 if (sigsetjmp(imapjmp
, 1) == 0) {
1185 if (oldpipe
!= SIG_IGN
)
1186 safe_signal(SIGPIPE
, imapcatch
);
1188 rv
= imap_noop1(&mb
);
1190 safe_signal(SIGINT
, oldint
);
1191 safe_signal(SIGPIPE
, oldpipe
);
1196 n_go_onintr_for_imap();
1201 rec_queue(enum rec_type rt
, unsigned long cnt
)
1206 rp
= scalloc(1, sizeof *rp
);
1208 rp
->rec_count
= cnt
;
1209 if (record
&& recend
) {
1210 recend
->rec_next
= rp
;
1213 record
= recend
= rp
;
1220 struct message
*omessage
;
1221 struct record
*rp
, *rq
;
1222 uiz_t exists
= 0, i
;
1223 enum okay rv
= STOP
;
1230 message
= smalloc((msgCount
+1) * sizeof *message
);
1232 memcpy(message
, omessage
, msgCount
* sizeof *message
);
1233 memset(&message
[msgCount
], 0, sizeof *message
);
1235 rp
= record
, rq
= NULL
;
1237 while (rp
!= NULL
) {
1238 switch (rp
->rec_type
) {
1240 exists
= rp
->rec_count
;
1243 if (rp
->rec_count
== 0) {
1247 if (rp
->rec_count
> (unsigned long)msgCount
) {
1248 if (exists
== 0 || rp
->rec_count
> exists
--)
1254 delcache(&mb
, &message
[rp
->rec_count
-1]);
1255 memmove(&message
[rp
->rec_count
-1], &message
[rp
->rec_count
],
1256 ((msgCount
- rp
->rec_count
+ 1) * sizeof *message
));
1258 /* If the message was part of a collapsed thread,
1259 * the m_collapsed field of one of its ancestors
1260 * should be incremented. It seems hardly possible
1261 * to do this with the current message structure,
1262 * though. The result is that a '+' may be shown
1263 * in the header summary even if no collapsed
1264 * children exists */
1275 record
= recend
= NULL
;
1276 if (rv
== OKAY
&& UICMP(z
, exists
, >, msgCount
)) {
1277 message
= srealloc(message
, (exists
+ 1) * sizeof *message
);
1278 memset(&message
[msgCount
], 0, (exists
- msgCount
+ 1) * sizeof *message
);
1279 for (i
= msgCount
; i
< exists
; ++i
)
1281 imap_flags(&mb
, msgCount
+1, exists
);
1300 for (rp
= record
; rp
!= NULL
;) {
1301 struct record
*tmp
= rp
;
1305 record
= recend
= NULL
;
1313 sighandler_type
volatile saveint
, savepipe
;
1314 NYD_X
; /* Signal handler */
1317 if (imaplock
++ == 0) {
1318 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1319 safe_signal(SIGINT
, &_imap_maincatch
);
1320 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1321 if (sigsetjmp(imapjmp
, 1)) {
1322 safe_signal(SIGINT
, saveint
);
1323 safe_signal(SIGPIPE
, savepipe
);
1326 if (savepipe
!= SIG_IGN
)
1327 safe_signal(SIGPIPE
, imapcatch
);
1328 if (imap_noop1(&mb
) != OKAY
) {
1329 safe_signal(SIGINT
, saveint
);
1330 safe_signal(SIGPIPE
, savepipe
);
1333 safe_signal(SIGINT
, saveint
);
1334 safe_signal(SIGPIPE
, savepipe
);
1337 alarm(imapkeepalive
);
1343 imap_preauth(struct mailbox
*mp
, struct url
const *urlp
)
1347 mp
->mb_active
|= MB_PREAUTH
;
1351 if (!mp
->mb_sock
.s_use_ssl
&& xok_blook(imap_use_starttls
, urlp
, OXM_ALL
)) {
1352 FILE *queuefp
= NULL
;
1355 snprintf(o
, sizeof o
, "%s STARTTLS\r\n", tag(1));
1356 IMAP_OUT(o
, MB_COMD
, return STOP
)
1358 if (ssl_open(urlp
, &mp
->mb_sock
) != OKAY
)
1362 if (xok_blook(imap_use_starttls
, urlp
, OXM_ALL
)) {
1363 n_err(_("No SSL support compiled in\n"));
1368 imap_capability(mp
);
1373 imap_capability(struct mailbox
*mp
)
1376 FILE *queuefp
= NULL
;
1377 enum okay ok
= STOP
;
1381 snprintf(o
, sizeof o
, "%s CAPABILITY\r\n", tag(1));
1382 IMAP_OUT(o
, MB_COMD
, return STOP
)
1383 while (mp
->mb_active
& MB_COMD
) {
1384 ok
= imap_answer(mp
, 0);
1385 if (response_status
== RESPONSE_OTHER
&&
1386 response_other
== CAPABILITY_DATA
) {
1387 cp
= responded_other_text
;
1389 while (spacechar(*cp
))
1391 if (strncmp(cp
, "UIDPLUS", 7) == 0 && spacechar(cp
[7]))
1393 mp
->mb_flags
|= MB_UIDPLUS
;
1394 while (*cp
&& !spacechar(*cp
))
1403 imap_auth(struct mailbox
*mp
, struct ccred
*ccred
)
1408 if (!(mp
->mb_active
& MB_PREAUTH
)) {
1413 switch (ccred
->cc_authtype
) {
1414 case AUTHTYPE_LOGIN
:
1415 rv
= imap_login(mp
, ccred
);
1418 case AUTHTYPE_CRAM_MD5
:
1419 rv
= imap_cram_md5(mp
, ccred
);
1423 case AUTHTYPE_GSSAPI
:
1424 rv
= _imap_gssapi(mp
, ccred
);
1438 imap_cram_md5(struct mailbox
*mp
, struct ccred
*ccred
)
1440 char o
[LINESIZE
], *cp
;
1441 FILE *queuefp
= NULL
;
1442 enum okay rv
= STOP
;
1445 snprintf(o
, sizeof o
, "%s AUTHENTICATE CRAM-MD5\r\n", tag(1));
1446 IMAP_XOUT(o
, 0, goto jleave
, goto jleave
);
1448 if (response_type
!= RESPONSE_CONT
)
1451 cp
= cram_md5_string(&ccred
->cc_user
, &ccred
->cc_pass
, responded_text
);
1454 IMAP_XOUT(cp
, MB_COMD
, goto jleave
, goto jleave
);
1455 while (mp
->mb_active
& MB_COMD
)
1456 rv
= imap_answer(mp
, 1);
1461 #endif /* HAVE_MD5 */
1464 imap_login(struct mailbox
*mp
, struct ccred
*ccred
)
1467 FILE *queuefp
= NULL
;
1468 enum okay rv
= STOP
;
1471 snprintf(o
, sizeof o
, "%s LOGIN %s %s\r\n",
1472 tag(1), imap_quotestr(ccred
->cc_user
.s
), imap_quotestr(ccred
->cc_pass
.s
));
1473 IMAP_XOUT(o
, MB_COMD
, goto jleave
, goto jleave
);
1474 while (mp
->mb_active
& MB_COMD
)
1475 rv
= imap_answer(mp
, 1);
1482 # include "obs-imap-gssapi.h"
1486 imap_select(struct mailbox
*mp
, off_t
*size
, int *cnt
, const char *mbx
,
1490 char const *qname
, *cp
;
1499 if((qname
= imap_path_quote(mp
, mbx
)) == NULL
)
1504 mp
->mb_uidvalidity
= 0;
1505 snprintf(o
, sizeof o
, "%s %s %s\r\n", tag(1),
1506 (fm
& FEDIT_RDONLY
? "EXAMINE" : "SELECT"), qname
);
1507 IMAP_OUT(o
, MB_COMD
, ok
= STOP
;goto jleave
)
1508 while (mp
->mb_active
& MB_COMD
) {
1509 ok
= imap_answer(mp
, 1);
1510 if (response_status
!= RESPONSE_OTHER
&&
1511 (cp
= asccasestr(responded_text
, "[UIDVALIDITY ")) != NULL
)
1512 mp
->mb_uidvalidity
= atol(&cp
[13]);
1514 *cnt
= (had_exists
> 0) ? had_exists
: 0;
1515 if (response_status
!= RESPONSE_OTHER
&&
1516 ascncasecmp(responded_text
, "[READ-ONLY] ", 12) == 0)
1523 imap_flags(struct mailbox
*mp
, unsigned X
, unsigned Y
)
1526 FILE *queuefp
= NULL
;
1529 unsigned x
= X
, y
= Y
, n
;
1532 snprintf(o
, sizeof o
, "%s FETCH %u:%u (FLAGS UID)\r\n", tag(1), x
, y
);
1533 IMAP_OUT(o
, MB_COMD
, return STOP
)
1534 while (mp
->mb_active
& MB_COMD
) {
1536 if (response_status
== RESPONSE_OTHER
&&
1537 response_other
== MESSAGE_DATA_FETCH
) {
1538 n
= responded_other_number
;
1546 if ((cp
= asccasestr(responded_other_text
, "FLAGS ")) != NULL
) {
1551 imap_getflags(cp
, &cp
, &m
->m_flag
);
1554 if ((cp
= asccasestr(responded_other_text
, "UID ")) != NULL
)
1555 m
->m_uid
= strtoul(&cp
[4], NULL
, 10);
1556 getcache1(mp
, m
, NEED_UNSPEC
, 1);
1557 m
->m_flag
&= ~MHIDDEN
;
1560 while (x
<= y
&& message
[x
-1].m_xsize
&& message
[x
-1].m_time
)
1562 while (y
> x
&& message
[y
-1].m_xsize
&& message
[y
-1].m_time
)
1565 snprintf(o
, sizeof o
, "%s FETCH %u:%u (RFC822.SIZE INTERNALDATE)\r\n",
1567 IMAP_OUT(o
, MB_COMD
, return STOP
)
1568 while (mp
->mb_active
& MB_COMD
) {
1570 if (response_status
== RESPONSE_OTHER
&&
1571 response_other
== MESSAGE_DATA_FETCH
) {
1572 n
= responded_other_number
;
1578 if ((cp
= asccasestr(responded_other_text
, "RFC822.SIZE ")) != NULL
)
1579 m
->m_xsize
= strtol(&cp
[12], NULL
, 10);
1580 if ((cp
= asccasestr(responded_other_text
, "INTERNALDATE ")) != NULL
)
1581 m
->m_time
= imap_read_date_time(&cp
[13]);
1586 for (n
= X
; n
<= Y
; ++n
) {
1587 putcache(mp
, &message
[n
-1]);
1595 imap_init(struct mailbox
*mp
, int n
)
1602 m
->m_flag
= MUSED
| MNOFROM
;
1609 imap_setptr(struct mailbox
*mp
, int nmail
, int transparent
, int *prevcount
)
1611 struct message
*omessage
= 0;
1612 int i
, omsgCount
= 0;
1613 enum okay dequeued
= STOP
;
1616 if (nmail
|| transparent
) {
1618 omsgCount
= msgCount
;
1621 dequeued
= rec_dequeue();
1623 if (had_exists
>= 0) {
1624 if (dequeued
!= OKAY
)
1625 msgCount
= had_exists
;
1628 if (had_expunge
>= 0) {
1629 if (dequeued
!= OKAY
)
1630 msgCount
-= had_expunge
;
1634 if (nmail
&& expunged_messages
)
1635 printf("Expunged %ld message%s.\n", expunged_messages
,
1636 (expunged_messages
!= 1 ? "s" : ""));
1637 *prevcount
= omsgCount
- expunged_messages
;
1638 expunged_messages
= 0;
1640 fputs("IMAP error: Negative message count\n", stderr
);
1644 if (dequeued
!= OKAY
) {
1645 message
= scalloc(msgCount
+ 1, sizeof *message
);
1646 for (i
= 0; i
< msgCount
; i
++)
1648 if (!nmail
&& mp
->mb_type
== MB_IMAP
)
1651 imap_flags(mp
, 1, msgCount
);
1652 message
[msgCount
].m_size
= 0;
1653 message
[msgCount
].m_lines
= 0;
1656 if (nmail
|| transparent
)
1657 transflags(omessage
, omsgCount
, transparent
);
1664 imap_setfile(const char *xserver
, enum fedit_mode fm
)
1670 if (!url_parse(&url
, CPROTO_IMAP
, xserver
)) {
1674 if (!ok_blook(v15_compat
) &&
1675 (!(url
.url_flags
& n_URL_HAD_USER
) || url
.url_pass
.s
!= NULL
))
1676 n_err(_("New-style URL used without *v15-compat* being set!\n"));
1678 _imap_rdonly
= ((fm
& FEDIT_RDONLY
) != 0);
1679 rv
= _imap_setfile1(&url
, fm
, 0);
1686 _imap_getcred(struct mailbox
*mbp
, struct ccred
*ccredp
, struct url
*urlp
)
1691 if (ok_blook(v15_compat
))
1692 rv
= ccred_lookup(ccredp
, urlp
);
1695 *xuhp
= ((urlp
->url_flags
& n_URL_HAD_USER
) ? urlp
->url_eu_h_p
.s
1696 : urlp
->url_u_h_p
.s
);
1698 if ((var
= mbp
->mb_imap_pass
) != NULL
) {
1699 var
= savecat("password-", xuhp
);
1700 if ((old
= n_UNCONST(n_var_vlook(var
, FAL0
))) != NULL
)
1702 n_var_vset(var
, (uintptr_t)mbp
->mb_imap_pass
);
1704 rv
= ccred_lookup_old(ccredp
, CPROTO_IMAP
, xuhp
);
1707 n_var_vset(var
, (uintptr_t)old
);
1719 _imap_setfile1(struct url
*urlp
, enum fedit_mode
volatile fm
,
1720 int volatile transparent
)
1724 sighandler_type
volatile saveint
, savepipe
;
1727 int volatile prevcount
= 0;
1728 enum mbflags same_flags
;
1731 if (fm
& FEDIT_NEWMAIL
) {
1732 saveint
= safe_signal(SIGINT
, SIG_IGN
);
1733 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1734 if (saveint
!= SIG_IGN
)
1735 safe_signal(SIGINT
, imapcatch
);
1736 if (savepipe
!= SIG_IGN
)
1737 safe_signal(SIGPIPE
, imapcatch
);
1742 same_flags
= mb
.mb_flags
;
1743 same_imap_account
= 0;
1744 if (mb
.mb_imap_account
!= NULL
&&
1745 (mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
)) {
1746 if (mb
.mb_sock
.s_fd
> 0 && mb
.mb_sock
.s_rsz
>= 0 &&
1747 !strcmp(mb
.mb_imap_account
, urlp
->url_p_eu_h_p
) &&
1748 disconnected(mb
.mb_imap_account
) == 0) {
1749 same_imap_account
= 1;
1750 if (urlp
->url_pass
.s
== NULL
&& mb
.mb_imap_pass
!= NULL
)
1753 } else if ((transparent || mb.mb_type == MB_CACHE) &&
1754 !strcmp(mb.mb_imap_account, urlp->url_p_eu_h_p) &&
1755 urlp->url_pass.s == NULL && mb.mb_imap_pass != NULL)
1758 urlp
->url_pass
.l
= strlen(urlp
->url_pass
.s
= savestr(mb
.mb_imap_pass
));
1762 if (!same_imap_account
&& mb
.mb_imap_pass
!= NULL
) {
1763 free(mb
.mb_imap_pass
);
1764 mb
.mb_imap_pass
= NULL
;
1766 if (!_imap_getcred(&mb
, &ccred
, urlp
)) {
1772 if (!same_imap_account
) {
1773 if (!disconnected(urlp
->url_p_eu_h_p
) && !sopen(&so
, urlp
)) {
1786 if (fm
& FEDIT_SYSBOX
)
1787 n_pstate
&= ~n_PS_EDIT
;
1789 n_pstate
|= n_PS_EDIT
;
1790 if (mb
.mb_imap_account
!= NULL
)
1791 free(mb
.mb_imap_account
);
1792 if (mb
.mb_imap_pass
!= NULL
)
1793 free(mb
.mb_imap_pass
);
1794 mb
.mb_imap_account
= sstrdup(urlp
->url_p_eu_h_p
);
1795 /* TODO This is a hack to allow '@boxname'; in the end everything will be an
1796 * TODO object, and mailbox will naturally have an URL and credentials */
1797 mb
.mb_imap_pass
= sbufdup(ccred
.cc_pass
.s
, ccred
.cc_pass
.l
);
1799 if (!same_imap_account
) {
1800 if (mb
.mb_sock
.s_fd
>= 0)
1801 sclose(&mb
.mb_sock
);
1803 same_imap_account
= 0;
1814 if (mb
.mb_imap_mailbox
!= NULL
)
1815 free(mb
.mb_imap_mailbox
);
1816 assert(urlp
->url_path
.s
!= NULL
);
1817 imap_delim_init(&mb
, urlp
);
1818 mb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&mb
, urlp
->url_path
.s
));
1819 initbox(savecatsep(urlp
->url_p_eu_h_p
,
1820 (mb
.mb_imap_delim
[0] != '\0' ? mb
.mb_imap_delim
[0] : n_IMAP_DELIM
[0]),
1821 mb
.mb_imap_mailbox
));
1823 mb
.mb_type
= MB_VOID
;
1824 mb
.mb_active
= MB_NONE
;
1827 saveint
= safe_signal(SIGINT
, SIG_IGN
);
1828 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1829 if (sigsetjmp(imapjmp
, 1)) {
1830 /* Not safe to use &so; save to use mb.mb_sock?? :-( TODO */
1831 sclose(&mb
.mb_sock
);
1832 safe_signal(SIGINT
, saveint
);
1833 safe_signal(SIGPIPE
, savepipe
);
1836 mb
.mb_type
= MB_VOID
;
1837 mb
.mb_active
= MB_NONE
;
1838 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1841 if (saveint
!= SIG_IGN
)
1842 safe_signal(SIGINT
, imapcatch
);
1843 if (savepipe
!= SIG_IGN
)
1844 safe_signal(SIGPIPE
, imapcatch
);
1846 if (mb
.mb_sock
.s_fd
< 0) {
1847 if (disconnected(mb
.mb_imap_account
)) {
1848 if (cache_setptr(fm
, transparent
) == STOP
)
1849 n_err(_("Mailbox \"%s\" is not cached\n"), urlp
->url_p_eu_h_p_p
);
1852 if ((cp
= xok_vlook(imap_keepalive
, urlp
, OXM_ALL
)) != NULL
) {
1853 if ((imapkeepalive
= strtol(cp
, NULL
, 10)) > 0) {
1854 savealrm
= safe_signal(SIGALRM
, imapalarm
);
1855 alarm(imapkeepalive
);
1860 mb
.mb_sock
.s_desc
= "IMAP";
1861 mb
.mb_sock
.s_onclose
= imap_timer_off
;
1862 if (imap_preauth(&mb
, urlp
) != OKAY
|| imap_auth(&mb
, &ccred
) != OKAY
) {
1863 sclose(&mb
.mb_sock
);
1865 safe_signal(SIGINT
, saveint
);
1866 safe_signal(SIGPIPE
, savepipe
);
1868 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1871 } else /* same account */
1872 mb
.mb_flags
|= same_flags
;
1874 if (n_poption
& n_PO_R_FLAG
)
1876 mb
.mb_perm
= (fm
& FEDIT_RDONLY
) ? 0 : MB_DELE
;
1877 mb
.mb_type
= MB_IMAP
;
1879 assert(urlp
->url_path
.s
!= NULL
);
1880 if (imap_select(&mb
, &mailsize
, &msgCount
, urlp
->url_path
.s
, fm
) != OKAY
) {
1881 /*sclose(&mb.mb_sock);
1883 safe_signal(SIGINT
, saveint
);
1884 safe_signal(SIGPIPE
, savepipe
);
1886 mb
.mb_type
= MB_VOID
;
1887 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1892 imap_setptr(&mb
, ((fm
& FEDIT_NEWMAIL
) != 0), transparent
,
1893 n_UNVOLATILE(&prevcount
));
1896 safe_signal(SIGINT
, saveint
);
1897 safe_signal(SIGPIPE
, savepipe
);
1900 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_type
== MB_IMAP
)
1901 purgecache(&mb
, message
, msgCount
);
1902 if (((fm
& FEDIT_NEWMAIL
) || transparent
) && mb
.mb_sorted
) {
1907 if (!(fm
& FEDIT_NEWMAIL
) && !transparent
) {
1908 n_pstate
&= ~n_PS_SAW_COMMAND
;
1909 n_pstate
|= n_PS_SETFILE_OPENED
;
1912 if ((n_poption
& n_PO_EXISTONLY
) && (mb
.mb_type
== MB_IMAP
||
1913 mb
.mb_type
== MB_CACHE
)) {
1914 rv
= (msgCount
== 0);
1918 if (!(fm
& FEDIT_NEWMAIL
) && !(n_pstate
& n_PS_EDIT
) && msgCount
== 0) {
1919 if ((mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
) &&
1920 !ok_blook(emptystart
))
1921 n_err(_("No mail at %s\n"), urlp
->url_p_eu_h_p_p
);
1926 if (fm
& FEDIT_NEWMAIL
)
1927 newmailinfo(prevcount
);
1935 imap_fetchdata(struct mailbox
*mp
, struct message
*m
, size_t expected
,
1936 int need
, const char *head
, size_t headsize
, long headlines
)
1938 char *line
= NULL
, *lp
;
1939 size_t linesize
= 0, linelen
, size
= 0;
1940 int emptyline
= 0, lines
= 0, excess
= 0;
1944 fseek(mp
->mb_otf
, 0L, SEEK_END
);
1945 offset
= ftell(mp
->mb_otf
);
1948 fwrite(head
, 1, headsize
, mp
->mb_otf
);
1950 while (sgetline(&line
, &linesize
, &linelen
, &mp
->mb_sock
) > 0) {
1952 if (linelen
> expected
) {
1953 excess
= linelen
- expected
;
1957 * Need to mask 'From ' lines. This cannot be done properly
1958 * since some servers pass them as 'From ' and others as
1959 * '>From '. Although one could identify the first kind of
1960 * server in principle, it is not possible to identify the
1961 * second as '>From ' may also come from a server of the
1962 * first type as actual data. So do what is absolutely
1963 * necessary only - mask 'From '.
1965 * If the line is the first line of the message header, it
1966 * is likely a real 'From ' line. In this case, it is just
1967 * ignored since it violates all standards.
1968 * TODO can the latter *really* happen??
1971 /* Since we simply copy over data without doing any transfer
1972 * encoding reclassification/adjustment we *have* to perform
1973 * RFC 4155 compliant From_ quoting here */
1974 if (emptyline
&& is_head(lp
, linelen
, FAL0
)) {
1975 fputc('>', mp
->mb_otf
);
1979 if (lp
[linelen
-1] == '\n' && (linelen
== 1 || lp
[linelen
-2] == '\r')) {
1981 fwrite(lp
, 1, linelen
- 2, mp
->mb_otf
);
1982 size
+= linelen
- 1;
1987 fputc('\n', mp
->mb_otf
);
1989 fwrite(lp
, 1, linelen
, mp
->mb_otf
);
1993 if ((expected
-= linelen
) <= 0)
1997 /* This is very ugly; but some IMAP daemons don't end a
1998 * message with \r\n\r\n, and we need \n\n for mbox format */
1999 fputc('\n', mp
->mb_otf
);
2006 m
->m_size
= size
+ headsize
;
2007 m
->m_lines
= lines
+ headlines
;
2008 m
->m_block
= mailx_blockof(offset
);
2009 m
->m_offset
= mailx_offsetof(offset
);
2012 m
->m_content_info
|= CI_HAVE_HEADER
;
2015 m
->m_content_info
|= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2016 m
->m_xlines
= m
->m_lines
;
2017 m
->m_xsize
= m
->m_size
;
2027 imap_putstr(struct mailbox
*mp
, struct message
*m
, const char *str
,
2028 const char *head
, size_t headsize
, long headlines
)
2035 fseek(mp
->mb_otf
, 0L, SEEK_END
);
2036 offset
= ftell(mp
->mb_otf
);
2038 fwrite(head
, 1, headsize
, mp
->mb_otf
);
2040 fwrite(str
, 1, len
, mp
->mb_otf
);
2041 fputc('\n', mp
->mb_otf
);
2047 m
->m_size
= headsize
+ len
;
2048 m
->m_lines
= headlines
+ 1;
2049 m
->m_block
= mailx_blockof(offset
);
2050 m
->m_offset
= mailx_offsetof(offset
);
2051 m
->m_content_info
|= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2052 m
->m_xlines
= m
->m_lines
;
2053 m
->m_xsize
= m
->m_size
;
2059 imap_get(struct mailbox
*mp
, struct message
*m
, enum needspec need
)
2063 sighandler_type
volatile saveint
, savepipe
;
2064 char * volatile head
;
2065 char const *cp
, *loc
, * volatile item
, * volatile resp
;
2067 size_t volatile headsize
;
2070 long volatile headlines
;
2076 saveint
= savepipe
= SIG_IGN
;
2078 cp
= loc
= item
= resp
= NULL
;
2080 number
= (int)PTR2SIZE(m
- message
+ 1);
2087 if (getcache(mp
, m
, need
) == OKAY
)
2089 if (mp
->mb_type
== MB_CACHE
) {
2090 n_err(_("Message %lu not available\n"), (ul_i
)number
);
2094 if (mp
->mb_sock
.s_fd
< 0) {
2095 n_err(_("IMAP connection closed\n"));
2101 resp
= item
= "RFC822.HEADER";
2104 item
= "BODY.PEEK[]";
2106 if ((m
->m_content_info
& CI_HAVE_HEADER
) && m
->m_size
) {
2107 char *hdr
= smalloc(m
->m_size
);
2109 if (fseek(mp
->mb_itf
, (long)mailx_positionof(m
->m_block
, m
->m_offset
),
2111 fread(hdr
, 1, m
->m_size
, mp
->mb_itf
) != m
->m_size
) {
2116 headsize
= m
->m_size
;
2117 headlines
= m
->m_lines
;
2118 item
= "BODY.PEEK[TEXT]";
2119 resp
= "BODY[TEXT]";
2127 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2128 if (sigsetjmp(imapjmp
, 1)) {
2129 safe_signal(SIGINT
, saveint
);
2130 safe_signal(SIGPIPE
, savepipe
);
2134 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2135 safe_signal(SIGINT
, &_imap_maincatch
);
2136 if (savepipe
!= SIG_IGN
)
2137 safe_signal(SIGPIPE
, imapcatch
);
2140 snprintf(o
, sizeof o
, "%s UID FETCH %lu (%s)\r\n",
2141 tag(1), m
->m_uid
, item
);
2143 if (check_expunged() == STOP
)
2145 snprintf(o
, sizeof o
, "%s FETCH %u (%s)\r\n", tag(1), number
, item
);
2147 IMAP_OUT(o
, MB_COMD
, goto out
)
2149 ok
= imap_answer(mp
, 1);
2152 if (response_status
!= RESPONSE_OTHER
||
2153 response_other
!= MESSAGE_DATA_FETCH
)
2155 if ((loc
= asccasestr(responded_other_text
, resp
)) == NULL
)
2158 if ((cp
= asccasestr(responded_other_text
, "UID "))) {
2166 n
= responded_other_number
;
2167 if ((cp
= strrchr(responded_other_text
, '{')) == NULL
) {
2168 if (m
->m_uid
? m
->m_uid
!= u
: n
!= number
)
2170 if ((cp
= strchr(loc
, '"')) != NULL
) {
2171 cp
= imap_unquotestr(cp
);
2172 imap_putstr(mp
, m
, cp
, head
, headsize
, headlines
);
2174 m
->m_content_info
|= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2175 m
->m_xlines
= m
->m_lines
;
2176 m
->m_xsize
= m
->m_size
;
2180 expected
= atol(&cp
[1]);
2181 if (m
->m_uid
? n
== 0 && m
->m_uid
!= u
: n
!= number
) {
2182 imap_fetchdata(mp
, NULL
, expected
, need
, NULL
, 0, 0);
2186 imap_fetchdata(mp
, &mt
, expected
, need
, head
, headsize
, headlines
);
2188 commitmsg(mp
, m
, &mt
, mt
.m_content_info
);
2191 if (n
== -1 && sgetline(&imapbuf
, &imapbufsize
, NULL
, &mp
->mb_sock
) > 0) {
2192 if (n_poption
& n_PO_VERBVERB
)
2193 fputs(imapbuf
, stderr
);
2194 if ((cp
= asccasestr(imapbuf
, "UID ")) != NULL
) {
2196 if (u
== m
->m_uid
) {
2197 commitmsg(mp
, m
, &mt
, mt
.m_content_info
);
2204 while (mp
->mb_active
& MB_COMD
)
2205 ok
= imap_answer(mp
, 1);
2207 if (saveint
!= SIG_IGN
)
2208 safe_signal(SIGINT
, saveint
);
2209 if (savepipe
!= SIG_IGN
)
2210 safe_signal(SIGPIPE
, savepipe
);
2218 n_go_onintr_for_imap();
2223 imap_header(struct message
*m
)
2228 rv
= imap_get(&mb
, m
, NEED_HEADER
);
2235 imap_body(struct message
*m
)
2240 rv
= imap_get(&mb
, m
, NEED_BODY
);
2246 commitmsg(struct mailbox
*mp
, struct message
*tomp
, struct message
*frommp
,
2247 enum content_info content_info
)
2250 tomp
->m_size
= frommp
->m_size
;
2251 tomp
->m_lines
= frommp
->m_lines
;
2252 tomp
->m_block
= frommp
->m_block
;
2253 tomp
->m_offset
= frommp
->m_offset
;
2254 tomp
->m_content_info
= content_info
& CI_HAVE_MASK
;
2255 if (content_info
& CI_HAVE_BODY
) {
2256 tomp
->m_xlines
= frommp
->m_lines
;
2257 tomp
->m_xsize
= frommp
->m_size
;
2264 imap_fetchheaders(struct mailbox
*mp
, struct message
*m
, int bot
, int topp
)
2272 FILE *queuefp
= NULL
;
2277 snprintf(o
, sizeof o
, "%s UID FETCH %lu:%lu (RFC822.HEADER)\r\n",
2278 tag(1), m
[bot
-1].m_uid
, m
[topp
-1].m_uid
);
2280 if (check_expunged() == STOP
)
2282 snprintf(o
, sizeof o
, "%s FETCH %u:%u (RFC822.HEADER)\r\n",
2285 IMAP_OUT(o
, MB_COMD
, return STOP
)
2289 ok
= imap_answer(mp
, 1);
2290 if (response_status
!= RESPONSE_OTHER
)
2292 if (response_other
!= MESSAGE_DATA_FETCH
)
2294 if (ok
== STOP
|| (cp
=strrchr(responded_other_text
, '{')) == 0) {
2298 if (asccasestr(responded_other_text
, "RFC822.HEADER") == NULL
)
2300 expected
= atol(&cp
[1]);
2301 if (m
[bot
-1].m_uid
) {
2302 if ((cp
= asccasestr(responded_other_text
, "UID ")) != NULL
) {
2304 for (n
= bot
; n
<= topp
; n
++)
2305 if ((unsigned long)u
== m
[n
-1].m_uid
)
2308 imap_fetchdata(mp
, NULL
, expected
, NEED_HEADER
, NULL
, 0, 0);
2314 n
= responded_other_number
;
2315 if (n
<= 0 || n
> msgCount
) {
2316 imap_fetchdata(mp
, NULL
, expected
, NEED_HEADER
, NULL
, 0, 0);
2320 imap_fetchdata(mp
, &mt
, expected
, NEED_HEADER
, NULL
, 0, 0);
2321 if (n
>= 0 && !(m
[n
-1].m_content_info
& CI_HAVE_HEADER
))
2322 commitmsg(mp
, &m
[n
-1], &mt
, CI_HAVE_HEADER
);
2323 if (n
== -1 && sgetline(&imapbuf
, &imapbufsize
, NULL
, &mp
->mb_sock
) > 0) {
2324 if (n_poption
& n_PO_VERBVERB
)
2325 fputs(imapbuf
, stderr
);
2326 if ((cp
= asccasestr(imapbuf
, "UID ")) != NULL
) {
2328 for (n
= bot
; n
<= topp
; n
++)
2329 if ((unsigned long)u
== m
[n
-1].m_uid
)
2331 if (n
<= topp
&& !(m
[n
-1].m_content_info
& CI_HAVE_HEADER
))
2332 commitmsg(mp
, &m
[n
-1], &mt
, CI_HAVE_HEADER
);
2340 while (mp
->mb_active
& MB_COMD
)
2341 ok
= imap_answer(mp
, 1);
2346 imap_getheaders(int volatile bot
, int volatile topp
) /* TODO iterator!! */
2348 sighandler_type saveint
, savepipe
;
2349 /*enum okay ok = STOP;*/
2353 if (mb
.mb_type
== MB_CACHE
)
2357 if (topp
> msgCount
)
2359 for (i
= bot
; i
< topp
; i
++) {
2360 if ((message
[i
-1].m_content_info
& CI_HAVE_HEADER
) ||
2361 getcache(&mb
, &message
[i
-1], NEED_HEADER
) == OKAY
)
2366 for (i
= topp
; i
> bot
; i
--) {
2367 if ((message
[i
-1].m_content_info
& CI_HAVE_HEADER
) ||
2368 getcache(&mb
, &message
[i
-1], NEED_HEADER
) == OKAY
)
2377 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2378 safe_signal(SIGINT
, &_imap_maincatch
);
2379 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2380 if (sigsetjmp(imapjmp
, 1) == 0) {
2381 if (savepipe
!= SIG_IGN
)
2382 safe_signal(SIGPIPE
, imapcatch
);
2384 for (i
= bot
; i
<= topp
; i
+= chunk
) {
2385 int j
= i
+ chunk
- 1;
2387 if (visible(message
+ j
))
2388 /*ok = */imap_fetchheaders(&mb
, message
, i
, j
);
2390 n_go_onintr_for_imap(); /* XXX imaplock? */
2393 safe_signal(SIGINT
, saveint
);
2394 safe_signal(SIGPIPE
, savepipe
);
2399 __imap_exit(struct mailbox
*mp
)
2402 FILE *queuefp
= NULL
;
2405 mp
->mb_active
|= MB_BYE
;
2406 snprintf(o
, sizeof o
, "%s LOGOUT\r\n", tag(1));
2407 IMAP_OUT(o
, MB_COMD
, return STOP
)
2413 imap_exit(struct mailbox
*mp
)
2418 rv
= __imap_exit(mp
);
2419 #if 0 /* TODO the option today: memory leak(s) and halfway reuse or nottin */
2420 free(mp
->mb_imap_pass
);
2421 free(mp
->mb_imap_account
);
2422 free(mp
->mb_imap_mailbox
);
2423 if (mp
->mb_cache_directory
!= NULL
)
2424 free(mp
->mb_cache_directory
);
2425 #ifndef HAVE_DEBUG /* TODO ASSERT LEGACY */
2426 mp
->mb_imap_account
=
2427 mp
->mb_imap_mailbox
=
2428 mp
->mb_cache_directory
= "";
2430 mp
->mb_imap_account
= NULL
; /* for assert legacy time.. */
2431 mp
->mb_imap_mailbox
= NULL
;
2432 mp
->mb_cache_directory
= NULL
;
2435 sclose(&mp
->mb_sock
);
2441 imap_delete(struct mailbox
*mp
, int n
, struct message
*m
, int needstat
)
2444 imap_store(mp
, m
, n
, '+', "\\Deleted", needstat
);
2445 if (mp
->mb_type
== MB_IMAP
)
2452 imap_close(struct mailbox
*mp
)
2455 FILE *queuefp
= NULL
;
2458 snprintf(o
, sizeof o
, "%s CLOSE\r\n", tag(1));
2459 IMAP_OUT(o
, MB_COMD
, return STOP
)
2465 imap_update(struct mailbox
*mp
)
2468 int dodel
, c
, gotcha
= 0, held
= 0, modflags
= 0, needstat
, stored
= 0;
2471 if (!(n_pstate
& n_PS_EDIT
) && mp
->mb_perm
!= 0) {
2474 for (m
= message
; PTRCMP(m
, <, message
+ msgCount
); ++m
)
2475 if (m
->m_flag
& MBOX
)
2478 if (makembox() == STOP
)
2483 for (m
= message
; PTRCMP(m
, <, message
+ msgCount
); ++m
) {
2484 if (mp
->mb_perm
== 0)
2486 else if (n_pstate
& n_PS_EDIT
)
2487 dodel
= ((m
->m_flag
& MDELETED
) != 0);
2489 dodel
= !((m
->m_flag
& MPRESERVE
) || !(m
->m_flag
& MTOUCH
));
2491 /* Fetch the result after around each 800 STORE commands
2492 * sent (approx. 32k data sent). Otherwise, servers will
2493 * try to flush the return queue at some point, leading
2494 * to a deadlock if we are still writing commands but not
2495 * reading their results */
2496 needstat
= stored
> 0 && stored
% 800 == 0;
2497 /* Even if this message has been deleted, continue
2498 * to set further flags. This is necessary to support
2499 * Gmail semantics, where "delete" actually means
2500 * "archive", and the flags are applied to the copy
2502 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
)) {
2503 imap_store(mp
, m
, m
-message
+1, '+', "\\Seen", needstat
);
2506 if (m
->m_flag
& MFLAG
) {
2507 imap_store(mp
, m
, m
-message
+1, '+', "\\Flagged", needstat
);
2510 if (m
->m_flag
& MUNFLAG
) {
2511 imap_store(mp
, m
, m
-message
+1, '-', "\\Flagged", needstat
);
2514 if (m
->m_flag
& MANSWER
) {
2515 imap_store(mp
, m
, m
-message
+1, '+', "\\Answered", needstat
);
2518 if (m
->m_flag
& MUNANSWER
) {
2519 imap_store(mp
, m
, m
-message
+1, '-', "\\Answered", needstat
);
2522 if (m
->m_flag
& MDRAFT
) {
2523 imap_store(mp
, m
, m
-message
+1, '+', "\\Draft", needstat
);
2526 if (m
->m_flag
& MUNDRAFT
) {
2527 imap_store(mp
, m
, m
-message
+1, '-', "\\Draft", needstat
);
2532 imap_delete(mp
, m
-message
+1, m
, needstat
);
2535 } else if (mp
->mb_type
!= MB_CACHE
||
2536 (!(n_pstate
& n_PS_EDIT
) &&
2537 !(m
->m_flag
& (MBOXED
| MSAVED
| MDELETED
))) ||
2538 (m
->m_flag
& (MBOXED
| MPRESERVE
| MTOUCH
)) ==
2539 (MPRESERVE
| MTOUCH
) ||
2540 ((n_pstate
& n_PS_EDIT
) && !(m
->m_flag
& MDELETED
)))
2542 if (m
->m_flag
& MNEW
) {
2544 m
->m_flag
|= MSTATUS
;
2551 for (m
= &message
[0]; PTRCMP(m
, <, message
+ msgCount
); ++m
)
2552 if (!(m
->m_flag
& MUNLINKED
) &&
2553 m
->m_flag
& (MBOXED
| MDELETED
| MSAVED
| MSTATUS
| MFLAG
|
2554 MUNFLAG
| MANSWER
| MUNANSWER
| MDRAFT
| MUNDRAFT
)) {
2559 /* XXX should be readonly (but our IMAP code is weird...) */
2560 if (!(n_poption
& (n_PO_EXISTONLY
| n_PO_HEADERSONLY
| n_PO_HEADERLIST
)) &&
2562 if ((gotcha
|| modflags
) && (n_pstate
& n_PS_EDIT
)) {
2563 printf(_("\"%s\" "), displayname
);
2564 printf((ok_blook(bsdcompat
) || ok_blook(bsdmsgs
))
2565 ? _("complete\n") : _("updated.\n"));
2566 } else if (held
&& !(n_pstate
& n_PS_EDIT
)) {
2568 printf(_("Held 1 message in %s\n"), displayname
);
2570 printf(_("Held %d messages in %s\n"), held
, displayname
);
2579 imap_quit(bool_t hold_sigs_on
)
2581 sighandler_type
volatile saveint
, savepipe
;
2588 if (mb
.mb_type
== MB_CACHE
) {
2589 rv
= (imap_update(&mb
) == OKAY
);
2595 if (mb
.mb_sock
.s_fd
< 0) {
2596 n_err(_("IMAP connection closed\n"));
2601 saveint
= safe_signal(SIGINT
, SIG_IGN
);
2602 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2603 if (sigsetjmp(imapjmp
, 1)) {
2604 safe_signal(SIGINT
, saveint
);
2605 safe_signal(SIGPIPE
, saveint
);
2609 if (saveint
!= SIG_IGN
)
2610 safe_signal(SIGINT
, imapcatch
);
2611 if (savepipe
!= SIG_IGN
)
2612 safe_signal(SIGPIPE
, imapcatch
);
2614 rv
= (imap_update(&mb
) == OKAY
);
2615 if(!same_imap_account
&& imap_exit(&mb
) != OKAY
)
2618 safe_signal(SIGINT
, saveint
);
2619 safe_signal(SIGPIPE
, savepipe
);
2629 imap_store(struct mailbox
*mp
, struct message
*m
, int n
, int c
, const char *sp
,
2633 FILE *queuefp
= NULL
;
2636 if (mp
->mb_type
== MB_CACHE
&& (queuefp
= cache_queue(mp
)) == NULL
)
2639 snprintf(o
, sizeof o
, "%s UID STORE %lu %cFLAGS (%s)\r\n",
2640 tag(1), m
->m_uid
, c
, sp
);
2642 if (check_expunged() == STOP
)
2644 snprintf(o
, sizeof o
, "%s STORE %u %cFLAGS (%s)\r\n", tag(1), n
, c
, sp
);
2646 IMAP_OUT(o
, MB_COMD
, return STOP
)
2650 mb
.mb_active
&= ~MB_COMD
;
2651 if (queuefp
!= NULL
)
2657 imap_undelete(struct message
*m
, int n
)
2662 rv
= imap_unstore(m
, n
, "\\Deleted");
2668 imap_unread(struct message
*m
, int n
)
2673 rv
= imap_unstore(m
, n
, "\\Seen");
2679 imap_unstore(struct message
*m
, int n
, const char *flag
)
2681 sighandler_type saveint
, savepipe
;
2682 enum okay
volatile rv
= STOP
;
2686 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2687 safe_signal(SIGINT
, &_imap_maincatch
);
2688 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2689 if (sigsetjmp(imapjmp
, 1) == 0) {
2690 if (savepipe
!= SIG_IGN
)
2691 safe_signal(SIGPIPE
, imapcatch
);
2693 rv
= imap_store(&mb
, m
, n
, '-', flag
, 1);
2695 safe_signal(SIGINT
, saveint
);
2696 safe_signal(SIGPIPE
, savepipe
);
2701 n_go_onintr_for_imap();
2714 snprintf(ts
, sizeof ts
, "T%lu", n
);
2720 c_imapcodec(void *vp
){
2723 char const **argv
, *varname
, *varres
, *act
, *cp
;
2727 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
2730 for(cp
= act
; *cp
!= '\0' && !blankspacechar(*cp
); ++cp
)
2734 alen
= PTR2SIZE(cp
- act
);
2738 n_pstate_err_no
= n_ERR_NONE
;
2739 varres
= imap_path_normalize(NULL
, cp
);
2741 if(is_ascncaseprefix(act
, "encode", alen
))
2742 varres
= imap_path_encode(varres
, &err
);
2743 else if(is_ascncaseprefix(act
, "decode", alen
))
2744 varres
= imap_path_decode(varres
, &err
);
2749 n_pstate_err_no
= n_ERR_CANCELED
;
2754 if(varname
!= NULL
){
2755 if(!n_var_vset(varname
, (uintptr_t)varres
)){
2756 n_pstate_err_no
= n_ERR_NOTSUP
;
2762 in
.l
= strlen(in
.s
= n_UNCONST(varres
));
2763 makeprint(&in
, &out
);
2764 if(fprintf(n_stdout
, "%s\n", out
.s
) < 0){
2765 n_pstate_err_no
= n_err_no
;
2773 return (vp
!= NULL
? 0 : 1);
2775 n_err(_("Synopsis: imapcodec: <e[ncode]|d[ecode]> <rest-of-line>\n"));
2776 n_pstate_err_no
= n_ERR_INVAL
;
2782 c_imap_imap(void *vp
)
2785 sighandler_type saveint
, savepipe
;
2786 struct mailbox
*mp
= &mb
;
2787 FILE *queuefp
= NULL
;
2788 enum okay
volatile ok
= STOP
;
2791 if (mp
->mb_type
!= MB_IMAP
) {
2792 printf("Not operating on an IMAP mailbox.\n");
2796 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2797 safe_signal(SIGINT
, &_imap_maincatch
);
2798 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2799 if (sigsetjmp(imapjmp
, 1) == 0) {
2800 if (savepipe
!= SIG_IGN
)
2801 safe_signal(SIGPIPE
, imapcatch
);
2803 snprintf(o
, sizeof o
, "%s %s\r\n", tag(1), (char *)vp
);
2804 IMAP_OUT(o
, MB_COMD
, goto out
)
2805 while (mp
->mb_active
& MB_COMD
) {
2806 ok
= imap_answer(mp
, 0);
2807 fputs(responded_text
, stdout
);
2811 safe_signal(SIGINT
, saveint
);
2812 safe_signal(SIGPIPE
, savepipe
);
2816 n_go_onintr_for_imap();
2821 imap_newmail(int nmail
)
2825 if (nmail
&& had_exists
< 0 && had_expunge
< 0) {
2831 if (had_exists
== msgCount
&& had_expunge
< 0)
2832 /* Some servers always respond with EXISTS to NOOP. If
2833 * the mailbox has been changed but the number of messages
2834 * has not, an EXPUNGE must also had been sent; otherwise,
2835 * nothing has changed */
2838 return (had_expunge
>= 0 ? 2 : (had_exists
>= 0 ? 1 : 0));
2842 imap_putflags(int f
)
2848 bp
= buf
= salloc(100);
2849 if (f
& (MREAD
| MFLAGGED
| MANSWERED
| MDRAFTED
)) {
2854 for (cp
= "\\Seen"; *cp
; cp
++)
2860 for (cp
= "\\Flagged"; *cp
; cp
++)
2863 if (f
& MANSWERED
) {
2866 for (cp
= "\\Answered"; *cp
; cp
++)
2872 for (cp
= "\\Draft"; *cp
; cp
++)
2884 imap_getflags(const char *cp
, char const **xp
, enum mflag
*f
)
2887 while (*cp
!= ')') {
2889 if (ascncasecmp(cp
, "\\Seen", 5) == 0)
2891 else if (ascncasecmp(cp
, "\\Recent", 7) == 0)
2893 else if (ascncasecmp(cp
, "\\Deleted", 8) == 0)
2895 else if (ascncasecmp(cp
, "\\Flagged", 8) == 0)
2897 else if (ascncasecmp(cp
, "\\Answered", 9) == 0)
2899 else if (ascncasecmp(cp
, "\\Draft", 6) == 0)
2911 imap_append1(struct mailbox
*mp
, const char *name
, FILE *fp
, off_t off1
,
2912 long xsize
, enum mflag flag
, time_t t
)
2914 char o
[LINESIZE
], *buf
;
2915 size_t bufsize
, buflen
, cnt
;
2916 long size
, lines
, ysize
;
2928 if((qname
= imap_path_quote(mp
, name
)) == NULL
)
2931 if (mp
->mb_type
== MB_CACHE
) {
2932 queuefp
= cache_queue(mp
);
2933 if (queuefp
== NULL
) {
2940 buf
= smalloc(bufsize
= LINESIZE
);
2945 if (fseek(fp
, off1
, SEEK_SET
) < 0) {
2950 snprintf(o
, sizeof o
, "%s APPEND %s %s%s {%ld}\r\n",
2951 tag(1), qname
, imap_putflags(flag
), imap_make_date_time(t
), size
);
2952 IMAP_XOUT(o
, MB_COMD
, goto jleave
, rv
=STOP
;goto jleave
)
2953 while (mp
->mb_active
& MB_COMD
) {
2954 rv
= imap_answer(mp
, twice
);
2955 if (response_type
== RESPONSE_CONT
)
2959 if (mp
->mb_type
!= MB_CACHE
&& rv
== STOP
) {
2968 fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1);
2971 buf
[buflen
- 1] = '\r';
2973 if (mp
->mb_type
!= MB_CACHE
)
2974 swrite1(&mp
->mb_sock
, buf
, buflen
+1, 1);
2976 fwrite(buf
, 1, buflen
+1, queuefp
);
2979 if (mp
->mb_type
!= MB_CACHE
)
2980 swrite(&mp
->mb_sock
, "\r\n");
2982 fputs("\r\n", queuefp
);
2983 while (mp
->mb_active
& MB_COMD
) {
2984 rv
= imap_answer(mp
, 0);
2985 if (response_status
== RESPONSE_NO
/*&&
2986 ascncasecmp(responded_text,
2987 "[TRYCREATE] ", 12) == 0*/) {
2994 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), qname
);
2995 IMAP_XOUT(o
, MB_COMD
, goto jleave
, rv
=STOP
;goto jleave
)
2996 while (mp
->mb_active
& MB_COMD
)
2997 rv
= imap_answer(mp
, 1);
3000 imap_created_mailbox
++;
3002 } else if (rv
!= OKAY
)
3003 n_err(_("IMAP error: %s"), responded_text
);
3004 else if (response_status
== RESPONSE_OK
&& (mp
->mb_flags
& MB_UIDPLUS
))
3005 imap_appenduid(mp
, fp
, t
, off1
, xsize
, ysize
, lines
, flag
, name
);
3008 if (queuefp
!= NULL
)
3017 imap_append0(struct mailbox
*mp
, const char *name
, FILE *fp
, long offset
)
3019 char *buf
, *bp
, *lp
;
3020 size_t bufsize
, buflen
, cnt
;
3021 off_t off1
= -1, offs
;
3023 enum {_NONE
= 0, _INHEAD
= 1<<0, _NLSEP
= 1<<1} state
;
3029 buf
= smalloc(bufsize
= LINESIZE
);
3032 offs
= offset
/* BSD will move due to O_APPEND! ftell(fp) */;
3036 for (flag
= MNEW
, state
= _NLSEP
;;) {
3037 bp
= fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1);
3040 ((state
& (_INHEAD
| _NLSEP
)) == _NLSEP
&&
3041 is_head(buf
, buflen
, FAL0
))) {
3042 if (off1
!= (off_t
)-1) {
3043 rv
= imap_append1(mp
, name
, fp
, off1
, size
, flag
, tim
);
3046 fseek(fp
, offs
+buflen
, SEEK_SET
);
3048 off1
= offs
+ buflen
;
3054 tim
= unixtime(buf
);
3060 if (buf
[0] == '\n') {
3063 } else if (state
& _INHEAD
) {
3064 if (ascncasecmp(buf
, "status", 6) == 0) {
3066 while (whitechar(*lp
))
3069 while (*++lp
!= '\0')
3078 } else if (ascncasecmp(buf
, "x-status", 8) == 0) {
3080 while (whitechar(*lp
))
3083 while (*++lp
!= '\0')
3106 imap_append(const char *xserver
, FILE *fp
, long offset
)
3108 sighandler_type
volatile saveint
, savepipe
;
3111 enum okay rv
= STOP
;
3114 if (!url_parse(&url
, CPROTO_IMAP
, xserver
))
3116 if (!ok_blook(v15_compat
) &&
3117 (!(url
.url_flags
& n_URL_HAD_USER
) || url
.url_pass
.s
!= NULL
))
3118 n_err(_("New-style URL used without *v15-compat* being set!\n"));
3119 assert(url
.url_path
.s
!= NULL
);
3122 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3123 safe_signal(SIGINT
, &_imap_maincatch
);
3124 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3125 if (sigsetjmp(imapjmp
, 1))
3127 if (savepipe
!= SIG_IGN
)
3128 safe_signal(SIGPIPE
, imapcatch
);
3130 if ((mb
.mb_type
== MB_CACHE
|| mb
.mb_sock
.s_fd
> 0) && mb
.mb_imap_account
&&
3131 !strcmp(url
.url_p_eu_h_p
, mb
.mb_imap_account
)) {
3132 rv
= imap_append0(&mb
, url
.url_path
.s
, fp
, offset
);
3136 memset(&mx
, 0, sizeof mx
);
3138 if (!_imap_getcred(&mx
, &ccred
, &url
))
3141 imap_delim_init(&mx
, &url
);
3142 mx
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&mx
, url
.url_path
.s
));
3144 if (disconnected(url
.url_p_eu_h_p
) == 0) {
3145 if (!sopen(&mx
.mb_sock
, &url
))
3147 mx
.mb_sock
.s_desc
= "IMAP";
3148 mx
.mb_type
= MB_IMAP
;
3149 mx
.mb_imap_account
= n_UNCONST(url
.url_p_eu_h_p
);
3150 /* TODO the code now did
3151 * TODO mx.mb_imap_mailbox = mbx->url.url_patth.s;
3152 * TODO though imap_mailbox is sfree()d and mbx
3153 * TODO is possibly even a constant
3154 * TODO i changed this to sstrdup() sofar, as is used
3155 * TODO somewhere else in this file for this! */
3156 if (imap_preauth(&mx
, &url
) != OKAY
||
3157 imap_auth(&mx
, &ccred
) != OKAY
) {
3158 sclose(&mx
.mb_sock
);
3161 rv
= imap_append0(&mx
, url
.url_path
.s
, fp
, offset
);
3164 mx
.mb_imap_account
= n_UNCONST(url
.url_p_eu_h_p
);
3165 mx
.mb_type
= MB_CACHE
;
3166 rv
= imap_append0(&mx
, url
.url_path
.s
, fp
, offset
);
3173 safe_signal(SIGINT
, saveint
);
3174 safe_signal(SIGPIPE
, savepipe
);
3179 n_go_onintr_for_imap();
3184 imap_list1(struct mailbox
*mp
, const char *base
, struct list_item
**list
,
3185 struct list_item
**lend
, int level
)
3187 char o
[LINESIZE
], *cp
;
3188 struct list_item
*lp
;
3189 const char *qname
, *bp
;
3197 if((qname
= imap_path_quote(mp
, base
)) == NULL
)
3200 *list
= *lend
= NULL
;
3201 snprintf(o
, sizeof o
, "%s LIST %s %%\r\n", tag(1), qname
);
3202 IMAP_OUT(o
, MB_COMD
, goto jleave
)
3203 while (mp
->mb_active
& MB_COMD
) {
3204 ok
= imap_answer(mp
, 1);
3205 if (response_status
== RESPONSE_OTHER
&&
3206 response_other
== MAILBOX_DATA_LIST
&& imap_parse_list() == OKAY
) {
3207 cp
= imap_path_decode(imap_unquotestr(list_name
), NULL
);
3208 lp
= csalloc(1, sizeof *lp
);
3210 for (bp
= base
; *bp
!= '\0' && *bp
== *cp
; ++bp
)
3212 lp
->l_base
= *cp
? cp
: savestr(base
);
3213 lp
->l_attr
= list_attributes
;
3214 lp
->l_level
= level
+1;
3215 lp
->l_delim
= list_hierarchy_delimiter
;
3216 if (*list
&& *lend
) {
3217 (*lend
)->l_next
= lp
;
3228 imap_list(struct mailbox
*mp
, const char *base
, int strip
, FILE *fp
)
3230 struct list_item
*list
, *lend
, *lp
, *lx
, *ly
;
3237 depth
= (cp
= ok_vlook(imap_list_depth
)) != NULL
? atoi(cp
) : 2;
3238 if ((rv
= imap_list1(mp
, base
, &list
, &lend
, 0)) == STOP
)
3241 if (list
== NULL
|| lend
== NULL
)
3244 for (lp
= list
; lp
; lp
= lp
->l_next
)
3245 if (lp
->l_delim
!= '/' && lp
->l_delim
!= EOF
&& lp
->l_level
< depth
&&
3246 !(lp
->l_attr
& LIST_NOINFERIORS
)) {
3247 cp
= salloc((n
= strlen(lp
->l_name
)) + 2);
3248 memcpy(cp
, lp
->l_name
, n
);
3249 cp
[n
] = lp
->l_delim
;
3251 if (imap_list1(mp
, cp
, &lx
, &ly
, lp
->l_level
) == OKAY
&& lx
&& ly
) {
3252 lp
->l_has_children
= 1;
3253 if (strcmp(cp
, lx
->l_name
) == 0)
3262 for (lp
= list
; lp
; lp
= lp
->l_next
) {
3265 for (bp
= base
; *bp
&& *bp
== *cp
; bp
++)
3269 if (!(lp
->l_attr
& LIST_NOSELECT
))
3270 fprintf(fp
, "%s\n", *cp
? cp
: base
);
3271 else if (lp
->l_has_children
== 0)
3272 fprintf(fp
, "%s%c\n", *cp
? cp
: base
,
3273 (lp
->l_delim
!= EOF
? lp
->l_delim
: '\n'));
3281 imap_folders(const char * volatile name
, int strip
)
3283 sighandler_type saveint
, savepipe
;
3284 const char * volatile fold
, *cp
, *sp
;
3289 cp
= protbase(name
);
3290 sp
= mb
.mb_imap_account
;
3291 if (sp
== NULL
|| strcmp(cp
, sp
)) {
3293 _("Cannot perform `folders' but when on the very IMAP "
3294 "account; the current one is\n `%s' -- "
3295 "try `folders @'\n"),
3296 (sp
!= NULL
? sp
: _("[NONE]")));
3300 fold
= imap_fileof(name
);
3301 if (n_psonce
& n_PSO_TTYOUT
) {
3302 if ((fp
= Ftmp(NULL
, "imapfold", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3304 n_perr(_("tmpfile"), 0);
3311 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3312 safe_signal(SIGINT
, &_imap_maincatch
);
3313 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3314 if (sigsetjmp(imapjmp
, 1)) /* TODO imaplock? */
3316 if (savepipe
!= SIG_IGN
)
3317 safe_signal(SIGPIPE
, imapcatch
);
3319 if (mb
.mb_type
== MB_CACHE
)
3320 cache_list(&mb
, fold
, strip
, fp
);
3322 imap_list(&mb
, fold
, strip
, fp
);
3326 if (n_psonce
& n_PSO_TTYOUT
)
3333 if (n_psonce
& n_PSO_TTYOUT
) {
3339 n_err(_("Folder not found\n"));
3343 safe_signal(SIGINT
, saveint
);
3344 safe_signal(SIGPIPE
, savepipe
);
3345 if (n_psonce
& n_PSO_TTYOUT
)
3350 n_go_onintr_for_imap();
3359 long n
= 0, mx
= 0, columns
, width
;
3363 if ((out
= Ftmp(NULL
, "imapdopr", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3365 n_perr(_("tmpfile"), 0);
3369 while ((c
= getc(fp
)) != EOF
) {
3379 width
= n_scrnwidth
;
3380 if (mx
< width
/ 2) {
3381 columns
= width
/ (mx
+2);
3382 snprintf(o
, sizeof o
, "sort | pr -%lu -w%lu -t", columns
, width
);
3384 strncpy(o
, "sort", sizeof o
)[sizeof o
- 1] = '\0';
3385 n_child_run(ok_vlook(SHELL
), NULL
, fileno(fp
), fileno(out
), "-c", o
, NULL
,
3387 page_or_print(out
, 0);
3394 imap_copy1(struct mailbox
*mp
, struct message
*m
, int n
, const char *name
)
3398 bool_t twice
, stored
;
3405 twice
= stored
= FAL0
;
3410 i
= strlen(name
= imap_fileof(name
));
3411 if(i
== 0 || (i
> 0 && name
[i
- 1] == '/'))
3412 name
= savecat(name
, "INBOX");
3413 if((qname
= imap_path_quote(mp
, name
)) == NULL
)
3417 if (mp
->mb_type
== MB_CACHE
) {
3418 if ((queuefp
= cache_queue(mp
)) == NULL
)
3423 /* Since it is not possible to set flags on the copy, recently
3424 * set flags must be set on the original to include it in the copy */
3425 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
))
3426 imap_store(mp
, m
, n
, '+', "\\Seen", 0);
3427 if (m
->m_flag
&MFLAG
)
3428 imap_store(mp
, m
, n
, '+', "\\Flagged", 0);
3429 if (m
->m_flag
&MUNFLAG
)
3430 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3431 if (m
->m_flag
&MANSWER
)
3432 imap_store(mp
, m
, n
, '+', "\\Answered", 0);
3433 if (m
->m_flag
&MUNANSWER
)
3434 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3435 if (m
->m_flag
&MDRAFT
)
3436 imap_store(mp
, m
, n
, '+', "\\Draft", 0);
3437 if (m
->m_flag
&MUNDRAFT
)
3438 imap_store(mp
, m
, n
, '-', "\\Draft", 0);
3441 snprintf(o
, sizeof o
, "%s UID COPY %lu %s\r\n", tag(1), m
->m_uid
, qname
);
3443 if (check_expunged() == STOP
)
3445 snprintf(o
, sizeof o
, "%s COPY %u %s\r\n", tag(1), n
, qname
);
3447 IMAP_OUT(o
, MB_COMD
, goto out
)
3448 while (mp
->mb_active
& MB_COMD
)
3449 ok
= imap_answer(mp
, twice
);
3451 if (mp
->mb_type
== MB_IMAP
&& mp
->mb_flags
& MB_UIDPLUS
&&
3452 response_status
== RESPONSE_OK
)
3453 imap_copyuid(mp
, m
, name
);
3455 if (response_status
== RESPONSE_NO
&& !twice
) {
3456 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), qname
);
3457 IMAP_OUT(o
, MB_COMD
, goto out
)
3458 while (mp
->mb_active
& MB_COMD
)
3459 ok
= imap_answer(mp
, 1);
3461 imap_created_mailbox
++;
3467 if (queuefp
!= NULL
)
3470 /* ... and reset the flag to its initial value so that the 'exit'
3471 * command still leaves the message unread */
3473 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
)) {
3474 imap_store(mp
, m
, n
, '-', "\\Seen", 0);
3477 if (m
->m_flag
& MFLAG
) {
3478 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3481 if (m
->m_flag
& MUNFLAG
) {
3482 imap_store(mp
, m
, n
, '+', "\\Flagged", 0);
3485 if (m
->m_flag
& MANSWER
) {
3486 imap_store(mp
, m
, n
, '-', "\\Answered", 0);
3489 if (m
->m_flag
& MUNANSWER
) {
3490 imap_store(mp
, m
, n
, '+', "\\Answered", 0);
3493 if (m
->m_flag
& MDRAFT
) {
3494 imap_store(mp
, m
, n
, '-', "\\Draft", 0);
3497 if (m
->m_flag
& MUNDRAFT
) {
3498 imap_store(mp
, m
, n
, '+', "\\Draft", 0);
3502 mp
->mb_active
|= MB_COMD
;
3503 (void)imap_finish(mp
);
3510 imap_copy(struct message
*m
, int n
, const char *name
)
3512 sighandler_type saveint
, savepipe
;
3513 enum okay
volatile rv
= STOP
;
3517 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3518 safe_signal(SIGINT
, &_imap_maincatch
);
3519 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3520 if (sigsetjmp(imapjmp
, 1) == 0) {
3521 if (savepipe
!= SIG_IGN
)
3522 safe_signal(SIGPIPE
, imapcatch
);
3524 rv
= imap_copy1(&mb
, m
, n
, name
);
3526 safe_signal(SIGINT
, saveint
);
3527 safe_signal(SIGPIPE
, savepipe
);
3532 n_go_onintr_for_imap();
3537 imap_copyuid_parse(const char *cp
, unsigned long *uidvalidity
,
3538 unsigned long *olduid
, unsigned long *newuid
)
3544 *uidvalidity
= strtoul(cp
, &xp
, 10);
3545 *olduid
= strtoul(xp
, &yp
, 10);
3546 *newuid
= strtoul(yp
, &zp
, 10);
3547 rv
= (*uidvalidity
&& *olduid
&& *newuid
&& xp
> cp
&& *xp
== ' ' &&
3548 yp
> xp
&& *yp
== ' ' && zp
> yp
&& *zp
== ']');
3554 imap_appenduid_parse(const char *cp
, unsigned long *uidvalidity
,
3561 *uidvalidity
= strtoul(cp
, &xp
, 10);
3562 *uid
= strtoul(xp
, &yp
, 10);
3563 rv
= (*uidvalidity
&& *uid
&& xp
> cp
&& *xp
== ' ' && yp
> xp
&&
3570 imap_copyuid(struct mailbox
*mp
, struct message
*m
, const char *name
)
3575 unsigned long uidvalidity
, olduid
, newuid
;
3581 memset(&xmb
, 0, sizeof xmb
);
3583 if ((cp
= asccasestr(responded_text
, "[COPYUID ")) == NULL
||
3584 imap_copyuid_parse(&cp
[9], &uidvalidity
, &olduid
, &newuid
) == STOP
)
3590 xmb
.mb_cache_directory
= NULL
;
3591 xmb
.mb_imap_account
= sstrdup(mp
->mb_imap_account
);
3592 xmb
.mb_imap_pass
= sstrdup(mp
->mb_imap_pass
);
3593 memcpy(&xmb
.mb_imap_delim
[0], &mp
->mb_imap_delim
[0],
3594 sizeof(xmb
.mb_imap_delim
));
3595 xmb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&xmb
, name
));
3596 if (mp
->mb_cache_directory
!= NULL
)
3597 xmb
.mb_cache_directory
= sstrdup(mp
->mb_cache_directory
);
3598 xmb
.mb_uidvalidity
= uidvalidity
;
3602 memset(&xm
, 0, sizeof xm
);
3604 if ((rv
= getcache1(mp
, &xm
, NEED_UNSPEC
, 3)) != OKAY
)
3606 getcache(mp
, &xm
, NEED_HEADER
);
3607 getcache(mp
, &xm
, NEED_BODY
);
3609 if ((m
->m_content_info
& CI_HAVE_HEADER
) == 0)
3610 getcache(mp
, m
, NEED_HEADER
);
3611 if ((m
->m_content_info
& CI_HAVE_BODY
) == 0)
3612 getcache(mp
, m
, NEED_BODY
);
3616 xm
.m_flag
&= ~MFULLYCACHED
;
3617 putcache(&xmb
, &xm
);
3619 if (xmb
.mb_cache_directory
!= NULL
)
3620 free(xmb
.mb_cache_directory
);
3621 if (xmb
.mb_imap_mailbox
!= NULL
)
3622 free(xmb
.mb_imap_mailbox
);
3623 if (xmb
.mb_imap_pass
!= NULL
)
3624 free(xmb
.mb_imap_pass
);
3625 if (xmb
.mb_imap_account
!= NULL
)
3626 free(xmb
.mb_imap_account
);
3632 imap_appenduid(struct mailbox
*mp
, FILE *fp
, time_t t
, long off1
, long xsize
,
3633 long size
, long lines
, int flag
, const char *name
)
3638 unsigned long uidvalidity
, uid
;
3644 if ((cp
= asccasestr(responded_text
, "[APPENDUID ")) == NULL
||
3645 imap_appenduid_parse(&cp
[11], &uidvalidity
, &uid
) == STOP
)
3651 xmb
.mb_cache_directory
= NULL
;
3652 /* XXX mb_imap_delim reused */
3653 xmb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&xmb
, name
));
3654 xmb
.mb_uidvalidity
= uidvalidity
;
3655 xmb
.mb_otf
= xmb
.mb_itf
= fp
;
3657 memset(&xm
, 0, sizeof xm
);
3658 xm
.m_flag
= (flag
& MREAD
) | MNEW
;
3660 xm
.m_block
= mailx_blockof(off1
);
3661 xm
.m_offset
= mailx_offsetof(off1
);
3664 xm
.m_lines
= xm
.m_xlines
= lines
;
3666 xm
.m_content_info
= CI_HAVE_HEADER
| CI_HAVE_BODY
;
3667 putcache(&xmb
, &xm
);
3669 free(xmb
.mb_imap_mailbox
);
3676 imap_appenduid_cached(struct mailbox
*mp
, FILE *fp
)
3680 long size
, xsize
, ysize
, lines
;
3681 enum mflag flag
= MNEW
;
3682 char *name
, *buf
, *bp
;
3684 size_t bufsize
, buflen
, cnt
;
3685 enum okay rv
= STOP
;
3688 buf
= smalloc(bufsize
= LINESIZE
);
3691 if (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) == NULL
)
3694 for (bp
= buf
; *bp
!= ' '; ++bp
) /* strip old tag */
3699 if ((cp
= strrchr(bp
, '{')) == NULL
)
3702 xsize
= atol(&cp
[1]) + 2;
3703 if ((name
= imap_strex(&bp
[7], &cp
)) == NULL
)
3709 imap_getflags(cp
, &cp
, &flag
);
3710 while (*++cp
== ' ')
3713 t
= imap_read_date_time(cp
);
3715 if ((tp
= Ftmp(NULL
, "imapapui", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3722 if (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) == NULL
)
3725 buf
[--buflen
] = '\0';
3726 buf
[buflen
-1] = '\n';
3727 fwrite(buf
, 1, buflen
, tp
);
3734 imap_appenduid(mp
, tp
, t
, 0, xsize
-2, ysize
-1, lines
-1, flag
,
3735 imap_unquotestr(name
));
3745 #ifdef HAVE_IMAP_SEARCH
3747 imap_search2(struct mailbox
*mp
, struct message
*m
, int cnt
, const char *spec
,
3750 char *o
, *xp
, *cs
, c
;
3752 FILE *queuefp
= NULL
;
3756 enum okay ok
= STOP
;
3760 for (cp
= spec
; *cp
; cp
++)
3763 cp
= ok_vlook(ttycharset
);
3765 if (asccasecmp(cp
, "utf-8") && asccasecmp(cp
, "utf8")) {
3770 if ((it
= n_iconv_open("utf-8", cp
)) != (iconv_t
)-1) {
3771 sz
= strlen(spec
) + 1;
3772 nsp
= nspec
= salloc(nsz
= 6*strlen(spec
) + 1);
3773 if (n_iconv_buf(it
, n_ICONV_DEFAULT
,
3774 (char const**)&spec
, &sz
, &nsp
, &nsz
) == 0 &&
3783 cp
= imap_quotestr(cp
);
3784 cs
= salloc(n
= strlen(cp
) + 10);
3785 snprintf(cs
, n
, "CHARSET %s ", cp
);
3789 o
= ac_alloc(osize
= strlen(spec
) + 60);
3790 snprintf(o
, osize
, "%s UID SEARCH %s%s\r\n", tag(1), cs
, spec
);
3791 IMAP_OUT(o
, MB_COMD
, goto out
)
3792 while (mp
->mb_active
& MB_COMD
) {
3793 ok
= imap_answer(mp
, 0);
3794 if (response_status
== RESPONSE_OTHER
&&
3795 response_other
== MAILBOX_DATA_SEARCH
) {
3796 xp
= responded_other_text
;
3797 while (*xp
&& *xp
!= '\r') {
3798 n
= strtoul(xp
, &xp
, 10);
3799 for (i
= 0; i
< cnt
; i
++)
3800 if (m
[i
].m_uid
== n
&& !(m
[i
].m_flag
& MHIDDEN
) &&
3801 (f
== MDELETED
|| !(m
[i
].m_flag
& MDELETED
)))
3812 imap_search1(const char * volatile spec
, int f
)
3814 sighandler_type saveint
, savepipe
;
3815 enum okay
volatile rv
= STOP
;
3818 if (mb
.mb_type
!= MB_IMAP
)
3822 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3823 safe_signal(SIGINT
, &_imap_maincatch
);
3824 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3825 if (sigsetjmp(imapjmp
, 1) == 0) {
3826 if (savepipe
!= SIG_IGN
)
3827 safe_signal(SIGPIPE
, imapcatch
);
3829 rv
= imap_search2(&mb
, message
, msgCount
, spec
, f
);
3831 safe_signal(SIGINT
, saveint
);
3832 safe_signal(SIGPIPE
, savepipe
);
3837 n_go_onintr_for_imap();
3840 #endif /* HAVE_IMAP_SEARCH */
3843 imap_thisaccount(const char *cp
)
3848 if (mb
.mb_type
!= MB_CACHE
&& mb
.mb_type
!= MB_IMAP
)
3850 else if ((mb
.mb_type
!= MB_CACHE
&& mb
.mb_sock
.s_fd
< 0) ||
3851 mb
.mb_imap_account
== NULL
)
3854 rv
= !strcmp(protbase(cp
), mb
.mb_imap_account
);
3860 imap_remove(const char * volatile name
)
3862 sighandler_type
volatile saveint
, savepipe
;
3863 enum okay
volatile rv
= STOP
;
3866 if (mb
.mb_type
!= MB_IMAP
) {
3867 n_err(_("Refusing to remove \"%s\" in disconnected mode\n"), name
);
3871 if (!imap_thisaccount(name
)) {
3872 n_err(_("Can only remove mailboxes on current IMAP server: "
3873 "\"%s\" not removed\n"), name
);
3878 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3879 safe_signal(SIGINT
, &_imap_maincatch
);
3880 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3881 if (sigsetjmp(imapjmp
, 1) == 0) {
3882 if (savepipe
!= SIG_IGN
)
3883 safe_signal(SIGPIPE
, imapcatch
);
3885 rv
= imap_remove1(&mb
, imap_fileof(name
));
3887 safe_signal(SIGINT
, saveint
);
3888 safe_signal(SIGPIPE
, savepipe
);
3892 rv
= cache_remove(name
);
3896 n_go_onintr_for_imap();
3901 imap_remove1(struct mailbox
*mp
, const char *name
)
3913 if((qname
= imap_path_quote(mp
, name
)) != NULL
){
3914 o
= ac_alloc(os
= strlen(qname
) + 100);
3915 snprintf(o
, os
, "%s DELETE %s\r\n", tag(1), qname
);
3916 IMAP_OUT(o
, MB_COMD
, goto out
)
3917 while (mp
->mb_active
& MB_COMD
)
3918 ok
= imap_answer(mp
, 1);
3926 imap_rename(const char *old
, const char *new)
3928 sighandler_type saveint
, savepipe
;
3929 enum okay
volatile rv
= STOP
;
3932 if (mb
.mb_type
!= MB_IMAP
) {
3933 n_err(_("Refusing to rename mailboxes in disconnected mode\n"));
3937 if (!imap_thisaccount(old
) || !imap_thisaccount(new)) {
3938 n_err(_("Can only rename mailboxes on current IMAP "
3939 "server: \"%s\" not renamed to \"%s\"\n"), old
, new);
3944 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3945 safe_signal(SIGINT
, &_imap_maincatch
);
3946 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3947 if (sigsetjmp(imapjmp
, 1) == 0) {
3948 if (savepipe
!= SIG_IGN
)
3949 safe_signal(SIGPIPE
, imapcatch
);
3951 rv
= imap_rename1(&mb
, imap_fileof(old
), imap_fileof(new));
3953 safe_signal(SIGINT
, saveint
);
3954 safe_signal(SIGPIPE
, savepipe
);
3958 rv
= cache_rename(old
, new);
3962 n_go_onintr_for_imap();
3967 imap_rename1(struct mailbox
*mp
, const char *old
, const char *new)
3971 char const *qoname
, *qnname
;
3979 if((qoname
= imap_path_quote(mp
, old
)) != NULL
&&
3980 (qnname
= imap_path_quote(mp
, new)) != NULL
){
3981 o
= ac_alloc(os
= strlen(qoname
) + strlen(qnname
) + 100);
3982 snprintf(o
, os
, "%s RENAME %s %s\r\n", tag(1), qoname
, qnname
);
3983 IMAP_OUT(o
, MB_COMD
, goto out
)
3984 while (mp
->mb_active
& MB_COMD
)
3985 ok
= imap_answer(mp
, 1);
3993 imap_dequeue(struct mailbox
*mp
, FILE *fp
)
3995 char o
[LINESIZE
], *newname
, *buf
, *bp
, *cp
, iob
[4096];
3996 size_t bufsize
, buflen
, cnt
;
3997 long offs
, offs1
, offs2
, octets
;
3998 int twice
, gotcha
= 0;
3999 FILE *queuefp
= NULL
;
4000 enum okay ok
= OKAY
, rok
= OKAY
;
4003 buf
= smalloc(bufsize
= LINESIZE
);
4006 while ((offs1
= ftell(fp
)) >= 0 &&
4007 fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) != NULL
) {
4008 for (bp
= buf
; *bp
!= ' '; ++bp
) /* strip old tag */
4013 if ((offs
= ftell(fp
)) < 0)
4016 snprintf(o
, sizeof o
, "%s %s", tag(1), bp
);
4017 if (ascncasecmp(bp
, "UID COPY ", 9) == 0) {
4019 while (digitchar(*cp
))
4025 if ((newname
= imap_strex(cp
, NULL
)) == NULL
)
4027 IMAP_OUT(o
, MB_COMD
, continue)
4028 while (mp
->mb_active
& MB_COMD
)
4029 ok
= imap_answer(mp
, twice
);
4030 if (response_status
== RESPONSE_NO
&& twice
++ == 0)
4032 if (response_status
== RESPONSE_OK
&& mp
->mb_flags
& MB_UIDPLUS
) {
4033 imap_copyuid(mp
, NULL
, imap_unquotestr(newname
));
4035 } else if (ascncasecmp(bp
, "UID STORE ", 10) == 0) {
4036 IMAP_OUT(o
, MB_COMD
, continue)
4037 while (mp
->mb_active
& MB_COMD
)
4038 ok
= imap_answer(mp
, 1);
4041 } else if (ascncasecmp(bp
, "APPEND ", 7) == 0) {
4042 if ((cp
= strrchr(bp
, '{')) == NULL
)
4044 octets
= atol(&cp
[1]) + 2;
4045 if ((newname
= imap_strex(&bp
[7], NULL
)) == NULL
)
4047 IMAP_OUT(o
, MB_COMD
, continue)
4048 while (mp
->mb_active
& MB_COMD
) {
4049 ok
= imap_answer(mp
, twice
);
4050 if (response_type
== RESPONSE_CONT
)
4054 if (twice
++ == 0 && fseek(fp
, offs
, SEEK_SET
) >= 0)
4058 while (octets
> 0) {
4059 size_t n
= (UICMP(z
, octets
, >, sizeof iob
)
4060 ? sizeof iob
: (size_t)octets
);
4062 if (n
!= fread(iob
, 1, n
, fp
))
4064 swrite1(&mp
->mb_sock
, iob
, n
, 1);
4066 swrite(&mp
->mb_sock
, "");
4067 while (mp
->mb_active
& MB_COMD
) {
4068 ok
= imap_answer(mp
, 0);
4069 if (response_status
== RESPONSE_NO
&& twice
++ == 0) {
4070 if (fseek(fp
, offs
, SEEK_SET
) < 0)
4075 if (response_status
== RESPONSE_OK
&& mp
->mb_flags
& MB_UIDPLUS
) {
4076 if ((offs2
= ftell(fp
)) < 0)
4078 fseek(fp
, offs1
, SEEK_SET
);
4079 if (imap_appenduid_cached(mp
, fp
) == STOP
) {
4080 (void)fseek(fp
, offs2
, SEEK_SET
);
4086 n_err(_("Invalid command in IMAP cache queue: \"%s\"\n"), bp
);
4091 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), newname
);
4092 IMAP_OUT(o
, MB_COMD
, continue)
4093 while (mp
->mb_active
& MB_COMD
)
4094 ok
= imap_answer(mp
, 1);
4100 ftruncate(fileno(fp
), 0);
4108 imap_strex(char const *cp
, char const **xp
)
4117 for (cq
= cp
+ 1; *cq
!= '\0'; ++cq
) {
4120 else if (*cq
== '"')
4126 n
= salloc(cq
- cp
+ 2);
4127 memcpy(n
, cp
, cq
- cp
+1);
4128 n
[cq
- cp
+ 1] = '\0';
4137 check_expunged(void)
4142 if (expunged_messages
> 0) {
4143 n_err(_("Command not executed - messages have been expunged\n"));
4152 c_connect(void *vp
) /* TODO v15-compat mailname<->URL (with password) */
4155 int rv
, omsgCount
= msgCount
;
4159 if (mb
.mb_type
== MB_IMAP
&& mb
.mb_sock
.s_fd
> 0) {
4160 n_err(_("Already connected\n"));
4165 if (!url_parse(&url
, CPROTO_IMAP
, mailname
)) {
4169 ok_bclear(disconnected
);
4170 n_var_vclear(savecat("disconnected-", url
.url_u_h_p
.s
));
4172 if (mb
.mb_type
== MB_CACHE
) {
4173 enum fedit_mode fm
= FEDIT_NONE
;
4176 if (!(n_pstate
& n_PS_EDIT
))
4178 _imap_setfile1(&url
, fm
, 1);
4179 if (msgCount
> omsgCount
)
4180 newmailinfo(omsgCount
);
4189 c_disconnect(void *vp
) /* TODO v15-compat mailname<->URL (with password) */
4192 int rv
= 1, *msgvec
= vp
;
4195 if (mb
.mb_type
== MB_CACHE
) {
4196 n_err(_("Not connected\n"));
4199 if (mb
.mb_type
!= MB_IMAP
|| cached_uidvalidity(&mb
) == 0) {
4200 n_err(_("The current mailbox is not cached\n"));
4204 if (!url_parse(&url
, CPROTO_IMAP
, mailname
))
4209 ok_bset(disconnected
);
4210 if (mb
.mb_type
== MB_IMAP
) {
4211 enum fedit_mode fm
= FEDIT_NONE
;
4214 if (!(n_pstate
& n_PS_EDIT
))
4216 sclose(&mb
.mb_sock
);
4217 _imap_setfile1(&url
, fm
, 1);
4228 int rv
= 1, *msgvec
= vp
, *ip
;
4232 if (mb
.mb_type
!= MB_IMAP
) {
4233 n_err(_("Not connected to an IMAP server\n"));
4236 if (cached_uidvalidity(&mb
) == 0) {
4237 n_err(_("The current mailbox is not cached\n"));
4242 for (ip
= msgvec
; *ip
; ++ip
) {
4243 mp
= &message
[*ip
- 1];
4244 if (!(mp
->m_content_info
& CI_HAVE_BODY
)) {
4257 disconnected(const char *file
)
4263 if (ok_blook(disconnected
)) {
4268 if (!url_parse(&url
, CPROTO_IMAP
, file
)) {
4272 rv
= (n_var_vlook(savecat("disconnected-", url
.url_u_h_p
.s
), FAL0
) != NULL
);
4280 transflags(struct message
*omessage
, long omsgCount
, int transparent
)
4282 struct message
*omp
, *nmp
, *newdot
, *newprevdot
;
4290 while (PTRCMP(omp
, <, omessage
+ omsgCount
) &&
4291 PTRCMP(nmp
, <, message
+ msgCount
)) {
4292 if (dot
&& nmp
->m_uid
== dot
->m_uid
)
4294 if (prevdot
&& nmp
->m_uid
== prevdot
->m_uid
)
4296 if (omp
->m_uid
== nmp
->m_uid
) {
4297 hf
= nmp
->m_flag
& MHIDDEN
;
4298 if (transparent
&& mb
.mb_type
== MB_IMAP
)
4299 omp
->m_flag
&= ~MHIDDEN
;
4301 if (transparent
&& mb
.mb_type
== MB_CACHE
)
4302 nmp
[-1].m_flag
|= hf
;
4303 } else if (omp
->m_uid
< nmp
->m_uid
)
4310 prevdot
= newprevdot
;
4316 imap_read_date_time(const char *cp
)
4320 int i
, year
, month
, day
, hour
, minute
, second
, sign
= -1;
4323 /* "25-Jul-2004 15:33:44 +0200"
4325 * 0 5 10 15 20 25 */
4326 if (cp
[0] != '"' || strlen(cp
) < 28 || cp
[27] != '"')
4328 day
= strtol(&cp
[1], NULL
, 10);
4330 if (ascncasecmp(&cp
[4], n_month_names
[i
], 3) == 0)
4332 if (n_month_names
[++i
][0] == '\0')
4336 year
= strtol(&cp
[8], NULL
, 10);
4337 hour
= strtol(&cp
[13], NULL
, 10);
4338 minute
= strtol(&cp
[16], NULL
, 10);
4339 second
= strtol(&cp
[19], NULL
, 10);
4340 if ((t
= combinetime(year
, month
, day
, hour
, minute
, second
)) == (time_t)-1)
4354 t
+= strtol(buf
, NULL
, 10) * sign
* 3600;
4357 t
+= strtol(buf
, NULL
, 10) * sign
* 60;
4367 imap_make_date_time(time_t t
)
4371 int tzdiff
, tzdiff_hour
, tzdiff_min
;
4374 tzdiff
= t
- mktime(gmtime(&t
));
4375 tzdiff_hour
= (int)(tzdiff
/ 60);
4376 tzdiff_min
= tzdiff_hour
% 60;
4378 tmptr
= localtime(&t
);
4379 if (tmptr
->tm_isdst
> 0)
4381 snprintf(s
, sizeof s
, "\"%02d-%s-%04d %02d:%02d:%02d %+03d%02d\"",
4382 tmptr
->tm_mday
, n_month_names
[tmptr
->tm_mon
], tmptr
->tm_year
+ 1900,
4383 tmptr
->tm_hour
, tmptr
->tm_min
, tmptr
->tm_sec
, tzdiff_hour
, tzdiff_min
);
4389 (protbase
)(char const *cp n_MEMORY_DEBUG_ARGS
)
4394 np
= n
= (n_autorec_alloc_from_pool
)(NULL
, strlen(cp
) +1
4395 n_MEMORY_DEBUG_ARGSCALL
);
4397 /* Just ignore the `is-system-mailbox' prefix XXX */
4398 if (cp
[0] == '%' && cp
[1] == ':')
4401 while (*cp
!= '\0') {
4402 if (cp
[0] == ':' && cp
[1] == '/' && cp
[2] == '/') {
4406 } else if (cp
[0] == '/')
4415 #endif /* HAVE_IMAP */