1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Folder (mailbox) initialization, newmail announcement and related.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. 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. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
44 /* Update mailname (if name != NULL) and displayname, return whether displayname
45 * was large enough to swallow mailname */
46 static bool_t
_update_mailname(char const *name
);
47 #ifdef HAVE_C90AMEND1 /* TODO unite __narrow_suffix() into one fun! */
48 SINLINE
size_t __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
);
52 static void a_folder_info(void);
55 _update_mailname(char const *name
) /* TODO 2MUCH work, cache, prop of Object! */
62 /* Don't realpath(3) if it's only an update request */
65 enum protocol p
= which_protocol(name
, TRU1
, TRU1
, &name
);
67 if (p
== PROTO_FILE
|| p
== PROTO_MAILDIR
) {
68 if (realpath(name
, mailname
) == NULL
&& n_err_no
!= n_ERR_NOENT
) {
69 n_err(_("Can't canonicalize %s\n"), n_shexp_quote_cp(name
, FAL0
));
76 n_strscpy(mailname
, name
, sizeof(mailname
));
82 /* Don't display an absolute path but "+FOLDER" if under *folder* */
86 if(*(folderp
= n_folder_query()) != '\0'){
88 if(!strncmp(folderp
, mailp
, i
)){
95 /* We want to see the name of the folder .. on the screen */
97 if (i
< sizeof(displayname
) -1)
98 memcpy(dispp
, mailp
, i
+1);
101 /* Avoid disrupting multibyte sequences (if possible) */
102 #ifndef HAVE_C90AMEND1
103 j
= sizeof(displayname
) / 3 - 1;
104 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
106 j
= field_detect_clip(sizeof(displayname
) / 3, mailp
, i
);
107 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
108 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
110 snprintf(dispp
, sizeof(displayname
), "%.*s...%s",
111 (int)j
, mailp
, mailp
+ i
);
114 n_PS_ROOT_BLOCK((ok_vset(mailbox_resolved
, mailname
),
115 ok_vset(mailbox_display
, displayname
)));
120 #ifdef HAVE_C90AMEND1
122 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
128 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
129 int ml
= mblen(cp
, cpl
);
130 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
131 (void)mblen(NULL
, 0);
148 #endif /* HAVE_C90AMEND1 */
153 int u
, n
, d
, s
, hidden
, moved
;
156 if(mb
.mb_type
== MB_VOID
){
157 fprintf(n_stdout
, _("(Currently no active mailbox)"));
161 s
= d
= hidden
= moved
= 0;
162 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
163 if (mp
->m_flag
& MNEW
)
165 if ((mp
->m_flag
& MREAD
) == 0)
167 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
169 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
171 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
173 if (mp
->m_flag
& MHIDDEN
)
177 /* If displayname gets truncated the user effectively has no option to see
178 * the full pathname of the mailbox, so print it at least for '? fi' */
179 fprintf(n_stdout
, "%s: ", n_shexp_quote_cp(
180 (_update_mailname(NULL
) ? displayname
: mailname
), FAL0
));
182 fprintf(n_stdout
, _("1 message"));
184 fprintf(n_stdout
, _("%d messages"), msgCount
);
186 fprintf(n_stdout
, _(" %d new"), n
);
188 fprintf(n_stdout
, _(" %d unread"), u
);
190 fprintf(n_stdout
, _(" %d deleted"), d
);
192 fprintf(n_stdout
, _(" %d saved"), s
);
194 fprintf(n_stdout
, _(" %d moved"), moved
);
196 fprintf(n_stdout
, _(" %d hidden"), hidden
);
198 fprintf(n_stdout
, _(" [Read-only]"));
201 putc('\n', n_stdout
);
206 setfile(char const *name
, enum fedit_mode fm
) /* TODO oh my god */
208 /* TODO This all needs to be converted to URL:: and Mailbox:: */
213 char const *who
, *orig_name
;
214 int rv
, omsgCount
= 0;
215 FILE *ibuf
= NULL
, *lckfp
= NULL
;
216 bool_t isdevnull
= FAL0
;
219 n_pstate
&= ~n_PS_SETFILE_OPENED
;
222 enum fexp_mode fexpm
;
224 if((who
= shortcut_expand(name
)) != NULL
){
225 fexpm
= FEXP_NSHORTCUT
/* XXX | FEXP_NSHELL*/;
228 fexpm
= FEXP_FULL
/* XXX FEXP_NSHELL*/;
233 fm
|= FEDIT_SYSBOX
; /* TODO fexpand() needs to tell is-valid-user! */
234 if(*(who
= &name
[1]) == ':')
236 if((cp
= strrchr(who
, '/')) != NULL
)
242 who
= ok_vlook(LOGNAME
);
244 if ((name
= fexpand(name
, fexpm
)) == NULL
)
248 /* For at least substdate() users TODO -> eventloop tick */
249 time_current_update(&time_current
, FAL0
);
251 switch (which_protocol(orig_name
= name
, TRU1
, TRU1
, &name
)) {
253 isdevnull
= ((n_poption
& n_PO_BATCH_FLAG
) &&
254 !strcmp(name
, n_path_devnull
));
256 do { /* TODO we need objects, goes away then */
257 # ifdef HAVE_REALPATH_NULL
260 if ((cp
= realpath(name
, NULL
)) != NULL
) {
267 if (realpath(name
, cbuf
) != NULL
)
268 name
= savestr(cbuf
);
276 rv
= maildir_setfile(name
, fm
);
281 rv
= pop3_setfile(orig_name
, fm
);
285 n_err(_("Cannot handle protocol: %s\n"), orig_name
);
289 if ((ibuf
= n_fopen_any(savecat("file://", name
), "r", NULL
)) == NULL
) {
292 if ((fm
& FEDIT_SYSBOX
) && e
== n_ERR_NOENT
) {
293 if (strcmp(who
, ok_vlook(LOGNAME
)) && getpwnam(who
) == NULL
) {
294 n_err(_("%s is not a user of this system\n"),
295 n_shexp_quote_cp(who
, FAL0
));
298 if (!(n_poption
& n_PO_QUICKRUN_MASK
) && ok_blook(bsdcompat
))
299 n_err(_("No mail for %s\n"), who
);
301 if (fm
& FEDIT_NEWMAIL
)
304 mb
.mb_type
= MB_VOID
;
305 if (ok_blook(emptystart
)) {
306 if (!(n_poption
& n_PO_QUICKRUN_MASK
) && !ok_blook(bsdcompat
))
308 /* We must avoid returning -1 and causing program exit */
316 if (fstat(fileno(ibuf
), &stb
) == -1) {
317 if (fm
& FEDIT_NEWMAIL
)
319 n_perr(_("fstat"), 0);
323 if (S_ISREG(stb
.st_mode
) || isdevnull
) {
326 if (fm
& FEDIT_NEWMAIL
)
328 n_err_no
= S_ISDIR(stb
.st_mode
) ? n_ERR_ISDIR
: n_ERR_INVAL
;
333 if (shudclob
&& !(fm
& FEDIT_NEWMAIL
) && !quit(FAL0
))
339 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_sock
.s_fd
>= 0)
340 sclose(&mb
.mb_sock
); /* TODO sorry? VMAILFS->close(), thank you */
343 /* TODO There is no intermediate VOID box we've switched to: name may
344 * TODO point to the same box that we just have written, so any updates
345 * TODO we won't see! Reopen again in this case. RACY! Goes with VOID! */
346 /* TODO In addition: in case of compressed/hook boxes we lock a temporary! */
347 /* TODO We may uselessly open twice but quit() doesn't say whether we were
348 * TODO modified so we can't tell: Mailbox::is_modified() :-(( */
349 if (/*shudclob && !(fm & FEDIT_NEWMAIL) &&*/ !strcmp(name
, mailname
)) {
353 if ((ibuf
= n_fopen_any(name
, "r", NULL
)) == NULL
||
354 fstat(fileno(ibuf
), &stb
) == -1 ||
355 (!S_ISREG(stb
.st_mode
) && !isdevnull
)) {
362 /* Copy the messages into /tmp and set pointers */
363 if (!(fm
& FEDIT_NEWMAIL
)) {
365 mb
.mb_type
= MB_VOID
;
368 mb
.mb_type
= MB_FILE
;
369 mb
.mb_perm
= (((n_poption
& n_PO_R_FLAG
) || (fm
& FEDIT_RDONLY
) ||
370 access(name
, W_OK
) < 0) ? 0 : MB_DELE
| MB_EDIT
);
383 if (fm
& FEDIT_SYSBOX
)
384 n_pstate
&= ~n_PS_EDIT
;
386 n_pstate
|= n_PS_EDIT
;
390 fseek(mb
.mb_otf
, 0L, SEEK_END
);
391 /* TODO Doing this without holding a lock is.. And not err checking.. */
392 fseek(ibuf
, mailsize
, SEEK_SET
);
394 omsgCount
= msgCount
;
399 else if (!(n_pstate
& n_PS_EDIT
))
400 lckfp
= n_dotlock(name
, fileno(ibuf
), FLT_READ
, offset
,0,
401 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
));
402 else if (n_file_lock(fileno(ibuf
), FLT_READ
, offset
,0,
403 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
)))
407 if (!(fm
& FEDIT_NEWMAIL
)) {
408 char const *emsg
= (n_pstate
& n_PS_EDIT
)
409 ? N_("Unable to lock mailbox, aborting operation")
410 : N_("Unable to (dot) lock mailbox, aborting operation");
414 if (!(fm
& FEDIT_NEWMAIL
))
419 mailsize
= fsize(ibuf
);
421 /* TODO This is too simple minded? We should regenerate an index file
422 * TODO to be able to truly tell whether *anything* has changed! */
423 if ((fm
& FEDIT_NEWMAIL
) && UICMP(z
, mailsize
, <=, offset
)) {
427 setptr(ibuf
, offset
);
429 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_sorted
) {
436 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1) {
441 if (!(fm
& FEDIT_NEWMAIL
)) {
442 n_pstate
&= ~n_PS_SAW_COMMAND
;
443 n_pstate
|= n_PS_SETFILE_OPENED
;
448 rv
= (msgCount
== 0);
450 n_err_no
= n_ERR_NODATA
;
452 if(n_poption
& n_PO_EXISTONLY
)
456 if(!(n_pstate
& n_PS_EDIT
) || (fm
& FEDIT_NEWMAIL
)){
457 if(!(fm
& FEDIT_NEWMAIL
)){
458 if (!ok_blook(emptystart
))
459 n_err(_("No mail for %s\n"), who
);
465 if(fm
& FEDIT_NEWMAIL
)
466 newmailinfo(omsgCount
);
470 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1)
476 mb
.mb_type
= MB_VOID
;
478 n_err_no
= n_ERR_NOTOBACCO
;
484 newmailinfo(int omsgCount
)
489 for (i
= 0; i
< omsgCount
; ++i
)
490 message
[i
].m_flag
&= ~MNEWEST
;
492 if (msgCount
> omsgCount
) {
493 for (i
= omsgCount
; i
< msgCount
; ++i
)
494 message
[i
].m_flag
|= MNEWEST
;
495 fprintf(n_stdout
, _("New mail has arrived.\n"));
496 if ((i
= msgCount
- omsgCount
) == 1)
497 fprintf(n_stdout
, _("Loaded 1 new message.\n"));
499 fprintf(n_stdout
, _("Loaded %d new messages.\n"), i
);
501 fprintf(n_stdout
, _("Loaded %d messages.\n"), msgCount
);
503 temporary_folder_hook_check(TRU1
);
507 if (ok_blook(header
))
508 print_headers(omsgCount
+ 1, msgCount
, FAL0
);
517 if (n_msgvec
!= NULL
)
519 n_msgvec
= scalloc(sz
+ 1, sizeof *n_msgvec
);
524 print_header_summary(char const *Larg
)
526 size_t bot
, top
, i
, j
;
530 /* Avoid any messages XXX add a make_mua_silent() and use it? */
531 if ((n_poption
& (n_PO_VERB
| n_PO_EXISTONLY
)) == n_PO_EXISTONLY
) {
532 n_stdout
= freopen(n_path_devnull
, "w", stdout
);
533 n_stderr
= freopen(n_path_devnull
, "w", stderr
);
535 assert(n_msgvec
!= NULL
);
536 i
= (getmsglist(/*TODO make const */n_UNCONST(Larg
), n_msgvec
, 0) <= 0);
537 if (n_poption
& n_PO_EXISTONLY
) {
538 n_exit_status
= (int)i
;
543 for (bot
= msgCount
, top
= 0, i
= 0; (j
= n_msgvec
[i
]) != 0; ++i
) {
550 bot
= 1, top
= msgCount
;
551 print_headers(bot
, top
, (Larg
!= NULL
)); /* TODO should take iterator!! */
557 n_folder_announce(enum n_announce_flags af
){
561 mdot
= (mb
.mb_type
== MB_VOID
) ? 1 : getmdot(0);
562 dot
= &message
[mdot
- 1];
564 if(af
!= n_ANNOUNCE_NONE
&& ok_blook(header
) &&
565 ((af
& n_ANNOUNCE_MAIN_CALL
) ||
566 ((af
& n_ANNOUNCE_CHANGE
) && !ok_blook(posix
))))
567 af
|= n_ANNOUNCE_STATUS
| n__ANNOUNCE_HEADER
;
569 if(af
& n_ANNOUNCE_STATUS
){
571 af
|= n__ANNOUNCE_ANY
;
574 if(af
& n__ANNOUNCE_HEADER
){
575 if(!(af
& n_ANNOUNCE_MAIN_CALL
) && ok_blook(bsdannounce
))
576 n_OBSOLETE(_("*bsdannounce* is now default behaviour"));
579 print_header_group(vec
); /* XXX errors? */
580 af
|= n__ANNOUNCE_ANY
;
583 if(af
& n__ANNOUNCE_ANY
)
594 enum mflag avoid
= MHIDDEN
| MDELETED
;
598 if (ok_blook(autothread
)) {
599 n_OBSOLETE(_("please use *autosort=thread* instead of *autothread*"));
601 } else if ((cp
= ok_vlook(autosort
)) != NULL
) {
602 if (mb
.mb_sorted
!= NULL
)
604 mb
.mb_sorted
= sstrdup(cp
);
608 if (mb
.mb_type
== MB_VOID
) {
614 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
615 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
618 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
619 if (mb
.mb_threaded
) {
620 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
621 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
624 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
625 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
630 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
631 if (mb
.mb_threaded
) {
632 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
633 if (mp
->m_flag
& MFLAGGED
)
636 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
637 if (mp
->m_flag
& MFLAGGED
)
642 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
643 if (mb
.mb_threaded
) {
644 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
645 if (!(mp
->m_flag
& (MREAD
| avoid
)))
648 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
649 if (!(mp
->m_flag
& (MREAD
| avoid
)))
655 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
656 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
657 else if (ok_blook(showlast
)) {
658 if (mb
.mb_threaded
) {
659 for (mp
= this_in_thread(threadroot
, -1); mp
;
660 mp
= prev_in_thread(mp
))
661 if (!(mp
->m_flag
& avoid
))
663 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
665 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
666 if (!(mp
->m_flag
& avoid
))
668 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
671 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
672 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
673 else if (mb
.mb_threaded
) {
674 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
675 if (!(mp
->m_flag
& avoid
))
677 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
679 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
680 if (!(mp
->m_flag
& avoid
))
682 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
683 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
691 initbox(char const *name
)
696 if (mb
.mb_type
!= MB_VOID
)
697 n_strscpy(prevfile
, mailname
, PATH_MAX
);
699 /* TODO name always NE mailname (but goes away for objects anyway)
700 * TODO Well, not true no more except that in parens */
701 _update_mailname((name
!= mailname
) ? name
: NULL
);
703 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpmbox", OF_WRONLY
| OF_HOLDSIGS
)) ==
705 n_perr(_("temporary mail message file"), 0);
708 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
709 n_perr(_("temporary mail message file"), 0);
712 Ftmp_release(&tempMesg
);
715 mb
.mb_active
= MB_NONE
;
717 if (mb
.mb_sorted
!= NULL
) {
721 dot
= prevdot
= threadroot
= NULL
;
722 n_pstate
&= ~n_PS_DID_PRINT_DOT
;
727 n_folder_query(void){
728 struct n_string s
, *sp
= &s
;
734 sp
= n_string_creat_auto(sp
);
736 /* *folder* is linked with *folder_resolved*: we only use the latter */
738 if((rv
= ok_vlook(folder_resolved
)) != NULL
)
742 * If directory does not start with a <slash> ('/'), the contents
743 * of HOME shall be prefixed to it.
745 * If folder is unset or set to null, [.] filenames beginning with
746 * '+' shall refer to files in the current directory.
747 * We may have the result already */
751 if((cp
= ok_vlook(folder
)) == NULL
)
754 /* Expand the *folder*; skip %: prefix for simplicity of use */
755 if(cp
[0] == '%' && cp
[1] == ':')
757 if((err
= (cp
= fexpand(cp
, FEXP_NSPECIAL
| FEXP_NFOLDER
| FEXP_NSHELL
)
758 ) == NULL
) || *cp
== '\0')
761 switch(which_protocol(cp
, FAL0
, FAL0
, NULL
)){
763 n_err(_("*folder* can't be set to a flat, read-only POP3 account\n"));
767 /* Further expansion desired */
771 /* Prefix HOME as necessary */
772 if(*cp
!= '/'){ /* XXX path_is_absolute() */
776 home
= ok_vlook(HOME
);
780 sp
= n_string_reserve(sp
, l1
+ 1 + l2
+1);
781 sp
= n_string_push_buf(sp
, home
, l1
);
782 sp
= n_string_push_c(sp
, '/');
783 sp
= n_string_push_buf(sp
, cp
, l2
);
784 cp
= n_string_cp(sp
);
785 sp
= n_string_drop_ownership(sp
);
790 /* TODO Since our visual mailname is resolved via realpath(3) if available
791 * TODO to avoid that we loose track of our currently open folder in case
792 * TODO we chdir away, but still checks the leading path portion against
793 * TODO n_folder_query() to be able to abbreviate to the +FOLDER syntax if
794 * TODO possible, we need to realpath(3) the folder, too */
796 assert(sp
->s_len
== 0 && sp
->s_dat
== NULL
);
797 # ifndef HAVE_REALPATH_NULL
798 sp
= n_string_reserve(sp
, PATH_MAX
+1);
801 if((sp
->s_dat
= realpath(cp
, sp
->s_dat
)) != NULL
){
802 # ifdef HAVE_REALPATH_NULL
803 n_string_cp(sp
= n_string_assign_cp(sp
, cp
= sp
->s_dat
));
807 }else if(n_err_no
== n_ERR_NOENT
)
810 n_err(_("Can't canonicalize *folder*: %s\n"),
811 n_shexp_quote_cp(cp
, FAL0
));
815 sp
= n_string_drop_ownership(sp
);
816 #endif /* HAVE_REALPATH */
818 /* Always append a solidus to our result path upon success */
822 if(rv
[(i
= strlen(rv
)) - 1] != '/'){
823 sp
= n_string_reserve(sp
, i
+ 1 +1);
824 sp
= n_string_push_buf(sp
, rv
, i
);
825 sp
= n_string_push_c(sp
, '/');
826 rv
= n_string_cp(sp
);
827 sp
= n_string_drop_ownership(sp
);
832 n_PS_ROOT_BLOCK(ok_vset(folder_resolved
, rv
));
836 n_err(_("*folder* is not resolvable, using CWD\n"));
837 assert(rv
!= NULL
&& *rv
== '\0');
844 n_folder_mbox_prepare_append(FILE *fout
, struct stat
*st_or_null
){
845 /* TODO n_folder_mbox_prepare_append -> Mailbox->append() */
852 if(fseek(fout
, -2L, SEEK_END
)){
855 if(st_or_null
== NULL
){
857 if(fstat(fileno(fout
), st_or_null
))
861 if(st_or_null
->st_size
>= 2)
863 if(st_or_null
->st_size
== 0){
867 if(fseek(fout
, -1L, SEEK_END
))
874 switch(fread(buf
, sizeof *buf
, 2, fout
)){
889 if(fflush(fout
) || (needsep
&& putc('\n', fout
) == EOF
))