2 * Heirloom mailx - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
7 * Copyright (c) 1980, 1993
8 * The Regents of the University of California. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 static char sccsid
[] = "@(#)cmd1.c 2.97 (gritter) 6/16/07";
52 * Mail -- a mail program
58 * Print the current active headings.
59 * Don't change dot if invoker didn't give an argument.
63 static void onpipe(int signo
);
64 static int dispc(struct message
*mp
, const char *a
);
65 static int scroll1(char *arg
, int onlynew
);
66 static void hprf(const char *fmt
, int mesg
, FILE *f
, int threaded
,
67 const char *attrlist
);
68 static int putindent(FILE *fp
, struct message
*mp
, int maxwidth
);
69 static int type1(int *msgvec
, int doign
, int page
, int pipe
, int decode
,
70 char *cmd
, off_t
*tstats
);
71 static int pipe1(char *str
, int doign
);
72 void brokpipe(int signo
);
80 if (cp
== NULL
|| *cp
== '\0')
81 cp
= value("bsdcompat") ? "more" : "pg";
89 int g
, k
, n
, mesg
, flag
= 0, lastg
= 1;
90 struct message
*mp
, *mq
, *lastmq
= NULL
;
92 enum mflag fl
= MNEW
|MFLAGGED
;
95 n
= msgvec
[0]; /* n == {-2, -1, 0}: called from scroll() */
103 if (mb
.mb_threaded
== 0) {
106 for (mp
= &message
[0]; mp
< &message
[msgCount
]; mp
++)
114 if (n
>0 && mp
==&message
[n
-1] ||
116 n
==-2 && g
==k
+size
&& lastmq
||
117 n
<0 && g
>=k
&& mp
->m_flag
&fl
)
121 if (lastmq
&& (n
==-2 || n
==-1 && mp
==&message
[msgCount
])) {
127 mesg
= mp
- &message
[0];
128 if (dot
!= &message
[n
-1]) {
129 for (mq
= mp
; mq
< &message
[msgCount
]; mq
++)
135 if (mb
.mb_type
== MB_IMAP
)
136 imap_getheaders(mesg
+1, mesg
+ size
);
137 for (; mp
< &message
[msgCount
]; mp
++) {
143 printhead(mesg
, stdout
, 0);
145 } else { /* threaded */
148 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
149 if (visible(mp
) && (mp
->m_collapsed
<= 0 ||
150 mp
== &message
[n
-1])) {
157 if (n
>0 && mp
==&message
[n
-1] ||
159 n
==-2 && g
==k
+size
&& lastmq
||
160 n
<0 && g
>=k
&& mp
->m_flag
&fl
)
164 if (lastmq
&& (n
==-2 || n
==-1 && mp
==&message
[msgCount
])) {
170 if (dot
!= &message
[n
-1]) {
171 for (mq
= mp
; mq
; mq
= next_in_thread(mq
))
172 if (visible(mq
) && mq
->m_collapsed
<= 0) {
178 if (visible(mp
) && (mp
->m_collapsed
<= 0 ||
179 mp
== &message
[n
-1])) {
182 printhead(mp
- &message
[0] + 1, stdout
,
185 mp
= next_in_thread(mp
);
189 printf(catgets(catd
, CATSET
, 6, "No more mail.\n"));
196 * Scroll to the next/previous screen
201 return scroll1(v
, 0);
207 return scroll1(v
, 1);
211 scroll1(char *arg
, int onlynew
)
216 cur
[0] = onlynew
? -1 : 0;
219 case '1': case '2': case '3': case '4': case '5':
220 case '6': case '7': case '8': case '9': case '0':
227 screen
= msgCount
/ size
;
233 screen
+= atoi(arg
+ 1);
235 if (screen
* size
> msgCount
) {
236 screen
= msgCount
/ size
;
237 printf(catgets(catd
, CATSET
, 7,
238 "On last screenful of messages\n"));
246 screen
-= atoi(arg
+ 1);
249 printf(catgets(catd
, CATSET
, 8,
250 "On first screenful of messages\n"));
257 printf(catgets(catd
, CATSET
, 9,
258 "Unrecognized scrolling command \"%s\"\n"), arg
);
261 return(headers(cur
));
265 * Compute screen size.
273 if ((cp
= value("screen")) != NULL
&& (s
= atoi(cp
)) > 0)
275 return scrnheight
- 4;
278 static sigjmp_buf pipejmp
;
284 siglongjmp(pipejmp
, 1);
288 * Print out the headlines for each message
289 * in the passed message list.
301 if (is_a_tty
[0] && is_a_tty
[1] && (cp
= value("crt")) != NULL
) {
302 for (n
= 0, ip
= msgvec
; *ip
; ip
++)
304 if (n
> (*cp
== '\0' ? screensize() : atoi(cp
)) + 3) {
306 if (sigsetjmp(pipejmp
, 1))
308 if ((obuf
= Popen(cp
, "w", NULL
, 1)) == NULL
) {
312 safe_signal(SIGPIPE
, onpipe
);
315 for (ip
= msgvec
; *ip
!= 0; ip
++)
316 printhead(*ip
, obuf
, mb
.mb_threaded
);
318 setdot(&message
[*ip
- 1]);
320 if (obuf
!= stdout
) {
321 safe_signal(SIGPIPE
, SIG_IGN
);
323 safe_signal(SIGPIPE
, dflpipe
);
329 dispc(struct message
*mp
, const char *a
)
336 if ((mp
->m_flag
& (MREAD
|MNEW
)) == MREAD
)
338 if ((mp
->m_flag
& (MREAD
|MNEW
)) == (MREAD
|MNEW
))
340 if (mp
->m_flag
& MANSWERED
)
342 if (mp
->m_flag
& MDRAFTED
)
344 if ((mp
->m_flag
& (MREAD
|MNEW
)) == MNEW
)
346 if ((mp
->m_flag
& (MREAD
|MNEW
)) == 0)
348 if (mp
->m_flag
& MJUNK
)
350 if (mp
->m_flag
& MSAVED
)
352 if (mp
->m_flag
& MPRESERVE
)
354 if (mp
->m_flag
& (MBOX
|MBOXED
))
356 if (mp
->m_flag
& MFLAGGED
)
358 if (mp
->m_flag
& MKILL
)
360 if (mb
.mb_threaded
== 1 && mp
->m_collapsed
> 0)
362 if (mb
.mb_threaded
== 1 && mp
->m_collapsed
< 0)
368 hprf(const char *fmt
, int mesg
, FILE *f
, int threaded
, const char *attrlist
)
370 struct message
*mp
= &message
[mesg
-1];
371 char *headline
= NULL
, *subjline
, *name
, *cp
, *pbuf
= NULL
;
378 int subjlen
= scrnwidth
, fromlen
, isto
= 0, isaddr
= 0;
381 if ((mp
->m_flag
& MNOFROM
) == 0) {
382 if ((ibuf
= setinput(&mb
, mp
, NEED_HEADER
)) == NULL
)
384 if ((headlen
= readline(ibuf
, &headline
, &headsize
)) < 0)
387 if ((subjline
= hfield("subject", mp
)) == NULL
)
388 subjline
= hfield("subj", mp
);
389 if (subjline
== NULL
) {
394 in
.l
= strlen(subjline
);
395 mime_fromhdr(&in
, &out
, TD_ICONV
| TD_ISPR
);
398 if ((mp
->m_flag
& MNOFROM
) == 0) {
399 pbuf
= ac_alloc(headlen
+ 1);
400 parse(headline
, headlen
, &hl
, pbuf
);
402 hl
.l_from
= /*fakefrom(mp);*/NULL
;
404 hl
.l_date
= fakedate(mp
->m_time
);
406 if (value("datefield") && (cp
= hfield("date", mp
)) != NULL
)
407 hl
.l_date
= fakedate(rfctime(cp
));
409 if ((name
= hfield("newsgroups", mp
)) == NULL
)
410 if ((name
= hfield("article-id", mp
)) == NULL
)
413 } else if (value("show-rcpt") == NULL
) {
416 if (value("showto") && name
&& is_myname(skin(name
))) {
417 if ((cp
= hfield("to", mp
)) != NULL
) {
424 if ((name
= hfield("to", mp
)) != NULL
)
432 if (value("showname"))
433 name
= realname(name
);
435 name
= prstr(skin(name
));
438 for (fp
= fmt
; *fp
; fp
++) {
442 } else if (*fp
== '+')
444 while (digitchar(*fp
&0377))
449 #if defined (HAVE_MBTOWC) && defined (HAVE_WCWIDTH)
450 if (mb_cur_max
> 1) {
452 if ((s
= mbtowc(&wc
, fp
, mb_cur_max
)) < 0)
455 if ((n
= wcwidth(wc
)) < 0)
459 #endif /* HAVE_MBTOWC && HAVE_WCWIDTH */
468 for (fp
= fmt
; *fp
; fp
++) {
476 } else if (*fp
== '+')
478 if (digitchar(*fp
&0377)) {
480 n
= 10*n
+ *fp
- '0';
481 while (fp
++, digitchar(*fp
&0377));
493 c
= dot
== mp
? *fp
&0377 : ' ';
498 c
= dispc(mp
, attrlist
);
506 for (i
=msgCount
; i
>999; i
/=10)
509 subjlen
-= fprintf(f
, "%*d", n
, mesg
);
517 fprintf(f
, "%s%s", isto
? "To " : "",
518 colalign(name
, fromlen
, 1));
524 subjlen
-= fprintf(f
, "%*.*s", n
, n
, hl
.l_date
);
530 subjlen
-= fprintf(f
, "%*ld", n
,
541 subjlen
-= fprintf(f
, "%*lu", n
,
546 subjlen
-= putindent(f
, mp
,
553 n
= n
>0 ? n
: subjlen
- 2;
556 if (subjline
!= NULL
&& n
>= 0) {
557 /* pretty pathetic */
558 fprintf(f
, B
? "\"%s\"" : "%s",
559 colalign(subjline
, n
, 0));
565 subjlen
-= fprintf(f
, "%*lu", n
, mp
->m_uid
);
570 subjlen
-= fprintf(f
, "%*u", n
, threaded
== 1 ?
577 for (i
=msgCount
; i
>999; i
/=10)
580 fprintf(f
, "%*ld", n
, threaded
?
581 mp
->m_threadpos
: mesg
);
587 subjlen
-= fprintf(f
, "%*g", n
, mp
->m_score
);
603 * Print out the indenting in threaded display.
606 putindent(FILE *fp
, struct message
*mp
, int maxwidth
)
612 int important
= MNEW
|MFLAGGED
;
614 if (mp
->m_level
== 0)
616 cs
= ac_alloc(mp
->m_level
);
617 us
= ac_alloc(mp
->m_level
* sizeof *us
);
619 if (mp
->m_younger
&& mp
->m_younger
->m_level
== i
+ 1) {
620 if (mp
->m_parent
&& mp
->m_parent
->m_flag
& important
)
621 us
[i
] = mp
->m_flag
& important
? 0x2523 : 0x2520;
623 us
[i
] = mp
->m_flag
& important
? 0x251D : 0x251C;
626 if (mp
->m_parent
&& mp
->m_parent
->m_flag
& important
)
627 us
[i
] = mp
->m_flag
& important
? 0x2517 : 0x2516;
629 us
[i
] = mp
->m_flag
& important
? 0x2515 : 0x2514;
633 for (i
= mp
->m_level
- 2; i
>= 0; i
--) {
635 if (i
> mq
->m_level
- 1) {
641 mq
->m_parent
->m_flag
&important
)
652 for (indent
= 0; indent
< mp
->m_level
&& indent
< maxwidth
; indent
++) {
653 if (indent
< maxwidth
- 1)
654 putuc(us
[indent
], cs
[indent
] & 0377, fp
);
656 putuc(0x21B8, '^', fp
);
664 * Print out the header of a specific message.
665 * This is a slight improvement to the standard one.
668 printhead(int mesg
, FILE *f
, int threaded
)
670 int bsdflags
, bsdheadline
, sz
;
671 char *fmt
, attrlist
[30], *cp
;
673 bsdflags
= value("bsdcompat") != NULL
|| value("bsdflags") != NULL
||
674 getenv("SYSV3") != NULL
;
675 strcpy(attrlist
, bsdflags
? "NU *HMFATK+-J" : "NUROSPMFATK+-J");
676 if ((cp
= value("attrlist")) != NULL
) {
678 if (sz
> sizeof attrlist
- 1)
679 sz
= sizeof attrlist
- 1;
680 memcpy(attrlist
, cp
, sz
);
682 bsdheadline
= value("bsdcompat") != NULL
||
683 value("bsdheadline") != NULL
;
684 if ((fmt
= value("headline")) == NULL
)
686 "%>%a%m %20f %16d %3l/%-5o %i%S" :
687 "%>%a%m %18f %16d %4l/%-5o %i%s";
688 hprf(fmt
, mesg
, f
, threaded
, attrlist
);
692 * Print out the value of dot.
698 printf(catgets(catd
, CATSET
, 13, "%d\n"),
699 (int)(dot
- &message
[0] + 1));
704 * Print out all the possible commands.
710 extern const struct cmd cmdtab
[];
711 const struct cmd
*cp
;
714 printf(catgets(catd
, CATSET
, 14, "Commands are:\n"));
715 for (cc
= 0, cp
= cmdtab
; cp
->c_name
!= NULL
; cp
++) {
716 cc
+= strlen(cp
->c_name
) + 2;
719 cc
= strlen(cp
->c_name
) + 2;
721 if ((cp
+1)->c_name
!= NULL
)
722 printf(catgets(catd
, CATSET
, 15, "%s, "), cp
->c_name
);
724 printf("%s\n", cp
->c_name
);
730 * Type out the messages requested.
732 static sigjmp_buf pipestop
;
735 type1(int *msgvec
, int doign
, int page
, int pipe
, int decode
,
736 char *cmd
, off_t
*tstats
)
744 * Must be static to become excluded from sigsetjmp().
748 /* Avoid longjmp clobbering */
755 if (sigsetjmp(pipestop
, 1))
761 obuf
= Popen(cmd
, "w", cp
, 1);
766 safe_signal(SIGPIPE
, brokpipe
);
768 } else if (value("interactive") != NULL
&&
769 (page
|| (cp
= value("crt")) != NULL
)) {
772 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
773 if ((message
[*ip
-1].m_have
& HAVE_BODY
) == 0) {
774 if ((get_body(&message
[*ip
- 1])) !=
778 nlines
+= message
[*ip
- 1].m_lines
;
781 if (page
|| nlines
> (*cp
? atoi(cp
) : realscreenheight
)) {
783 obuf
= Popen(cp
, "w", NULL
, 1);
788 safe_signal(SIGPIPE
, brokpipe
);
791 for (ip
= msgvec
; *ip
&& ip
- msgvec
< msgCount
; ip
++) {
792 mp
= &message
[*ip
- 1];
796 if (value("quiet") == NULL
)
797 fprintf(obuf
, catgets(catd
, CATSET
, 17,
798 "Message %2d:\n"), *ip
);
799 send(mp
, obuf
, doign
? ignore
: 0, NULL
,
800 pipe
&& value("piperaw") ? SEND_MBOX
:
802 doign
? SEND_TODISP
: SEND_TODISP_ALL
,
804 if (pipe
&& value("page")) {
808 tstats
[0] += mstats
[0];
809 tstats
[1] += mstats
[1];
813 if (obuf
!= stdout
) {
815 * Ignore SIGPIPE so it can't cause a duplicate close.
817 safe_signal(SIGPIPE
, SIG_IGN
);
819 safe_signal(SIGPIPE
, dflpipe
);
825 * Get the last, possibly quoted part of linebuf.
828 laststring(char *linebuf
, int *flag
, int strip
)
834 cp
= strlen(linebuf
) + linebuf
- 1;
837 * Strip away trailing blanks.
839 while (cp
> linebuf
&& whitechar(*cp
& 0377))
848 * Now search for the beginning of the command name.
851 if (quoted
== '\'' || quoted
== '\"') {
856 while (cp
> linebuf
) {
859 } else if (*(cp
- 1) != '\\') {
877 while (cp
> linebuf
&& !whitechar(*cp
& 0377))
879 if (whitechar(*cp
& 0377))
891 * Pipe the messages requested.
894 pipe1(char *str
, int doign
)
901 msgvec
= (int *)salloc((msgCount
+ 2) * sizeof *msgvec
);
902 if ((cmd
= laststring(str
, &f
, 1)) == NULL
) {
904 if (cmd
== NULL
|| *cmd
== '\0') {
905 fputs(catgets(catd
, CATSET
, 16,
906 "variable cmd not set\n"), stderr
);
911 *msgvec
= first(0, MMNORM
);
915 puts(catgets(catd
, CATSET
, 18, "No messages to pipe."));
919 } else if (getmsglist(str
, msgvec
, 0) < 0)
924 printf("No applicable messages.\n");
927 printf(catgets(catd
, CATSET
, 268, "Pipe to: \"%s\"\n"), cmd
);
928 stats
[0] = stats
[1] = 0;
929 if ((ret
= type1(msgvec
, doign
, 0, 1, 0, cmd
, stats
)) == 0) {
930 printf("\"%s\" ", cmd
);
932 printf("%lu", (long)stats
[0]);
934 printf(catgets(catd
, CATSET
, 27, "binary"));
935 printf("/%lu\n", (long)stats
[1]);
941 * Paginate messages, honor ignored fields.
947 return (type1(msgvec
, 1, 1, 0, 0, NULL
, NULL
));
951 * Paginate messages, even printing ignored fields.
958 return (type1(msgvec
, 0, 1, 0, 0, NULL
, NULL
));
962 * Type out messages, honor ignored fields.
969 return(type1(msgvec
, 1, 0, 0, 0, NULL
, NULL
));
973 * Type out messages, even printing ignored fields.
980 return(type1(msgvec
, 0, 0, 0, 0, NULL
, NULL
));
984 * Show MIME-encoded message text, including all fields.
991 return(type1(msgvec
, 0, 0, 0, 1, NULL
, NULL
));
995 * Pipe messages, honor ignored fields.
1001 return(pipe1(str
, 1));
1004 * Pipe messages, not respecting ignored fields.
1010 return(pipe1(str
, 0));
1014 * Respond to a broken pipe signal --
1015 * probably caused by quitting more.
1021 siglongjmp(pipestop
, 1);
1025 * Print the top so many lines of each desired message.
1026 * The number of lines is taken from the variable "toplines"
1027 * and defaults to 5.
1035 int c
, topl
, lines
, lineb
;
1036 char *valtop
, *linebuf
= NULL
;
1041 valtop
= value("toplines");
1042 if (valtop
!= NULL
) {
1043 topl
= atoi(valtop
);
1044 if (topl
< 0 || topl
> 10000)
1048 for (ip
= msgvec
; *ip
&& ip
-msgvec
< msgCount
; ip
++) {
1049 mp
= &message
[*ip
- 1];
1053 if (value("quiet") == NULL
)
1054 printf(catgets(catd
, CATSET
, 19,
1055 "Message %2d:\n"), *ip
);
1056 if (mp
->m_flag
& MNOFROM
)
1057 printf("From %s %s\n", fakefrom(mp
),
1058 fakedate(mp
->m_time
));
1059 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
) /* XXX could use TOP */
1064 for (lines
= 0; lines
< c
&& lines
<= topl
; lines
++) {
1065 if (readline(ibuf
, &linebuf
, &linesize
) < 0)
1068 lineb
= blankline(linebuf
);
1077 * Touch all the given messages so that they will
1086 for (ip
= msgvec
; *ip
!= 0; ip
++) {
1087 setdot(&message
[*ip
-1]);
1088 dot
->m_flag
|= MTOUCH
;
1089 dot
->m_flag
&= ~MPRESERVE
;
1091 * POSIX interpretation necessary.
1099 * Make sure all passed messages get mboxed.
1107 for (ip
= msgvec
; *ip
!= 0; ip
++) {
1108 setdot(&message
[*ip
-1]);
1109 dot
->m_flag
|= MTOUCH
|MBOX
;
1110 dot
->m_flag
&= ~MPRESERVE
;
1112 * POSIX interpretation necessary.
1120 * List the folders the user currently has.
1126 char dirname
[PATHSIZE
];
1130 name
= expand(*argv
);
1131 else if (getfold(dirname
, sizeof dirname
) < 0) {
1132 printf(catgets(catd
, CATSET
, 20,
1133 "No value set for \"folder\"\n"));
1137 if (which_protocol(name
) == PROTO_IMAP
)
1138 imap_folders(name
, *argv
== NULL
);
1140 if ((cmd
= value("LISTER")) == NULL
)
1142 run_command(cmd
, 0, -1, -1, name
, NULL
, NULL
);