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 - 2013 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 */
73 /* Update mailname (if name != NULL) and displayname, return wether displayname
74 * was large enough to swallow mailname */
75 static bool_t
_update_mailname(char const *name
);
76 #ifdef HAVE_MBLEN /* TODO unite __narrow_{pre,suf}fix() into one function! */
77 SINLINE
size_t __narrow_prefix(char const *cp
, size_t maxl
);
78 SINLINE
size_t __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
);
81 /* Isolate the command from the arguments */
82 static char * _lex_isolate(char const *comm
);
84 /* Get first-fit, or NULL */
85 static struct cmd
const * _lex(char const *comm
);
87 /* Command ghost handling */
88 static int _ghost(void *v
);
89 static int _unghost(void *v
);
91 /* Print a list of all commands */
92 static int _pcmdlist(void *v
);
93 static int __pcmd_cmp(void const *s1
, void const *s2
);
95 static void stop(int s
);
96 static void hangup(int s
);
98 /* List of all commands */
99 static struct cmd
const _cmd_tab
[] = {
105 __narrow_prefix(char const *cp
, size_t maxl
)
110 for (err
= ok
= i
= 0; i
< maxl
;) {
111 int ml
= mblen(cp
, maxl
- i
);
112 if (ml
< 0) { /* XXX _narrow_prefix(): mblen() error; action? */
113 (void)mblen(NULL
, 0);
130 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
135 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
136 int ml
= mblen(cp
, cpl
);
137 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
138 (void)mblen(NULL
, 0);
154 #endif /* HAVE_MBLEN */
157 _update_mailname(char const *name
)
159 char tbuf
[MAXPATHLEN
], *mailp
, *dispp
;
163 /* Don't realpath(3) if it's only an update request */
166 enum protocol p
= which_protocol(name
);
167 if (p
== PROTO_FILE
|| p
== PROTO_MAILDIR
) {
168 if (realpath(name
, mailname
) == NULL
) {
169 fprintf(stderr
, tr(151, "Can't canonicalize `%s'\n"), name
);
175 n_strlcpy(mailname
, name
, sizeof(mailname
));
181 /* Don't display an absolute path but "+FOLDER" if under *folder* */
182 if (getfold(tbuf
, sizeof tbuf
)) {
184 if (i
< sizeof(tbuf
) - 1)
186 if (strncmp(tbuf
, mailp
, i
) == 0) {
192 /* We want to see the name of the folder .. on the screen */
194 if ((rv
= (i
< sizeof(displayname
) - 1)))
195 memcpy(dispp
, mailp
, i
+ 1);
197 /* Avoid disrupting multibyte sequences (if possible) */
199 j
= sizeof(displayname
) / 3 - 1;
200 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
202 j
= __narrow_prefix(mailp
, sizeof(displayname
) / 3);
203 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
204 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
206 snprintf(dispp
, sizeof(displayname
), "%.*s...%s",
207 (int)j
, mailp
, mailp
+ i
);
216 _lex_isolate(char const *comm
)
218 while (*comm
&& strchr(" \t0123456789$^.:/-+*'\",;(`", *comm
) == NULL
)
220 return UNCONST(comm
);
223 static struct cmd
const *
224 _lex(char const *comm
)
226 struct cmd
const *cp
;
228 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
)
229 if (is_prefix(comm
, cp
->name
))
239 char const **argv
= (char const **)v
;
240 struct cmd_ghost
*lcg
, *cg
;
245 printf(tr(144, "Command ghosts are:\n"));
246 for (nl
= 0, cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
) {
247 cl
= strlen(cg
->name
) + 5 + cg
->cmd
.l
+ 3;
248 if ((nl
+= cl
) >= (size_t)scrnwidth
) {
252 printf((cg
->next
!= NULL
? "%s -> <%s>, " : "%s -> <%s>\n"),
253 cg
->name
, cg
->cmd
.s
);
259 /* Request to add new ghost */
260 if (argv
[1] == NULL
|| argv
[1][0] == '\0' || argv
[2] != NULL
) {
261 fprintf(stderr
, tr(159, "Usage: %s\n"),
262 tr(425, "Define a <ghost> of <command>, or list all ghosts"));
267 /* Check that we can deal with this one */
268 switch (argv
[0][0]) {
277 if (argv
[0] == _lex_isolate(argv
[0])) {
279 fprintf(stderr
, tr(151, "Can't canonicalize `%s'\n"), argv
[0]);
286 /* Always recreate */
287 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
288 if (strcmp(cg
->name
, argv
[0]) == 0) {
290 lcg
->next
= cg
->next
;
292 _cmd_ghosts
= cg
->next
;
298 nl
= strlen(argv
[0]) + 1;
299 cl
= strlen(argv
[1]) + 1;
300 cg
= smalloc(sizeof(*cg
) - VFIELD_SIZEOF(struct cmd_ghost
, name
) + nl
+ cl
);
301 cg
->next
= _cmd_ghosts
;
302 memcpy(cg
->name
, argv
[0], nl
);
303 cg
->cmd
.s
= cg
->name
+ nl
;
305 memcpy(cg
->cmd
.s
, argv
[1], cl
);
316 char const **argv
= v
, *cp
;
317 struct cmd_ghost
*lcg
, *cg
;
319 while ((cp
= *argv
++) != NULL
) {
320 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
321 if (strcmp(cg
->name
, cp
) == 0) {
323 lcg
->next
= cg
->next
;
325 _cmd_ghosts
= cg
->next
;
329 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), cp
);
338 __pcmd_cmp(void const *s1
, void const *s2
)
340 struct cmd
const * const *c1
= s1
, * const *c2
= s2
;
341 return (strcmp((*c1
)->name
, (*c2
)->name
));
347 struct cmd
const **cpa
, *cp
, **cursor
;
351 for (i
= 0; _cmd_tab
[i
].name
!= NULL
; ++i
)
354 cpa
= ac_alloc(sizeof(cp
) * i
);
356 for (i
= 0; (cp
= _cmd_tab
+ i
)->name
!= NULL
; ++i
)
360 qsort(cpa
, i
, sizeof(cp
), &__pcmd_cmp
);
362 printf(tr(14, "Commands are:\n"));
363 for (i
= 0, cursor
= cpa
; (cp
= *cursor
++) != NULL
;) {
365 if (cp
->func
== &ccmdnotsupp
)
367 j
= strlen(cp
->name
) + 2;
372 printf((*cursor
!= NULL
? "%s, " : "%s\n"), cp
->name
);
380 * Set up editing on the given file name.
381 * If the first character of name is %, we are considered to be
382 * editing the file, otherwise we are reading our mail which has
383 * signficance for mbox and so forth.
385 * nmail: Check for new mail in the current folder only.
388 setfile(char const *name
, int nmail
)
391 int i
, compressed
= 0;
394 char const *who
= name
[1] ? name
+ 1 : myname
;
401 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
402 * necessary to make a mailbox accessible by a different user, and if that
403 * has happened, let's just let the usual file perms decide */
404 isedit
= (*name
!= '%' && ((sh
= get_shortcut(name
)) == NULL
||
405 *sh
->sh_long
!= '%'));
406 if ((name
= expand(name
)) == NULL
)
409 switch (which_protocol(name
)) {
413 return (maildir_setfile(name
, nmail
, isedit
));
417 return (pop3_setfile(name
, nmail
, isedit
));
423 if (mb
.mb_type
== MB_CACHE
)
426 return imap_setfile(name
, nmail
, isedit
);
429 fprintf(stderr
, tr(217, "Cannot handle protocol: %s\n"), name
);
433 if ((ibuf
= Zopen(name
, "r", &compressed
)) == NULL
) {
434 if ((!isedit
&& errno
== ENOENT
) || nmail
) {
443 if (fstat(fileno(ibuf
), &stb
) < 0) {
451 if (S_ISDIR(stb
.st_mode
)) {
458 } else if (S_ISREG(stb
.st_mode
)) {
470 * Looks like all will be well. We must now relinquish our
471 * hold on the current set of stuff. Must hold signals
472 * while we are reading the new file, else we will ruin
473 * the message[] data structure.
476 hold_sigs(); /* TODO note on this one in quit.c:quit() */
477 if (shudclob
&& !nmail
)
480 if (!nmail
&& mb
.mb_sock
.s_fd
>= 0)
485 * Copy the messages into /tmp
489 flp
.l_type
= F_RDLCK
;
491 flp
.l_whence
= SEEK_SET
;
493 mb
.mb_type
= MB_FILE
;
494 mb
.mb_perm
= (options
& OPT_R_FLAG
) ? 0 : MB_DELE
|MB_EDIT
;
495 mb
.mb_compressed
= compressed
;
497 if (compressed
& 0200)
500 if ((i
= open(name
, O_WRONLY
)) < 0)
520 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) < 0) {
521 perror("Unable to lock mailbox");
526 fseek(mb
.mb_otf
, 0L, SEEK_END
);
527 fseek(ibuf
, mailsize
, SEEK_SET
);
529 omsgCount
= msgCount
;
531 if (!edit
&& fcntl(fileno(ibuf
), F_SETLKW
, &flp
) < 0)
534 mailsize
= fsize(ibuf
);
535 if (nmail
&& (size_t)mailsize
<= offset
) {
539 setptr(ibuf
, offset
);
541 if (nmail
&& mb
.mb_sorted
) {
549 if ((!edit
|| nmail
) && msgCount
== 0) {
552 if (value("emptystart") == NULL
)
553 nomail
: fprintf(stderr
, tr(88, "No mail for %s\n"),
559 newmailinfo(omsgCount
);
565 newmailinfo(int omsgCount
)
570 for (i
= 0; i
< omsgCount
; i
++)
571 message
[i
].m_flag
&= ~MNEWEST
;
572 if (msgCount
> omsgCount
) {
573 for (i
= omsgCount
; i
< msgCount
; i
++)
574 message
[i
].m_flag
|= MNEWEST
;
575 printf(tr(158, "New mail has arrived.\n"));
576 if (msgCount
- omsgCount
== 1)
577 printf(tr(214, "Loaded 1 new message.\n"));
579 printf(tr(215, "Loaded %d new messages.\n"),
580 msgCount
- omsgCount
);
582 printf(tr(224, "Loaded %d messages.\n"), msgCount
);
583 callhook(mailname
, 1);
585 if (value("header")) {
587 if (mb
.mb_type
== MB_IMAP
)
588 imap_getheaders(omsgCount
+1, msgCount
);
590 time_current_update(&time_current
, FAL0
);
591 while (++omsgCount
<= msgCount
)
592 if (visible(&message
[omsgCount
-1]))
593 printhead(omsgCount
, stdout
, 0);
599 * Interpret user commands one by one. If standard input is not a tty,
606 char *linebuf
= NULL
, *av
, *nv
;
613 if (safe_signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
614 safe_signal(SIGINT
, onintr
);
615 if (safe_signal(SIGHUP
, SIG_IGN
) != SIG_IGN
)
616 safe_signal(SIGHUP
, hangup
);
617 /* TODO We do a lot of redundant signal handling, especially
618 * TODO with the command line editor(s); try to merge this */
619 safe_signal(SIGTSTP
, stop
);
620 safe_signal(SIGTTOU
, stop
);
621 safe_signal(SIGTTIN
, stop
);
623 _oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
624 safe_signal(SIGPIPE
, _oldpipe
);
629 handlerstacktop
= NULL
;
631 * Print the prompt, if needed. Clear out
632 * string space, and flush the output.
634 if (! sourcing
&& (options
& OPT_INTERACTIVE
)) {
635 av
= (av
= value("autoinc")) ? savestr(av
) : NULL
;
636 nv
= (nv
= value("newmail")) ? savestr(nv
) : NULL
;
637 if ((options
& OPT_TTYIN
) &&
638 (av
!= NULL
|| nv
!= NULL
||
639 mb
.mb_type
== MB_IMAP
)) {
642 n
= (av
&& strcmp(av
, "noimap") &&
643 strcmp(av
, "nopoll")) |
644 (nv
&& strcmp(nv
, "noimap") &&
645 strcmp(nv
, "nopoll"));
649 if ((mb
.mb_type
== MB_FILE
&&
650 stat(mailname
, &st
) == 0 &&
651 st
.st_size
> mailsize
) ||
653 (mb
.mb_type
== MB_IMAP
&&
654 imap_newmail(n
) > x
) ||
656 (mb
.mb_type
== MB_MAILDIR
&&
658 int odot
= dot
- &message
[0];
659 bool_t odid
= did_print_dot
;
661 setfile(mailname
, 1);
662 if (mb
.mb_type
!= MB_IMAP
) {
663 dot
= &message
[odot
];
664 did_print_dot
= odid
;
674 /* TODO Note: this buffer may contain a password
675 * TODO We should redefine the code flow which has
677 if ((nv
= termios_state
.ts_linebuf
) != NULL
) {
678 termios_state
.ts_linebuf
= NULL
;
679 termios_state
.ts_linesize
= 0;
680 free(nv
); /* TODO pool give-back */
682 /* TODO Due to expand-on-tab of our line editor the
683 * TODO buffer may grow */
684 if (linesize
> LINESIZE
* 3) {
685 free(linebuf
); /* TODO pool! but what? */
692 * Read a line of commands from the current input
693 * and handle end of file specially.
695 n
= readline_input(LNED_LF_ESC
| LNED_HIST_ADD
, NULL
,
696 &linebuf
, &linesize
);
706 if ((options
& OPT_INTERACTIVE
) &&
707 value("ignoreeof") && ++eofloop
< 25) {
708 printf(tr(89, "Use `quit' to quit.\n"));
716 if (execute(linebuf
, 0, n
))
718 if (exit_status
!= EXIT_OK
&& (options
& OPT_BATCH_FLAG
) &&
719 boption("batch-exit-on-error"))
730 * Execute a single command.
731 * Command functions return 0 for success, 1 for error, and -1
732 * for abort. A 1 or -1 aborts a load or source. A -1 aborts
733 * the interactive command loop.
734 * Contxt is non-zero if called while composing mail.
737 execute(char *linebuf
, int contxt
, size_t linesize
)
739 char _wordbuf
[2], *arglist
[MAXARGC
], *cp
, *word
;
740 struct cmd_ghost
*cg
= NULL
;
741 struct cmd
const *com
= NULL
;
742 int muvec
[2], c
, e
= 1;
744 /* Command ghosts that refer to shell commands or macro expansion restart */
747 /* Strip the white space away from the beginning of the command */
748 for (cp
= linebuf
; whitechar(*cp
); ++cp
)
750 linesize
-= (size_t)(cp
- linebuf
);
752 /* Ignore comments */
756 /* Handle ! differently to get the correct lexical conventions */
759 fprintf(stderr
, tr(90, "Can't `!' while sourcing\n"));
766 /* Isolate the actual command; since it may not necessarily be
767 * separated from the arguments (as in `p1') we need to duplicate it to
768 * be able to create a NUL terminated version.
769 * We must be aware of special one letter commands here */
780 cp
= _lex_isolate(cp
);
783 c
= (int)(cp
- arglist
[0]);
785 word
= (c
< (int)sizeof _wordbuf
) ? _wordbuf
: salloc(c
+ 1);
786 memcpy(word
, arglist
[0], c
);
789 /* Look up the command; if not found, bitch.
790 * Normally, a blank command would map to the first command in the
791 * table; while sourcing, however, we ignore blank lines to eliminate
792 * confusion; act just the same for ghosts */
793 if ((sourcing
|| cg
!= NULL
) && *word
== '\0')
796 /* If this is the first evaluation, check command ghosts */
798 /* TODO relink list head, so it's sort over time on usage? */
799 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
800 if (strcmp(word
, cg
->name
) == 0) {
802 size_t i
= cg
->cmd
.l
;
803 linebuf
= salloc(i
+ 1 + linesize
);
804 memcpy(linebuf
, cg
->cmd
.s
, i
);
806 memcpy(linebuf
+ i
, cp
, linesize
);
807 linebuf
[i
+= linesize
] = '\0';
811 linesize
= cg
->cmd
.l
;
819 if (com
== NULL
|| com
->func
== &ccmdnotsupp
) {
820 fprintf(stderr
, tr(91, "Unknown command: `%s'\n"), word
);
829 * See if we should execute the command -- if a conditional
830 * we always execute it, otherwise, check the state of cond.
832 if ((com
->argtype
& F
) == 0) {
833 if ((cond
== CRCV
&& (options
& OPT_SENDMODE
)) ||
834 (cond
== CSEND
&& ! (options
& OPT_SENDMODE
)) ||
835 (cond
== CTERM
&& ! (options
& OPT_TTYIN
)) ||
836 (cond
== CNONTERM
&& (options
& OPT_TTYIN
)))
841 * Process the arguments to the command, depending
842 * on the type he expects. Default to an error.
843 * If we are sourcing an interactive command, it's
846 if ((options
& OPT_SENDMODE
) && (com
->argtype
& M
) == 0) {
847 fprintf(stderr
, tr(92,
848 "May not execute `%s' while sending\n"),
852 if (sourcing
&& com
->argtype
& I
) {
853 fprintf(stderr
, tr(93,
854 "May not execute `%s' while sourcing\n"),
858 if ((mb
.mb_perm
& MB_DELE
) == 0 && com
->argtype
& W
) {
859 fprintf(stderr
, tr(94, "May not execute `%s' -- "
860 "message file is read only\n"),
864 if (contxt
&& com
->argtype
& R
) {
865 fprintf(stderr
, tr(95,
866 "Cannot recursively invoke `%s'\n"), com
->name
);
869 if (mb
.mb_type
== MB_VOID
&& com
->argtype
& A
) {
870 fprintf(stderr
, tr(257,
871 "Cannot execute `%s' without active mailbox\n"),
876 switch (com
->argtype
& ~(F
|P
|I
|M
|T
|W
|R
|A
)) {
878 /* Message list defaulting to nearest forward legal message */
881 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
884 *_msgvec
= first(com
->msgflag
, com
->msgmask
);
890 printf(tr(97, "No applicable messages\n"));
893 e
= (*com
->func
)(_msgvec
);
897 /* Message list with no defaults, but no error if none exist */
900 fprintf(stderr
, tr(96,
901 "Illegal use of `message list'\n"));
904 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
906 e
= (*com
->func
)(_msgvec
);
910 /* Just the straight string, with leading blanks removed */
911 while (whitechar(*cp
))
913 e
= (*com
->func
)(cp
);
918 /* A vector of strings, in shell style */
919 if ((c
= getrawlist(cp
, linesize
, arglist
,
920 sizeof arglist
/ sizeof *arglist
,
921 (com
->argtype
&~(F
|P
|I
|M
|T
|W
|R
|A
)) == ECHOLIST
)
924 if (c
< com
->minargs
) {
925 fprintf(stderr
, tr(99,
926 "`%s' requires at least %d arg(s)\n"),
927 com
->name
, com
->minargs
);
930 if (c
> com
->maxargs
) {
931 fprintf(stderr
, tr(100,
932 "`%s' takes no more than %d arg(s)\n"),
933 com
->name
, com
->maxargs
);
936 e
= (*com
->func
)(arglist
);
940 /* Just the constant zero, for exiting, eg. */
945 panic(tr(101, "Unknown argument type"));
949 /* Exit the current source file on error */
950 if ((exec_last_comm_error
= (e
!= 0))) {
959 if (com
== (struct cmd
*)NULL
)
961 if (boption("autoprint") && com
->argtype
& P
)
963 muvec
[0] = dot
- &message
[0] + 1;
967 if (! sourcing
&& ! inhook
&& (com
->argtype
& T
) == 0)
974 * Set the size of the message vector used to construct argument
975 * lists to message list functions.
983 _msgvec
= (int*)scalloc(sz
+ 1, sizeof *_msgvec
);
987 * The following gets called on receipt of an interrupt. This is
988 * to abort printout of a command, mainly.
989 * Dispatching here when command() is inactive crashes rcv.
990 * Close all open files except 0, 1, 2, and the temporary.
991 * Also, unstack all source files.
994 static int inithdr
; /* am printing startup headers */
1000 if (handlerstacktop
!= NULL
) {
1004 safe_signal(SIGINT
, onintr
);
1012 termios_state_reset();
1019 if (interrupts
!= 1)
1020 fprintf(stderr
, tr(102, "Interrupt\n"));
1021 safe_signal(SIGPIPE
, _oldpipe
);
1026 * When we wake up after ^Z, reprint the prompt.
1031 sighandler_type old_action
= safe_signal(s
, SIG_DFL
);
1035 sigaddset(&nset
, s
);
1036 sigprocmask(SIG_UNBLOCK
, &nset
, (sigset_t
*)NULL
);
1038 sigprocmask(SIG_BLOCK
, &nset
, (sigset_t
*)NULL
);
1039 safe_signal(s
, old_action
);
1040 if (_reset_on_stop
) {
1047 * Branch here on hangup signal and simulate "exit".
1054 /* nothing to do? */
1059 * Announce the presence of the current Mail version,
1060 * give the message count, and print a header listing.
1063 announce(int printheaders
)
1067 mdot
= newfileinfo();
1070 dot
= &message
[mdot
- 1];
1071 if (printheaders
&& msgCount
> 0 && value("header") != NULL
) {
1079 * Announce information about the file we are editing.
1080 * Return a likely place to set dot.
1086 int u
, n
, mdot
, d
, s
, hidden
, moved
;
1088 if (mb
.mb_type
== MB_VOID
)
1091 s
= d
= hidden
= moved
=0;
1092 for (mp
= &message
[0], n
= 0, u
= 0; mp
< &message
[msgCount
]; mp
++) {
1093 if (mp
->m_flag
& MNEW
)
1095 if ((mp
->m_flag
& MREAD
) == 0)
1097 if ((mp
->m_flag
& (MDELETED
|MSAVED
)) == (MDELETED
|MSAVED
))
1099 if ((mp
->m_flag
& (MDELETED
|MSAVED
)) == MDELETED
)
1101 if ((mp
->m_flag
& (MDELETED
|MSAVED
)) == MSAVED
)
1103 if (mp
->m_flag
& MHIDDEN
)
1107 /* If displayname gets truncated the user effectively has no option to see
1108 * the full pathname of the mailbox, so print it at least for '? fi' */
1109 printf(tr(103, "\"%s\": "),
1110 (_update_mailname(NULL
) ? displayname
: mailname
));
1112 printf(tr(104, "1 message"));
1114 printf(tr(105, "%d messages"), msgCount
);
1116 printf(tr(106, " %d new"), n
);
1118 printf(tr(107, " %d unread"), u
);
1120 printf(tr(108, " %d deleted"), d
);
1122 printf(tr(109, " %d saved"), s
);
1124 printf(tr(136, " %d moved"), moved
);
1126 printf(tr(139, " %d hidden"), hidden
);
1127 if (mb
.mb_type
== MB_CACHE
)
1128 printf(" [Disconnected]");
1129 else if (mb
.mb_perm
== 0)
1130 printf(tr(110, " [Read only]"));
1141 enum mflag avoid
= MHIDDEN
|MDELETED
;
1144 if (value("autothread"))
1146 else if ((cp
= value("autosort")) != NULL
) {
1148 mb
.mb_sorted
= sstrdup(cp
);
1152 if (mb
.mb_type
== MB_VOID
)
1155 for (mp
= &message
[0]; mp
< &message
[msgCount
]; mp
++)
1156 if ((mp
->m_flag
& (MNEWEST
|avoid
)) == MNEWEST
)
1158 if (!nmail
|| mp
>= &message
[msgCount
]) {
1159 for (mp
= mb
.mb_threaded
? threadroot
: &message
[0];
1161 mp
!= NULL
: mp
< &message
[msgCount
];
1163 mp
= next_in_thread(mp
) : mp
++)
1164 if ((mp
->m_flag
& (MNEW
|avoid
)) == MNEW
)
1167 if (mb
.mb_threaded
? mp
== NULL
: mp
>= &message
[msgCount
])
1168 for (mp
= mb
.mb_threaded
? threadroot
: &message
[0];
1169 mb
.mb_threaded
? mp
!= NULL
:
1170 mp
< &message
[msgCount
];
1171 mb
.mb_threaded
? mp
= next_in_thread(mp
) : mp
++)
1172 if (mp
->m_flag
& MFLAGGED
)
1174 if (mb
.mb_threaded
? mp
== NULL
: mp
>= &message
[msgCount
])
1175 for (mp
= mb
.mb_threaded
? threadroot
: &message
[0];
1176 mb
.mb_threaded
? mp
!= NULL
:
1177 mp
< &message
[msgCount
];
1178 mb
.mb_threaded
? mp
= next_in_thread(mp
) : mp
++)
1179 if ((mp
->m_flag
& (MREAD
|avoid
)) == 0)
1181 if (mb
.mb_threaded
? mp
!= NULL
: mp
< &message
[msgCount
])
1182 mdot
= mp
- &message
[0] + 1;
1183 else if (value("showlast")) {
1184 if (mb
.mb_threaded
) {
1185 for (mp
= this_in_thread(threadroot
, -1); mp
;
1186 mp
= prev_in_thread(mp
))
1187 if ((mp
->m_flag
& avoid
) == 0)
1189 mdot
= mp
? mp
- &message
[0] + 1 : msgCount
;
1191 for (mp
= &message
[msgCount
-1]; mp
>= &message
[0]; mp
--)
1192 if ((mp
->m_flag
& avoid
) == 0)
1194 mdot
= mp
>= &message
[0] ? mp
-&message
[0]+1 : msgCount
;
1196 } else if (mb
.mb_threaded
) {
1197 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
1198 if ((mp
->m_flag
& avoid
) == 0)
1200 mdot
= mp
? mp
- &message
[0] + 1 : 1;
1202 for (mp
= &message
[0]; mp
< &message
[msgCount
]; mp
++)
1203 if ((mp
->m_flag
& avoid
) == 0)
1205 mdot
= mp
< &message
[msgCount
] ? mp
-&message
[0]+1 : 1;
1211 * Print the current version number.
1219 printf(tr(111, "Version %s\n"), version
);
1224 initbox(const char *name
)
1229 if (mb
.mb_type
!= MB_VOID
)
1230 (void)n_strlcpy(prevfile
, mailname
, MAXPATHLEN
);
1231 _update_mailname(name
!= mailname
? name
: NULL
);
1232 if ((mb
.mb_otf
= Ftemp(&tempMesg
, "tmpbox", "w", 0600, 0)) == NULL
) {
1233 perror(tr(87, "temporary mail message file"));
1236 (void)fcntl(fileno(mb
.mb_otf
), F_SETFD
, FD_CLOEXEC
);
1237 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", &dummy
)) == NULL
) {
1238 perror(tr(87, "temporary mail message file"));
1241 (void)fcntl(fileno(mb
.mb_itf
), F_SETFD
, FD_CLOEXEC
);
1251 if (mb
.mb_sorted
!= NULL
) {
1253 mb
.mb_sorted
= NULL
;
1256 mb
.mb_flags
= MB_NOFLAGS
;
1260 did_print_dot
= FAL0
;
1263 #ifdef HAVE_DOCSTRINGS
1265 print_comm_docstr(char const *comm
)
1268 struct cmd_ghost
*cg
;
1269 struct cmd
const *cp
;
1271 /* Ghosts take precedence */
1272 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
1273 if (strcmp(comm
, cg
->name
) == 0) {
1274 printf("%s -> <%s>\n", comm
, cg
->cmd
.s
);
1279 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
) {
1280 if (cp
->func
== &ccmdnotsupp
)
1282 if (strcmp(comm
, cp
->name
) == 0)
1283 printf("%s: %s\n", comm
, tr(cp
->docid
, cp
->doc
));
1284 else if (is_prefix(comm
, cp
->name
))
1285 printf("%s (%s): %s\n", comm
, cp
->name
, tr(cp
->docid
, cp
->doc
));
1296 /* vim:set fenc=utf-8:s-it-mode (TODO only partial true) */