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 - 2018 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 n_INLINE
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! */
63 /* Don't realpath(3) if it's only an update request */
69 p
= which_protocol(name
, TRU1
, TRU1
, &adjname
);
71 if(p
== PROTO_FILE
|| p
== PROTO_MAILDIR
){
73 if (realpath(name
, mailname
) == NULL
&& n_err_no
!= n_ERR_NOENT
) {
74 n_err(_("Can't canonicalize %s\n"), n_shexp_quote_cp(name
, FAL0
));
80 n_strscpy(mailname
, name
, sizeof(mailname
));
86 /* Don't display an absolute path but "+FOLDER" if under *folder* */
87 if(*(foldp
= n_folder_query()) != '\0'){
88 foldlen
= strlen(foldp
);
89 if(strncmp(foldp
, mailp
, foldlen
))
94 /* We want to see the name of the folder .. on the screen */
96 if(i
< sizeof(displayname
) - 3 -1){
100 memcpy(dispp
, mailp
, foldlen
);
104 memcpy(dispp
, mailp
, i
-= foldlen
);
107 memcpy(dispp
, mailp
, i
+1);
110 /* Avoid disrupting multibyte sequences (if possible) */
111 #ifndef HAVE_C90AMEND1
112 j
= sizeof(displayname
) / 3 - 3;
113 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
115 j
= field_detect_clip(sizeof(displayname
) / 3, mailp
, i
);
116 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
117 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
119 snprintf(dispp
, sizeof(displayname
), "%s%.*s...%s",
120 (foldlen
> 0 ? "[+]" : ""), (int)j
, mailp
, mailp
+ i
);
124 n_PS_ROOT_BLOCK((ok_vset(mailbox_resolved
, mailname
),
125 ok_vset(mailbox_display
, displayname
)));
130 #ifdef HAVE_C90AMEND1
132 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
138 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
139 int ml
= mblen(cp
, cpl
);
140 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
141 (void)mblen(NULL
, 0);
158 #endif /* HAVE_C90AMEND1 */
163 int u
, n
, d
, s
, hidden
, moved
;
166 if(mb
.mb_type
== MB_VOID
){
167 fprintf(n_stdout
, _("(Currently no active mailbox)"));
171 s
= d
= hidden
= moved
= 0;
172 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
173 if (mp
->m_flag
& MNEW
)
175 if ((mp
->m_flag
& MREAD
) == 0)
177 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
179 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
181 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
183 if (mp
->m_flag
& MHIDDEN
)
187 /* If displayname gets truncated the user effectively has no option to see
188 * the full pathname of the mailbox, so print it at least for '? fi' */
189 fprintf(n_stdout
, "%s: ", n_shexp_quote_cp(
190 (_update_mailname(NULL
) ? displayname
: mailname
), FAL0
));
192 fprintf(n_stdout
, _("1 message"));
194 fprintf(n_stdout
, _("%d messages"), msgCount
);
196 fprintf(n_stdout
, _(" %d new"), n
);
198 fprintf(n_stdout
, _(" %d unread"), u
);
200 fprintf(n_stdout
, _(" %d deleted"), d
);
202 fprintf(n_stdout
, _(" %d saved"), s
);
204 fprintf(n_stdout
, _(" %d moved"), moved
);
206 fprintf(n_stdout
, _(" %d hidden"), hidden
);
208 fprintf(n_stdout
, _(" [Read-only]"));
210 if (mb
.mb_type
== MB_CACHE
)
211 fprintf(n_stdout
, _(" [Disconnected]"));
215 putc('\n', n_stdout
);
220 setfile(char const *name
, enum fedit_mode fm
) /* TODO oh my god */
222 /* TODO This all needs to be converted to URL:: and Mailbox:: */
227 char const *who
, *orig_name
;
228 int rv
, omsgCount
= 0;
229 FILE *ibuf
= NULL
, *lckfp
= NULL
;
230 bool_t isdevnull
= FAL0
;
233 n_pstate
&= ~n_PS_SETFILE_OPENED
;
236 enum fexp_mode fexpm
;
238 if((who
= shortcut_expand(name
)) != NULL
){
239 fexpm
= FEXP_NSHORTCUT
/* XXX | FEXP_NSHELL*/;
247 fm
|= FEDIT_SYSBOX
; /* TODO fexpand() needs to tell is-valid-user! */
248 if(*(who
= &name
[1]) == ':')
250 if((cp
= strrchr(who
, '/')) != NULL
)
256 who
= ok_vlook(LOGNAME
);
258 if ((name
= fexpand(name
, fexpm
)) == NULL
)
262 /* For at least substdate() users TODO -> eventloop tick */
263 time_current_update(&time_current
, FAL0
);
265 switch (which_protocol(orig_name
= name
, TRU1
, TRU1
, &name
)) {
267 isdevnull
= ((n_poption
& n_PO_BATCH_FLAG
) &&
268 !strcmp(name
, n_path_devnull
));
270 do { /* TODO we need objects, goes away then */
271 # ifdef HAVE_REALPATH_NULL
274 if ((cp
= realpath(name
, NULL
)) != NULL
) {
281 if (realpath(name
, cbuf
) != NULL
)
282 name
= savestr(cbuf
);
290 rv
= maildir_setfile(name
, fm
);
295 rv
= pop3_setfile(orig_name
, fm
);
301 if((fm
& FEDIT_NEWMAIL
) && mb
.mb_type
== MB_CACHE
)
304 rv
= imap_setfile(orig_name
, fm
);
308 n_err(_("Cannot handle protocol: %s\n"), orig_name
);
312 if ((ibuf
= n_fopen_any(savecat("file://", name
), "r", NULL
)) == NULL
) {
315 if ((fm
& FEDIT_SYSBOX
) && e
== n_ERR_NOENT
) {
316 if (strcmp(who
, ok_vlook(LOGNAME
)) && getpwnam(who
) == NULL
) {
317 n_err(_("%s is not a user of this system\n"),
318 n_shexp_quote_cp(who
, FAL0
));
321 if (!(n_poption
& n_PO_QUICKRUN_MASK
) && ok_blook(bsdcompat
))
322 n_err(_("No mail for %s\n"), who
);
324 if (fm
& FEDIT_NEWMAIL
)
327 mb
.mb_type
= MB_VOID
;
328 if (ok_blook(emptystart
)) {
329 if (!(n_poption
& n_PO_QUICKRUN_MASK
) && !ok_blook(bsdcompat
))
331 /* We must avoid returning -1 and causing program exit */
339 if (fstat(fileno(ibuf
), &stb
) == -1) {
340 if (fm
& FEDIT_NEWMAIL
)
342 n_perr(_("fstat"), 0);
346 if (S_ISREG(stb
.st_mode
) || isdevnull
) {
349 if (fm
& FEDIT_NEWMAIL
)
351 n_err_no
= S_ISDIR(stb
.st_mode
) ? n_ERR_ISDIR
: n_ERR_INVAL
;
356 if (shudclob
&& !(fm
& FEDIT_NEWMAIL
) && !quit(FAL0
))
362 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_sock
.s_fd
>= 0)
363 sclose(&mb
.mb_sock
); /* TODO sorry? VMAILFS->close(), thank you */
366 /* TODO There is no intermediate VOID box we've switched to: name may
367 * TODO point to the same box that we just have written, so any updates
368 * TODO we won't see! Reopen again in this case. RACY! Goes with VOID! */
369 /* TODO In addition: in case of compressed/hook boxes we lock a temporary! */
370 /* TODO We may uselessly open twice but quit() doesn't say whether we were
371 * TODO modified so we can't tell: Mailbox::is_modified() :-(( */
372 if (/*shudclob && !(fm & FEDIT_NEWMAIL) &&*/ !strcmp(name
, mailname
)) {
376 if ((ibuf
= n_fopen_any(name
, "r", NULL
)) == NULL
||
377 fstat(fileno(ibuf
), &stb
) == -1 ||
378 (!S_ISREG(stb
.st_mode
) && !isdevnull
)) {
385 /* Copy the messages into /tmp and set pointers */
386 if (!(fm
& FEDIT_NEWMAIL
)) {
388 mb
.mb_type
= MB_VOID
;
391 mb
.mb_type
= MB_FILE
;
392 mb
.mb_perm
= (((n_poption
& n_PO_R_FLAG
) || (fm
& FEDIT_RDONLY
) ||
393 access(name
, W_OK
) < 0) ? 0 : MB_DELE
| MB_EDIT
);
406 if (fm
& FEDIT_SYSBOX
)
407 n_pstate
&= ~n_PS_EDIT
;
409 n_pstate
|= n_PS_EDIT
;
413 fseek(mb
.mb_otf
, 0L, SEEK_END
);
414 /* TODO Doing this without holding a lock is.. And not err checking.. */
415 fseek(ibuf
, mailsize
, SEEK_SET
);
417 omsgCount
= msgCount
;
422 else if (!(n_pstate
& n_PS_EDIT
))
423 lckfp
= n_dotlock(name
, fileno(ibuf
), FLT_READ
, offset
,0,
424 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
));
425 else if (n_file_lock(fileno(ibuf
), FLT_READ
, offset
,0,
426 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
)))
430 if (!(fm
& FEDIT_NEWMAIL
)) {
431 char const *emsg
= (n_pstate
& n_PS_EDIT
)
432 ? N_("Unable to lock mailbox, aborting operation")
433 : N_("Unable to (dot) lock mailbox, aborting operation");
437 if (!(fm
& FEDIT_NEWMAIL
))
442 mailsize
= fsize(ibuf
);
444 /* TODO This is too simple minded? We should regenerate an index file
445 * TODO to be able to truly tell whether *anything* has changed! */
446 if ((fm
& FEDIT_NEWMAIL
) && UICMP(z
, mailsize
, <=, offset
)) {
450 setptr(ibuf
, offset
);
452 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_sorted
) {
459 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1) {
464 if (!(fm
& FEDIT_NEWMAIL
)) {
465 n_pstate
&= ~n_PS_SAW_COMMAND
;
466 n_pstate
|= n_PS_SETFILE_OPENED
;
471 rv
= (msgCount
== 0);
473 n_err_no
= n_ERR_NODATA
;
475 if(n_poption
& n_PO_EXISTONLY
)
479 if(!(n_pstate
& n_PS_EDIT
) || (fm
& FEDIT_NEWMAIL
)){
480 if(!(fm
& FEDIT_NEWMAIL
)){
481 if (!ok_blook(emptystart
))
482 n_err(_("No mail for %s\n"), who
);
488 if(fm
& FEDIT_NEWMAIL
)
489 newmailinfo(omsgCount
);
493 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1)
499 mb
.mb_type
= MB_VOID
;
501 n_err_no
= n_ERR_NOTOBACCO
;
507 newmailinfo(int omsgCount
)
512 for (i
= 0; i
< omsgCount
; ++i
)
513 message
[i
].m_flag
&= ~MNEWEST
;
515 if (msgCount
> omsgCount
) {
516 for (i
= omsgCount
; i
< msgCount
; ++i
)
517 message
[i
].m_flag
|= MNEWEST
;
518 fprintf(n_stdout
, _("New mail has arrived.\n"));
519 if ((i
= msgCount
- omsgCount
) == 1)
520 fprintf(n_stdout
, _("Loaded 1 new message.\n"));
522 fprintf(n_stdout
, _("Loaded %d new messages.\n"), i
);
524 fprintf(n_stdout
, _("Loaded %d messages.\n"), msgCount
);
526 temporary_folder_hook_check(TRU1
);
530 if (ok_blook(header
))
531 print_headers(omsgCount
+ 1, msgCount
, FAL0
);
540 if (n_msgvec
!= NULL
)
542 n_msgvec
= scalloc(sz
+ 1, sizeof *n_msgvec
);
547 print_header_summary(char const *Larg
)
549 size_t bot
, top
, i
, j
;
553 /* Avoid any messages XXX add a make_mua_silent() and use it? */
554 if ((n_poption
& (n_PO_VERB
| n_PO_EXISTONLY
)) == n_PO_EXISTONLY
) {
555 n_stdout
= freopen(n_path_devnull
, "w", stdout
);
556 n_stderr
= freopen(n_path_devnull
, "w", stderr
);
558 assert(n_msgvec
!= NULL
);
559 i
= (getmsglist(/*TODO make const */n_UNCONST(Larg
), n_msgvec
, 0) <= 0);
560 if (n_poption
& n_PO_EXISTONLY
) {
561 n_exit_status
= (int)i
;
566 for (bot
= msgCount
, top
= 0, i
= 0; (j
= n_msgvec
[i
]) != 0; ++i
) {
573 bot
= 1, top
= msgCount
;
574 print_headers(bot
, top
, (Larg
!= NULL
)); /* TODO should take iterator!! */
580 n_folder_announce(enum n_announce_flags af
){
584 mdot
= (mb
.mb_type
== MB_VOID
) ? 1 : getmdot(0);
585 dot
= &message
[mdot
- 1];
587 if(af
!= n_ANNOUNCE_NONE
&& ok_blook(header
) &&
588 ((af
& n_ANNOUNCE_MAIN_CALL
) ||
589 ((af
& n_ANNOUNCE_CHANGE
) && !ok_blook(posix
))))
590 af
|= n_ANNOUNCE_STATUS
| n__ANNOUNCE_HEADER
;
592 if(af
& n_ANNOUNCE_STATUS
){
594 af
|= n__ANNOUNCE_ANY
;
597 if(af
& n__ANNOUNCE_HEADER
){
598 if(!(af
& n_ANNOUNCE_MAIN_CALL
) && ok_blook(bsdannounce
))
599 n_OBSOLETE(_("*bsdannounce* is now default behaviour"));
602 print_header_group(vec
); /* XXX errors? */
603 af
|= n__ANNOUNCE_ANY
;
606 if(af
& n__ANNOUNCE_ANY
)
617 enum mflag avoid
= MHIDDEN
| MDELETED
;
621 if (ok_blook(autothread
)) {
622 n_OBSOLETE(_("please use *autosort=thread* instead of *autothread*"));
624 } else if ((cp
= ok_vlook(autosort
)) != NULL
) {
625 if (mb
.mb_sorted
!= NULL
)
627 mb
.mb_sorted
= sstrdup(cp
);
631 if (mb
.mb_type
== MB_VOID
) {
637 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
638 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
641 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
642 if (mb
.mb_threaded
) {
643 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
644 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
647 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
648 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
653 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
654 if (mb
.mb_threaded
) {
655 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
656 if (mp
->m_flag
& MFLAGGED
)
659 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
660 if (mp
->m_flag
& MFLAGGED
)
665 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
666 if (mb
.mb_threaded
) {
667 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
668 if (!(mp
->m_flag
& (MREAD
| avoid
)))
671 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
672 if (!(mp
->m_flag
& (MREAD
| avoid
)))
678 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
679 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
680 else if (ok_blook(showlast
)) {
681 if (mb
.mb_threaded
) {
682 for (mp
= this_in_thread(threadroot
, -1); mp
;
683 mp
= prev_in_thread(mp
))
684 if (!(mp
->m_flag
& avoid
))
686 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
688 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
689 if (!(mp
->m_flag
& avoid
))
691 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
694 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
695 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
696 else if (mb
.mb_threaded
) {
697 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
698 if (!(mp
->m_flag
& avoid
))
700 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
702 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
703 if (!(mp
->m_flag
& avoid
))
705 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
706 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
714 initbox(char const *name
)
719 if (mb
.mb_type
!= MB_VOID
)
720 n_strscpy(prevfile
, mailname
, PATH_MAX
);
722 /* TODO name always NE mailname (but goes away for objects anyway)
723 * TODO Well, not true no more except that in parens */
724 _update_mailname((name
!= mailname
) ? name
: NULL
);
726 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpmbox", OF_WRONLY
| OF_HOLDSIGS
)) ==
728 n_perr(_("temporary mail message file"), 0);
731 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
732 n_perr(_("temporary mail message file"), 0);
735 Ftmp_release(&tempMesg
);
738 mb
.mb_active
= MB_NONE
;
741 mb
.mb_flags
= MB_NOFLAGS
;
743 if (mb
.mb_sorted
!= NULL
) {
747 dot
= prevdot
= threadroot
= NULL
;
748 n_pstate
&= ~n_PS_DID_PRINT_DOT
;
753 n_folder_query(void){
754 struct n_string s
, *sp
= &s
;
757 char const *rv
, *adjcp
;
761 sp
= n_string_creat_auto(sp
);
763 /* *folder* is linked with *folder_resolved*: we only use the latter */
765 if((rv
= ok_vlook(folder_resolved
)) != NULL
)
769 * If directory does not start with a <slash> ('/'), the contents
770 * of HOME shall be prefixed to it.
772 * If folder is unset or set to null, [.] filenames beginning with
773 * '+' shall refer to files in the current directory.
774 * We may have the result already */
778 if((cp
= ok_vlook(folder
)) == NULL
)
781 /* Expand the *folder*; skip %: prefix for simplicity of use */
782 if(cp
[0] == '%' && cp
[1] == ':')
784 if((err
= (cp
= fexpand(cp
, FEXP_NSPECIAL
| FEXP_NFOLDER
| FEXP_NSHELL
)
785 ) == NULL
) || *cp
== '\0')
790 for(i
= strlen(cp
);;){
800 switch((proto
= which_protocol(cp
, FAL0
, FAL0
, &adjcp
))){
802 n_err(_("*folder* can't be set to a flat, read-only POP3 account\n"));
808 if(!strcmp(rv
, protbase(rv
)))
809 rv
= savecatsep(rv
, '/', n_empty
);
811 n_err(_("*folder*: IMAP support not compiled in\n"));
816 /* Further expansion desired */
820 /* Prefix HOME as necessary */
821 if(*adjcp
!= '/'){ /* XXX path_is_absolute() */
825 home
= ok_vlook(HOME
);
829 sp
= n_string_reserve(sp
, l1
+ 1 + l2
+1);
833 sp
= n_string_push_buf(sp
, cp
, i
= PTR2SIZE(adjcp
- cp
));
837 sp
= n_string_push_buf(sp
, home
, l1
);
838 sp
= n_string_push_c(sp
, '/');
839 sp
= n_string_push_buf(sp
, cp
, l2
);
840 cp
= n_string_cp(sp
);
841 sp
= n_string_drop_ownership(sp
);
844 /* TODO Since our visual mailname is resolved via realpath(3) if available
845 * TODO to avoid that we loose track of our currently open folder in case
846 * TODO we chdir away, but still checks the leading path portion against
847 * TODO n_folder_query() to be able to abbreviate to the +FOLDER syntax if
848 * TODO possible, we need to realpath(3) the folder, too */
849 #ifndef HAVE_REALPATH
852 assert(sp
->s_len
== 0 && sp
->s_dat
== NULL
);
853 # ifndef HAVE_REALPATH_NULL
854 sp
= n_string_reserve(sp
, PATH_MAX
+1);
857 if((sp
->s_dat
= realpath(cp
, sp
->s_dat
)) != NULL
){
858 # ifdef HAVE_REALPATH_NULL
859 n_string_cp(sp
= n_string_assign_cp(sp
, cp
= sp
->s_dat
));
863 }else if(n_err_no
== n_ERR_NOENT
)
866 n_err(_("Can't canonicalize *folder*: %s\n"),
867 n_shexp_quote_cp(cp
, FAL0
));
871 sp
= n_string_drop_ownership(sp
);
872 #endif /* HAVE_REALPATH */
874 /* Always append a solidus to our result path upon success */
878 if(rv
[(i
= strlen(rv
)) - 1] != '/'){
879 sp
= n_string_reserve(sp
, i
+ 1 +1);
880 sp
= n_string_push_buf(sp
, rv
, i
);
881 sp
= n_string_push_c(sp
, '/');
882 rv
= n_string_cp(sp
);
883 sp
= n_string_drop_ownership(sp
);
888 n_PS_ROOT_BLOCK(ok_vset(folder_resolved
, rv
));
892 n_err(_("*folder* is not resolvable, using CWD\n"));
893 assert(rv
!= NULL
&& *rv
== '\0');
900 n_folder_mbox_prepare_append(FILE *fout
, struct stat
*st_or_null
){
901 /* TODO n_folder_mbox_prepare_append -> Mailbox->append() */
908 if(fseek(fout
, -2L, SEEK_END
)){
911 if(st_or_null
== NULL
){
913 if(fstat(fileno(fout
), st_or_null
))
917 if(st_or_null
->st_size
>= 2)
919 if(st_or_null
->st_size
== 0){
923 if(fseek(fout
, -1L, SEEK_END
))
930 switch(fread(buf
, sizeof *buf
, 2, fout
)){
945 if(fflush(fout
) || (needsep
&& putc('\n', fout
) == EOF
))