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
+ 1)
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
;
993 n_err(_("IMAP error: %s"), responded_text
);
995 case RESPONSE_UNKNOWN
: /* does not happen */
998 mp
->mb_active
= MB_NONE
;
1002 case RESPONSE_OTHER
:
1006 if (response_status
!= RESPONSE_OTHER
&&
1007 ascncasecmp(responded_text
, "[ALERT] ", 8) == 0)
1008 n_err(_("IMAP alert: %s"), &responded_text
[8]);
1010 mp
->mb_active
&= ~MB_COMD
;
1012 mp
->mb_active
= MB_NONE
;
1019 imap_parse_list(void)
1027 cp
= responded_other_text
;
1028 list_attributes
= LIST_NONE
;
1030 while (*cp
&& *cp
!= ')') {
1032 if (ascncasecmp(&cp
[1], "Noinferiors ", 12) == 0) {
1033 list_attributes
|= LIST_NOINFERIORS
;
1035 } else if (ascncasecmp(&cp
[1], "Noselect ", 9) == 0) {
1036 list_attributes
|= LIST_NOSELECT
;
1038 } else if (ascncasecmp(&cp
[1], "Marked ", 7) == 0) {
1039 list_attributes
|= LIST_MARKED
;
1041 } else if (ascncasecmp(&cp
[1], "Unmarked ", 9) == 0) {
1042 list_attributes
|= LIST_UNMARKED
;
1054 list_hierarchy_delimiter
= EOF
;
1058 list_hierarchy_delimiter
= *cp
++ & 0377;
1059 if (cp
[0] != '"' || cp
[1] != ' ')
1062 } else if (cp
[0] == 'N' && cp
[1] == 'I' && cp
[2] == 'L' && cp
[3] == ' ') {
1063 list_hierarchy_delimiter
= EOF
;
1070 while (*cp
&& *cp
!= '\r')
1080 imap_finish(struct mailbox
*mp
)
1083 while (mp
->mb_sock
.s_fd
> 0 && mp
->mb_active
& MB_COMD
)
1090 imap_timer_off(void)
1093 if (imapkeepalive
> 0) {
1095 safe_signal(SIGALRM
, savealrm
);
1103 NYD_X
; /* Signal handler */
1106 n_err_sighdl(_("Interrupt\n"));
1107 siglongjmp(imapjmp
, 1);
1110 n_err_sighdl(_("Received SIGPIPE during IMAP operation\n"));
1116 _imap_maincatch(int s
)
1118 NYD_X
; /* Signal handler */
1120 if (interrupts
++ == 0) {
1121 n_err_sighdl(_("Interrupt\n"));
1124 n_go_onintr_for_imap();
1128 imap_noop1(struct mailbox
*mp
)
1131 FILE *queuefp
= NULL
;
1134 snprintf(o
, sizeof o
, "%s NOOP\r\n", tag(1));
1135 IMAP_OUT(o
, MB_COMD
, return STOP
)
1141 imap_fileof(char const *xcp
)
1143 char const *cp
= xcp
;
1148 if (cp
[0] == ':' && cp
[1] == '/' && cp
[2] == '/') {
1152 if (cp
[0] == '/' && state
== 1) {
1170 sighandler_type
volatile oldint
, oldpipe
;
1171 enum okay
volatile rv
= STOP
;
1174 if (mb
.mb_type
!= MB_IMAP
)
1178 if ((oldint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1179 safe_signal(SIGINT
, &_imap_maincatch
);
1180 oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1181 if (sigsetjmp(imapjmp
, 1) == 0) {
1182 if (oldpipe
!= SIG_IGN
)
1183 safe_signal(SIGPIPE
, imapcatch
);
1185 rv
= imap_noop1(&mb
);
1187 safe_signal(SIGINT
, oldint
);
1188 safe_signal(SIGPIPE
, oldpipe
);
1193 n_go_onintr_for_imap();
1198 rec_queue(enum rec_type rt
, unsigned long cnt
)
1203 rp
= scalloc(1, sizeof *rp
);
1205 rp
->rec_count
= cnt
;
1206 if (record
&& recend
) {
1207 recend
->rec_next
= rp
;
1210 record
= recend
= rp
;
1217 struct message
*omessage
;
1218 struct record
*rp
, *rq
;
1219 uiz_t exists
= 0, i
;
1220 enum okay rv
= STOP
;
1227 message
= smalloc((msgCount
+1) * sizeof *message
);
1229 memcpy(message
, omessage
, msgCount
* sizeof *message
);
1230 memset(&message
[msgCount
], 0, sizeof *message
);
1232 rp
= record
, rq
= NULL
;
1234 while (rp
!= NULL
) {
1235 switch (rp
->rec_type
) {
1237 exists
= rp
->rec_count
;
1240 if (rp
->rec_count
== 0) {
1244 if (rp
->rec_count
> (unsigned long)msgCount
) {
1245 if (exists
== 0 || rp
->rec_count
> exists
--)
1251 delcache(&mb
, &message
[rp
->rec_count
-1]);
1252 memmove(&message
[rp
->rec_count
-1], &message
[rp
->rec_count
],
1253 ((msgCount
- rp
->rec_count
+ 1) * sizeof *message
));
1255 /* If the message was part of a collapsed thread,
1256 * the m_collapsed field of one of its ancestors
1257 * should be incremented. It seems hardly possible
1258 * to do this with the current message structure,
1259 * though. The result is that a '+' may be shown
1260 * in the header summary even if no collapsed
1261 * children exists */
1272 record
= recend
= NULL
;
1273 if (rv
== OKAY
&& UICMP(z
, exists
, >, msgCount
)) {
1274 message
= srealloc(message
, (exists
+ 1) * sizeof *message
);
1275 memset(&message
[msgCount
], 0, (exists
- msgCount
+ 1) * sizeof *message
);
1276 for (i
= msgCount
; i
< exists
; ++i
)
1278 imap_flags(&mb
, msgCount
+1, exists
);
1297 for (rp
= record
; rp
!= NULL
;) {
1298 struct record
*tmp
= rp
;
1302 record
= recend
= NULL
;
1310 sighandler_type
volatile saveint
, savepipe
;
1311 NYD_X
; /* Signal handler */
1314 if (imaplock
++ == 0) {
1315 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1316 safe_signal(SIGINT
, &_imap_maincatch
);
1317 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1318 if (sigsetjmp(imapjmp
, 1)) {
1319 safe_signal(SIGINT
, saveint
);
1320 safe_signal(SIGPIPE
, savepipe
);
1323 if (savepipe
!= SIG_IGN
)
1324 safe_signal(SIGPIPE
, imapcatch
);
1325 if (imap_noop1(&mb
) != OKAY
) {
1326 safe_signal(SIGINT
, saveint
);
1327 safe_signal(SIGPIPE
, savepipe
);
1330 safe_signal(SIGINT
, saveint
);
1331 safe_signal(SIGPIPE
, savepipe
);
1334 alarm(imapkeepalive
);
1340 imap_preauth(struct mailbox
*mp
, struct url
const *urlp
)
1344 mp
->mb_active
|= MB_PREAUTH
;
1348 if (!mp
->mb_sock
.s_use_ssl
&& xok_blook(imap_use_starttls
, urlp
, OXM_ALL
)) {
1349 FILE *queuefp
= NULL
;
1352 snprintf(o
, sizeof o
, "%s STARTTLS\r\n", tag(1));
1353 IMAP_OUT(o
, MB_COMD
, return STOP
)
1355 if (ssl_open(urlp
, &mp
->mb_sock
) != OKAY
)
1359 if (xok_blook(imap_use_starttls
, urlp
, OXM_ALL
)) {
1360 n_err(_("No SSL support compiled in\n"));
1365 imap_capability(mp
);
1370 imap_capability(struct mailbox
*mp
)
1373 FILE *queuefp
= NULL
;
1374 enum okay ok
= STOP
;
1378 snprintf(o
, sizeof o
, "%s CAPABILITY\r\n", tag(1));
1379 IMAP_OUT(o
, MB_COMD
, return STOP
)
1380 while (mp
->mb_active
& MB_COMD
) {
1381 ok
= imap_answer(mp
, 0);
1382 if (response_status
== RESPONSE_OTHER
&&
1383 response_other
== CAPABILITY_DATA
) {
1384 cp
= responded_other_text
;
1386 while (spacechar(*cp
))
1388 if (strncmp(cp
, "UIDPLUS", 7) == 0 && spacechar(cp
[7]))
1390 mp
->mb_flags
|= MB_UIDPLUS
;
1391 while (*cp
&& !spacechar(*cp
))
1400 imap_auth(struct mailbox
*mp
, struct ccred
*ccred
)
1405 if (!(mp
->mb_active
& MB_PREAUTH
)) {
1410 switch (ccred
->cc_authtype
) {
1411 case AUTHTYPE_LOGIN
:
1412 rv
= imap_login(mp
, ccred
);
1415 case AUTHTYPE_CRAM_MD5
:
1416 rv
= imap_cram_md5(mp
, ccred
);
1420 case AUTHTYPE_GSSAPI
:
1421 rv
= _imap_gssapi(mp
, ccred
);
1435 imap_cram_md5(struct mailbox
*mp
, struct ccred
*ccred
)
1437 char o
[LINESIZE
], *cp
;
1438 FILE *queuefp
= NULL
;
1439 enum okay rv
= STOP
;
1442 snprintf(o
, sizeof o
, "%s AUTHENTICATE CRAM-MD5\r\n", tag(1));
1443 IMAP_XOUT(o
, 0, goto jleave
, goto jleave
);
1445 if (response_type
!= RESPONSE_CONT
)
1448 cp
= cram_md5_string(&ccred
->cc_user
, &ccred
->cc_pass
, responded_text
);
1451 IMAP_XOUT(cp
, MB_COMD
, goto jleave
, goto jleave
);
1452 while (mp
->mb_active
& MB_COMD
)
1453 rv
= imap_answer(mp
, 1);
1458 #endif /* HAVE_MD5 */
1461 imap_login(struct mailbox
*mp
, struct ccred
*ccred
)
1464 FILE *queuefp
= NULL
;
1465 enum okay rv
= STOP
;
1468 snprintf(o
, sizeof o
, "%s LOGIN %s %s\r\n",
1469 tag(1), imap_quotestr(ccred
->cc_user
.s
), imap_quotestr(ccred
->cc_pass
.s
));
1470 IMAP_XOUT(o
, MB_COMD
, goto jleave
, goto jleave
);
1471 while (mp
->mb_active
& MB_COMD
)
1472 rv
= imap_answer(mp
, 1);
1479 # include "obs-imap-gssapi.h"
1483 imap_select(struct mailbox
*mp
, off_t
*size
, int *cnt
, const char *mbx
,
1487 char const *qname
, *cp
;
1496 if((qname
= imap_path_quote(mp
, mbx
)) == NULL
)
1501 mp
->mb_uidvalidity
= 0;
1502 snprintf(o
, sizeof o
, "%s %s %s\r\n", tag(1),
1503 (fm
& FEDIT_RDONLY
? "EXAMINE" : "SELECT"), qname
);
1504 IMAP_OUT(o
, MB_COMD
, ok
= STOP
;goto jleave
)
1505 while (mp
->mb_active
& MB_COMD
) {
1506 ok
= imap_answer(mp
, 1);
1507 if (response_status
!= RESPONSE_OTHER
&&
1508 (cp
= asccasestr(responded_text
, "[UIDVALIDITY ")) != NULL
)
1509 mp
->mb_uidvalidity
= atol(&cp
[13]);
1511 *cnt
= (had_exists
> 0) ? had_exists
: 0;
1512 if (response_status
!= RESPONSE_OTHER
&&
1513 ascncasecmp(responded_text
, "[READ-ONLY] ", 12) == 0)
1520 imap_flags(struct mailbox
*mp
, unsigned X
, unsigned Y
)
1523 FILE *queuefp
= NULL
;
1526 unsigned x
= X
, y
= Y
, n
;
1529 snprintf(o
, sizeof o
, "%s FETCH %u:%u (FLAGS UID)\r\n", tag(1), x
, y
);
1530 IMAP_OUT(o
, MB_COMD
, return STOP
)
1531 while (mp
->mb_active
& MB_COMD
) {
1533 if (response_status
== RESPONSE_OTHER
&&
1534 response_other
== MESSAGE_DATA_FETCH
) {
1535 n
= responded_other_number
;
1543 if ((cp
= asccasestr(responded_other_text
, "FLAGS ")) != NULL
) {
1548 imap_getflags(cp
, &cp
, &m
->m_flag
);
1551 if ((cp
= asccasestr(responded_other_text
, "UID ")) != NULL
)
1552 m
->m_uid
= strtoul(&cp
[4], NULL
, 10);
1553 getcache1(mp
, m
, NEED_UNSPEC
, 1);
1554 m
->m_flag
&= ~MHIDDEN
;
1557 while (x
<= y
&& message
[x
-1].m_xsize
&& message
[x
-1].m_time
)
1559 while (y
> x
&& message
[y
-1].m_xsize
&& message
[y
-1].m_time
)
1562 snprintf(o
, sizeof o
, "%s FETCH %u:%u (RFC822.SIZE INTERNALDATE)\r\n",
1564 IMAP_OUT(o
, MB_COMD
, return STOP
)
1565 while (mp
->mb_active
& MB_COMD
) {
1567 if (response_status
== RESPONSE_OTHER
&&
1568 response_other
== MESSAGE_DATA_FETCH
) {
1569 n
= responded_other_number
;
1575 if ((cp
= asccasestr(responded_other_text
, "RFC822.SIZE ")) != NULL
)
1576 m
->m_xsize
= strtol(&cp
[12], NULL
, 10);
1577 if ((cp
= asccasestr(responded_other_text
, "INTERNALDATE ")) != NULL
)
1578 m
->m_time
= imap_read_date_time(&cp
[13]);
1583 for (n
= X
; n
<= Y
; ++n
) {
1584 putcache(mp
, &message
[n
-1]);
1592 imap_init(struct mailbox
*mp
, int n
)
1599 m
->m_flag
= MUSED
| MNOFROM
;
1606 imap_setptr(struct mailbox
*mp
, int nmail
, int transparent
, int *prevcount
)
1608 struct message
*omessage
= 0;
1609 int i
, omsgCount
= 0;
1610 enum okay dequeued
= STOP
;
1613 if (nmail
|| transparent
) {
1615 omsgCount
= msgCount
;
1618 dequeued
= rec_dequeue();
1620 if (had_exists
>= 0) {
1621 if (dequeued
!= OKAY
)
1622 msgCount
= had_exists
;
1625 if (had_expunge
>= 0) {
1626 if (dequeued
!= OKAY
)
1627 msgCount
-= had_expunge
;
1631 if (nmail
&& expunged_messages
)
1632 printf("Expunged %ld message%s.\n", expunged_messages
,
1633 (expunged_messages
!= 1 ? "s" : ""));
1634 *prevcount
= omsgCount
- expunged_messages
;
1635 expunged_messages
= 0;
1637 fputs("IMAP error: Negative message count\n", stderr
);
1641 if (dequeued
!= OKAY
) {
1642 message
= scalloc(msgCount
+ 1, sizeof *message
);
1643 for (i
= 0; i
< msgCount
; i
++)
1645 if (!nmail
&& mp
->mb_type
== MB_IMAP
)
1648 imap_flags(mp
, 1, msgCount
);
1649 message
[msgCount
].m_size
= 0;
1650 message
[msgCount
].m_lines
= 0;
1653 if (nmail
|| transparent
)
1654 transflags(omessage
, omsgCount
, transparent
);
1661 imap_setfile(const char *xserver
, enum fedit_mode fm
)
1667 if (!url_parse(&url
, CPROTO_IMAP
, xserver
)) {
1671 if (!ok_blook(v15_compat
) &&
1672 (!(url
.url_flags
& n_URL_HAD_USER
) || url
.url_pass
.s
!= NULL
))
1673 n_err(_("New-style URL used without *v15-compat* being set!\n"));
1675 _imap_rdonly
= ((fm
& FEDIT_RDONLY
) != 0);
1676 rv
= _imap_setfile1(&url
, fm
, 0);
1683 _imap_getcred(struct mailbox
*mbp
, struct ccred
*ccredp
, struct url
*urlp
)
1688 if (ok_blook(v15_compat
))
1689 rv
= ccred_lookup(ccredp
, urlp
);
1692 *xuhp
= ((urlp
->url_flags
& n_URL_HAD_USER
) ? urlp
->url_eu_h_p
.s
1693 : urlp
->url_u_h_p
.s
);
1695 if ((var
= mbp
->mb_imap_pass
) != NULL
) {
1696 var
= savecat("password-", xuhp
);
1697 if ((old
= n_UNCONST(n_var_vlook(var
, FAL0
))) != NULL
)
1699 n_var_vset(var
, (uintptr_t)mbp
->mb_imap_pass
);
1701 rv
= ccred_lookup_old(ccredp
, CPROTO_IMAP
, xuhp
);
1704 n_var_vset(var
, (uintptr_t)old
);
1716 _imap_setfile1(struct url
*urlp
, enum fedit_mode
volatile fm
,
1717 int volatile transparent
)
1721 sighandler_type
volatile saveint
, savepipe
;
1724 int volatile prevcount
= 0;
1725 enum mbflags same_flags
;
1728 if (fm
& FEDIT_NEWMAIL
) {
1729 saveint
= safe_signal(SIGINT
, SIG_IGN
);
1730 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1731 if (saveint
!= SIG_IGN
)
1732 safe_signal(SIGINT
, imapcatch
);
1733 if (savepipe
!= SIG_IGN
)
1734 safe_signal(SIGPIPE
, imapcatch
);
1739 same_flags
= mb
.mb_flags
;
1740 same_imap_account
= 0;
1741 if (mb
.mb_imap_account
!= NULL
&&
1742 (mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
)) {
1743 if (mb
.mb_sock
.s_fd
> 0 && mb
.mb_sock
.s_rsz
>= 0 &&
1744 !strcmp(mb
.mb_imap_account
, urlp
->url_p_eu_h_p
) &&
1745 disconnected(mb
.mb_imap_account
) == 0) {
1746 same_imap_account
= 1;
1747 if (urlp
->url_pass
.s
== NULL
&& mb
.mb_imap_pass
!= NULL
)
1750 } else if ((transparent || mb.mb_type == MB_CACHE) &&
1751 !strcmp(mb.mb_imap_account, urlp->url_p_eu_h_p) &&
1752 urlp->url_pass.s == NULL && mb.mb_imap_pass != NULL)
1755 urlp
->url_pass
.l
= strlen(urlp
->url_pass
.s
= savestr(mb
.mb_imap_pass
));
1759 if (!same_imap_account
&& mb
.mb_imap_pass
!= NULL
) {
1760 free(mb
.mb_imap_pass
);
1761 mb
.mb_imap_pass
= NULL
;
1763 if (!_imap_getcred(&mb
, &ccred
, urlp
)) {
1768 memset(&so
, 0, sizeof so
);
1770 if (!same_imap_account
) {
1771 if (!disconnected(urlp
->url_p_eu_h_p
) && !sopen(&so
, urlp
)) {
1784 if (fm
& FEDIT_SYSBOX
)
1785 n_pstate
&= ~n_PS_EDIT
;
1787 n_pstate
|= n_PS_EDIT
;
1788 if (mb
.mb_imap_account
!= NULL
)
1789 free(mb
.mb_imap_account
);
1790 if (mb
.mb_imap_pass
!= NULL
)
1791 free(mb
.mb_imap_pass
);
1792 mb
.mb_imap_account
= sstrdup(urlp
->url_p_eu_h_p
);
1793 /* TODO This is a hack to allow '@boxname'; in the end everything will be an
1794 * TODO object, and mailbox will naturally have an URL and credentials */
1795 mb
.mb_imap_pass
= sbufdup(ccred
.cc_pass
.s
, ccred
.cc_pass
.l
);
1797 if (!same_imap_account
) {
1798 if (mb
.mb_sock
.s_fd
>= 0)
1799 sclose(&mb
.mb_sock
);
1801 same_imap_account
= 0;
1812 if (mb
.mb_imap_mailbox
!= NULL
)
1813 free(mb
.mb_imap_mailbox
);
1814 assert(urlp
->url_path
.s
!= NULL
);
1815 imap_delim_init(&mb
, urlp
);
1816 mb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&mb
, urlp
->url_path
.s
));
1817 initbox(savecatsep(urlp
->url_p_eu_h_p
,
1818 (mb
.mb_imap_delim
[0] != '\0' ? mb
.mb_imap_delim
[0] : n_IMAP_DELIM
[0]),
1819 mb
.mb_imap_mailbox
));
1821 mb
.mb_type
= MB_VOID
;
1822 mb
.mb_active
= MB_NONE
;
1825 saveint
= safe_signal(SIGINT
, SIG_IGN
);
1826 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1827 if (sigsetjmp(imapjmp
, 1)) {
1828 /* Not safe to use &so; save to use mb.mb_sock?? :-( TODO */
1829 sclose(&mb
.mb_sock
);
1830 safe_signal(SIGINT
, saveint
);
1831 safe_signal(SIGPIPE
, savepipe
);
1834 mb
.mb_type
= MB_VOID
;
1835 mb
.mb_active
= MB_NONE
;
1836 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1839 if (saveint
!= SIG_IGN
)
1840 safe_signal(SIGINT
, imapcatch
);
1841 if (savepipe
!= SIG_IGN
)
1842 safe_signal(SIGPIPE
, imapcatch
);
1844 if (mb
.mb_sock
.s_fd
< 0) {
1845 if (disconnected(mb
.mb_imap_account
)) {
1846 if (cache_setptr(fm
, transparent
) == STOP
)
1847 n_err(_("Mailbox \"%s\" is not cached\n"), urlp
->url_p_eu_h_p_p
);
1850 if ((cp
= xok_vlook(imap_keepalive
, urlp
, OXM_ALL
)) != NULL
) {
1851 if ((imapkeepalive
= strtol(cp
, NULL
, 10)) > 0) {
1852 savealrm
= safe_signal(SIGALRM
, imapalarm
);
1853 alarm(imapkeepalive
);
1858 mb
.mb_sock
.s_desc
= "IMAP";
1859 mb
.mb_sock
.s_onclose
= imap_timer_off
;
1860 if (imap_preauth(&mb
, urlp
) != OKAY
|| imap_auth(&mb
, &ccred
) != OKAY
) {
1861 sclose(&mb
.mb_sock
);
1863 safe_signal(SIGINT
, saveint
);
1864 safe_signal(SIGPIPE
, savepipe
);
1866 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1869 } else /* same account */
1870 mb
.mb_flags
|= same_flags
;
1872 if (n_poption
& n_PO_R_FLAG
)
1874 mb
.mb_perm
= (fm
& FEDIT_RDONLY
) ? 0 : MB_DELE
;
1875 mb
.mb_type
= MB_IMAP
;
1877 assert(urlp
->url_path
.s
!= NULL
);
1878 if (imap_select(&mb
, &mailsize
, &msgCount
, urlp
->url_path
.s
, fm
) != OKAY
) {
1879 /*sclose(&mb.mb_sock);
1881 safe_signal(SIGINT
, saveint
);
1882 safe_signal(SIGPIPE
, savepipe
);
1884 mb
.mb_type
= MB_VOID
;
1885 rv
= (fm
& (FEDIT_SYSBOX
| FEDIT_NEWMAIL
)) ? 1 : -1;
1890 imap_setptr(&mb
, ((fm
& FEDIT_NEWMAIL
) != 0), transparent
,
1891 n_UNVOLATILE(&prevcount
));
1894 safe_signal(SIGINT
, saveint
);
1895 safe_signal(SIGPIPE
, savepipe
);
1898 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_type
== MB_IMAP
)
1899 purgecache(&mb
, message
, msgCount
);
1900 if (((fm
& FEDIT_NEWMAIL
) || transparent
) && mb
.mb_sorted
) {
1905 if (!(fm
& FEDIT_NEWMAIL
) && !transparent
) {
1906 n_pstate
&= ~n_PS_SAW_COMMAND
;
1907 n_pstate
|= n_PS_SETFILE_OPENED
;
1910 if ((n_poption
& n_PO_EXISTONLY
) && (mb
.mb_type
== MB_IMAP
||
1911 mb
.mb_type
== MB_CACHE
)) {
1912 rv
= (msgCount
== 0);
1916 if (!(fm
& FEDIT_NEWMAIL
) && !(n_pstate
& n_PS_EDIT
) && msgCount
== 0) {
1917 if ((mb
.mb_type
== MB_IMAP
|| mb
.mb_type
== MB_CACHE
) &&
1918 !ok_blook(emptystart
))
1919 n_err(_("No mail at %s\n"), urlp
->url_p_eu_h_p_p
);
1924 if (fm
& FEDIT_NEWMAIL
)
1925 newmailinfo(prevcount
);
1933 imap_fetchdata(struct mailbox
*mp
, struct message
*m
, size_t expected
,
1934 int need
, const char *head
, size_t headsize
, long headlines
)
1936 char *line
= NULL
, *lp
;
1937 size_t linesize
= 0, linelen
, size
= 0;
1938 int emptyline
= 0, lines
= 0, excess
= 0;
1942 fseek(mp
->mb_otf
, 0L, SEEK_END
);
1943 offset
= ftell(mp
->mb_otf
);
1946 fwrite(head
, 1, headsize
, mp
->mb_otf
);
1948 while (sgetline(&line
, &linesize
, &linelen
, &mp
->mb_sock
) > 0) {
1950 if (linelen
> expected
) {
1951 excess
= linelen
- expected
;
1955 * Need to mask 'From ' lines. This cannot be done properly
1956 * since some servers pass them as 'From ' and others as
1957 * '>From '. Although one could identify the first kind of
1958 * server in principle, it is not possible to identify the
1959 * second as '>From ' may also come from a server of the
1960 * first type as actual data. So do what is absolutely
1961 * necessary only - mask 'From '.
1963 * If the line is the first line of the message header, it
1964 * is likely a real 'From ' line. In this case, it is just
1965 * ignored since it violates all standards.
1966 * TODO can the latter *really* happen??
1969 /* Since we simply copy over data without doing any transfer
1970 * encoding reclassification/adjustment we *have* to perform
1971 * RFC 4155 compliant From_ quoting here */
1972 if (emptyline
&& is_head(lp
, linelen
, FAL0
)) {
1973 fputc('>', mp
->mb_otf
);
1977 if (lp
[linelen
-1] == '\n' && (linelen
== 1 || lp
[linelen
-2] == '\r')) {
1979 fwrite(lp
, 1, linelen
- 2, mp
->mb_otf
);
1980 size
+= linelen
- 1;
1985 fputc('\n', mp
->mb_otf
);
1987 fwrite(lp
, 1, linelen
, mp
->mb_otf
);
1991 if ((expected
-= linelen
) <= 0)
1995 /* This is very ugly; but some IMAP daemons don't end a
1996 * message with \r\n\r\n, and we need \n\n for mbox format */
1997 fputc('\n', mp
->mb_otf
);
2004 m
->m_size
= size
+ headsize
;
2005 m
->m_lines
= lines
+ headlines
;
2006 m
->m_block
= mailx_blockof(offset
);
2007 m
->m_offset
= mailx_offsetof(offset
);
2010 m
->m_content_info
= CI_HAVE_HEADER
;
2013 m
->m_content_info
= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2014 m
->m_xlines
= m
->m_lines
;
2015 m
->m_xsize
= m
->m_size
;
2025 imap_putstr(struct mailbox
*mp
, struct message
*m
, const char *str
,
2026 const char *head
, size_t headsize
, long headlines
)
2033 fseek(mp
->mb_otf
, 0L, SEEK_END
);
2034 offset
= ftell(mp
->mb_otf
);
2036 fwrite(head
, 1, headsize
, mp
->mb_otf
);
2038 fwrite(str
, 1, len
, mp
->mb_otf
);
2039 fputc('\n', mp
->mb_otf
);
2045 m
->m_size
= headsize
+ len
;
2046 m
->m_lines
= headlines
+ 1;
2047 m
->m_block
= mailx_blockof(offset
);
2048 m
->m_offset
= mailx_offsetof(offset
);
2049 m
->m_content_info
|= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2050 m
->m_xlines
= m
->m_lines
;
2051 m
->m_xsize
= m
->m_size
;
2057 imap_get(struct mailbox
*mp
, struct message
*m
, enum needspec need
)
2061 sighandler_type
volatile saveint
, savepipe
;
2062 char * volatile head
;
2063 char const *cp
, *loc
, * volatile item
, * volatile resp
;
2065 size_t volatile headsize
;
2068 long volatile headlines
;
2074 saveint
= savepipe
= SIG_IGN
;
2076 cp
= loc
= item
= resp
= NULL
;
2078 number
= (int)PTR2SIZE(m
- message
+ 1);
2084 if (getcache(mp
, m
, need
) == OKAY
)
2086 if (mp
->mb_type
== MB_CACHE
) {
2087 n_err(_("Message %lu not available\n"), (ul_i
)number
);
2091 if (mp
->mb_sock
.s_fd
< 0) {
2092 n_err(_("IMAP connection closed\n"));
2098 resp
= item
= "RFC822.HEADER";
2101 item
= "BODY.PEEK[]";
2103 if ((m
->m_content_info
& CI_HAVE_HEADER
) && m
->m_size
) {
2104 char *hdr
= smalloc(m
->m_size
);
2106 if (fseek(mp
->mb_itf
, (long)mailx_positionof(m
->m_block
, m
->m_offset
),
2108 fread(hdr
, 1, m
->m_size
, mp
->mb_itf
) != m
->m_size
) {
2113 headsize
= m
->m_size
;
2114 headlines
= m
->m_lines
;
2115 item
= "BODY.PEEK[TEXT]";
2116 resp
= "BODY[TEXT]";
2124 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2125 if (sigsetjmp(imapjmp
, 1)) {
2126 safe_signal(SIGINT
, saveint
);
2127 safe_signal(SIGPIPE
, savepipe
);
2131 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2132 safe_signal(SIGINT
, &_imap_maincatch
);
2133 if (savepipe
!= SIG_IGN
)
2134 safe_signal(SIGPIPE
, imapcatch
);
2137 snprintf(o
, sizeof o
, "%s UID FETCH %lu (%s)\r\n",
2138 tag(1), m
->m_uid
, item
);
2140 if (check_expunged() == STOP
)
2142 snprintf(o
, sizeof o
, "%s FETCH %u (%s)\r\n", tag(1), number
, item
);
2144 IMAP_OUT(o
, MB_COMD
, goto out
)
2146 ok
= imap_answer(mp
, 1);
2149 if (response_status
!= RESPONSE_OTHER
||
2150 response_other
!= MESSAGE_DATA_FETCH
)
2152 if ((loc
= asccasestr(responded_other_text
, resp
)) == NULL
)
2155 if ((cp
= asccasestr(responded_other_text
, "UID "))) {
2163 n
= responded_other_number
;
2164 if ((cp
= strrchr(responded_other_text
, '{')) == NULL
) {
2165 if (m
->m_uid
? m
->m_uid
!= u
: n
!= number
)
2167 if ((cp
= strchr(loc
, '"')) != NULL
) {
2168 cp
= imap_unquotestr(cp
);
2169 imap_putstr(mp
, m
, cp
, head
, headsize
, headlines
);
2171 m
->m_content_info
|= CI_HAVE_HEADER
| CI_HAVE_BODY
;
2172 m
->m_xlines
= m
->m_lines
;
2173 m
->m_xsize
= m
->m_size
;
2177 expected
= atol(&cp
[1]);
2178 if (m
->m_uid
? n
== 0 && m
->m_uid
!= u
: n
!= number
) {
2179 imap_fetchdata(mp
, NULL
, expected
, need
, NULL
, 0, 0);
2183 imap_fetchdata(mp
, &mt
, expected
, need
, head
, headsize
, headlines
);
2185 commitmsg(mp
, m
, &mt
, mt
.m_content_info
);
2188 if (n
== -1 && sgetline(&imapbuf
, &imapbufsize
, NULL
, &mp
->mb_sock
) > 0) {
2189 if (n_poption
& n_PO_VERBVERB
)
2190 fputs(imapbuf
, stderr
);
2191 if ((cp
= asccasestr(imapbuf
, "UID ")) != NULL
) {
2193 if (u
== m
->m_uid
) {
2194 commitmsg(mp
, m
, &mt
, mt
.m_content_info
);
2201 while (mp
->mb_active
& MB_COMD
)
2202 ok
= imap_answer(mp
, 1);
2204 if (saveint
!= SIG_IGN
)
2205 safe_signal(SIGINT
, saveint
);
2206 if (savepipe
!= SIG_IGN
)
2207 safe_signal(SIGPIPE
, savepipe
);
2215 n_go_onintr_for_imap();
2220 imap_header(struct message
*m
)
2225 rv
= imap_get(&mb
, m
, NEED_HEADER
);
2232 imap_body(struct message
*m
)
2237 rv
= imap_get(&mb
, m
, NEED_BODY
);
2243 commitmsg(struct mailbox
*mp
, struct message
*tomp
, struct message
*frommp
,
2244 enum content_info content_info
)
2247 tomp
->m_size
= frommp
->m_size
;
2248 tomp
->m_lines
= frommp
->m_lines
;
2249 tomp
->m_block
= frommp
->m_block
;
2250 tomp
->m_offset
= frommp
->m_offset
;
2251 tomp
->m_content_info
= content_info
& CI_HAVE_MASK
;
2252 if (content_info
& CI_HAVE_BODY
) {
2253 tomp
->m_xlines
= frommp
->m_lines
;
2254 tomp
->m_xsize
= frommp
->m_size
;
2261 imap_fetchheaders(struct mailbox
*mp
, struct message
*m
, int bot
, int topp
)
2269 FILE *queuefp
= NULL
;
2274 snprintf(o
, sizeof o
, "%s UID FETCH %lu:%lu (RFC822.HEADER)\r\n",
2275 tag(1), m
[bot
-1].m_uid
, m
[topp
-1].m_uid
);
2277 if (check_expunged() == STOP
)
2279 snprintf(o
, sizeof o
, "%s FETCH %u:%u (RFC822.HEADER)\r\n",
2282 IMAP_OUT(o
, MB_COMD
, return STOP
)
2286 ok
= imap_answer(mp
, 1);
2287 if (response_status
!= RESPONSE_OTHER
)
2289 if (response_other
!= MESSAGE_DATA_FETCH
)
2291 if (ok
== STOP
|| (cp
=strrchr(responded_other_text
, '{')) == 0) {
2295 if (asccasestr(responded_other_text
, "RFC822.HEADER") == NULL
)
2297 expected
= atol(&cp
[1]);
2298 if (m
[bot
-1].m_uid
) {
2299 if ((cp
= asccasestr(responded_other_text
, "UID ")) != NULL
) {
2301 for (n
= bot
; n
<= topp
; n
++)
2302 if ((unsigned long)u
== m
[n
-1].m_uid
)
2305 imap_fetchdata(mp
, NULL
, expected
, NEED_HEADER
, NULL
, 0, 0);
2311 n
= responded_other_number
;
2312 if (n
<= 0 || n
> msgCount
) {
2313 imap_fetchdata(mp
, NULL
, expected
, NEED_HEADER
, NULL
, 0, 0);
2317 imap_fetchdata(mp
, &mt
, expected
, NEED_HEADER
, NULL
, 0, 0);
2318 if (n
>= 0 && !(m
[n
-1].m_content_info
& CI_HAVE_HEADER
))
2319 commitmsg(mp
, &m
[n
-1], &mt
, CI_HAVE_HEADER
);
2320 if (n
== -1 && sgetline(&imapbuf
, &imapbufsize
, NULL
, &mp
->mb_sock
) > 0) {
2321 if (n_poption
& n_PO_VERBVERB
)
2322 fputs(imapbuf
, stderr
);
2323 if ((cp
= asccasestr(imapbuf
, "UID ")) != NULL
) {
2325 for (n
= bot
; n
<= topp
; n
++)
2326 if ((unsigned long)u
== m
[n
-1].m_uid
)
2328 if (n
<= topp
&& !(m
[n
-1].m_content_info
& CI_HAVE_HEADER
))
2329 commitmsg(mp
, &m
[n
-1], &mt
, CI_HAVE_HEADER
);
2336 while (mp
->mb_active
& MB_COMD
)
2337 ok
= imap_answer(mp
, 1);
2342 imap_getheaders(int volatile bot
, int volatile topp
) /* TODO iterator!! */
2344 sighandler_type saveint
, savepipe
;
2345 /*enum okay ok = STOP;*/
2349 if (mb
.mb_type
== MB_CACHE
)
2353 if (topp
> msgCount
)
2355 for (i
= bot
; i
< topp
; i
++) {
2356 if ((message
[i
-1].m_content_info
& CI_HAVE_HEADER
) ||
2357 getcache(&mb
, &message
[i
-1], NEED_HEADER
) == OKAY
)
2362 for (i
= topp
; i
> bot
; i
--) {
2363 if ((message
[i
-1].m_content_info
& CI_HAVE_HEADER
) ||
2364 getcache(&mb
, &message
[i
-1], NEED_HEADER
) == OKAY
)
2373 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2374 safe_signal(SIGINT
, &_imap_maincatch
);
2375 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2376 if (sigsetjmp(imapjmp
, 1) == 0) {
2377 if (savepipe
!= SIG_IGN
)
2378 safe_signal(SIGPIPE
, imapcatch
);
2380 for (i
= bot
; i
<= topp
; i
+= chunk
) {
2381 int j
= i
+ chunk
- 1;
2383 if (visible(message
+ j
))
2384 /*ok = */imap_fetchheaders(&mb
, message
, i
, j
);
2386 n_go_onintr_for_imap(); /* XXX imaplock? */
2389 safe_signal(SIGINT
, saveint
);
2390 safe_signal(SIGPIPE
, savepipe
);
2395 __imap_exit(struct mailbox
*mp
)
2398 FILE *queuefp
= NULL
;
2401 mp
->mb_active
|= MB_BYE
;
2402 snprintf(o
, sizeof o
, "%s LOGOUT\r\n", tag(1));
2403 IMAP_OUT(o
, MB_COMD
, return STOP
)
2409 imap_exit(struct mailbox
*mp
)
2414 rv
= __imap_exit(mp
);
2415 #if 0 /* TODO the option today: memory leak(s) and halfway reuse or nottin */
2416 free(mp
->mb_imap_pass
);
2417 free(mp
->mb_imap_account
);
2418 free(mp
->mb_imap_mailbox
);
2419 if (mp
->mb_cache_directory
!= NULL
)
2420 free(mp
->mb_cache_directory
);
2421 #ifndef HAVE_DEBUG /* TODO ASSERT LEGACY */
2422 mp
->mb_imap_account
=
2423 mp
->mb_imap_mailbox
=
2424 mp
->mb_cache_directory
= "";
2426 mp
->mb_imap_account
= NULL
; /* for assert legacy time.. */
2427 mp
->mb_imap_mailbox
= NULL
;
2428 mp
->mb_cache_directory
= NULL
;
2431 sclose(&mp
->mb_sock
);
2437 imap_delete(struct mailbox
*mp
, int n
, struct message
*m
, int needstat
)
2440 imap_store(mp
, m
, n
, '+', "\\Deleted", needstat
);
2441 if (mp
->mb_type
== MB_IMAP
)
2448 imap_close(struct mailbox
*mp
)
2451 FILE *queuefp
= NULL
;
2454 snprintf(o
, sizeof o
, "%s CLOSE\r\n", tag(1));
2455 IMAP_OUT(o
, MB_COMD
, return STOP
)
2461 imap_update(struct mailbox
*mp
)
2464 int dodel
, c
, gotcha
= 0, held
= 0, modflags
= 0, needstat
, stored
= 0;
2467 if (!(n_pstate
& n_PS_EDIT
) && mp
->mb_perm
!= 0) {
2470 for (m
= message
; PTRCMP(m
, <, message
+ msgCount
); ++m
)
2471 if (m
->m_flag
& MBOX
)
2474 if (makembox() == STOP
)
2479 for (m
= message
; PTRCMP(m
, <, message
+ msgCount
); ++m
) {
2480 if (mp
->mb_perm
== 0)
2482 else if (n_pstate
& n_PS_EDIT
)
2483 dodel
= ((m
->m_flag
& MDELETED
) != 0);
2485 dodel
= !((m
->m_flag
& MPRESERVE
) || !(m
->m_flag
& MTOUCH
));
2487 /* Fetch the result after around each 800 STORE commands
2488 * sent (approx. 32k data sent). Otherwise, servers will
2489 * try to flush the return queue at some point, leading
2490 * to a deadlock if we are still writing commands but not
2491 * reading their results */
2492 needstat
= stored
> 0 && stored
% 800 == 0;
2493 /* Even if this message has been deleted, continue
2494 * to set further flags. This is necessary to support
2495 * Gmail semantics, where "delete" actually means
2496 * "archive", and the flags are applied to the copy
2498 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
)) {
2499 imap_store(mp
, m
, m
-message
+1, '+', "\\Seen", needstat
);
2502 if (m
->m_flag
& MFLAG
) {
2503 imap_store(mp
, m
, m
-message
+1, '+', "\\Flagged", needstat
);
2506 if (m
->m_flag
& MUNFLAG
) {
2507 imap_store(mp
, m
, m
-message
+1, '-', "\\Flagged", needstat
);
2510 if (m
->m_flag
& MANSWER
) {
2511 imap_store(mp
, m
, m
-message
+1, '+', "\\Answered", needstat
);
2514 if (m
->m_flag
& MUNANSWER
) {
2515 imap_store(mp
, m
, m
-message
+1, '-', "\\Answered", needstat
);
2518 if (m
->m_flag
& MDRAFT
) {
2519 imap_store(mp
, m
, m
-message
+1, '+', "\\Draft", needstat
);
2522 if (m
->m_flag
& MUNDRAFT
) {
2523 imap_store(mp
, m
, m
-message
+1, '-', "\\Draft", needstat
);
2528 imap_delete(mp
, m
-message
+1, m
, needstat
);
2531 } else if (mp
->mb_type
!= MB_CACHE
||
2532 (!(n_pstate
& n_PS_EDIT
) &&
2533 !(m
->m_flag
& (MBOXED
| MSAVED
| MDELETED
))) ||
2534 (m
->m_flag
& (MBOXED
| MPRESERVE
| MTOUCH
)) ==
2535 (MPRESERVE
| MTOUCH
) ||
2536 ((n_pstate
& n_PS_EDIT
) && !(m
->m_flag
& MDELETED
)))
2538 if (m
->m_flag
& MNEW
) {
2540 m
->m_flag
|= MSTATUS
;
2547 for (m
= &message
[0]; PTRCMP(m
, <, message
+ msgCount
); ++m
)
2548 if (!(m
->m_flag
& MUNLINKED
) &&
2549 m
->m_flag
& (MBOXED
| MDELETED
| MSAVED
| MSTATUS
| MFLAG
|
2550 MUNFLAG
| MANSWER
| MUNANSWER
| MDRAFT
| MUNDRAFT
)) {
2555 /* XXX should be readonly (but our IMAP code is weird...) */
2556 if (!(n_poption
& (n_PO_EXISTONLY
| n_PO_HEADERSONLY
| n_PO_HEADERLIST
)) &&
2558 if ((gotcha
|| modflags
) && (n_pstate
& n_PS_EDIT
)) {
2559 printf(_("\"%s\" "), displayname
);
2560 printf((ok_blook(bsdcompat
) || ok_blook(bsdmsgs
))
2561 ? _("complete\n") : _("updated.\n"));
2562 } else if (held
&& !(n_pstate
& n_PS_EDIT
)) {
2564 printf(_("Held 1 message in %s\n"), displayname
);
2566 printf(_("Held %d messages in %s\n"), held
, displayname
);
2575 imap_quit(bool_t hold_sigs_on
)
2577 sighandler_type
volatile saveint
, savepipe
;
2584 if (mb
.mb_type
== MB_CACHE
) {
2585 rv
= (imap_update(&mb
) == OKAY
);
2591 if (mb
.mb_sock
.s_fd
< 0) {
2592 n_err(_("IMAP connection closed\n"));
2597 saveint
= safe_signal(SIGINT
, SIG_IGN
);
2598 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2599 if (sigsetjmp(imapjmp
, 1)) {
2600 safe_signal(SIGINT
, saveint
);
2601 safe_signal(SIGPIPE
, saveint
);
2605 if (saveint
!= SIG_IGN
)
2606 safe_signal(SIGINT
, imapcatch
);
2607 if (savepipe
!= SIG_IGN
)
2608 safe_signal(SIGPIPE
, imapcatch
);
2610 rv
= (imap_update(&mb
) == OKAY
);
2611 if(!same_imap_account
&& imap_exit(&mb
) != OKAY
)
2614 safe_signal(SIGINT
, saveint
);
2615 safe_signal(SIGPIPE
, savepipe
);
2625 imap_store(struct mailbox
*mp
, struct message
*m
, int n
, int c
, const char *sp
,
2629 FILE *queuefp
= NULL
;
2632 if (mp
->mb_type
== MB_CACHE
&& (queuefp
= cache_queue(mp
)) == NULL
)
2635 snprintf(o
, sizeof o
, "%s UID STORE %lu %cFLAGS (%s)\r\n",
2636 tag(1), m
->m_uid
, c
, sp
);
2638 if (check_expunged() == STOP
)
2640 snprintf(o
, sizeof o
, "%s STORE %u %cFLAGS (%s)\r\n", tag(1), n
, c
, sp
);
2642 IMAP_OUT(o
, MB_COMD
, return STOP
)
2646 mb
.mb_active
&= ~MB_COMD
;
2647 if (queuefp
!= NULL
)
2653 imap_undelete(struct message
*m
, int n
)
2658 rv
= imap_unstore(m
, n
, "\\Deleted");
2664 imap_unread(struct message
*m
, int n
)
2669 rv
= imap_unstore(m
, n
, "\\Seen");
2675 imap_unstore(struct message
*m
, int n
, const char *flag
)
2677 sighandler_type saveint
, savepipe
;
2678 enum okay
volatile rv
= STOP
;
2682 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2683 safe_signal(SIGINT
, &_imap_maincatch
);
2684 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2685 if (sigsetjmp(imapjmp
, 1) == 0) {
2686 if (savepipe
!= SIG_IGN
)
2687 safe_signal(SIGPIPE
, imapcatch
);
2689 rv
= imap_store(&mb
, m
, n
, '-', flag
, 1);
2691 safe_signal(SIGINT
, saveint
);
2692 safe_signal(SIGPIPE
, savepipe
);
2697 n_go_onintr_for_imap();
2710 snprintf(ts
, sizeof ts
, "T%lu", n
);
2716 c_imapcodec(void *vp
){
2719 char const **argv
, *varname
, *varres
, *act
, *cp
;
2723 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
2726 for(cp
= act
; *cp
!= '\0' && !blankspacechar(*cp
); ++cp
)
2730 alen
= PTR2SIZE(cp
- act
);
2734 n_pstate_err_no
= n_ERR_NONE
;
2735 varres
= imap_path_normalize(NULL
, cp
);
2737 if(is_ascncaseprefix(act
, "encode", alen
))
2738 varres
= imap_path_encode(varres
, &err
);
2739 else if(is_ascncaseprefix(act
, "decode", alen
))
2740 varres
= imap_path_decode(varres
, &err
);
2745 n_pstate_err_no
= n_ERR_CANCELED
;
2750 if(varname
!= NULL
){
2751 if(!n_var_vset(varname
, (uintptr_t)varres
)){
2752 n_pstate_err_no
= n_ERR_NOTSUP
;
2758 in
.l
= strlen(in
.s
= n_UNCONST(varres
));
2759 makeprint(&in
, &out
);
2760 if(fprintf(n_stdout
, "%s\n", out
.s
) < 0){
2761 n_pstate_err_no
= n_err_no
;
2769 return (vp
!= NULL
? 0 : 1);
2771 n_err(_("Synopsis: imapcodec: <e[ncode]|d[ecode]> <rest-of-line>\n"));
2772 n_pstate_err_no
= n_ERR_INVAL
;
2778 c_imap_imap(void *vp
)
2781 sighandler_type saveint
, savepipe
;
2782 struct mailbox
*mp
= &mb
;
2783 FILE *queuefp
= NULL
;
2784 enum okay
volatile ok
= STOP
;
2787 if (mp
->mb_type
!= MB_IMAP
) {
2788 printf("Not operating on an IMAP mailbox.\n");
2792 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
2793 safe_signal(SIGINT
, &_imap_maincatch
);
2794 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2795 if (sigsetjmp(imapjmp
, 1) == 0) {
2796 if (savepipe
!= SIG_IGN
)
2797 safe_signal(SIGPIPE
, imapcatch
);
2799 snprintf(o
, sizeof o
, "%s %s\r\n", tag(1), (char *)vp
);
2800 IMAP_OUT(o
, MB_COMD
, goto out
)
2801 while (mp
->mb_active
& MB_COMD
) {
2802 ok
= imap_answer(mp
, 0);
2803 fputs(responded_text
, stdout
);
2807 safe_signal(SIGINT
, saveint
);
2808 safe_signal(SIGPIPE
, savepipe
);
2812 n_go_onintr_for_imap();
2817 imap_newmail(int nmail
)
2821 if (nmail
&& had_exists
< 0 && had_expunge
< 0) {
2827 if (had_exists
== msgCount
&& had_expunge
< 0)
2828 /* Some servers always respond with EXISTS to NOOP. If
2829 * the mailbox has been changed but the number of messages
2830 * has not, an EXPUNGE must also had been sent; otherwise,
2831 * nothing has changed */
2834 return (had_expunge
>= 0 ? 2 : (had_exists
>= 0 ? 1 : 0));
2838 imap_putflags(int f
)
2844 bp
= buf
= salloc(100);
2845 if (f
& (MREAD
| MFLAGGED
| MANSWERED
| MDRAFTED
)) {
2850 for (cp
= "\\Seen"; *cp
; cp
++)
2856 for (cp
= "\\Flagged"; *cp
; cp
++)
2859 if (f
& MANSWERED
) {
2862 for (cp
= "\\Answered"; *cp
; cp
++)
2868 for (cp
= "\\Draft"; *cp
; cp
++)
2880 imap_getflags(const char *cp
, char const **xp
, enum mflag
*f
)
2883 while (*cp
!= ')') {
2885 if (ascncasecmp(cp
, "\\Seen", 5) == 0)
2887 else if (ascncasecmp(cp
, "\\Recent", 7) == 0)
2889 else if (ascncasecmp(cp
, "\\Deleted", 8) == 0)
2891 else if (ascncasecmp(cp
, "\\Flagged", 8) == 0)
2893 else if (ascncasecmp(cp
, "\\Answered", 9) == 0)
2895 else if (ascncasecmp(cp
, "\\Draft", 6) == 0)
2907 imap_append1(struct mailbox
*mp
, const char *name
, FILE *fp
, off_t off1
,
2908 long xsize
, enum mflag flag
, time_t t
)
2910 char o
[LINESIZE
], *buf
;
2911 size_t bufsize
, buflen
, cnt
;
2912 long size
, lines
, ysize
;
2924 if((qname
= imap_path_quote(mp
, name
)) == NULL
)
2927 if (mp
->mb_type
== MB_CACHE
) {
2928 queuefp
= cache_queue(mp
);
2929 if (queuefp
== NULL
) {
2936 buf
= smalloc(bufsize
= LINESIZE
);
2941 if (fseek(fp
, off1
, SEEK_SET
) < 0) {
2946 snprintf(o
, sizeof o
, "%s APPEND %s %s%s {%ld}\r\n",
2947 tag(1), qname
, imap_putflags(flag
), imap_make_date_time(t
), size
);
2948 IMAP_XOUT(o
, MB_COMD
, goto jleave
, rv
=STOP
;goto jleave
)
2949 while (mp
->mb_active
& MB_COMD
) {
2950 rv
= imap_answer(mp
, twice
);
2951 if (response_type
== RESPONSE_CONT
)
2955 if (mp
->mb_type
!= MB_CACHE
&& rv
== STOP
) {
2964 fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1);
2967 buf
[buflen
- 1] = '\r';
2969 if (mp
->mb_type
!= MB_CACHE
)
2970 swrite1(&mp
->mb_sock
, buf
, buflen
+1, 1);
2972 fwrite(buf
, 1, buflen
+1, queuefp
);
2975 if (mp
->mb_type
!= MB_CACHE
)
2976 swrite(&mp
->mb_sock
, "\r\n");
2978 fputs("\r\n", queuefp
);
2979 while (mp
->mb_active
& MB_COMD
) {
2980 rv
= imap_answer(mp
, 0);
2981 if (response_status
== RESPONSE_NO
/*&&
2982 ascncasecmp(responded_text,
2983 "[TRYCREATE] ", 12) == 0*/) {
2990 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), qname
);
2991 IMAP_XOUT(o
, MB_COMD
, goto jleave
, rv
=STOP
;goto jleave
)
2992 while (mp
->mb_active
& MB_COMD
)
2993 rv
= imap_answer(mp
, 1);
2996 imap_created_mailbox
++;
2998 } else if (rv
!= OKAY
)
2999 n_err(_("IMAP error: %s"), responded_text
);
3000 else if (response_status
== RESPONSE_OK
&& (mp
->mb_flags
& MB_UIDPLUS
))
3001 imap_appenduid(mp
, fp
, t
, off1
, xsize
, ysize
, lines
, flag
, name
);
3004 if (queuefp
!= NULL
)
3013 imap_append0(struct mailbox
*mp
, const char *name
, FILE *fp
, long offset
)
3015 char *buf
, *bp
, *lp
;
3016 size_t bufsize
, buflen
, cnt
;
3017 off_t off1
= -1, offs
;
3019 enum {_NONE
= 0, _INHEAD
= 1<<0, _NLSEP
= 1<<1} state
;
3025 buf
= smalloc(bufsize
= LINESIZE
);
3028 offs
= offset
/* BSD will move due to O_APPEND! ftell(fp) */;
3032 for (flag
= MNEW
, state
= _NLSEP
;;) {
3033 bp
= fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1);
3036 ((state
& (_INHEAD
| _NLSEP
)) == _NLSEP
&&
3037 is_head(buf
, buflen
, FAL0
))) {
3038 if (off1
!= (off_t
)-1) {
3039 rv
= imap_append1(mp
, name
, fp
, off1
, size
, flag
, tim
);
3042 fseek(fp
, offs
+buflen
, SEEK_SET
);
3044 off1
= offs
+ buflen
;
3050 tim
= unixtime(buf
);
3056 if (buf
[0] == '\n') {
3059 } else if (state
& _INHEAD
) {
3060 if (ascncasecmp(buf
, "status", 6) == 0) {
3062 while (whitechar(*lp
))
3065 while (*++lp
!= '\0')
3074 } else if (ascncasecmp(buf
, "x-status", 8) == 0) {
3076 while (whitechar(*lp
))
3079 while (*++lp
!= '\0')
3102 imap_append(const char *xserver
, FILE *fp
, long offset
)
3104 sighandler_type
volatile saveint
, savepipe
;
3107 enum okay rv
= STOP
;
3110 if (!url_parse(&url
, CPROTO_IMAP
, xserver
))
3112 if (!ok_blook(v15_compat
) &&
3113 (!(url
.url_flags
& n_URL_HAD_USER
) || url
.url_pass
.s
!= NULL
))
3114 n_err(_("New-style URL used without *v15-compat* being set!\n"));
3115 assert(url
.url_path
.s
!= NULL
);
3118 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3119 safe_signal(SIGINT
, &_imap_maincatch
);
3120 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3121 if (sigsetjmp(imapjmp
, 1))
3123 if (savepipe
!= SIG_IGN
)
3124 safe_signal(SIGPIPE
, imapcatch
);
3126 if ((mb
.mb_type
== MB_CACHE
|| mb
.mb_sock
.s_fd
> 0) && mb
.mb_imap_account
&&
3127 !strcmp(url
.url_p_eu_h_p
, mb
.mb_imap_account
)) {
3128 rv
= imap_append0(&mb
, url
.url_path
.s
, fp
, offset
);
3132 memset(&mx
, 0, sizeof mx
);
3134 if (!_imap_getcred(&mx
, &ccred
, &url
))
3137 imap_delim_init(&mx
, &url
);
3138 mx
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&mx
, url
.url_path
.s
));
3140 if (disconnected(url
.url_p_eu_h_p
) == 0) {
3141 if (!sopen(&mx
.mb_sock
, &url
))
3143 mx
.mb_sock
.s_desc
= "IMAP";
3144 mx
.mb_type
= MB_IMAP
;
3145 mx
.mb_imap_account
= n_UNCONST(url
.url_p_eu_h_p
);
3146 /* TODO the code now did
3147 * TODO mx.mb_imap_mailbox = mbx->url.url_patth.s;
3148 * TODO though imap_mailbox is sfree()d and mbx
3149 * TODO is possibly even a constant
3150 * TODO i changed this to sstrdup() sofar, as is used
3151 * TODO somewhere else in this file for this! */
3152 if (imap_preauth(&mx
, &url
) != OKAY
||
3153 imap_auth(&mx
, &ccred
) != OKAY
) {
3154 sclose(&mx
.mb_sock
);
3157 rv
= imap_append0(&mx
, url
.url_path
.s
, fp
, offset
);
3160 mx
.mb_imap_account
= n_UNCONST(url
.url_p_eu_h_p
);
3161 mx
.mb_type
= MB_CACHE
;
3162 rv
= imap_append0(&mx
, url
.url_path
.s
, fp
, offset
);
3169 safe_signal(SIGINT
, saveint
);
3170 safe_signal(SIGPIPE
, savepipe
);
3175 n_go_onintr_for_imap();
3180 imap_list1(struct mailbox
*mp
, const char *base
, struct list_item
**list
,
3181 struct list_item
**lend
, int level
)
3183 char o
[LINESIZE
], *cp
;
3184 struct list_item
*lp
;
3185 const char *qname
, *bp
;
3193 if((qname
= imap_path_quote(mp
, base
)) == NULL
)
3196 *list
= *lend
= NULL
;
3197 snprintf(o
, sizeof o
, "%s LIST %s %%\r\n", tag(1), qname
);
3198 IMAP_OUT(o
, MB_COMD
, goto jleave
)
3199 while (mp
->mb_active
& MB_COMD
) {
3200 ok
= imap_answer(mp
, 1);
3201 if (response_status
== RESPONSE_OTHER
&&
3202 response_other
== MAILBOX_DATA_LIST
&& imap_parse_list() == OKAY
) {
3203 cp
= imap_path_decode(imap_unquotestr(list_name
), NULL
);
3204 lp
= csalloc(1, sizeof *lp
);
3206 for (bp
= base
; *bp
!= '\0' && *bp
== *cp
; ++bp
)
3208 lp
->l_base
= *cp
? cp
: savestr(base
);
3209 lp
->l_attr
= list_attributes
;
3210 lp
->l_level
= level
+1;
3211 lp
->l_delim
= list_hierarchy_delimiter
;
3212 if (*list
&& *lend
) {
3213 (*lend
)->l_next
= lp
;
3224 imap_list(struct mailbox
*mp
, const char *base
, int strip
, FILE *fp
)
3226 struct list_item
*list
, *lend
, *lp
, *lx
, *ly
;
3233 depth
= (cp
= ok_vlook(imap_list_depth
)) != NULL
? atoi(cp
) : 2;
3234 if ((rv
= imap_list1(mp
, base
, &list
, &lend
, 0)) == STOP
)
3237 if (list
== NULL
|| lend
== NULL
)
3240 for (lp
= list
; lp
; lp
= lp
->l_next
)
3241 if (lp
->l_delim
!= '/' && lp
->l_delim
!= EOF
&& lp
->l_level
< depth
&&
3242 !(lp
->l_attr
& LIST_NOINFERIORS
)) {
3243 cp
= salloc((n
= strlen(lp
->l_name
)) + 2);
3244 memcpy(cp
, lp
->l_name
, n
);
3245 cp
[n
] = lp
->l_delim
;
3247 if (imap_list1(mp
, cp
, &lx
, &ly
, lp
->l_level
) == OKAY
&& lx
&& ly
) {
3248 lp
->l_has_children
= 1;
3249 if (strcmp(cp
, lx
->l_name
) == 0)
3258 for (lp
= list
; lp
; lp
= lp
->l_next
) {
3261 for (bp
= base
; *bp
&& *bp
== *cp
; bp
++)
3265 if (!(lp
->l_attr
& LIST_NOSELECT
))
3266 fprintf(fp
, "%s\n", *cp
? cp
: base
);
3267 else if (lp
->l_has_children
== 0)
3268 fprintf(fp
, "%s%c\n", *cp
? cp
: base
,
3269 (lp
->l_delim
!= EOF
? lp
->l_delim
: '\n'));
3277 imap_folders(const char * volatile name
, int strip
)
3279 sighandler_type saveint
, savepipe
;
3280 const char * volatile fold
, *cp
, *sp
;
3285 cp
= protbase(name
);
3286 sp
= mb
.mb_imap_account
;
3287 if (sp
== NULL
|| strcmp(cp
, sp
)) {
3289 _("Cannot perform `folders' but when on the very IMAP "
3290 "account; the current one is\n `%s' -- "
3291 "try `folders @'\n"),
3292 (sp
!= NULL
? sp
: _("[NONE]")));
3296 fold
= imap_fileof(name
);
3297 if (n_psonce
& n_PSO_TTYOUT
) {
3298 if ((fp
= Ftmp(NULL
, "imapfold", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3300 n_perr(_("tmpfile"), 0);
3307 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3308 safe_signal(SIGINT
, &_imap_maincatch
);
3309 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3310 if (sigsetjmp(imapjmp
, 1)) /* TODO imaplock? */
3312 if (savepipe
!= SIG_IGN
)
3313 safe_signal(SIGPIPE
, imapcatch
);
3315 if (mb
.mb_type
== MB_CACHE
)
3316 cache_list(&mb
, fold
, strip
, fp
);
3318 imap_list(&mb
, fold
, strip
, fp
);
3322 if (n_psonce
& n_PSO_TTYOUT
)
3329 if (n_psonce
& n_PSO_TTYOUT
) {
3335 n_err(_("Folder not found\n"));
3339 safe_signal(SIGINT
, saveint
);
3340 safe_signal(SIGPIPE
, savepipe
);
3341 if (n_psonce
& n_PSO_TTYOUT
)
3346 n_go_onintr_for_imap();
3355 long n
= 0, mx
= 0, columns
, width
;
3359 if ((out
= Ftmp(NULL
, "imapdopr", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3361 n_perr(_("tmpfile"), 0);
3365 while ((c
= getc(fp
)) != EOF
) {
3375 width
= n_scrnwidth
;
3376 if (mx
< width
/ 2) {
3377 columns
= width
/ (mx
+2);
3378 snprintf(o
, sizeof o
, "sort | pr -%lu -w%lu -t", columns
, width
);
3380 strncpy(o
, "sort", sizeof o
)[sizeof o
- 1] = '\0';
3381 n_child_run(ok_vlook(SHELL
), NULL
, fileno(fp
), fileno(out
), "-c", o
, NULL
,
3383 page_or_print(out
, 0);
3390 imap_copy1(struct mailbox
*mp
, struct message
*m
, int n
, const char *name
)
3394 bool_t twice
, stored
;
3401 twice
= stored
= FAL0
;
3406 i
= strlen(name
= imap_fileof(name
));
3407 if(i
== 0 || (i
> 0 && name
[i
- 1] == '/'))
3408 name
= savecat(name
, "INBOX");
3409 if((qname
= imap_path_quote(mp
, name
)) == NULL
)
3413 if (mp
->mb_type
== MB_CACHE
) {
3414 if ((queuefp
= cache_queue(mp
)) == NULL
)
3419 /* Since it is not possible to set flags on the copy, recently
3420 * set flags must be set on the original to include it in the copy */
3421 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
))
3422 imap_store(mp
, m
, n
, '+', "\\Seen", 0);
3423 if (m
->m_flag
&MFLAG
)
3424 imap_store(mp
, m
, n
, '+', "\\Flagged", 0);
3425 if (m
->m_flag
&MUNFLAG
)
3426 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3427 if (m
->m_flag
&MANSWER
)
3428 imap_store(mp
, m
, n
, '+', "\\Answered", 0);
3429 if (m
->m_flag
&MUNANSWER
)
3430 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3431 if (m
->m_flag
&MDRAFT
)
3432 imap_store(mp
, m
, n
, '+', "\\Draft", 0);
3433 if (m
->m_flag
&MUNDRAFT
)
3434 imap_store(mp
, m
, n
, '-', "\\Draft", 0);
3437 snprintf(o
, sizeof o
, "%s UID COPY %lu %s\r\n", tag(1), m
->m_uid
, qname
);
3439 if (check_expunged() == STOP
)
3441 snprintf(o
, sizeof o
, "%s COPY %u %s\r\n", tag(1), n
, qname
);
3443 IMAP_OUT(o
, MB_COMD
, goto out
)
3444 while (mp
->mb_active
& MB_COMD
)
3445 ok
= imap_answer(mp
, twice
);
3447 if (mp
->mb_type
== MB_IMAP
&& mp
->mb_flags
& MB_UIDPLUS
&&
3448 response_status
== RESPONSE_OK
)
3449 imap_copyuid(mp
, m
, name
);
3451 if (response_status
== RESPONSE_NO
&& !twice
) {
3452 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), qname
);
3453 IMAP_OUT(o
, MB_COMD
, goto out
)
3454 while (mp
->mb_active
& MB_COMD
)
3455 ok
= imap_answer(mp
, 1);
3457 imap_created_mailbox
++;
3462 if (queuefp
!= NULL
)
3465 /* ... and reset the flag to its initial value so that the 'exit'
3466 * command still leaves the message unread */
3468 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
)) {
3469 imap_store(mp
, m
, n
, '-', "\\Seen", 0);
3472 if (m
->m_flag
& MFLAG
) {
3473 imap_store(mp
, m
, n
, '-', "\\Flagged", 0);
3476 if (m
->m_flag
& MUNFLAG
) {
3477 imap_store(mp
, m
, n
, '+', "\\Flagged", 0);
3480 if (m
->m_flag
& MANSWER
) {
3481 imap_store(mp
, m
, n
, '-', "\\Answered", 0);
3484 if (m
->m_flag
& MUNANSWER
) {
3485 imap_store(mp
, m
, n
, '+', "\\Answered", 0);
3488 if (m
->m_flag
& MDRAFT
) {
3489 imap_store(mp
, m
, n
, '-', "\\Draft", 0);
3492 if (m
->m_flag
& MUNDRAFT
) {
3493 imap_store(mp
, m
, n
, '+', "\\Draft", 0);
3497 mp
->mb_active
|= MB_COMD
;
3498 (void)imap_finish(mp
);
3505 imap_copy(struct message
*m
, int n
, const char *name
)
3507 sighandler_type saveint
, savepipe
;
3508 enum okay
volatile rv
= STOP
;
3512 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3513 safe_signal(SIGINT
, &_imap_maincatch
);
3514 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3515 if (sigsetjmp(imapjmp
, 1) == 0) {
3516 if (savepipe
!= SIG_IGN
)
3517 safe_signal(SIGPIPE
, imapcatch
);
3519 rv
= imap_copy1(&mb
, m
, n
, name
);
3521 safe_signal(SIGINT
, saveint
);
3522 safe_signal(SIGPIPE
, savepipe
);
3527 n_go_onintr_for_imap();
3532 imap_copyuid_parse(const char *cp
, unsigned long *uidvalidity
,
3533 unsigned long *olduid
, unsigned long *newuid
)
3539 *uidvalidity
= strtoul(cp
, &xp
, 10);
3540 *olduid
= strtoul(xp
, &yp
, 10);
3541 *newuid
= strtoul(yp
, &zp
, 10);
3542 rv
= (*uidvalidity
&& *olduid
&& *newuid
&& xp
> cp
&& *xp
== ' ' &&
3543 yp
> xp
&& *yp
== ' ' && zp
> yp
&& *zp
== ']');
3549 imap_appenduid_parse(const char *cp
, unsigned long *uidvalidity
,
3556 *uidvalidity
= strtoul(cp
, &xp
, 10);
3557 *uid
= strtoul(xp
, &yp
, 10);
3558 rv
= (*uidvalidity
&& *uid
&& xp
> cp
&& *xp
== ' ' && yp
> xp
&&
3565 imap_copyuid(struct mailbox
*mp
, struct message
*m
, const char *name
)
3570 unsigned long uidvalidity
, olduid
, newuid
;
3576 memset(&xmb
, 0, sizeof xmb
);
3578 if ((cp
= asccasestr(responded_text
, "[COPYUID ")) == NULL
||
3579 imap_copyuid_parse(&cp
[9], &uidvalidity
, &olduid
, &newuid
) == STOP
)
3585 xmb
.mb_cache_directory
= NULL
;
3586 xmb
.mb_imap_account
= sstrdup(mp
->mb_imap_account
);
3587 xmb
.mb_imap_pass
= sstrdup(mp
->mb_imap_pass
);
3588 memcpy(&xmb
.mb_imap_delim
[0], &mp
->mb_imap_delim
[0],
3589 sizeof(xmb
.mb_imap_delim
));
3590 xmb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&xmb
, name
));
3591 if (mp
->mb_cache_directory
!= NULL
)
3592 xmb
.mb_cache_directory
= sstrdup(mp
->mb_cache_directory
);
3593 xmb
.mb_uidvalidity
= uidvalidity
;
3597 memset(&xm
, 0, sizeof xm
);
3599 if ((rv
= getcache1(mp
, &xm
, NEED_UNSPEC
, 3)) != OKAY
)
3601 getcache(mp
, &xm
, NEED_HEADER
);
3602 getcache(mp
, &xm
, NEED_BODY
);
3604 if ((m
->m_content_info
& CI_HAVE_HEADER
) == 0)
3605 getcache(mp
, m
, NEED_HEADER
);
3606 if ((m
->m_content_info
& CI_HAVE_BODY
) == 0)
3607 getcache(mp
, m
, NEED_BODY
);
3611 xm
.m_flag
&= ~MFULLYCACHED
;
3612 putcache(&xmb
, &xm
);
3614 if (xmb
.mb_cache_directory
!= NULL
)
3615 free(xmb
.mb_cache_directory
);
3616 if (xmb
.mb_imap_mailbox
!= NULL
)
3617 free(xmb
.mb_imap_mailbox
);
3618 if (xmb
.mb_imap_pass
!= NULL
)
3619 free(xmb
.mb_imap_pass
);
3620 if (xmb
.mb_imap_account
!= NULL
)
3621 free(xmb
.mb_imap_account
);
3627 imap_appenduid(struct mailbox
*mp
, FILE *fp
, time_t t
, long off1
, long xsize
,
3628 long size
, long lines
, int flag
, const char *name
)
3633 unsigned long uidvalidity
, uid
;
3639 if ((cp
= asccasestr(responded_text
, "[APPENDUID ")) == NULL
||
3640 imap_appenduid_parse(&cp
[11], &uidvalidity
, &uid
) == STOP
)
3646 xmb
.mb_cache_directory
= NULL
;
3647 /* XXX mb_imap_delim reused */
3648 xmb
.mb_imap_mailbox
= sstrdup(imap_path_normalize(&xmb
, name
));
3649 xmb
.mb_uidvalidity
= uidvalidity
;
3650 xmb
.mb_otf
= xmb
.mb_itf
= fp
;
3652 memset(&xm
, 0, sizeof xm
);
3653 xm
.m_flag
= (flag
& MREAD
) | MNEW
;
3655 xm
.m_block
= mailx_blockof(off1
);
3656 xm
.m_offset
= mailx_offsetof(off1
);
3659 xm
.m_lines
= xm
.m_xlines
= lines
;
3661 xm
.m_content_info
= CI_HAVE_HEADER
| CI_HAVE_BODY
;
3662 putcache(&xmb
, &xm
);
3664 free(xmb
.mb_imap_mailbox
);
3671 imap_appenduid_cached(struct mailbox
*mp
, FILE *fp
)
3675 long size
, xsize
, ysize
, lines
;
3676 enum mflag flag
= MNEW
;
3677 char *name
, *buf
, *bp
;
3679 size_t bufsize
, buflen
, cnt
;
3680 enum okay rv
= STOP
;
3683 buf
= smalloc(bufsize
= LINESIZE
);
3686 if (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) == NULL
)
3689 for (bp
= buf
; *bp
!= ' '; ++bp
) /* strip old tag */
3694 if ((cp
= strrchr(bp
, '{')) == NULL
)
3697 xsize
= atol(&cp
[1]) + 2;
3698 if ((name
= imap_strex(&bp
[7], &cp
)) == NULL
)
3704 imap_getflags(cp
, &cp
, &flag
);
3705 while (*++cp
== ' ')
3708 t
= imap_read_date_time(cp
);
3710 if ((tp
= Ftmp(NULL
, "imapapui", OF_RDWR
| OF_UNLINK
| OF_REGISTER
))
3717 if (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) == NULL
)
3720 buf
[--buflen
] = '\0';
3721 buf
[buflen
-1] = '\n';
3722 fwrite(buf
, 1, buflen
, tp
);
3729 imap_appenduid(mp
, tp
, t
, 0, xsize
-2, ysize
-1, lines
-1, flag
,
3730 imap_unquotestr(name
));
3740 #ifdef HAVE_IMAP_SEARCH
3742 imap_search2(struct mailbox
*mp
, struct message
*m
, int cnt
, const char *spec
,
3745 char *o
, *xp
, *cs
, c
;
3747 FILE *queuefp
= NULL
;
3751 enum okay ok
= STOP
;
3755 for (cp
= spec
; *cp
; cp
++)
3758 cp
= ok_vlook(ttycharset
);
3760 if (asccasecmp(cp
, "utf-8") && asccasecmp(cp
, "utf8")) {
3765 if ((it
= n_iconv_open("utf-8", cp
)) != (iconv_t
)-1) {
3766 sz
= strlen(spec
) + 1;
3767 nsp
= nspec
= salloc(nsz
= 6*strlen(spec
) + 1);
3768 if (n_iconv_buf(it
, n_ICONV_DEFAULT
,
3769 (char const**)&spec
, &sz
, &nsp
, &nsz
) == 0 &&
3778 cp
= imap_quotestr(cp
);
3779 cs
= salloc(n
= strlen(cp
) + 10);
3780 snprintf(cs
, n
, "CHARSET %s ", cp
);
3784 o
= ac_alloc(osize
= strlen(spec
) + 60);
3785 snprintf(o
, osize
, "%s UID SEARCH %s%s\r\n", tag(1), cs
, spec
);
3786 IMAP_OUT(o
, MB_COMD
, goto out
)
3787 while (mp
->mb_active
& MB_COMD
) {
3788 ok
= imap_answer(mp
, 0);
3789 if (response_status
== RESPONSE_OTHER
&&
3790 response_other
== MAILBOX_DATA_SEARCH
) {
3791 xp
= responded_other_text
;
3792 while (*xp
&& *xp
!= '\r') {
3793 n
= strtoul(xp
, &xp
, 10);
3794 for (i
= 0; i
< cnt
; i
++)
3795 if (m
[i
].m_uid
== n
&& !(m
[i
].m_flag
& MHIDDEN
) &&
3796 (f
== MDELETED
|| !(m
[i
].m_flag
& MDELETED
)))
3807 imap_search1(const char * volatile spec
, int f
)
3809 sighandler_type saveint
, savepipe
;
3810 enum okay
volatile rv
= STOP
;
3813 if (mb
.mb_type
!= MB_IMAP
)
3817 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3818 safe_signal(SIGINT
, &_imap_maincatch
);
3819 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3820 if (sigsetjmp(imapjmp
, 1) == 0) {
3821 if (savepipe
!= SIG_IGN
)
3822 safe_signal(SIGPIPE
, imapcatch
);
3824 rv
= imap_search2(&mb
, message
, msgCount
, spec
, f
);
3826 safe_signal(SIGINT
, saveint
);
3827 safe_signal(SIGPIPE
, savepipe
);
3832 n_go_onintr_for_imap();
3835 #endif /* HAVE_IMAP_SEARCH */
3838 imap_thisaccount(const char *cp
)
3843 if (mb
.mb_type
!= MB_CACHE
&& mb
.mb_type
!= MB_IMAP
)
3845 else if ((mb
.mb_type
!= MB_CACHE
&& mb
.mb_sock
.s_fd
< 0) ||
3846 mb
.mb_imap_account
== NULL
)
3849 rv
= !strcmp(protbase(cp
), mb
.mb_imap_account
);
3855 imap_remove(const char * volatile name
)
3857 sighandler_type
volatile saveint
, savepipe
;
3858 enum okay
volatile rv
= STOP
;
3861 if (mb
.mb_type
!= MB_IMAP
) {
3862 n_err(_("Refusing to remove \"%s\" in disconnected mode\n"), name
);
3866 if (!imap_thisaccount(name
)) {
3867 n_err(_("Can only remove mailboxes on current IMAP server: "
3868 "\"%s\" not removed\n"), name
);
3873 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3874 safe_signal(SIGINT
, &_imap_maincatch
);
3875 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3876 if (sigsetjmp(imapjmp
, 1) == 0) {
3877 if (savepipe
!= SIG_IGN
)
3878 safe_signal(SIGPIPE
, imapcatch
);
3880 rv
= imap_remove1(&mb
, imap_fileof(name
));
3882 safe_signal(SIGINT
, saveint
);
3883 safe_signal(SIGPIPE
, savepipe
);
3887 rv
= cache_remove(name
);
3891 n_go_onintr_for_imap();
3896 imap_remove1(struct mailbox
*mp
, const char *name
)
3908 if((qname
= imap_path_quote(mp
, name
)) != NULL
){
3909 o
= ac_alloc(os
= strlen(qname
) + 100);
3910 snprintf(o
, os
, "%s DELETE %s\r\n", tag(1), qname
);
3911 IMAP_OUT(o
, MB_COMD
, goto out
)
3912 while (mp
->mb_active
& MB_COMD
)
3913 ok
= imap_answer(mp
, 1);
3921 imap_rename(const char *old
, const char *new)
3923 sighandler_type saveint
, savepipe
;
3924 enum okay
volatile rv
= STOP
;
3927 if (mb
.mb_type
!= MB_IMAP
) {
3928 n_err(_("Refusing to rename mailboxes in disconnected mode\n"));
3932 if (!imap_thisaccount(old
) || !imap_thisaccount(new)) {
3933 n_err(_("Can only rename mailboxes on current IMAP "
3934 "server: \"%s\" not renamed to \"%s\"\n"), old
, new);
3939 if ((saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
3940 safe_signal(SIGINT
, &_imap_maincatch
);
3941 savepipe
= safe_signal(SIGPIPE
, SIG_IGN
);
3942 if (sigsetjmp(imapjmp
, 1) == 0) {
3943 if (savepipe
!= SIG_IGN
)
3944 safe_signal(SIGPIPE
, imapcatch
);
3946 rv
= imap_rename1(&mb
, imap_fileof(old
), imap_fileof(new));
3948 safe_signal(SIGINT
, saveint
);
3949 safe_signal(SIGPIPE
, savepipe
);
3953 rv
= cache_rename(old
, new);
3957 n_go_onintr_for_imap();
3962 imap_rename1(struct mailbox
*mp
, const char *old
, const char *new)
3966 char const *qoname
, *qnname
;
3974 if((qoname
= imap_path_quote(mp
, old
)) != NULL
&&
3975 (qnname
= imap_path_quote(mp
, new)) != NULL
){
3976 o
= ac_alloc(os
= strlen(qoname
) + strlen(qnname
) + 100);
3977 snprintf(o
, os
, "%s RENAME %s %s\r\n", tag(1), qoname
, qnname
);
3978 IMAP_OUT(o
, MB_COMD
, goto out
)
3979 while (mp
->mb_active
& MB_COMD
)
3980 ok
= imap_answer(mp
, 1);
3988 imap_dequeue(struct mailbox
*mp
, FILE *fp
)
3990 char o
[LINESIZE
], *newname
, *buf
, *bp
, *cp
, iob
[4096];
3991 size_t bufsize
, buflen
, cnt
;
3992 long offs
, offs1
, offs2
, octets
;
3993 int twice
, gotcha
= 0;
3994 FILE *queuefp
= NULL
;
3995 enum okay ok
= OKAY
, rok
= OKAY
;
3998 buf
= smalloc(bufsize
= LINESIZE
);
4001 while ((offs1
= ftell(fp
)) >= 0 &&
4002 fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 0) != NULL
) {
4003 for (bp
= buf
; *bp
!= ' '; ++bp
) /* strip old tag */
4008 if ((offs
= ftell(fp
)) < 0)
4011 snprintf(o
, sizeof o
, "%s %s", tag(1), bp
);
4012 if (ascncasecmp(bp
, "UID COPY ", 9) == 0) {
4014 while (digitchar(*cp
))
4020 if ((newname
= imap_strex(cp
, NULL
)) == NULL
)
4022 IMAP_OUT(o
, MB_COMD
, continue)
4023 while (mp
->mb_active
& MB_COMD
)
4024 ok
= imap_answer(mp
, twice
);
4025 if (response_status
== RESPONSE_NO
&& twice
++ == 0)
4027 if (response_status
== RESPONSE_OK
&& mp
->mb_flags
& MB_UIDPLUS
) {
4028 imap_copyuid(mp
, NULL
, imap_unquotestr(newname
));
4030 } else if (ascncasecmp(bp
, "UID STORE ", 10) == 0) {
4031 IMAP_OUT(o
, MB_COMD
, continue)
4032 while (mp
->mb_active
& MB_COMD
)
4033 ok
= imap_answer(mp
, 1);
4036 } else if (ascncasecmp(bp
, "APPEND ", 7) == 0) {
4037 if ((cp
= strrchr(bp
, '{')) == NULL
)
4039 octets
= atol(&cp
[1]) + 2;
4040 if ((newname
= imap_strex(&bp
[7], NULL
)) == NULL
)
4042 IMAP_OUT(o
, MB_COMD
, continue)
4043 while (mp
->mb_active
& MB_COMD
) {
4044 ok
= imap_answer(mp
, twice
);
4045 if (response_type
== RESPONSE_CONT
)
4049 if (twice
++ == 0 && fseek(fp
, offs
, SEEK_SET
) >= 0)
4053 while (octets
> 0) {
4054 size_t n
= (UICMP(z
, octets
, >, sizeof iob
)
4055 ? sizeof iob
: (size_t)octets
);
4057 if (n
!= fread(iob
, 1, n
, fp
))
4059 swrite1(&mp
->mb_sock
, iob
, n
, 1);
4061 swrite(&mp
->mb_sock
, "");
4062 while (mp
->mb_active
& MB_COMD
) {
4063 ok
= imap_answer(mp
, 0);
4064 if (response_status
== RESPONSE_NO
&& twice
++ == 0) {
4065 if (fseek(fp
, offs
, SEEK_SET
) < 0)
4070 if (response_status
== RESPONSE_OK
&& mp
->mb_flags
& MB_UIDPLUS
) {
4071 if ((offs2
= ftell(fp
)) < 0)
4073 fseek(fp
, offs1
, SEEK_SET
);
4074 if (imap_appenduid_cached(mp
, fp
) == STOP
) {
4075 (void)fseek(fp
, offs2
, SEEK_SET
);
4081 n_err(_("Invalid command in IMAP cache queue: \"%s\"\n"), bp
);
4086 snprintf(o
, sizeof o
, "%s CREATE %s\r\n", tag(1), newname
);
4087 IMAP_OUT(o
, MB_COMD
, continue)
4088 while (mp
->mb_active
& MB_COMD
)
4089 ok
= imap_answer(mp
, 1);
4095 ftruncate(fileno(fp
), 0);
4103 imap_strex(char const *cp
, char const **xp
)
4112 for (cq
= cp
+ 1; *cq
!= '\0'; ++cq
) {
4115 else if (*cq
== '"')
4121 n
= salloc(cq
- cp
+ 2);
4122 memcpy(n
, cp
, cq
- cp
+1);
4123 n
[cq
- cp
+ 1] = '\0';
4132 check_expunged(void)
4137 if (expunged_messages
> 0) {
4138 n_err(_("Command not executed - messages have been expunged\n"));
4147 c_connect(void *vp
) /* TODO v15-compat mailname<->URL (with password) */
4150 int rv
, omsgCount
= msgCount
;
4154 if (mb
.mb_type
== MB_IMAP
&& mb
.mb_sock
.s_fd
> 0) {
4155 n_err(_("Already connected\n"));
4160 if (!url_parse(&url
, CPROTO_IMAP
, mailname
)) {
4164 ok_bclear(disconnected
);
4165 n_var_vclear(savecat("disconnected-", url
.url_u_h_p
.s
));
4167 if (mb
.mb_type
== MB_CACHE
) {
4168 enum fedit_mode fm
= FEDIT_NONE
;
4171 if (!(n_pstate
& n_PS_EDIT
))
4173 _imap_setfile1(&url
, fm
, 1);
4174 if (msgCount
> omsgCount
)
4175 newmailinfo(omsgCount
);
4184 c_disconnect(void *vp
) /* TODO v15-compat mailname<->URL (with password) */
4187 int rv
= 1, *msgvec
= vp
;
4190 if (mb
.mb_type
== MB_CACHE
) {
4191 n_err(_("Not connected\n"));
4194 if (mb
.mb_type
!= MB_IMAP
|| cached_uidvalidity(&mb
) == 0) {
4195 n_err(_("The current mailbox is not cached\n"));
4199 if (!url_parse(&url
, CPROTO_IMAP
, mailname
))
4204 ok_bset(disconnected
);
4205 if (mb
.mb_type
== MB_IMAP
) {
4206 enum fedit_mode fm
= FEDIT_NONE
;
4209 if (!(n_pstate
& n_PS_EDIT
))
4211 sclose(&mb
.mb_sock
);
4212 _imap_setfile1(&url
, fm
, 1);
4223 int rv
= 1, *msgvec
= vp
, *ip
;
4227 if (mb
.mb_type
!= MB_IMAP
) {
4228 n_err(_("Not connected to an IMAP server\n"));
4231 if (cached_uidvalidity(&mb
) == 0) {
4232 n_err(_("The current mailbox is not cached\n"));
4237 for (ip
= msgvec
; *ip
; ++ip
) {
4238 mp
= &message
[*ip
- 1];
4239 if (!(mp
->m_content_info
& CI_HAVE_BODY
)) {
4252 disconnected(const char *file
)
4258 if (ok_blook(disconnected
)) {
4263 if (!url_parse(&url
, CPROTO_IMAP
, file
)) {
4267 rv
= (n_var_vlook(savecat("disconnected-", url
.url_u_h_p
.s
), FAL0
) != NULL
);
4275 transflags(struct message
*omessage
, long omsgCount
, int transparent
)
4277 struct message
*omp
, *nmp
, *newdot
, *newprevdot
;
4285 while (PTRCMP(omp
, <, omessage
+ omsgCount
) &&
4286 PTRCMP(nmp
, <, message
+ msgCount
)) {
4287 if (dot
&& nmp
->m_uid
== dot
->m_uid
)
4289 if (prevdot
&& nmp
->m_uid
== prevdot
->m_uid
)
4291 if (omp
->m_uid
== nmp
->m_uid
) {
4292 hf
= nmp
->m_flag
& MHIDDEN
;
4293 if (transparent
&& mb
.mb_type
== MB_IMAP
)
4294 omp
->m_flag
&= ~MHIDDEN
;
4296 if (transparent
&& mb
.mb_type
== MB_CACHE
)
4297 nmp
[-1].m_flag
|= hf
;
4298 } else if (omp
->m_uid
< nmp
->m_uid
)
4305 prevdot
= newprevdot
;
4311 imap_read_date_time(const char *cp
)
4315 int i
, year
, month
, day
, hour
, minute
, second
, sign
= -1;
4318 /* "25-Jul-2004 15:33:44 +0200"
4320 * 0 5 10 15 20 25 */
4321 if (cp
[0] != '"' || strlen(cp
) < 28 || cp
[27] != '"')
4323 day
= strtol(&cp
[1], NULL
, 10);
4325 if (ascncasecmp(&cp
[4], n_month_names
[i
], 3) == 0)
4327 if (n_month_names
[++i
][0] == '\0')
4331 year
= strtol(&cp
[8], NULL
, 10);
4332 hour
= strtol(&cp
[13], NULL
, 10);
4333 minute
= strtol(&cp
[16], NULL
, 10);
4334 second
= strtol(&cp
[19], NULL
, 10);
4335 if ((t
= combinetime(year
, month
, day
, hour
, minute
, second
)) == (time_t)-1)
4349 t
+= strtol(buf
, NULL
, 10) * sign
* 3600;
4352 t
+= strtol(buf
, NULL
, 10) * sign
* 60;
4362 imap_make_date_time(time_t t
)
4366 int tzdiff
, tzdiff_hour
, tzdiff_min
;
4369 tzdiff
= t
- mktime(gmtime(&t
));
4370 tzdiff_hour
= (int)(tzdiff
/ 60);
4371 tzdiff_min
= tzdiff_hour
% 60;
4373 tmptr
= localtime(&t
);
4374 if (tmptr
->tm_isdst
> 0)
4376 snprintf(s
, sizeof s
, "\"%02d-%s-%04d %02d:%02d:%02d %+03d%02d\"",
4377 tmptr
->tm_mday
, n_month_names
[tmptr
->tm_mon
], tmptr
->tm_year
+ 1900,
4378 tmptr
->tm_hour
, tmptr
->tm_min
, tmptr
->tm_sec
, tzdiff_hour
, tzdiff_min
);
4384 (protbase
)(char const *cp n_MEMORY_DEBUG_ARGS
)
4389 np
= n
= (n_autorec_alloc_from_pool
)(NULL
, strlen(cp
) +1
4390 n_MEMORY_DEBUG_ARGSCALL
);
4392 /* Just ignore the `is-system-mailbox' prefix XXX */
4393 if (cp
[0] == '%' && cp
[1] == ':')
4396 while (*cp
!= '\0') {
4397 if (cp
[0] == ':' && cp
[1] == '/' && cp
[2] == '/') {
4401 } else if (cp
[0] == '/')
4410 #endif /* HAVE_IMAP */