1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ (Lexical processing of) Commands, and the (blocking) "event mainloop".
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its 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 THE REGENTS 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 THE REGENTS 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 #ifndef HAVE_AMALGAMATION
47 char const *name
; /* Name of command */
48 int (*func
)(void*); /* Implementor of command */
49 enum argtype argtype
; /* Arglist type (see below) */
50 short msgflag
; /* Required flags of msgs */
51 short msgmask
; /* Relevant flags of msgs */
52 #ifdef HAVE_DOCSTRINGS
53 int docid
; /* Translation id of .doc */
54 char const *doc
; /* One line doc for command */
57 /* Yechh, can't initialize unions */
58 #define minargs msgflag /* Minimum argcount for RAWLIST */
59 #define maxargs msgmask /* Max argcount for RAWLIST */
62 struct cmd_ghost
*next
;
63 struct str cmd
; /* Data follows after .name */
64 char name
[VFIELD_SIZE(sizeof(size_t))];
68 static int _reset_on_stop
; /* do a reset() if stopped */
69 static sighandler_type _oldpipe
;
70 static struct cmd_ghost
*_cmd_ghosts
;
71 /* _cmd_tab[] after fun protos */
72 static int _lex_inithdr
; /* am printing startup headers */
74 /* Update mailname (if name != NULL) and displayname, return wether displayname
75 * was large enough to swallow mailname */
76 static bool_t
_update_mailname(char const *name
);
77 #ifdef HAVE_C90AMEND1 /* TODO unite __narrow_{pre,suf}fix() into one fun! */
78 SINLINE
size_t __narrow_prefix(char const *cp
, size_t maxl
);
79 SINLINE
size_t __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
);
82 /* Isolate the command from the arguments */
83 static char * _lex_isolate(char const *comm
);
85 /* Get first-fit, or NULL */
86 static struct cmd
const * _lex(char const *comm
);
88 /* Command ghost handling */
89 static int _ghost(void *v
);
90 static int _unghost(void *v
);
92 /* Print a list of all commands */
93 static int _pcmdlist(void *v
);
94 static int __pcmd_cmp(void const *s1
, void const *s2
);
96 /* Print the binaries compiled-in features */
97 static int _features(void *v
);
99 /* Print the binaries version number */
100 static int _version(void *v
);
102 /* When we wake up after ^Z, reprint the prompt */
103 static void stop(int s
);
105 /* Branch here on hangup signal and simulate "exit" */
106 static void hangup(int s
);
108 /* List of all commands */
109 static struct cmd
const _cmd_tab
[] = {
113 #ifdef HAVE_C90AMEND1
115 __narrow_prefix(char const *cp
, size_t maxl
)
121 for (err
= ok
= i
= 0; i
< maxl
;) {
122 int ml
= mblen(cp
, maxl
- i
);
123 if (ml
< 0) { /* XXX _narrow_prefix(): mblen() error; action? */
124 (void)mblen(NULL
, 0);
142 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
148 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
149 int ml
= mblen(cp
, cpl
);
150 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
151 (void)mblen(NULL
, 0);
168 #endif /* HAVE_C90AMEND1 */
171 _update_mailname(char const *name
)
173 char tbuf
[PATH_MAX
], *mailp
, *dispp
;
178 /* Don't realpath(3) if it's only an update request */
181 enum protocol p
= which_protocol(name
);
182 if (p
== PROTO_FILE
|| p
== PROTO_MAILDIR
) {
183 if (realpath(name
, mailname
) == NULL
) {
184 fprintf(stderr
, tr(151, "Can't canonicalize `%s'\n"), name
);
191 n_strlcpy(mailname
, name
, sizeof(mailname
));
197 /* Don't display an absolute path but "+FOLDER" if under *folder* */
198 if (getfold(tbuf
, sizeof tbuf
)) {
200 if (i
< sizeof(tbuf
) -1)
202 if (!strncmp(tbuf
, mailp
, i
)) {
208 /* We want to see the name of the folder .. on the screen */
210 if (i
< sizeof(displayname
) -1)
211 memcpy(dispp
, mailp
, i
+1);
214 /* Avoid disrupting multibyte sequences (if possible) */
215 #ifndef HAVE_C90AMEND1
216 j
= sizeof(displayname
) / 3 - 1;
217 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
219 j
= __narrow_prefix(mailp
, sizeof(displayname
) / 3);
220 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
221 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
223 snprintf(dispp
, sizeof(displayname
), "%.*s...%s",
224 (int)j
, mailp
, mailp
+ i
);
231 _lex_isolate(char const *comm
)
234 while (*comm
!= '\0' &&
235 strchr("~|? \t0123456789&%@$^.:/-+*'\",;(`", *comm
) == NULL
)
238 return UNCONST(comm
);
241 static struct cmd
const *
242 _lex(char const *comm
) /* TODO **command hashtable**! linear list search!!! */
244 struct cmd
const *cp
;
247 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
)
248 if (*comm
== *cp
->name
&& is_prefix(comm
, cp
->name
))
259 char const **argv
= v
;
260 struct cmd_ghost
*lcg
, *cg
;
266 printf(tr(144, "Command ghosts are:\n"));
267 for (nl
= 0, cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
) {
268 cl
= strlen(cg
->name
) + 5 + cg
->cmd
.l
+ 3;
270 if (UICMP(z
, nl
, >=, scrnwidth
)) {
274 printf((cg
->next
!= NULL
? "%s -> <%s>, " : "%s -> <%s>\n"),
275 cg
->name
, cg
->cmd
.s
);
281 /* Request to add new ghost */
282 if (argv
[1] == NULL
|| argv
[1][0] == '\0' || argv
[2] != NULL
) {
283 fprintf(stderr
, tr(159, "Usage: %s\n"),
284 tr(425, "Define a <ghost> of <command>, or list all ghosts"));
289 /* Check that we can deal with this one */
290 if (argv
[0] == _lex_isolate(argv
[0])) {
291 fprintf(stderr
, tr(151, "Can't canonicalize `%s'\n"), argv
[0]);
296 /* Always recreate */
297 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
298 if (!strcmp(cg
->name
, argv
[0])) {
300 lcg
->next
= cg
->next
;
302 _cmd_ghosts
= cg
->next
;
308 nl
= strlen(argv
[0]) +1;
309 cl
= strlen(argv
[1]) +1;
310 cg
= smalloc(sizeof(*cg
) - VFIELD_SIZEOF(struct cmd_ghost
, name
) + nl
+ cl
);
311 cg
->next
= _cmd_ghosts
;
312 memcpy(cg
->name
, argv
[0], nl
);
313 cg
->cmd
.s
= cg
->name
+ nl
;
315 memcpy(cg
->cmd
.s
, argv
[1], cl
);
327 char const **argv
= v
, *cp
;
328 struct cmd_ghost
*lcg
, *cg
;
331 while ((cp
= *argv
++) != NULL
) {
332 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
333 if (!strcmp(cg
->name
, cp
)) {
335 lcg
->next
= cg
->next
;
337 _cmd_ghosts
= cg
->next
;
341 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), cp
);
351 __pcmd_cmp(void const *s1
, void const *s2
)
353 struct cmd
const * const *c1
= s1
, * const *c2
= s2
;
357 rv
= strcmp((*c1
)->name
, (*c2
)->name
);
365 struct cmd
const **cpa
, *cp
, **cursor
;
370 for (i
= 0; _cmd_tab
[i
].name
!= NULL
; ++i
)
373 cpa
= ac_alloc(sizeof(cp
) * i
);
375 for (i
= 0; (cp
= _cmd_tab
+ i
)->name
!= NULL
; ++i
)
379 qsort(cpa
, i
, sizeof(cp
), &__pcmd_cmp
);
381 printf(tr(14, "Commands are:\n"));
382 for (i
= 0, cursor
= cpa
; (cp
= *cursor
++) != NULL
;) {
384 if (cp
->func
== &c_cmdnotsupp
)
386 j
= strlen(cp
->name
) + 2;
391 printf((*cursor
!= NULL
? "%s, " : "%s\n"), cp
->name
);
404 printf(tr(523, "Features: %s\n"), features
);
414 printf(tr(111, "Version %s\n"), version
);
422 sighandler_type old_action
;
424 NYD_X
; /* Signal handler */
426 old_action
= safe_signal(s
, SIG_DFL
);
430 sigprocmask(SIG_UNBLOCK
, &nset
, NULL
);
432 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
433 safe_signal(s
, old_action
);
434 if (_reset_on_stop
) {
443 NYD_X
; /* Signal handler */
450 setfile(char const *name
, int nmail
) /* TODO oh my god */
457 int rv
, i
, compressed
= 0, omsgCount
= 0;
464 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
465 * necessary to make a mailbox accessible by a different user, and if that
466 * has happened, let's just let the usual file perms decide */
467 who
= (name
[1] != '\0') ? name
+ 1 : myname
;
468 isedit
= (*name
!= '%' && ((sh
= get_shortcut(name
)) == NULL
||
469 *sh
->sh_long
!= '%'));
470 if ((name
= expand(name
)) == NULL
)
473 switch (which_protocol(name
)) {
477 rv
= maildir_setfile(name
, nmail
, isedit
);
482 rv
= pop3_setfile(name
, nmail
, isedit
);
488 if (nmail
&& mb
.mb_type
== MB_CACHE
)
491 rv
= imap_setfile(name
, nmail
, isedit
);
495 fprintf(stderr
, tr(217, "Cannot handle protocol: %s\n"), name
);
499 /* FIXME this FILE leaks if quit()->edstop() reset()s! This entire code
500 * FIXME here is total crap, below we open(2) the same name again just to
501 * FIXME close it right away etc. The normal thing would be to (1) finalize
502 * FIXME the current box and (2) open the new box; yet, since (2) may fail
503 * FIXME we terribly need our VOID box to make this logic order possible! */
504 if ((ibuf
= Zopen(name
, "r", &compressed
)) == NULL
) {
505 if ((!isedit
&& errno
== ENOENT
) || nmail
) {
514 if (fstat(fileno(ibuf
), &stb
) == -1) {
521 if (S_ISREG(stb
.st_mode
) ||
522 ((options
& OPT_BATCH_FLAG
) && !strcmp(name
, "/dev/null"))) {
527 errno
= S_ISDIR(stb
.st_mode
) ? EISDIR
: EINVAL
;
532 /* Looks like all will be well. We must now relinquish our hold on the
533 * current set of stuff. Must hold signals while we are reading the new
534 * file, else we will ruin the message[] data structure */
536 hold_sigs(); /* TODO note on this one in quit.c:quit() */
537 if (shudclob
&& !nmail
)
540 if (!nmail
&& mb
.mb_sock
.s_fd
>= 0)
541 sclose(&mb
.mb_sock
); /* TODO sorry? VMAILFS->close(), thank you */
544 /* Copy the messages into /tmp and set pointers */
545 flp
.l_type
= F_RDLCK
;
547 flp
.l_whence
= SEEK_SET
;
549 mb
.mb_type
= MB_FILE
;
550 mb
.mb_perm
= (options
& OPT_R_FLAG
) ? 0 : MB_DELE
| MB_EDIT
;
551 mb
.mb_compressed
= compressed
;
553 if (compressed
& 0200)
556 if ((i
= open(name
, O_WRONLY
)) == -1)
576 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) == -1) {/*TODO dotlock!*/
577 perror("Unable to lock mailbox");
582 fseek(mb
.mb_otf
, 0L, SEEK_END
);
583 fseek(ibuf
, mailsize
, SEEK_SET
);
585 omsgCount
= msgCount
;
587 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) == -1) {/*TODO dotlock!*/
592 mailsize
= fsize(ibuf
);
594 if (nmail
&& UICMP(z
, mailsize
, <=, offset
)) {
598 setptr(ibuf
, offset
);
600 if (nmail
&& mb
.mb_sorted
) {
611 if ((!edit
|| nmail
) && msgCount
== 0) {
614 if (!ok_blook(emptystart
))
616 fprintf(stderr
, tr(88, "No mail for %s\n"), who
);
622 newmailinfo(omsgCount
);
636 newmailinfo(int omsgCount
)
641 for (i
= 0; i
< omsgCount
; ++i
)
642 message
[i
].m_flag
&= ~MNEWEST
;
643 if (msgCount
> omsgCount
) {
644 for (i
= omsgCount
; i
< msgCount
; ++i
)
645 message
[i
].m_flag
|= MNEWEST
;
646 printf(tr(158, "New mail has arrived.\n"));
647 if ((i
= msgCount
- omsgCount
) == 1)
648 printf(tr(214, "Loaded 1 new message.\n"));
650 printf(tr(215, "Loaded %d new messages.\n"), i
);
652 printf(tr(224, "Loaded %d messages.\n"), msgCount
);
653 callhook(mailname
, 1);
655 if (ok_blook(header
))
656 print_headers(omsgCount
+ 1, msgCount
, FAL0
);
669 if (safe_signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
670 safe_signal(SIGINT
, onintr
);
671 if (safe_signal(SIGHUP
, SIG_IGN
) != SIG_IGN
)
672 safe_signal(SIGHUP
, hangup
);
673 /* TODO We do a lot of redundant signal handling, especially
674 * TODO with the command line editor(s); try to merge this */
675 safe_signal(SIGTSTP
, stop
);
676 safe_signal(SIGTTOU
, stop
);
677 safe_signal(SIGTTIN
, stop
);
679 _oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
680 safe_signal(SIGPIPE
, _oldpipe
);
682 memset(&ev
, 0, sizeof ev
);
687 handlerstacktop
= NULL
;
689 if (!sourcing
&& (options
& OPT_INTERACTIVE
)) {
692 cp
= ok_vlook(newmail
);
693 if ((options
& OPT_TTYIN
) && (cp
!= NULL
|| mb
.mb_type
== MB_IMAP
)) {
696 n
= (cp
!= NULL
&& strcmp(cp
, "noimap") && strcmp(cp
, "nopoll"));
697 if ((mb
.mb_type
== MB_FILE
&& !stat(mailname
, &st
) &&
698 st
.st_size
> mailsize
) ||
700 (mb
.mb_type
== MB_IMAP
&& imap_newmail(n
) > (cp
== NULL
)) ||
702 (mb
.mb_type
== MB_MAILDIR
&& n
!= 0)) {
703 size_t odot
= PTR2SIZE(dot
- message
);
704 bool_t odid
= did_print_dot
;
706 setfile(mailname
, 1);
707 if (mb
.mb_type
!= MB_IMAP
) {
708 dot
= message
+ odot
;
709 did_print_dot
= odid
;
715 exit_status
= EXIT_OK
;
719 colour_table
= NULL
; /* XXX intermediate hack */
721 if (temporary_localopts_store
!= NULL
) /* XXX intermediate hack */
722 temporary_localopts_free(); /* XXX intermediate hack */
727 /* TODO Note: this buffer may contain a password. We should redefine
728 * TODO the code flow which has to do that */
729 if ((cp
= termios_state
.ts_linebuf
) != NULL
) {
730 termios_state
.ts_linebuf
= NULL
;
731 termios_state
.ts_linesize
= 0;
732 free(cp
); /* TODO pool give-back */
734 /* TODO Due to expand-on-tab of NCL the buffer may grow */
735 if (ev
.ev_line
.l
> LINESIZE
* 3) {
736 free(ev
.ev_line
.s
); /* TODO pool! but what? */
742 /* Read a line of commands and handle end of file specially */
744 n
= readline_input(NULL
, TRU1
, &ev
.ev_line
.s
, &ev
.ev_line
.l
,
755 if ((options
& OPT_INTERACTIVE
) && ok_blook(ignoreeof
)) {
756 printf(tr(89, "Use `quit' to quit.\n"));
765 if ((options
& OPT_BATCH_FLAG
) && ok_blook(batch_exit_on_error
)) {
766 if (exit_status
!= EXIT_OK
)
768 /* TODO *batch-exit-on-error*: sourcing and loading MUST BE FLAGS!
769 * TODO the current behaviour is suboptimal AT BEST! */
770 if (exec_last_comm_error
!= 0 && !sourcing
&& !loading
) {
771 exit_status
= EXIT_ERR
;
775 if (!sourcing
&& (options
& OPT_INTERACTIVE
)) {
776 if (ev
.ev_new_content
!= NULL
)
778 if (ev
.ev_add_history
)
779 tty_addhist(ev
.ev_line
.s
);
783 if (ev
.ev_line
.s
!= NULL
)
791 execute(char *linebuf
, int contxt
, size_t linesize
) /* XXX LEGACY */
795 struct colour_table
*ct_save
;
800 /* TODO Maybe recursion from within collect.c! As long as we don't have
801 * TODO a value carrier that transports the entire state of a recursion
802 * TODO we need to save away also the colour table */
804 ct_save
= colour_table
;
808 memset(&ev
, 0, sizeof ev
);
809 ev
.ev_line
.s
= linebuf
;
810 ev
.ev_line
.l
= linesize
;
811 ev
.ev_is_recursive
= (contxt
!= 0);
815 colour_table
= ct_save
;
822 evaluate(struct eval_ctx
*evp
)
825 char _wordbuf
[2], *arglist
[MAXARGC
], *cp
, *word
;
826 struct cmd_ghost
*cg
= NULL
;
827 struct cmd
const *com
= NULL
;
828 int muvec
[2], c
, e
= 1;
831 line
= evp
->ev_line
; /* XXX don't change original (buffer pointer) */
832 evp
->ev_add_history
= FAL0
;
833 evp
->ev_new_content
= NULL
;
835 /* Command ghosts that refer to shell commands or macro expansion restart */
838 /* Strip the white space away from the beginning of the command */
839 for (cp
= line
.s
; whitechar(*cp
); ++cp
)
841 line
.l
-= PTR2SIZE(cp
- line
.s
);
843 /* Ignore comments */
847 /* Handle ! differently to get the correct lexical conventions */
850 fprintf(stderr
, tr(90, "Can't `!' while sourcing\n"));
854 evp
->ev_add_history
= TRU1
;
858 /* Isolate the actual command; since it may not necessarily be
859 * separated from the arguments (as in `p1') we need to duplicate it to
860 * be able to create a NUL terminated version.
861 * We must be aware of several special one letter commands here */
863 if ((cp
= _lex_isolate(cp
)) == arglist
[0] &&
864 (*cp
== '|' || *cp
== '~' || *cp
== '?'))
866 c
= (int)PTR2SIZE(cp
- arglist
[0]);
868 word
= UICMP(z
, c
, <, sizeof _wordbuf
) ? _wordbuf
: salloc(c
+1);
869 memcpy(word
, arglist
[0], c
);
872 /* Look up the command; if not found, bitch.
873 * Normally, a blank command would map to the first command in the
874 * table; while sourcing, however, we ignore blank lines to eliminate
875 * confusion; act just the same for ghosts */
877 if (sourcing
|| cg
!= NULL
)
883 /* If this is the first evaluation, check command ghosts */
885 /* TODO relink list head, so it's sorted on usage over time?
886 * TODO in fact, there should be one hashmap over all commands and ghosts
887 * TODO so that the lookup could be made much more efficient than it is
888 * TODO now (two adjacent list searches! */
889 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
890 if (!strcmp(word
, cg
->name
)) {
892 size_t i
= cg
->cmd
.l
;
893 line
.s
= salloc(i
+ 1 + line
.l
+1);
894 memcpy(line
.s
, cg
->cmd
.s
, i
);
896 memcpy(line
.s
+ i
, cp
, line
.l
);
897 line
.s
[i
+= line
.l
] = '\0';
907 if ((com
= _lex(word
)) == NULL
|| com
->func
== &c_cmdnotsupp
) {
908 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), word
);
916 /* See if we should execute the command -- if a conditional we always
917 * execute it, otherwise, check the state of cond */
919 if (!(com
->argtype
& ARG_F
) && condstack_isskip())
922 /* Process the arguments to the command, depending on the type it expects,
923 * default to error. If we're sourcing an interactive command: error */
924 if ((options
& OPT_SENDMODE
) && !(com
->argtype
& ARG_M
)) {
925 fprintf(stderr
, tr(92, "May not execute `%s' while sending\n"),
929 if (sourcing
&& (com
->argtype
& ARG_I
)) {
930 fprintf(stderr
, tr(93, "May not execute `%s' while sourcing\n"),
934 if (!(mb
.mb_perm
& MB_DELE
) && (com
->argtype
& ARG_W
)) {
935 fprintf(stderr
, tr(94, "May not execute `%s' -- "
936 "message file is read only\n"), com
->name
);
939 if (evp
->ev_is_recursive
&& (com
->argtype
& ARG_R
)) {
940 fprintf(stderr
, tr(95, "Cannot recursively invoke `%s'\n"), com
->name
);
943 if (mb
.mb_type
== MB_VOID
&& (com
->argtype
& ARG_A
)) {
944 fprintf(stderr
, tr(257, "Cannot execute `%s' without active mailbox\n"),
949 if (com
->argtype
& ARG_V
)
950 temporary_arg_v_store
= NULL
;
952 switch (com
->argtype
& ARG_ARGMASK
) {
954 /* Message list defaulting to nearest forward legal message */
957 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
960 *_msgvec
= first(com
->msgflag
, com
->msgmask
);
966 printf(tr(97, "No applicable messages\n"));
969 e
= (*com
->func
)(_msgvec
);
973 /* Message list with no defaults, but no error if none exist */
974 if (_msgvec
== NULL
) {
976 fprintf(stderr
, tr(96, "Illegal use of `message list'\n"));
979 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
981 e
= (*com
->func
)(_msgvec
);
985 /* Just the straight string, with leading blanks removed */
986 while (whitechar(*cp
))
988 e
= (*com
->func
)(cp
);
993 /* A vector of strings, in shell style */
994 if ((c
= getrawlist(cp
, line
.l
, arglist
, NELEM(arglist
),
995 ((com
->argtype
& ARG_ARGMASK
) == ARG_ECHOLIST
))) < 0)
997 if (c
< com
->minargs
) {
998 fprintf(stderr
, tr(99, "`%s' requires at least %d arg(s)\n"),
999 com
->name
, com
->minargs
);
1002 if (c
> com
->maxargs
) {
1003 fprintf(stderr
, tr(100, "`%s' takes no more than %d arg(s)\n"),
1004 com
->name
, com
->maxargs
);
1007 e
= (*com
->func
)(arglist
);
1011 /* Just the constant zero, for exiting, eg. */
1012 e
= (*com
->func
)(0);
1016 panic(tr(101, "Unknown argument type"));
1019 if (e
== 0 && (com
->argtype
& ARG_V
) &&
1020 (cp
= temporary_arg_v_store
) != NULL
) {
1021 temporary_arg_v_store
= NULL
;
1022 evp
->ev_new_content
= cp
;
1025 if (!(com
->argtype
& ARG_H
) && !list_saw_numbers
)
1026 evp
->ev_add_history
= TRU1
;
1029 /* Exit the current source file on error */
1030 if ((exec_last_comm_error
= (e
!= 0))) {
1031 if (e
< 0 || loading
) {
1041 if ((com
->argtype
& ARG_P
) && ok_blook(autoprint
))
1043 muvec
[0] = (int)PTR2SIZE(dot
- message
+ 1);
1045 c_type(muvec
); /* TODO what if error? re-eval! */
1047 if (!sourcing
&& !inhook
&& !(com
->argtype
& ARG_T
))
1050 exec_last_comm_error
= 0;
1062 if (_msgvec
!= NULL
)
1064 _msgvec
= scalloc(sz
+ 1, sizeof *_msgvec
);
1069 print_header_summary(char const *Larg
)
1071 size_t bot
, top
, i
, j
;
1075 /* Avoid any messages XXX add a make_mua_silent() and use it? */
1076 if ((options
& (OPT_VERBOSE
| OPT_HEADERSONLY
)) == OPT_HEADERSONLY
) {
1077 freopen("/dev/null", "w", stdout
);
1078 freopen("/dev/null", "w", stderr
);
1080 i
= (getmsglist(/*TODO make arg const */UNCONST(Larg
), _msgvec
, 0) <= 0);
1081 if (options
& OPT_HEADERSONLY
) {
1082 exit_status
= (int)i
;
1087 for (bot
= msgCount
, top
= 0, i
= 0; (j
= _msgvec
[i
]) != 0; ++i
) {
1094 bot
= 1, top
= msgCount
;
1095 print_headers(bot
, top
, (Larg
!= NULL
)); /* TODO should take iterator!! */
1103 NYD_X
; /* Signal handler */
1105 if (handlerstacktop
!= NULL
) {
1109 safe_signal(SIGINT
, onintr
);
1117 termios_state_reset();
1124 if (interrupts
!= 1)
1125 fprintf(stderr
, tr(102, "Interrupt\n"));
1126 safe_signal(SIGPIPE
, _oldpipe
);
1131 announce(int printheaders
)
1136 mdot
= newfileinfo();
1139 dot
= message
+ mdot
- 1;
1140 if (printheaders
&& msgCount
> 0 && ok_blook(header
)) {
1142 c_headers(vec
); /* XXX errors? */
1152 int u
, n
, mdot
, d
, s
, hidden
, moved
;
1155 if (mb
.mb_type
== MB_VOID
) {
1161 s
= d
= hidden
= moved
=0;
1162 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
1163 if (mp
->m_flag
& MNEW
)
1165 if ((mp
->m_flag
& MREAD
) == 0)
1167 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
1169 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
1171 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
1173 if (mp
->m_flag
& MHIDDEN
)
1177 /* If displayname gets truncated the user effectively has no option to see
1178 * the full pathname of the mailbox, so print it at least for '? fi' */
1179 printf(tr(103, "\"%s\": "),
1180 (_update_mailname(NULL
) ? displayname
: mailname
));
1182 printf(tr(104, "1 message"));
1184 printf(tr(105, "%d messages"), msgCount
);
1186 printf(tr(106, " %d new"), n
);
1188 printf(tr(107, " %d unread"), u
);
1190 printf(tr(108, " %d deleted"), d
);
1192 printf(tr(109, " %d saved"), s
);
1194 printf(tr(136, " %d moved"), moved
);
1196 printf(tr(139, " %d hidden"), hidden
);
1197 if (mb
.mb_type
== MB_CACHE
)
1198 printf(" [Disconnected]");
1199 else if (mb
.mb_perm
== 0)
1200 printf(tr(110, " [Read only]"));
1213 enum mflag avoid
= MHIDDEN
| MDELETED
;
1217 if (ok_blook(autothread
))
1219 else if ((cp
= ok_vlook(autosort
)) != NULL
) {
1221 mb
.mb_sorted
= sstrdup(cp
);
1225 if (mb
.mb_type
== MB_VOID
) {
1231 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1232 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
1235 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
1236 if (mb
.mb_threaded
) {
1237 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1238 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1241 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1242 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1247 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1248 if (mb
.mb_threaded
) {
1249 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1250 if (mp
->m_flag
& MFLAGGED
)
1253 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1254 if (mp
->m_flag
& MFLAGGED
)
1259 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1260 if (mb
.mb_threaded
) {
1261 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1262 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1265 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1266 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1271 if ((mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
1272 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
1273 else if (ok_blook(showlast
)) {
1274 if (mb
.mb_threaded
) {
1275 for (mp
= this_in_thread(threadroot
, -1); mp
;
1276 mp
= prev_in_thread(mp
))
1277 if (!(mp
->m_flag
& avoid
))
1279 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1281 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
1282 if (!(mp
->m_flag
& avoid
))
1284 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1286 } else if (mb
.mb_threaded
) {
1287 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
1288 if (!(mp
->m_flag
& avoid
))
1290 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1292 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1293 if (!(mp
->m_flag
& avoid
))
1295 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
1296 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1304 initbox(char const *name
)
1309 if (mb
.mb_type
!= MB_VOID
)
1310 n_strlcpy(prevfile
, mailname
, PATH_MAX
);
1312 _update_mailname((name
!= mailname
) ? name
: NULL
);
1314 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpbox", OF_WRONLY
| OF_HOLDSIGS
, 0600)) ==
1316 perror(tr(87, "temporary mail message file"));
1319 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
1320 perror(tr(87, "temporary mail message file"));
1323 Ftmp_release(&tempMesg
);
1327 if (mb
.mb_sorted
!= NULL
) {
1329 mb
.mb_sorted
= NULL
;
1332 mb
.mb_flags
= MB_NOFLAGS
;
1336 did_print_dot
= FAL0
;
1340 #ifdef HAVE_DOCSTRINGS
1342 print_comm_docstr(char const *comm
)
1345 struct cmd_ghost
*cg
;
1346 struct cmd
const *cp
;
1349 /* Ghosts take precedence */
1350 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
1351 if (!strcmp(comm
, cg
->name
)) {
1352 printf("%s -> <%s>\n", comm
, cg
->cmd
.s
);
1357 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
) {
1358 if (cp
->func
== &c_cmdnotsupp
)
1360 if (!strcmp(comm
, cp
->name
))
1361 printf("%s: %s\n", comm
, tr(cp
->docid
, cp
->doc
));
1362 else if (is_prefix(comm
, cp
->name
))
1363 printf("%s (%s): %s\n", comm
, cp
->name
, tr(cp
->docid
, cp
->doc
));
1375 /* vim:set fenc=utf-8:s-it-mode */