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 - 2016 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
);
53 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
59 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
60 int ml
= mblen(cp
, cpl
);
61 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
79 #endif /* HAVE_C90AMEND1 */
82 _update_mailname(char const *name
)
89 /* Don't realpath(3) if it's only an update request */
92 enum protocol p
= which_protocol(name
);
94 if (p
== PROTO_FILE
|| p
== PROTO_MAILDIR
) {
95 if (realpath(name
, mailname
) == NULL
&& errno
!= ENOENT
) {
96 n_err(_("Can't canonicalize %s\n"), n_shexp_quote_cp(name
, FAL0
));
103 n_strscpy(mailname
, name
, sizeof(mailname
));
109 /* Don't display an absolute path but "+FOLDER" if under *folder* */
113 if(*(folderp
= folder_query()) != '\0'){
115 if(!strncmp(folderp
, mailp
, i
)){
116 if(folderp
[i
-1] != '/' && mailp
[i
] == '/') /* XXX DIRSEP magic */
124 /* We want to see the name of the folder .. on the screen */
126 if (i
< sizeof(displayname
) -1)
127 memcpy(dispp
, mailp
, i
+1);
130 /* Avoid disrupting multibyte sequences (if possible) */
131 #ifndef HAVE_C90AMEND1
132 j
= sizeof(displayname
) / 3 - 1;
133 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
135 j
= field_detect_clip(sizeof(displayname
) / 3, mailp
, i
);
136 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
137 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
139 snprintf(dispp
, sizeof(displayname
), "%.*s...%s",
140 (int)j
, mailp
, mailp
+ i
);
147 setfile(char const *name
, enum fedit_mode fm
) /* TODO oh my god */
149 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
150 * necessary to make a mailbox accessible by a different user, and if that
151 * has happened, let's just let the usual file perms decide */
157 int rv
, omsgCount
= 0;
158 FILE *ibuf
= NULL
, *lckfp
= NULL
;
159 bool_t isdevnull
= FAL0
;
162 pstate
&= ~PS_SETFILE_OPENED
;
165 enum fexp_mode fexpm
;
167 if((who
= shortcut_expand(name
)) != NULL
){
168 fexpm
= FEXP_NSHORTCUT
| FEXP_NSHELL
;
174 fm
|= FEDIT_SYSBOX
; /* TODO fexpand() needs to tell is-valid-user! */
175 if(*(who
= &name
[1]) == ':')
182 if ((name
= fexpand(name
, fexpm
)) == NULL
)
186 /* For at least substdate() users */
187 time_current_update(&time_current
, FAL0
);
189 switch (which_protocol(name
)) {
191 if (temporary_protocol_ext
!= NULL
)
192 name
= savecat(name
, temporary_protocol_ext
);
193 isdevnull
= ((options
& OPT_BATCH_FLAG
) && !strcmp(name
, "/dev/null"));
195 do { /* TODO we need objects, goes away then */
196 # ifdef HAVE_REALPATH_NULL
199 if ((cp
= realpath(name
, NULL
)) != NULL
) {
206 if (realpath(name
, cbuf
) != NULL
)
207 name
= savestr(cbuf
);
215 rv
= maildir_setfile(name
, fm
);
220 rv
= pop3_setfile(name
, fm
);
224 n_err(_("Cannot handle protocol: %s\n"), name
);
228 if ((ibuf
= Zopen(name
, "r")) == NULL
) {
229 if ((fm
& FEDIT_SYSBOX
) && errno
== ENOENT
) {
230 if (strcmp(who
, myname
) && getpwnam(who
) == NULL
) {
231 n_err(_("%s is not a user of this system\n"),
232 n_shexp_quote_cp(who
, FAL0
));
235 if (!(options
& OPT_QUICKRUN_MASK
) && ok_blook(bsdcompat
))
236 n_err(_("No mail for %s\n"), who
);
238 if (fm
& FEDIT_NEWMAIL
)
241 mb
.mb_type
= MB_VOID
;
242 if (ok_blook(emptystart
)) {
243 if (!(options
& OPT_QUICKRUN_MASK
) && !ok_blook(bsdcompat
))
245 /* We must avoid returning -1 and causing program exit */
253 if (fstat(fileno(ibuf
), &stb
) == -1) {
254 if (fm
& FEDIT_NEWMAIL
)
256 n_perr(_("fstat"), 0);
260 if (S_ISREG(stb
.st_mode
) || isdevnull
) {
263 if (fm
& FEDIT_NEWMAIL
)
265 errno
= S_ISDIR(stb
.st_mode
) ? EISDIR
: EINVAL
;
270 /* Looks like all will be well. We must now relinquish our hold on the
271 * current set of stuff. Must hold signals while we are reading the new
272 * file, else we will ruin the message[] data structure */
274 hold_sigs(); /* TODO note on this one in quit.c:quit() */
275 if (shudclob
&& !(fm
& FEDIT_NEWMAIL
) && !quit()) {
281 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_sock
.s_fd
>= 0)
282 sclose(&mb
.mb_sock
); /* TODO sorry? VMAILFS->close(), thank you */
285 /* TODO There is no intermediate VOID box we've switched to: name may
286 * TODO point to the same box that we just have written, so any updates
287 * TODO we won't see! Reopen again in this case. RACY! Goes with VOID! */
288 /* TODO In addition: in case of compressed/hook boxes we lock a temporary! */
289 /* TODO We may uselessly open twice but quit() doesn't say whether we were
290 * TODO modified so we can't tell: Mailbox::is_modified() :-(( */
291 if (/*shudclob && !(fm & FEDIT_NEWMAIL) &&*/ !strcmp(name
, mailname
)) {
295 if ((ibuf
= Zopen(name
, "r")) == NULL
||
296 fstat(fileno(ibuf
), &stb
) == -1 ||
297 (!S_ISREG(stb
.st_mode
) && !isdevnull
)) {
304 /* Copy the messages into /tmp and set pointers */
305 if (!(fm
& FEDIT_NEWMAIL
)) {
307 mb
.mb_type
= MB_VOID
;
310 mb
.mb_type
= MB_FILE
;
311 mb
.mb_perm
= (((options
& OPT_R_FLAG
) || (fm
& FEDIT_RDONLY
) ||
312 access(name
, W_OK
) < 0) ? 0 : MB_DELE
| MB_EDIT
);
325 if (fm
& FEDIT_SYSBOX
)
332 fseek(mb
.mb_otf
, 0L, SEEK_END
);
333 /* TODO Doing this without holding a lock is.. And not err checking.. */
334 fseek(ibuf
, mailsize
, SEEK_SET
);
336 omsgCount
= msgCount
;
341 else if (!(pstate
& PS_EDIT
))
342 lckfp
= n_dotlock(name
, fileno(ibuf
), FLT_READ
, offset
,0,
343 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
));
344 else if (n_file_lock(fileno(ibuf
), FLT_READ
, offset
,0,
345 (fm
& FEDIT_NEWMAIL
? 0 : UIZ_MAX
)))
349 if (!(fm
& FEDIT_NEWMAIL
)) {
350 char const *emsg
= (pstate
& PS_EDIT
)
351 ? N_("Unable to lock mailbox, aborting operation")
352 : N_("Unable to (dot) lock mailbox, aborting operation");
356 if (!(fm
& FEDIT_NEWMAIL
))
361 mailsize
= fsize(ibuf
);
363 /* TODO This is too simple minded? We should regenerate an index file
364 * TODO to be able to truly tell whether *anything* has changed! */
365 if ((fm
& FEDIT_NEWMAIL
) && UICMP(z
, mailsize
, <=, offset
)) {
369 setptr(ibuf
, offset
);
371 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_sorted
) {
378 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1) {
384 if (!(fm
& FEDIT_NEWMAIL
)) {
385 pstate
&= ~PS_SAW_COMMAND
;
386 pstate
|= PS_SETFILE_OPENED
;
389 if ((options
& OPT_EXISTONLY
) && !(options
& OPT_HEADERLIST
)) {
390 rv
= (msgCount
== 0);
394 if ((!(pstate
& PS_EDIT
) || (fm
& FEDIT_NEWMAIL
)) && msgCount
== 0) {
395 if (!(fm
& FEDIT_NEWMAIL
)) {
396 if (!ok_blook(emptystart
))
397 n_err(_("No mail for %s\n"), who
);
402 if (fm
& FEDIT_NEWMAIL
)
403 newmailinfo(omsgCount
);
409 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1)
415 mb
.mb_type
= MB_VOID
;
422 newmailinfo(int omsgCount
)
427 for (i
= 0; i
< omsgCount
; ++i
)
428 message
[i
].m_flag
&= ~MNEWEST
;
430 if (msgCount
> omsgCount
) {
431 for (i
= omsgCount
; i
< msgCount
; ++i
)
432 message
[i
].m_flag
|= MNEWEST
;
433 printf(_("New mail has arrived.\n"));
434 if ((i
= msgCount
- omsgCount
) == 1)
435 printf(_("Loaded 1 new message.\n"));
437 printf(_("Loaded %d new messages.\n"), i
);
439 printf(_("Loaded %d messages.\n"), msgCount
);
441 check_folder_hook(TRU1
);
445 if (ok_blook(header
))
446 print_headers(omsgCount
+ 1, msgCount
, FAL0
);
455 if (n_msgvec
!= NULL
)
457 n_msgvec
= scalloc(sz
+ 1, sizeof *n_msgvec
);
462 print_header_summary(char const *Larg
)
464 size_t bot
, top
, i
, j
;
468 /* Avoid any messages XXX add a make_mua_silent() and use it? */
469 if ((options
& (OPT_VERB
| OPT_EXISTONLY
)) == OPT_EXISTONLY
) {
470 freopen("/dev/null", "w", stdout
);
471 freopen("/dev/null", "w", stderr
);
473 assert(n_msgvec
!= NULL
);
474 i
= (getmsglist(/*TODO make arg const */UNCONST(Larg
), n_msgvec
, 0) <= 0);
475 if (options
& OPT_EXISTONLY
) {
476 exit_status
= (int)i
;
481 for (bot
= msgCount
, top
= 0, i
= 0; (j
= n_msgvec
[i
]) != 0; ++i
) {
488 bot
= 1, top
= msgCount
;
489 print_headers(bot
, top
, (Larg
!= NULL
)); /* TODO should take iterator!! */
495 announce(int printheaders
)
500 mdot
= newfileinfo();
503 dot
= message
+ mdot
- 1;
504 if (printheaders
&& msgCount
> 0 && ok_blook(header
)) {
505 print_header_group(vec
); /* XXX errors? */
514 int u
, n
, mdot
, d
, s
, hidden
, moved
;
517 if (mb
.mb_type
== MB_VOID
) {
523 s
= d
= hidden
= moved
=0;
524 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
525 if (mp
->m_flag
& MNEW
)
527 if ((mp
->m_flag
& MREAD
) == 0)
529 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
531 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
533 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
535 if (mp
->m_flag
& MHIDDEN
)
539 /* If displayname gets truncated the user effectively has no option to see
540 * the full pathname of the mailbox, so print it at least for '? fi' */
541 printf(_("%s: "), n_shexp_quote_cp(
542 (_update_mailname(NULL
) ? displayname
: mailname
), FAL0
));
544 printf(_("1 message"));
546 printf(_("%d messages"), msgCount
);
548 printf(_(" %d new"), n
);
550 printf(_(" %d unread"), u
);
552 printf(_(" %d deleted"), d
);
554 printf(_(" %d saved"), s
);
556 printf(_(" %d moved"), moved
);
558 printf(_(" %d hidden"), hidden
);
559 else if (mb
.mb_perm
== 0)
560 printf(_(" [Read only]"));
573 enum mflag avoid
= MHIDDEN
| MDELETED
;
577 if (ok_blook(autothread
)) {
578 OBSOLETE(_("please use *autosort=thread* instead of *autothread*"));
580 } else if ((cp
= ok_vlook(autosort
)) != NULL
) {
581 if (mb
.mb_sorted
!= NULL
)
583 mb
.mb_sorted
= sstrdup(cp
);
587 if (mb
.mb_type
== MB_VOID
) {
593 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
594 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
597 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
598 if (mb
.mb_threaded
) {
599 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
600 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
603 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
604 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
609 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
610 if (mb
.mb_threaded
) {
611 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
612 if (mp
->m_flag
& MFLAGGED
)
615 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
616 if (mp
->m_flag
& MFLAGGED
)
621 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
622 if (mb
.mb_threaded
) {
623 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
624 if (!(mp
->m_flag
& (MREAD
| avoid
)))
627 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
628 if (!(mp
->m_flag
& (MREAD
| avoid
)))
634 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
635 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
636 else if (ok_blook(showlast
)) {
637 if (mb
.mb_threaded
) {
638 for (mp
= this_in_thread(threadroot
, -1); mp
;
639 mp
= prev_in_thread(mp
))
640 if (!(mp
->m_flag
& avoid
))
642 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
644 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
645 if (!(mp
->m_flag
& avoid
))
647 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
650 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
651 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
652 else if (mb
.mb_threaded
) {
653 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
654 if (!(mp
->m_flag
& avoid
))
656 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
658 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
659 if (!(mp
->m_flag
& avoid
))
661 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
662 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
670 initbox(char const *name
)
675 if (mb
.mb_type
!= MB_VOID
)
676 n_strscpy(prevfile
, mailname
, PATH_MAX
);
678 /* TODO name always NE mailname (but goes away for objects anyway)
679 * TODO Well, not true no more except that in parens */
680 _update_mailname((name
!= mailname
) ? name
: NULL
);
682 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpmbox", OF_WRONLY
| OF_HOLDSIGS
)) ==
684 n_perr(_("temporary mail message file"), 0);
687 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
688 n_perr(_("temporary mail message file"), 0);
691 Ftmp_release(&tempMesg
);
695 if (mb
.mb_sorted
!= NULL
) {
699 dot
= prevdot
= threadroot
= NULL
;
700 pstate
&= ~PS_DID_PRINT_DOT
;
706 struct n_string s
, *sp
= &s
;
712 /* *folder* is linked with *_folder_resolved*: we only use the latter */
714 if((rv
= ok_vlook(_folder_resolved
)) != NULL
)
718 * If directory does not start with a <slash> ('/'), the contents
719 * of HOME shall be prefixed to it.
721 * If folder is unset or set to null, [.] filenames beginning with
722 * '+' shall refer to files in the current directory.
723 * We may have the result already */
727 if((cp
= ok_vlook(folder
)) == NULL
)
730 /* Expand the *folder*; skip %: prefix for simplicity of use */
731 if(cp
[0] == '%' && cp
[1] == ':')
733 if((err
= (cp
= fexpand(cp
, FEXP_NSHELL
)) == NULL
) || *cp
== '\0')
736 switch(which_protocol(cp
)){
738 n_err(_("*folder* can't be set to a flat, readonly POP3 account\n"));
742 /* Further expansion desired */
746 /* Prefix HOME as necessary */
748 char const *home
= ok_vlook(HOME
);
749 size_t l1
= strlen(home
), l2
= strlen(cp
);
751 sp
= n_string_creat_auto(sp
);
752 sp
= n_string_reserve(sp
, l1
+ 1 + l2
+1);
753 sp
= n_string_push_buf(sp
, home
, l1
);
754 sp
= n_string_push_c(sp
, '/');
755 sp
= n_string_push_buf(sp
, cp
, l2
);
756 cp
= n_string_cp(sp
);
761 /* TODO Since our visual mailname is resolved via realpath(3) if available
762 * TODO to avoid that we loose track of our currently open folder in case
763 * TODO we chdir away, but still checks the leading path portion against
764 * TODO fold_query() to be able to abbreviate to the +FOLDER syntax if
765 * TODO possible, we need to realpath(3) the folder, too */
768 # ifndef HAVE_REALPATH_NULL
770 sp
= n_string_drop_ownership(sp
);
771 sp
= n_string_reserve(sp
, PATH_MAX
+1);
776 if((sp
->s_dat
= realpath(cp
, sp
->s_dat
)) != NULL
){
777 # ifdef HAVE_REALPATH_NULL
778 sp
->s_dat
= savestr(cp
= sp
->s_dat
);
782 }else if(errno
== ENOENT
)
785 n_err(_("Can't canonicalize *folder*: %s\n"),
786 n_shexp_quote_cp(cp
, FAL0
));
791 #endif /* HAVE_REALPATH */
795 bool_t reset
= !(pstate
& PS_ROOT
);
798 ok_vset(_folder_resolved
, rv
);
805 n_err(_("*folder* is not resolvable, using CWD\n"));
806 assert(rv
!= NULL
&& *rv
== '\0');