1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ (Lexical processing of) Commands, and the 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
) == 0) {
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
&& strchr(" \t0123456789$^.:/-+*'\",;(`", *comm
) == NULL
)
237 return UNCONST(comm
);
240 static struct cmd
const *
241 _lex(char const *comm
) /* TODO **command hashtable**! linear list search!!! */
243 struct cmd
const *cp
;
246 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
)
247 if (*comm
== *cp
->name
&& is_prefix(comm
, cp
->name
))
258 char const **argv
= (char const **)v
;
259 struct cmd_ghost
*lcg
, *cg
;
265 printf(tr(144, "Command ghosts are:\n"));
266 for (nl
= 0, cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
) {
267 cl
= strlen(cg
->name
) + 5 + cg
->cmd
.l
+ 3;
269 if (UICMP(z
, nl
, >=, scrnwidth
)) {
273 printf((cg
->next
!= NULL
? "%s -> <%s>, " : "%s -> <%s>\n"),
274 cg
->name
, cg
->cmd
.s
);
280 /* Request to add new ghost */
281 if (argv
[1] == NULL
|| argv
[1][0] == '\0' || argv
[2] != NULL
) {
282 fprintf(stderr
, tr(159, "Usage: %s\n"),
283 tr(425, "Define a <ghost> of <command>, or list all ghosts"));
288 /* Check that we can deal with this one */
289 switch (argv
[0][0]) {
298 if (argv
[0] == _lex_isolate(argv
[0])) {
300 fprintf(stderr
, tr(151, "Can't canonicalize `%s'\n"), argv
[0]);
307 /* Always recreate */
308 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
309 if (!strcmp(cg
->name
, argv
[0])) {
311 lcg
->next
= cg
->next
;
313 _cmd_ghosts
= cg
->next
;
319 nl
= strlen(argv
[0]) + 1;
320 cl
= strlen(argv
[1]) + 1;
321 cg
= smalloc(sizeof(*cg
) - VFIELD_SIZEOF(struct cmd_ghost
, name
) + nl
+ cl
);
322 cg
->next
= _cmd_ghosts
;
323 memcpy(cg
->name
, argv
[0], nl
);
324 cg
->cmd
.s
= cg
->name
+ nl
;
326 memcpy(cg
->cmd
.s
, argv
[1], cl
);
338 char const **argv
= v
, *cp
;
339 struct cmd_ghost
*lcg
, *cg
;
342 while ((cp
= *argv
++) != NULL
) {
343 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
344 if (!strcmp(cg
->name
, cp
)) {
346 lcg
->next
= cg
->next
;
348 _cmd_ghosts
= cg
->next
;
352 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), cp
);
362 __pcmd_cmp(void const *s1
, void const *s2
)
364 struct cmd
const * const *c1
= s1
, * const *c2
= s2
;
368 rv
= strcmp((*c1
)->name
, (*c2
)->name
);
376 struct cmd
const **cpa
, *cp
, **cursor
;
381 for (i
= 0; _cmd_tab
[i
].name
!= NULL
; ++i
)
384 cpa
= ac_alloc(sizeof(cp
) * i
);
386 for (i
= 0; (cp
= _cmd_tab
+ i
)->name
!= NULL
; ++i
)
390 qsort(cpa
, i
, sizeof(cp
), &__pcmd_cmp
);
392 printf(tr(14, "Commands are:\n"));
393 for (i
= 0, cursor
= cpa
; (cp
= *cursor
++) != NULL
;) {
395 if (cp
->func
== &c_cmdnotsupp
)
397 j
= strlen(cp
->name
) + 2;
402 printf((*cursor
!= NULL
? "%s, " : "%s\n"), cp
->name
);
415 printf(tr(523, "Features: %s\n"), features
);
425 printf(tr(111, "Version %s\n"), version
);
433 sighandler_type old_action
;
435 NYD_X
; /* Signal handler */
437 old_action
= safe_signal(s
, SIG_DFL
);
441 sigprocmask(SIG_UNBLOCK
, &nset
, NULL
);
443 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
444 safe_signal(s
, old_action
);
445 if (_reset_on_stop
) {
454 NYD_X
; /* Signal handler */
461 setfile(char const *name
, int nmail
) /* TODO oh my god */
468 int rv
, i
, compressed
= 0, omsgCount
= 0;
475 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
476 * necessary to make a mailbox accessible by a different user, and if that
477 * has happened, let's just let the usual file perms decide */
478 who
= (name
[1] != '\0') ? name
+ 1 : myname
;
479 isedit
= (*name
!= '%' && ((sh
= get_shortcut(name
)) == NULL
||
480 *sh
->sh_long
!= '%'));
481 if ((name
= expand(name
)) == NULL
)
484 switch (which_protocol(name
)) {
488 rv
= maildir_setfile(name
, nmail
, isedit
);
493 rv
= pop3_setfile(name
, nmail
, isedit
);
499 if (nmail
&& mb
.mb_type
== MB_CACHE
)
502 rv
= imap_setfile(name
, nmail
, isedit
);
506 fprintf(stderr
, tr(217, "Cannot handle protocol: %s\n"), name
);
510 /* FIXME this FILE leaks if quit()->edstop() reset()s! This entire code
511 * FIXME here is total crap, below we open(2) the same name again just to
512 * FIXME close it right away etc. The normal thing would be to (1) finalize
513 * FIXME the current box and (2) open the new box; yet, since (2) may fail
514 * FIXME we terribly need our VOID box to make this logic order possible! */
515 if ((ibuf
= Zopen(name
, "r", &compressed
)) == NULL
) {
516 if ((!isedit
&& errno
== ENOENT
) || nmail
) {
525 if (fstat(fileno(ibuf
), &stb
) < 0) {
532 if (S_ISDIR(stb
.st_mode
)) {
538 } else if (S_ISREG(stb
.st_mode
)) {
548 /* Looks like all will be well. We must now relinquish our hold on the
549 * current set of stuff. Must hold signals while we are reading the new
550 * file, else we will ruin the message[] data structure */
552 hold_sigs(); /* TODO note on this one in quit.c:quit() */
553 if (shudclob
&& !nmail
)
556 if (!nmail
&& mb
.mb_sock
.s_fd
>= 0)
560 /* Copy the messages into /tmp and set pointers */
561 flp
.l_type
= F_RDLCK
;
563 flp
.l_whence
= SEEK_SET
;
565 mb
.mb_type
= MB_FILE
;
566 mb
.mb_perm
= (options
& OPT_R_FLAG
) ? 0 : MB_DELE
| MB_EDIT
;
567 mb
.mb_compressed
= compressed
;
569 if (compressed
& 0200)
572 if ((i
= open(name
, O_WRONLY
)) < 0)
592 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) == -1) {
593 perror("Unable to lock mailbox");
598 fseek(mb
.mb_otf
, 0L, SEEK_END
);
599 fseek(ibuf
, mailsize
, SEEK_SET
);
601 omsgCount
= msgCount
;
603 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) == -1) {
608 mailsize
= fsize(ibuf
);
610 if (nmail
&& UICMP(z
, mailsize
, <=, offset
)) {
614 setptr(ibuf
, offset
);
616 if (nmail
&& mb
.mb_sorted
) {
627 if ((!edit
|| nmail
) && msgCount
== 0) {
630 if (!ok_blook(emptystart
))
632 fprintf(stderr
, tr(88, "No mail for %s\n"), who
);
638 newmailinfo(omsgCount
);
652 newmailinfo(int omsgCount
)
657 for (i
= 0; i
< omsgCount
; i
++)
658 message
[i
].m_flag
&= ~MNEWEST
;
659 if (msgCount
> omsgCount
) {
660 for (i
= omsgCount
; i
< msgCount
; i
++)
661 message
[i
].m_flag
|= MNEWEST
;
662 printf(tr(158, "New mail has arrived.\n"));
663 if (msgCount
- omsgCount
== 1)
664 printf(tr(214, "Loaded 1 new message.\n"));
666 printf(tr(215, "Loaded %d new messages.\n"), msgCount
- omsgCount
);
668 printf(tr(224, "Loaded %d messages.\n"), msgCount
);
669 callhook(mailname
, 1);
671 if (ok_blook(header
))
672 print_headers(omsgCount
+ 1, msgCount
);
685 if (safe_signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
686 safe_signal(SIGINT
, onintr
);
687 if (safe_signal(SIGHUP
, SIG_IGN
) != SIG_IGN
)
688 safe_signal(SIGHUP
, hangup
);
689 /* TODO We do a lot of redundant signal handling, especially
690 * TODO with the command line editor(s); try to merge this */
691 safe_signal(SIGTSTP
, stop
);
692 safe_signal(SIGTTOU
, stop
);
693 safe_signal(SIGTTIN
, stop
);
695 _oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
696 safe_signal(SIGPIPE
, _oldpipe
);
698 memset(&ev
, 0, sizeof ev
);
703 handlerstacktop
= NULL
;
705 if (!sourcing
&& (options
& OPT_INTERACTIVE
)) {
708 if ((cp
= ok_vlook(newmail
)) == NULL
)
709 cp
= ok_vlook(autoinc
); /* TODO legacy */
710 if ((options
& OPT_TTYIN
) && (cp
!= NULL
|| mb
.mb_type
== MB_IMAP
)) {
713 n
= (cp
!= NULL
&& strcmp(cp
, "noimap") && strcmp(cp
, "nopoll"));
714 if ((mb
.mb_type
== MB_FILE
&& stat(mailname
, &st
) == 0 &&
715 st
.st_size
> mailsize
) ||
717 (mb
.mb_type
== MB_IMAP
&& imap_newmail(n
) > (cp
== NULL
)) ||
719 (mb
.mb_type
== MB_MAILDIR
&& n
!= 0)) {
720 size_t odot
= PTR2SIZE(dot
- message
);
721 bool_t odid
= did_print_dot
;
723 setfile(mailname
, 1);
724 if (mb
.mb_type
!= MB_IMAP
) {
725 dot
= message
+ odot
;
726 did_print_dot
= odid
;
736 colour_table
= NULL
; /* XXX intermediate hack */
742 /* TODO Note: this buffer may contain a password. We should redefine
743 * TODO the code flow which has to do that */
744 if ((cp
= termios_state
.ts_linebuf
) != NULL
) {
745 termios_state
.ts_linebuf
= NULL
;
746 termios_state
.ts_linesize
= 0;
747 free(cp
); /* TODO pool give-back */
749 /* TODO Due to expand-on-tab of NCL the buffer may grow */
750 if (ev
.ev_line
.l
> LINESIZE
* 3) {
751 free(ev
.ev_line
.s
); /* TODO pool! but what? */
757 /* Read a line of commands and handle end of file specially */
759 n
= readline_input(NULL
, TRU1
, &ev
.ev_line
.s
, &ev
.ev_line
.l
,
770 if ((options
& OPT_INTERACTIVE
) && ok_blook(ignoreeof
)) {
771 printf(tr(89, "Use `quit' to quit.\n"));
780 if (exit_status
!= EXIT_OK
&& (options
& OPT_BATCH_FLAG
) &&
781 ok_blook(batch_exit_on_error
))
783 if (!sourcing
&& (options
& OPT_INTERACTIVE
)) {
784 if (ev
.ev_new_content
!= NULL
)
786 if (ev
.ev_add_history
)
787 tty_addhist(ev
.ev_line
.s
);
791 if (ev
.ev_line
.s
!= NULL
)
799 execute(char *linebuf
, int contxt
, size_t linesize
) /* XXX LEGACY */
803 struct colour_table
*ct_save
;
808 /* TODO Maybe recursion from within collect.c! As long as we don't have
809 * TODO a value carrier that transports the entire state of a recursion
810 * TODO we need to save away also the colour table */
812 ct_save
= colour_table
;
816 memset(&ev
, 0, sizeof ev
);
817 ev
.ev_line
.s
= linebuf
;
818 ev
.ev_line
.l
= linesize
;
819 ev
.ev_is_recursive
= (contxt
!= 0);
823 colour_table
= ct_save
;
830 evaluate(struct eval_ctx
*evp
)
833 char _wordbuf
[2], *arglist
[MAXARGC
], *cp
, *word
;
834 struct cmd_ghost
*cg
= NULL
;
835 struct cmd
const *com
= NULL
;
836 int muvec
[2], c
, e
= 1;
839 line
= evp
->ev_line
; /* XXX don't change original (buffer pointer) */
840 evp
->ev_add_history
= FAL0
;
841 evp
->ev_new_content
= NULL
;
843 /* Command ghosts that refer to shell commands or macro expansion restart */
846 /* Strip the white space away from the beginning of the command */
847 for (cp
= line
.s
; whitechar(*cp
); ++cp
)
849 line
.l
-= PTR2SIZE(cp
- line
.s
);
851 /* Ignore comments */
855 /* Handle ! differently to get the correct lexical conventions */
858 fprintf(stderr
, tr(90, "Can't `!' while sourcing\n"));
862 evp
->ev_add_history
= TRU1
;
866 /* Isolate the actual command; since it may not necessarily be
867 * separated from the arguments (as in `p1') we need to duplicate it to
868 * be able to create a NUL terminated version.
869 * We must be aware of several special one letter commands here */
880 cp
= _lex_isolate(cp
);
883 c
= (int)PTR2SIZE(cp
- arglist
[0]);
885 word
= UICMP(z
, c
, <, sizeof _wordbuf
) ? _wordbuf
: salloc(c
+ 1);
886 memcpy(word
, arglist
[0], c
);
889 /* Look up the command; if not found, bitch.
890 * Normally, a blank command would map to the first command in the
891 * table; while sourcing, however, we ignore blank lines to eliminate
892 * confusion; act just the same for ghosts */
894 if (sourcing
|| cg
!= NULL
)
900 /* If this is the first evaluation, check command ghosts */
902 /* TODO relink list head, so it's sorted on usage over time?
903 * TODO in fact, there should be one hashmap over all commands and ghosts
904 * TODO so that the lookup could be made much more efficient than it is
905 * TODO now (two adjacent list searches! */
906 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
907 if (!strcmp(word
, cg
->name
)) {
909 size_t i
= cg
->cmd
.l
;
910 line
.s
= salloc(i
+ 1 + line
.l
+1);
911 memcpy(line
.s
, cg
->cmd
.s
, i
);
913 memcpy(line
.s
+ i
, cp
, line
.l
);
914 line
.s
[i
+= line
.l
] = '\0';
924 if ((com
= _lex(word
)) == NULL
|| com
->func
== &c_cmdnotsupp
) {
925 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), word
);
933 /* See if we should execute the command -- if a conditional we always
934 * execute it, otherwise, check the state of cond */
936 if (!(com
->argtype
& ARG_F
)) {
937 switch (cond_state
) {
939 if (options
& OPT_SENDMODE
)
943 if (!(options
& OPT_SENDMODE
))
947 if (!(options
& OPT_TTYIN
))
951 if (options
& OPT_TTYIN
)
962 /* Process the arguments to the command, depending on the type he expects.
963 * Default to an error.
964 * If we are sourcing an interactive command, it's an error */
965 if ((options
& OPT_SENDMODE
) && !(com
->argtype
& ARG_M
)) {
966 fprintf(stderr
, tr(92, "May not execute `%s' while sending\n"),
970 if (sourcing
&& (com
->argtype
& ARG_I
)) {
971 fprintf(stderr
, tr(93, "May not execute `%s' while sourcing\n"),
975 if (!(mb
.mb_perm
& MB_DELE
) && (com
->argtype
& ARG_W
)) {
976 fprintf(stderr
, tr(94, "May not execute `%s' -- "
977 "message file is read only\n"), com
->name
);
980 if (evp
->ev_is_recursive
&& (com
->argtype
& ARG_R
)) {
981 fprintf(stderr
, tr(95, "Cannot recursively invoke `%s'\n"), com
->name
);
984 if (mb
.mb_type
== MB_VOID
&& (com
->argtype
& ARG_A
)) {
985 fprintf(stderr
, tr(257, "Cannot execute `%s' without active mailbox\n"),
990 if (com
->argtype
& ARG_V
)
991 temporary_arg_v_store
= NULL
;
993 switch (com
->argtype
& ARG_ARGMASK
) {
995 /* Message list defaulting to nearest forward legal message */
998 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
1001 *_msgvec
= first(com
->msgflag
, com
->msgmask
);
1005 if (*_msgvec
== 0) {
1007 printf(tr(97, "No applicable messages\n"));
1010 e
= (*com
->func
)(_msgvec
);
1014 /* Message list with no defaults, but no error if none exist */
1017 fprintf(stderr
, tr(96, "Illegal use of `message list'\n"));
1020 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
1022 e
= (*com
->func
)(_msgvec
);
1026 /* Just the straight string, with leading blanks removed */
1027 while (whitechar(*cp
))
1029 e
= (*com
->func
)(cp
);
1034 /* A vector of strings, in shell style */
1035 if ((c
= getrawlist(cp
, line
.l
, arglist
, NELEM(arglist
),
1036 ((com
->argtype
& ARG_ARGMASK
) == ARG_ECHOLIST
))) < 0)
1038 if (c
< com
->minargs
) {
1039 fprintf(stderr
, tr(99, "`%s' requires at least %d arg(s)\n"),
1040 com
->name
, com
->minargs
);
1043 if (c
> com
->maxargs
) {
1044 fprintf(stderr
, tr(100, "`%s' takes no more than %d arg(s)\n"),
1045 com
->name
, com
->maxargs
);
1048 e
= (*com
->func
)(arglist
);
1052 /* Just the constant zero, for exiting, eg. */
1053 e
= (*com
->func
)(0);
1057 panic(tr(101, "Unknown argument type"));
1060 if (e
== 0 && (com
->argtype
& ARG_V
) &&
1061 (cp
= temporary_arg_v_store
) != NULL
) {
1062 temporary_arg_v_store
= NULL
;
1063 evp
->ev_new_content
= cp
;
1066 if (!(com
->argtype
& ARG_H
) && !list_saw_numbers
)
1067 evp
->ev_add_history
= TRU1
;
1070 /* Exit the current source file on error */
1071 if ((exec_last_comm_error
= (e
!= 0))) {
1072 if (e
< 0 || loading
) {
1082 if ((com
->argtype
& ARG_P
) && ok_blook(autoprint
))
1084 muvec
[0] = (int)PTR2SIZE(dot
- message
+ 1);
1088 if (!sourcing
&& !inhook
&& (com
->argtype
& ARG_T
) == 0)
1091 exec_last_comm_error
= 0;
1105 _msgvec
= scalloc(sz
+ 1, sizeof *_msgvec
);
1112 NYD_X
; /* Signal handler */
1114 if (handlerstacktop
!= NULL
) {
1118 safe_signal(SIGINT
, onintr
);
1126 termios_state_reset();
1133 if (interrupts
!= 1)
1134 fprintf(stderr
, tr(102, "Interrupt\n"));
1135 safe_signal(SIGPIPE
, _oldpipe
);
1140 announce(int printheaders
)
1145 mdot
= newfileinfo();
1148 dot
= &message
[mdot
- 1];
1149 if (printheaders
&& msgCount
> 0 && ok_blook(header
)) {
1161 int u
, n
, mdot
, d
, s
, hidden
, moved
;
1164 if (mb
.mb_type
== MB_VOID
) {
1170 s
= d
= hidden
= moved
=0;
1171 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
1172 if (mp
->m_flag
& MNEW
)
1174 if ((mp
->m_flag
& MREAD
) == 0)
1176 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
1178 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
1180 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
1182 if (mp
->m_flag
& MHIDDEN
)
1186 /* If displayname gets truncated the user effectively has no option to see
1187 * the full pathname of the mailbox, so print it at least for '? fi' */
1188 printf(tr(103, "\"%s\": "),
1189 (_update_mailname(NULL
) ? displayname
: mailname
));
1191 printf(tr(104, "1 message"));
1193 printf(tr(105, "%d messages"), msgCount
);
1195 printf(tr(106, " %d new"), n
);
1197 printf(tr(107, " %d unread"), u
);
1199 printf(tr(108, " %d deleted"), d
);
1201 printf(tr(109, " %d saved"), s
);
1203 printf(tr(136, " %d moved"), moved
);
1205 printf(tr(139, " %d hidden"), hidden
);
1206 if (mb
.mb_type
== MB_CACHE
)
1207 printf(" [Disconnected]");
1208 else if (mb
.mb_perm
== 0)
1209 printf(tr(110, " [Read only]"));
1222 enum mflag avoid
= MHIDDEN
| MDELETED
;
1226 if (ok_blook(autothread
))
1228 else if ((cp
= ok_vlook(autosort
)) != NULL
) {
1230 mb
.mb_sorted
= sstrdup(cp
);
1234 if (mb
.mb_type
== MB_VOID
) {
1240 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1241 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
1244 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
1245 if (mb
.mb_threaded
) {
1246 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1247 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1250 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1251 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1256 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1257 if (mb
.mb_threaded
) {
1258 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1259 if (mp
->m_flag
& MFLAGGED
)
1262 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1263 if (mp
->m_flag
& MFLAGGED
)
1268 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1269 if (mb
.mb_threaded
) {
1270 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1271 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1274 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1275 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1280 if ((mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
1281 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
1282 else if (ok_blook(showlast
)) {
1283 if (mb
.mb_threaded
) {
1284 for (mp
= this_in_thread(threadroot
, -1); mp
;
1285 mp
= prev_in_thread(mp
))
1286 if (!(mp
->m_flag
& avoid
))
1288 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1290 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
1291 if (!(mp
->m_flag
& avoid
))
1293 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1295 } else if (mb
.mb_threaded
) {
1296 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
1297 if (!(mp
->m_flag
& avoid
))
1299 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1301 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1302 if (!(mp
->m_flag
& avoid
))
1304 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
1305 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1313 initbox(char const *name
)
1318 if (mb
.mb_type
!= MB_VOID
)
1319 n_strlcpy(prevfile
, mailname
, PATH_MAX
);
1321 _update_mailname(name
!= mailname
? name
: NULL
);
1323 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpbox", OF_WRONLY
| OF_HOLDSIGS
, 0600)) ==
1325 perror(tr(87, "temporary mail message file"));
1328 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
1329 perror(tr(87, "temporary mail message file"));
1332 Ftmp_release(&tempMesg
);
1341 if (mb
.mb_sorted
!= NULL
) {
1343 mb
.mb_sorted
= NULL
;
1346 mb
.mb_flags
= MB_NOFLAGS
;
1350 did_print_dot
= FAL0
;
1354 #ifdef HAVE_DOCSTRINGS
1356 print_comm_docstr(char const *comm
)
1359 struct cmd_ghost
*cg
;
1360 struct cmd
const *cp
;
1363 /* Ghosts take precedence */
1364 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
1365 if (!strcmp(comm
, cg
->name
)) {
1366 printf("%s -> <%s>\n", comm
, cg
->cmd
.s
);
1371 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
) {
1372 if (cp
->func
== &c_cmdnotsupp
)
1374 if (!strcmp(comm
, cp
->name
))
1375 printf("%s: %s\n", comm
, tr(cp
->docid
, cp
->doc
));
1376 else if (is_prefix(comm
, cp
->name
))
1377 printf("%s (%s): %s\n", comm
, cp
->name
, tr(cp
->docid
, cp
->doc
));
1389 /* vim:set fenc=utf-8:s-it-mode */