1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Maildir folder support. FIXME rewrite - why do we chdir(2)??
3 *@ FIXME Simply truncating paths isn't really it.
5 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
6 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
10 * Gunnar Ritter. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by Gunnar Ritter
23 * and his contributors.
24 * 4. Neither the name of Gunnar Ritter nor the names of his contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY GUNNAR RITTER AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL GUNNAR RITTER OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 #define n_FILE maildir
43 #ifndef HAVE_AMALGAMATION
49 /* a_maildir_tbl should be a hash-indexed array of trees! */
50 static struct message
**a_maildir_tbl
, **a_maildir_tbl_top
;
51 static ui32_t a_maildir_tbl_prime
, a_maildir_tbl_maxdist
;
52 static sigjmp_buf _maildir_jmp
;
54 static void __maildircatch(int s
);
55 static void __maildircatch_hold(int s
);
57 /* Do some cleanup in the tmp/ subdir */
58 static void _cleantmp(void);
60 static int _maildir_setfile1(char const *name
, enum fedit_mode fm
,
63 static int a_maildir_cmp(void const *a
, void const *b
);
65 static int _maildir_subdir(char const *name
, char const *sub
,
68 static void _maildir_append(char const *name
, char const *sub
,
71 static void readin(char const *name
, struct message
*m
);
73 static void maildir_update(void);
75 static void _maildir_move(struct n_timespec
const *tsp
,
78 static char * mkname(struct n_timespec
const *tsp
, enum mflag f
,
81 static enum okay
maildir_append1(struct n_timespec
const *tsp
,
82 char const *name
, FILE *fp
, off_t off1
,
83 long size
, enum mflag flag
);
85 static enum okay
trycreate(char const *name
);
87 static enum okay
mkmaildir(char const *name
);
89 static struct message
* mdlook(char const *name
, struct message
*data
);
91 static void mktable(void);
93 static enum okay
subdir_remove(char const *name
, char const *sub
);
98 NYD_X
; /* Signal handler */
99 siglongjmp(_maildir_jmp
, s
);
103 __maildircatch_hold(int s
)
105 NYD_X
; /* Signal handler */
107 /* TODO no STDIO in signal handler, no _() tr's -- pre-translate interrupt
109 n_err_sighdl(_("\nImportant operation in progress: "
110 "interrupt again to forcefully abort\n"));
111 safe_signal(SIGINT
, &__maildircatch
);
118 struct n_string s
, *sp
;
124 if ((dirp
= opendir("tmp")) == NULL
)
127 now
= n_time_now(FAL0
)->ts_sec
;
128 sp
= n_string_creat_auto(&s
);
130 while ((dp
= readdir(dirp
)) != NULL
) {
131 if (dp
->d_name
[0] == '.')
134 sp
= n_string_trunc(sp
, 0);
135 sp
= n_string_push_buf(sp
, "tmp/", sizeof("tmp/") -1);
136 sp
= n_string_push_cp(sp
, dp
->d_name
);
137 if (stat(n_string_cp(sp
), &st
) == -1)
139 if (st
.st_atime
+ 36*3600 < now
)
148 _maildir_setfile1(char const *name
, enum fedit_mode fm
, int omsgCount
)
153 if (!(fm
& FEDIT_NEWMAIL
))
156 mb
.mb_perm
= ((n_poption
& n_PO_R_FLAG
) || (fm
& FEDIT_RDONLY
))
158 if ((i
= _maildir_subdir(name
, "cur", fm
)) != 0)
160 if ((i
= _maildir_subdir(name
, "new", fm
)) != 0)
162 _maildir_append(name
, NULL
, NULL
);
164 n_autorec_relax_create();
165 for (i
= ((fm
& FEDIT_NEWMAIL
) ? omsgCount
: 0); i
< msgCount
; ++i
) {
166 readin(name
, message
+ i
);
167 n_autorec_relax_unroll();
169 n_autorec_relax_gut();
171 if (fm
& FEDIT_NEWMAIL
) {
172 if (msgCount
> omsgCount
)
173 qsort(&message
[omsgCount
], msgCount
- omsgCount
, sizeof *message
,
176 qsort(message
, msgCount
, sizeof *message
, &a_maildir_cmp
);
184 a_maildir_cmp(void const *xa
, void const *xb
){
185 char const *cpa
, *cpa_pid
, *cpb
, *cpb_pid
;
186 union {struct message
const *mp
; char const *cp
;} a
, b
;
194 /* We could have parsed the time somewhen in the past, do a quick shot */
195 at
= (si64_t
)a
.mp
->m_time
;
196 bt
= (si64_t
)b
.mp
->m_time
;
197 if(at
!= 0 && bt
!= 0 && (at
-= bt
) != 0)
200 /* Otherwise we need to parse the name */
201 a
.cp
= &a
.mp
->m_maildir_file
[4];
202 b
.cp
= &b
.mp
->m_maildir_file
[4];
204 /* Interpret time stored in name, and use it for comparison */
205 if(((n_idec_si64_cp(&at
, a
.cp
, 10, &cpa
)
206 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
|| *cpa
!= '.' ||
208 goto jm1
; /* Fishy */
209 if(((n_idec_si64_cp(&bt
, b
.cp
, 10, &cpb
)
210 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
|| *cpb
!= '.' ||
217 /* If the seconds part does not work, go deeper.
218 * We use de-facto standard "maildir — E-mail directory" from the Courier
219 * mail server, also used by, e.g., Dovecot: sec.MusecPpid.hostname:2,flags.
220 * However, a different name convention exists which uses
221 * sec.pid_counter.hostname:2,flags.
222 * First go for usec/counter, then pid */
224 /* A: exact "standard"? */
227 if((rv
= *a
.cp
) == 'M')
230 else if(digitchar(rv
)){
232 while((rv
= *a
.cp
) != '\0' && rv
!= '_')
235 goto jm1
; /* Fishy */
237 /* This is compatible to what dovecot does, it surely does not do so
238 * for nothing, but i have no idea, but am too stupid to ask */
239 else for(;; rv
= *++a
.cp
){
242 if(rv
== '\0' || rv
== '.' || rv
== n_MAILDIR_SEPARATOR
)
243 goto jm1
; /* Fishy */
246 if(((n_idec_si64_cp(&at
, a
.cp
, 10, &cpa
)
247 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
)
248 goto jm1
; /* Fishy */
253 if((rv
= *b
.cp
) == 'M')
255 else if(digitchar(rv
)){
257 while((rv
= *b
.cp
) != '\0' && rv
!= '_')
261 }else for(;; rv
= *++b
.cp
){
264 if(rv
== '\0' || rv
== '.' || rv
== n_MAILDIR_SEPARATOR
)
268 if(((n_idec_si64_cp(&bt
, b
.cp
, 10, &cpb
)
269 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
)
275 /* So this gets hairy: sort by PID, then hostname */
282 goto jm1
; /* Fishy */
284 if(((n_idec_si64_cp(&at
, a
.cp
, 10, &cpa
)
285 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
)
286 goto jm1
; /* Fishy */
296 if(((n_idec_si64_cp(&bt
, b
.cp
, 10, &cpb
)
297 ) & n_IDEC_STATE_EMASK
) != n_IDEC_STATE_EBASE
)
298 goto jm1
; /* Fishy */
304 a
.cp
= (cpa_pid
!= NULL
) ? xa
: cpa
;
305 b
.cp
= (cpb_pid
!= NULL
) ? xb
: cpb
;
306 for(;; ++a
.cp
, ++b
.cp
){
310 at
= (ac
!= '\0' && ac
!= n_MAILDIR_SEPARATOR
);
312 bt
= (bc
!= '\0' && bc
!= n_MAILDIR_SEPARATOR
);
323 rv
= (at
== 0 ? 0 : (at
< 0 ? -1 : 1));
336 _maildir_subdir(char const *name
, char const *sub
, enum fedit_mode fm
)
343 if ((dirp
= opendir(sub
)) == NULL
) {
344 n_err(_("Cannot open directory %s\n"),
345 n_shexp_quote_cp(savecatsep(name
, '/', sub
), FAL0
));
349 if (access(sub
, W_OK
) == -1)
351 while ((dp
= readdir(dirp
)) != NULL
) {
352 if (dp
->d_name
[0] == '.' && (dp
->d_name
[1] == '\0' ||
353 (dp
->d_name
[1] == '.' && dp
->d_name
[2] == '\0')))
355 if (dp
->d_name
[0] == '.')
357 if (!(fm
& FEDIT_NEWMAIL
) || mdlook(dp
->d_name
, NULL
) == NULL
)
358 _maildir_append(name
, sub
, dp
->d_name
);
368 _maildir_append(char const *name
, char const *sub
, char const *fn
)
372 enum mflag f
= MUSED
| MNOFROM
| MNEWEST
;
377 if (fn
!= NULL
&& sub
!= NULL
) {
378 if (!strcmp(sub
, "new"))
384 (void)/*TODO*/n_idec_si64_cp(&tib
, fn
, 10, &xp
);
388 if ((cp
= strrchr(xp
, ',')) != NULL
&& PTRCMP(cp
, >, xp
+ 2) &&
389 cp
[-1] == '2' && cp
[-2] == n_MAILDIR_SEPARATOR
) {
390 while (*++cp
!= '\0') {
412 /* Ensure room (and a NULLified last entry) */
414 message_append(NULL
);
417 if (fn
== NULL
|| sub
== NULL
)
420 m
= &message
[msgCount
++];
427 m
->m_maildir_file
= tmp
= n_alloc(sz
+ 1 + i
);
428 memcpy(tmp
, sub
, sz
);
430 memcpy(&tmp
[sz
], fn
, i
);
434 m
->m_maildir_hash
= n_torek_hash(fn
);
441 readin(char const *name
, struct message
*m
)
444 size_t bufsize
, buflen
, cnt
;
445 long size
= 0, lines
= 0;
451 if ((fp
= Fopen(m
->m_maildir_file
, "r")) == NULL
) {
452 n_err(_("Cannot read %s for message %lu\n"),
453 n_shexp_quote_cp(savecatsep(name
, '/', m
->m_maildir_file
), FAL0
),
454 (ul_i
)PTR2SIZE(m
- message
+ 1));
455 m
->m_flag
|= MHIDDEN
;
460 fseek(mb
.mb_otf
, 0L, SEEK_END
);
461 offset
= ftell(mb
.mb_otf
);
462 buf
= smalloc(bufsize
= LINESIZE
);
464 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1) != NULL
) {
465 /* Since we simply copy over data without doing any transfer
466 * encoding reclassification/adjustment we *have* to perform
467 * RFC 4155 compliant From_ quoting here */
468 if (emptyline
&& is_head(buf
, buflen
, FAL0
)) {
469 putc('>', mb
.mb_otf
);
472 size
+= fwrite(buf
, 1, buflen
, mb
.mb_otf
);/*XXX err hdling*/
473 emptyline
= (*buf
== '\n');
478 putc('\n', mb
.mb_otf
);
485 m
->m_size
= m
->m_xsize
= size
;
486 m
->m_lines
= m
->m_xlines
= lines
;
487 m
->m_block
= mailx_blockof(offset
);
488 m
->m_offset
= mailx_offsetof(offset
);
498 struct n_timespec
const *tsp
;
499 int dodel
, c
, gotcha
= 0, held
= 0, modflags
= 0;
505 if (!(n_pstate
& n_PS_EDIT
)) {
507 for (m
= message
, c
= 0; PTRCMP(m
, <, message
+ msgCount
); ++m
) {
508 if (m
->m_flag
& MBOX
)
512 if (makembox() == STOP
)
516 tsp
= n_time_now(TRU1
); /* TODO FAL0, eventloop update! */
518 n_autorec_relax_create();
519 for (m
= message
, gotcha
= 0, held
= 0; PTRCMP(m
, <, message
+ msgCount
);
521 if (n_pstate
& n_PS_EDIT
)
522 dodel
= m
->m_flag
& MDELETED
;
524 dodel
= !((m
->m_flag
& MPRESERVE
) || !(m
->m_flag
& MTOUCH
));
526 if (unlink(m
->m_maildir_file
) < 0)
527 n_err(_("Cannot delete file %s for message %lu\n"),
528 n_shexp_quote_cp(savecatsep(mailname
, '/', m
->m_maildir_file
),
529 FAL0
), (ul_i
)PTR2SIZE(m
- message
+ 1));
533 if ((m
->m_flag
& (MREAD
| MSTATUS
)) == (MREAD
| MSTATUS
) ||
534 (m
->m_flag
& (MNEW
| MBOXED
| MSAVED
| MSTATUS
| MFLAG
|
535 MUNFLAG
| MANSWER
| MUNANSWER
| MDRAFT
| MUNDRAFT
))) {
536 _maildir_move(tsp
, m
);
537 n_autorec_relax_unroll();
543 n_autorec_relax_gut();
546 if ((gotcha
|| modflags
) && (n_pstate
& n_PS_EDIT
)) {
547 fprintf(n_stdout
, "%s %s\n",
548 n_shexp_quote_cp(displayname
, FAL0
),
549 ((ok_blook(bsdcompat
) || ok_blook(bsdmsgs
))
550 ? _("complete") : _("updated.")));
551 } else if (held
&& !(n_pstate
& n_PS_EDIT
) && mb
.mb_perm
!= 0) {
553 fprintf(n_stdout
, _("Held 1 message in %s\n"), displayname
);
555 fprintf(n_stdout
, _("Held %d messages in %s\n"), held
, displayname
);
559 for (m
= message
; PTRCMP(m
, <, message
+ msgCount
); ++m
)
560 free(n_UNCONST(m
->m_maildir_file
));
565 _maildir_move(struct n_timespec
const *tsp
, struct message
*m
)
570 fn
= mkname(tsp
, m
->m_flag
, m
->m_maildir_file
+ 4);
571 newfn
= savecat("cur/", fn
);
572 if (!strcmp(m
->m_maildir_file
, newfn
))
574 if (link(m
->m_maildir_file
, newfn
) == -1) {
575 n_err(_("Cannot link %s to %s: message %lu not touched\n"),
576 n_shexp_quote_cp(savecatsep(mailname
, '/', m
->m_maildir_file
), FAL0
),
577 n_shexp_quote_cp(savecatsep(mailname
, '/', newfn
), FAL0
),
578 (ul_i
)PTR2SIZE(m
- message
+ 1));
581 if (unlink(m
->m_maildir_file
) == -1)
582 n_err(_("Cannot unlink %s\n"),
583 n_shexp_quote_cp(savecatsep(mailname
, '/', m
->m_maildir_file
), FAL0
));
589 mkname(struct n_timespec
const *tsp
, enum mflag f
, char const *pref
)
592 static struct n_timespec ts
;
605 cp
= n_nodename(FAL0
);
608 if (UICMP(32, n
, <, size
+ 8))
609 node
= srealloc(node
, size
+= 20);
612 node
[n
++] = '\\', node
[n
++] = '0',
613 node
[n
++] = '5', node
[n
++] = '7';
616 node
[n
++] = '\\', node
[n
++] = '0',
617 node
[n
++] = '7', node
[n
++] = '2';
622 } while (*cp
++ != '\0');
625 /* Problem: Courier spec uses microseconds, not nanoseconds */
626 if((s
= tsp
->ts_sec
) > ts
.ts_sec
){
628 ts
.ts_nsec
= tsp
->ts_nsec
/ (n_DATE_NANOSSEC
/ n_DATE_MICROSSEC
);
630 s
= tsp
->ts_nsec
/ (n_DATE_NANOSSEC
/ n_DATE_MICROSSEC
);
633 if(s
< n_DATE_MICROSSEC
)
641 /* Create a name according to Courier spec */
642 size
= 60 + strlen(node
);
643 cp
= n_autorec_alloc(size
);
644 n
= snprintf(cp
, size
, "%" PRId64
".M%" PRIdZ
"P%ld.%s:2,",
645 ts
.ts_sec
, ts
.ts_nsec
, (long)n_pid
, node
);
647 size
= (n
= strlen(pref
)) + 13;
649 memcpy(cp
, pref
, n
+1);
650 for (i
= n
; i
> 3; --i
)
651 if (cp
[i
- 1] == ',' && cp
[i
- 2] == '2' &&
652 cp
[i
- 3] == n_MAILDIR_SEPARATOR
) {
657 memcpy(cp
+ n
, ":2,", 3 +1);
679 maildir_append1(struct n_timespec
const *tsp
, char const *name
, FILE *fp
,
680 off_t off1
, long size
, enum mflag flag
)
682 char buf
[4096], *fn
, *tfn
, *nfn
;
685 size_t nlen
, flen
, n
;
691 /* Create a unique temporary file */
692 for (nfn
= (char*)0xA /* XXX no magic */;; n_msleep(500, FAL0
)) {
693 flen
= strlen(fn
= mkname(tsp
, flag
, NULL
));
694 tfn
= n_autorec_alloc(n
= nlen
+ flen
+ 6);
695 snprintf(tfn
, n
, "%s/tmp/%s", name
, fn
);
697 /* Use "wx" for O_EXCL XXX stat(2) rather redundant; coverity:TOCTOU */
698 if ((!stat(tfn
, &st
) || n_err_no
== n_ERR_NOENT
) &&
699 (op
= Fopen(tfn
, "wx")) != NULL
)
702 nfn
= (char*)(PTR2SIZE(nfn
) - 1);
704 n_err(_("Can't create an unique file name in %s\n"),
705 n_shexp_quote_cp(savecat(name
, "/tmp"), FAL0
));
710 if (fseek(fp
, off1
, SEEK_SET
) == -1)
713 size_t z
= UICMP(z
, size
, >, sizeof buf
) ? sizeof buf
: (size_t)size
;
715 if (z
!= (n
= fread(buf
, 1, z
, fp
)) || n
!= fwrite(buf
, 1, n
, op
)) {
717 n_err(_("Error writing to %s\n"), n_shexp_quote_cp(tfn
, FAL0
));
725 nfn
= n_autorec_alloc(n
= nlen
+ flen
+ 6);
726 snprintf(nfn
, n
, "%s/new/%s", name
, fn
);
727 if (link(tfn
, nfn
) == -1) {
728 n_err(_("Cannot link %s to %s\n"), n_shexp_quote_cp(tfn
, FAL0
),
729 n_shexp_quote_cp(nfn
, FAL0
));
734 if (unlink(tfn
) == -1)
735 n_err(_("Cannot unlink %s\n"), n_shexp_quote_cp(tfn
, FAL0
));
742 trycreate(char const *name
)
748 if (!stat(name
, &st
)) {
749 if (!S_ISDIR(st
.st_mode
)) {
750 n_err(_("%s is not a directory\n"), n_shexp_quote_cp(name
, FAL0
));
753 } else if (!n_path_mkdir(name
)) {
754 n_err(_("Cannot create directory %s\n"), n_shexp_quote_cp(name
, FAL0
));
764 mkmaildir(char const *name
) /* TODO proper cleanup on error; use path[] loop */
771 if (trycreate(name
) == OKAY
) {
772 np
= ac_alloc((sz
= strlen(name
)) + 4 +1);
773 memcpy(np
, name
, sz
);
774 memcpy(np
+ sz
, "/tmp", 4 +1);
775 if (trycreate(np
) == OKAY
) {
776 memcpy(np
+ sz
, "/new", 4 +1);
777 if (trycreate(np
) == OKAY
) {
778 memcpy(np
+ sz
, "/cur", 4 +1);
788 static struct message
*
789 mdlook(char const *name
, struct message
*data
)
791 struct message
**mpp
, *mp
;
796 i
= data
->m_maildir_hash
;
798 i
= n_torek_hash(name
);
800 mpp
= &a_maildir_tbl
[i
%= a_maildir_tbl_prime
];
803 if((mp
= *mpp
) == NULL
){
804 if(n_UNLIKELY(data
!= NULL
)){
806 if(i
> a_maildir_tbl_maxdist
)
807 a_maildir_tbl_maxdist
= i
;
810 }else if(mp
->m_maildir_hash
== h
&& !strcmp(&mp
->m_maildir_file
[4], name
))
813 if(n_UNLIKELY(mpp
++ == a_maildir_tbl_top
))
815 if(++i
> a_maildir_tbl_maxdist
&& n_UNLIKELY(data
== NULL
)){
831 i
= a_maildir_tbl_prime
= msgCount
;
834 a_maildir_tbl_prime
= n_prime_next(a_maildir_tbl_prime
);
835 while(a_maildir_tbl_prime
< i
);
836 a_maildir_tbl
= n_calloc(a_maildir_tbl_prime
, sizeof *a_maildir_tbl
);
837 a_maildir_tbl_top
= &a_maildir_tbl
[a_maildir_tbl_prime
- 1];
838 a_maildir_tbl_maxdist
= 0;
839 for(mp
= message
, i
= msgCount
; i
-- != 0; ++mp
)
840 mdlook(&mp
->m_maildir_file
[4], mp
);
845 subdir_remove(char const *name
, char const *sub
)
848 int pathsize
, pathend
, namelen
, sublen
, n
;
854 namelen
= strlen(name
);
855 sublen
= strlen(sub
);
856 path
= smalloc(pathsize
= namelen
+ sublen
+ 30 +1);
857 memcpy(path
, name
, namelen
);
859 memcpy(path
+ namelen
+ 1, sub
, sublen
);
860 path
[namelen
+ sublen
+ 1] = '/';
861 path
[pathend
= namelen
+ sublen
+ 2] = '\0';
863 if ((dirp
= opendir(path
)) == NULL
) {
867 while ((dp
= readdir(dirp
)) != NULL
) {
868 if (dp
->d_name
[0] == '.' && (dp
->d_name
[1] == '\0' ||
869 (dp
->d_name
[1] == '.' && dp
->d_name
[2] == '\0')))
871 if (dp
->d_name
[0] == '.')
873 n
= strlen(dp
->d_name
);
874 if (UICMP(32, pathend
+ n
+1, >, pathsize
))
875 path
= srealloc(path
, pathsize
= pathend
+ n
+ 30);
876 memcpy(path
+ pathend
, dp
->d_name
, n
+1);
877 if (unlink(path
) == -1) {
885 path
[pathend
] = '\0';
886 if (rmdir(path
) == -1) {
898 maildir_setfile(char const * volatile name
, enum fedit_mode fm
)
900 sighandler_type
volatile saveint
;
907 omsgCount
= msgCount
;
908 if (cwget(&cw
) == STOP
) {
909 n_alert(_("Cannot open current directory"));
913 if (!(fm
& FEDIT_NEWMAIL
) && !quit(FAL0
))
916 saveint
= safe_signal(SIGINT
, SIG_IGN
);
918 if (!(fm
& FEDIT_NEWMAIL
)) {
919 if (fm
& FEDIT_SYSBOX
)
920 n_pstate
&= ~n_PS_EDIT
;
922 n_pstate
|= n_PS_EDIT
;
932 mb
.mb_type
= MB_MAILDIR
;
935 if(!n_is_dir(name
, FAL0
)){
936 emsg
= N_("Not a maildir: %s\n");
938 }else if(chdir(name
) < 0){
939 emsg
= N_("Cannot enter maildir://%s\n");
941 n_err(V_(emsg
), n_shexp_quote_cp(name
, FAL0
));
942 mb
.mb_type
= MB_VOID
;
946 safe_signal(SIGINT
, saveint
);
950 a_maildir_tbl
= NULL
;
951 if (sigsetjmp(_maildir_jmp
, 1) == 0) {
952 if (fm
& FEDIT_NEWMAIL
)
954 if (saveint
!= SIG_IGN
)
955 safe_signal(SIGINT
, &__maildircatch
);
956 i
= _maildir_setfile1(name
, fm
, omsgCount
);
958 if ((fm
& FEDIT_NEWMAIL
) && a_maildir_tbl
!= NULL
)
959 n_free(a_maildir_tbl
);
961 safe_signal(SIGINT
, saveint
);
964 mb
.mb_type
= MB_VOID
;
969 if (cwret(&cw
) == STOP
)
970 n_panic(_("Cannot change back to current directory"));
974 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_sorted
&& msgCount
> omsgCount
) {
979 if (!(fm
& FEDIT_NEWMAIL
)) {
980 n_pstate
&= ~n_PS_SAW_COMMAND
;
981 n_pstate
|= n_PS_SETFILE_OPENED
;
984 if ((n_poption
& n_PO_EXISTONLY
) && !(n_poption
& n_PO_HEADERLIST
)) {
989 if (!(fm
& FEDIT_NEWMAIL
) && (fm
& FEDIT_SYSBOX
) && msgCount
== 0) {
990 if (mb
.mb_type
== MB_MAILDIR
/* XXX ?? */ && !ok_blook(emptystart
))
991 n_err(_("No mail at %s\n"), n_shexp_quote_cp(name
, FAL0
));
996 if ((fm
& FEDIT_NEWMAIL
) && msgCount
> omsgCount
)
997 newmailinfo(omsgCount
);
1005 maildir_quit(bool_t hold_sigs_on
)
1007 sighandler_type saveint
;
1017 if (cwget(&cw
) == STOP
) {
1018 n_alert(_("Cannot open current directory"));
1022 saveint
= safe_signal(SIGINT
, SIG_IGN
);
1024 if (chdir(mailname
) == -1) {
1025 n_err(_("Cannot change directory to %s\n"),
1026 n_shexp_quote_cp(mailname
, FAL0
));
1028 safe_signal(SIGINT
, saveint
);
1032 if (sigsetjmp(_maildir_jmp
, 1) == 0) {
1033 if (saveint
!= SIG_IGN
)
1034 safe_signal(SIGINT
, &__maildircatch_hold
);
1038 safe_signal(SIGINT
, saveint
);
1040 if (cwret(&cw
) == STOP
)
1041 n_panic(_("Cannot change back to current directory"));
1052 maildir_append(char const *name
, FILE *fp
, long offset
)
1054 struct n_timespec
const *tsp
;
1055 char *buf
, *bp
, *lp
;
1056 size_t bufsize
, buflen
, cnt
;
1057 off_t off1
= -1, offs
;
1060 enum {_NONE
= 0, _INHEAD
= 1<<0, _NLSEP
= 1<<1} state
;
1064 if ((rv
= mkmaildir(name
)) != OKAY
)
1067 buf
= smalloc(bufsize
= LINESIZE
); /* TODO line pool; signals */
1070 offs
= offset
/* BSD will move due to O_APPEND! ftell(fp) */;
1072 tsp
= n_time_now(TRU1
); /* TODO -> eventloop */
1074 n_autorec_relax_create();
1075 for (flag
= MNEW
, state
= _NLSEP
;;) {
1076 bp
= fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fp
, 1);
1079 ((state
& (_INHEAD
| _NLSEP
)) == _NLSEP
&&
1080 is_head(buf
, buflen
, FAL0
))) {
1081 if (off1
!= (off_t
)-1) {
1082 if ((rv
= maildir_append1(tsp
, name
, fp
, off1
, size
, flag
)) == STOP
)
1084 n_autorec_relax_unroll();
1085 if (fseek(fp
, offs
+ buflen
, SEEK_SET
) == -1) {
1090 off1
= offs
+ buflen
;
1102 if (buf
[0] == '\n') {
1105 } else if (state
& _INHEAD
) {
1106 if (!ascncasecmp(buf
, "status", 6)) {
1108 while (whitechar(*lp
))
1111 while (*++lp
!= '\0')
1120 } else if (!ascncasecmp(buf
, "x-status", 8)) {
1122 while (whitechar(*lp
))
1125 while (*++lp
!= '\0')
1143 n_autorec_relax_gut();
1151 maildir_remove(char const *name
)
1153 enum okay rv
= STOP
;
1156 if (subdir_remove(name
, "tmp") == STOP
||
1157 subdir_remove(name
, "new") == STOP
||
1158 subdir_remove(name
, "cur") == STOP
)
1160 if (rmdir(name
) == -1) {