1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Iterating over, and over such housekeeping message user commands.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #define n_FILE cmd_message
38 #ifndef HAVE_AMALGAMATION
42 /* Prepare and print "[Message: xy]:" intro */
43 static bool_t
a_cmsg_show_overview(FILE *obuf
, struct message
*mp
, int msg_no
);
45 /* Show the requested messages */
46 static int _type1(int *msgvec
, bool_t doign
, bool_t dopage
, bool_t dopipe
,
47 bool_t donotdecode
, char *cmd
, ui64_t
*tstats
);
49 /* Pipe the requested messages */
50 static int _pipe1(char *str
, int doign
);
53 static int a_cmsg_top(void *vp
, struct n_ignore
const *itp
);
55 /* Delete the indicated messages. Set dot to some nice place afterwards */
56 static int delm(int *msgvec
);
59 a_cmsg_show_overview(FILE *obuf
, struct message
*mp
, int msg_no
){
61 char const *cpre
, *csuf
;
64 cpre
= csuf
= n_empty
;
66 if(n_COLOUR_IS_ACTIVE()){
67 struct n_colour_pen
*cpen
;
69 if((cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_MSGINFO
, NULL
)) != NULL
){
72 if((sp
= n_colour_pen_to_str(cpen
)) != NULL
)
74 if((sp
= n_colour_reset_to_str()) != NULL
)
79 /* XXX Message info uses wire format for line count */
80 rv
= (fprintf(obuf
, _("%s[-- Message %2d -- %lu lines, %lu bytes --]:%s\n"),
81 cpre
, msg_no
, (ul_i
)mp
->m_lines
, (ul_i
)mp
->m_size
, csuf
) > 0);
87 _type1(int *msgvec
, bool_t doign
, bool_t dopage
, bool_t dopipe
,
88 bool_t donotdecode
, char *cmd
, ui64_t
*tstats
)
94 enum sendaction action
;
95 bool_t
volatile formfeed
;
102 formfeed
= (dopipe
&& ok_blook(page
));
103 action
= ((dopipe
&& ok_blook(piperaw
))
104 ? SEND_MBOX
: donotdecode
106 ? SEND_TODISP
: SEND_TODISP_ALL
);
109 if ((obuf
= Popen(cmd
, "w", ok_vlook(SHELL
), NULL
, 1)) == NULL
) {
113 } else if ((n_psonce
& n_PSO_TTYOUT
) && (dopage
||
114 ((n_psonce
& n_PSO_INTERACTIVE
) && (cp
= ok_vlook(crt
)) != NULL
))) {
120 for (ip
= msgvec
; *ip
&& PTRCMP(ip
- msgvec
, <, msgCount
); ++ip
) {
121 mp
= message
+ *ip
- 1;
122 if (!(mp
->m_content_info
& CI_HAVE_BODY
))
123 if (get_body(mp
) != OKAY
)
125 nlines
+= mp
->m_lines
+ 1; /* TODO BUT wire format, not display! */
129 /* >= not <: we return to the prompt */
130 if(dopage
|| nlines
>= (*cp
!= '\0'
131 ? (n_idec_uiz_cp(&lib
, cp
, 0, NULL
), lib
)
132 : (uiz_t
)n_realscreenheight
)){
133 if((obuf
= n_pager_open()) == NULL
)
137 if(action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
)
138 n_colour_env_create(n_COLOUR_CTX_VIEW
, obuf
, obuf
!= n_stdout
);
142 else if(action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
)
143 n_colour_env_create(n_COLOUR_CTX_VIEW
, n_stdout
, FAL0
);
148 for (ip
= msgvec
; *ip
&& PTRCMP(ip
- msgvec
, <, msgCount
); ++ip
) {
149 mp
= message
+ *ip
- 1;
152 n_pstate
|= n_PS_DID_PRINT_DOT
;
154 if(!dopipe
&& ip
!= msgvec
&& fprintf(obuf
, "\n") < 0){
158 if(action
!= SEND_MBOX
&& !a_cmsg_show_overview(obuf
, mp
, *ip
)){
162 if(sendmp(mp
, obuf
, (doign
? n_IGNORE_TYPE
: NULL
), NULL
, action
, mstats
168 if(formfeed
){ /* TODO a nicer way to separate piped messages! */
169 if(putc('\f', obuf
) == EOF
){
175 tstats
[0] += mstats
[0];
179 if(!dopipe
&& (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
))
183 if (obuf
!= n_stdout
)
190 _pipe1(char *str
, int doign
)
193 char const *cmd
, *cmdq
;
198 if ((cmd
= laststring(str
, &needs_list
, TRU1
)) == NULL
) {
200 if (cmd
== NULL
|| *cmd
== '\0') {
201 n_err(_("Variable *cmd* not set\n"));
206 msgvec
= salloc((msgCount
+ 2) * sizeof *msgvec
);
209 *msgvec
= first(0, MMNORM
);
211 if (n_pstate
& (n_PS_ROBOT
| n_PS_HOOK_MASK
)) {
215 fputs(_("No messages to pipe.\n"), n_stdout
);
219 } else if (getmsglist(str
, msgvec
, 0) < 0)
222 if (n_pstate
& (n_PS_ROBOT
| n_PS_HOOK_MASK
)) {
226 fprintf(n_stdout
, "No applicable messages.\n");
230 cmdq
= n_shexp_quote_cp(cmd
, FAL0
);
231 fprintf(n_stdout
, _("Pipe to: %s\n"), cmdq
);
233 if ((rv
= _type1(msgvec
, doign
, FAL0
, TRU1
, FAL0
, n_UNCONST(cmd
), stats
)
235 fprintf(n_stdout
, "%s %" PRIu64
" bytes\n", cmdq
, stats
[0]);
242 a_cmsg_top(void *vp
, struct n_ignore
const *itp
){
245 enum{a_NONE
, a_SQUEEZE
= 1u<<0,
246 a_EMPTY
= 1u<<8, a_STOP
= 1u<<9, a_WORKMASK
= 0xFF00u
} f
;
251 if((iobuf
= Ftmp(NULL
, "topio", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
){
252 n_perr(_("`top': I/O temporary file"), 0);
256 if((pbuf
= Ftmp(NULL
, "toppag", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
){
257 n_perr(_("`top': temporary pager file"), 0);
262 /* TODO In v15 we should query the m_message object, and directly send only
263 * TODO those parts, optionally over empty-line-squeeze and quote-strip
264 * TODO filters, in which we are interested in: only text content!
265 * TODO And: with *topsqueeze*, header/content separating empty line.. */
266 n_pstate
&= ~n_PS_MSGLIST_DIRECT
; /* TODO NO ATTACHMENTS */
269 n_COLOUR( n_colour_env_create(n_COLOUR_CTX_VIEW
, iobuf
, FAL0
); )
270 n_string_creat_auto(&s
);
274 if((n_idec_siz_cp(&l
, ok_vlook(toplines
), 0, NULL
275 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
276 ) != n_IDEC_STATE_CONSUMED
)
279 tmax
= n_screensize();
287 f
= ok_blook(topsqueeze
) ? a_SQUEEZE
: a_NONE
;
289 for(ip
= msgvec
= vp
;
290 *ip
!= 0 && UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
); ++ip
){
293 mp
= &message
[*ip
- 1];
296 n_pstate
|= n_PS_DID_PRINT_DOT
;
300 if(ftruncate(fileno(iobuf
), 0)){
301 n_perr(_("`top': ftruncate(2)"), 0);
306 if(!a_cmsg_show_overview(iobuf
, mp
, *ip
) ||
307 sendmp(mp
, iobuf
, itp
, NULL
, SEND_TODISP_ALL
, NULL
) < 0){
308 n_err(_("`top': failed to prepare message %d\n"), *ip
);
312 fflush_rewind(iobuf
);
314 /* TODO Skip over the _msg_overview line -- this is a hack to make
315 * TODO colours work: colour contexts should be objects */
319 if((c
= getc(iobuf
)) == EOF
|| putc(c
, pbuf
) == EOF
){
332 n_string_trunc(&s
, 0);
333 for(l
= 0, f
&= ~a_WORKMASK
; !(f
& a_STOP
);){
336 if((c
= getc(iobuf
)) == EOF
){
342 n_string_push_c(&s
, c
);
343 else if((f
& a_SQUEEZE
) && s
.s_len
== 0){
344 if(!(f
& a_STOP
) && ((f
& a_EMPTY
) || tmax
- 1 <= l
))
346 if(putc('\n', pbuf
) == EOF
){
353 char const *cp
, *xcp
;
355 cp
= n_string_cp_const(&s
);
356 /* TODO Brute simple skip part overviews; see above.. */
359 else if(s
.s_len
> 8 &&
360 (xcp
= strstr(cp
, "[-- ")) != NULL
&&
361 strstr(&xcp
[1], " --]") != NULL
)
363 else for(; (c
= *cp
) != '\0'; ++cp
){
366 if(!blankspacechar(c
)){
375 if(fputs(n_string_cp_const(&s
), pbuf
) == EOF
||
376 putc('\n', pbuf
) == EOF
){
385 n_string_trunc(&s
, 0);
393 if(!(f
& a_EMPTY
) && putc('\n', pbuf
) == EOF
){
403 n_COLOUR( n_colour_env_gut(); )
406 page_or_print(pbuf
, plines
);
420 int rv
= -1, *ip
, last
;
424 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
425 mp
= message
+ *ip
- 1;
427 mp
->m_flag
|= MDELETED
| MTOUCH
;
428 mp
->m_flag
&= ~(MPRESERVE
| MSAVED
| MBOX
);
432 setdot(message
+ last
- 1);
433 last
= first(0, MDELETED
);
435 setdot(message
+ last
- 1);
451 rv
= _type1(msgvec
, TRU1
, TRU1
, FAL0
, FAL0
, NULL
, NULL
);
462 rv
= _type1(msgvec
, FAL0
, TRU1
, FAL0
, FAL0
, NULL
, NULL
);
473 rv
= _type1(msgvec
, TRU1
, FAL0
, FAL0
, FAL0
, NULL
, NULL
);
484 rv
= _type1(msgvec
, FAL0
, FAL0
, FAL0
, FAL0
, NULL
, NULL
);
495 rv
= _type1(msgvec
, FAL0
, FAL0
, FAL0
, TRU1
, NULL
, NULL
);
501 c_partview(void *vp
){ /* TODO direct addressable parts, multiple such */
506 if((msgvec
= vp
)[1] != 0){
507 n_err(_("`partview': can yet only take one message, sorry!\n"));/* TODO */
508 n_pstate_err_no
= n_ERR_NOTSUP
;
513 mp
= &message
[*msgvec
- 1];
516 n_pstate
|= n_PS_DID_PRINT_DOT
;
520 n_colour_env_create(n_COLOUR_CTX_VIEW
, n_stdout
, FAL0
);
523 if(!a_cmsg_show_overview(n_stdout
, mp
, *msgvec
))
524 n_pstate_err_no
= n_ERR_IO
;
525 else if(sendmp(mp
, n_stdout
, n_IGNORE_TYPE
, NULL
, SEND_TODISP_PARTS
,
527 n_pstate_err_no
= n_ERR_IO
;
529 n_pstate_err_no
= n_ERR_NONE
;
535 rv
= (n_pstate_err_no
!= n_ERR_NONE
);
567 struct n_ignore
*itp
;
571 if(n_ignore_is_any(n_IGNORE_TOP
))
574 itp
= n_ignore_new(TRU1
);
575 n_ignore_insert(itp
, TRU1
, "from", sizeof("from") -1);
576 n_ignore_insert(itp
, TRU1
, "to", sizeof("to") -1);
577 n_ignore_insert(itp
, TRU1
, "cc", sizeof("cc") -1);
578 n_ignore_insert(itp
, TRU1
, "subject", sizeof("subject") -1);
581 rv
= !a_cmsg_top(v
, itp
);
591 rv
= !a_cmsg_top(v
, n_IGNORE_TYPE
);
599 int list
[2], *ip
, *ip2
, mdot
, *msgvec
= v
, rv
= 1;
604 /* If some messages were supplied, find the first applicable one
605 * following dot using wrap around */
606 mdot
= (int)PTR2SIZE(dot
- message
+ 1);
608 /* Find first message in supplied message list which follows dot */
609 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
610 if ((mb
.mb_threaded
? message
[*ip
- 1].m_threadpos
> dot
->m_threadpos
618 mp
= message
+ *ip2
- 1;
619 if (!(mp
->m_flag
& MMNDEL
)) {
628 fprintf(n_stdout
, _("No messages applicable\n"));
632 /* If this is the first command, select message 1. Note that this must
633 * exist for us to get here at all */
634 if (!(n_pstate
& n_PS_SAW_COMMAND
)) {
640 /* Just find the next good message after dot, no wraparound */
641 if (mb
.mb_threaded
== 0) {
642 for (mp
= dot
+ !!(n_pstate
& n_PS_DID_PRINT_DOT
);
643 PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
644 if (!(mp
->m_flag
& MMNORM
))
647 /* TODO The threading code had some bugs that caused crashes.
648 * TODO The last thing (before the deep look) happens here,
649 * TODO so let's not trust n_PS_DID_PRINT_DOT but check & hope it fixes */
650 if ((mp
= dot
) != NULL
&& (n_pstate
& n_PS_DID_PRINT_DOT
))
651 mp
= next_in_thread(mp
);
652 while (mp
!= NULL
&& (mp
->m_flag
& MMNORM
))
653 mp
= next_in_thread(mp
);
655 if (mp
== NULL
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
657 fprintf(n_stdout
, _("At EOF\n"));
665 list
[0] = (int)PTR2SIZE(dot
- message
+ 1);
678 fprintf(n_stdout
, "%d\n", (int)PTR2SIZE(dot
- message
+ 1));
686 int *msgvec
= v
, *ip
, mesg
;
690 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
692 mp
= message
+ mesg
- 1;
693 fprintf(n_stdout
, "%d: ", mesg
);
694 if (mp
->m_xlines
> 0)
695 fprintf(n_stdout
, "%ld", mp
->m_xlines
);
698 fprintf(n_stdout
, "/%lu\n", (ul_i
)mp
->m_xsize
);
718 int list
[2], rv
= 0, *msgvec
= v
, lastdot
;
721 lastdot
= (int)PTR2SIZE(dot
- message
+ 1);
722 if (delm(msgvec
) >= 0) {
723 list
[0] = (int)PTR2SIZE(dot
- message
+ 1);
724 if (list
[0] > lastdot
) {
730 fprintf(n_stdout
, _("At EOF\n"));
732 fprintf(n_stdout
, _("No more messages\n"));
741 int *msgvec
= v
, *ip
;
745 for (ip
= msgvec
; *ip
!= 0 && UICMP(z
, PTR2SIZE(ip
- msgvec
), <, msgCount
);
747 mp
= message
+ *ip
- 1;
750 if (mp
->m_flag
& (MDELETED
| MSAVED
))
751 mp
->m_flag
&= ~(MDELETED
| MSAVED
);
753 mp
->m_flag
&= ~MDELETED
;
762 int *msgvec
= v
, *ip
;
765 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
766 setdot(message
+ *ip
- 1);
767 dot
->m_flag
|= MTOUCH
;
768 dot
->m_flag
&= ~MPRESERVE
;
769 n_pstate
|= n_PS_DID_PRINT_DOT
;
778 int *msgvec
= v
, *ip
;
781 if (n_pstate
& n_PS_EDIT
) {
782 n_err(_("`mbox' can only be used in a system mailbox\n")); /* TODO */
786 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
787 setdot(message
+ *ip
- 1);
788 dot
->m_flag
|= MTOUCH
| MBOX
;
789 dot
->m_flag
&= ~MPRESERVE
;
790 n_pstate
|= n_PS_DID_PRINT_DOT
;
800 int *msgvec
= v
, *ip
, mesg
, rv
= 1;
804 if (n_pstate
& n_PS_EDIT
) {
805 fprintf(n_stdout
, _("Cannot `preserve' in a system mailbox\n"));
809 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
811 mp
= message
+ mesg
- 1;
812 mp
->m_flag
|= MPRESERVE
;
815 n_pstate
|= n_PS_DID_PRINT_DOT
;
826 int *msgvec
= v
, *ip
;
829 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
830 setdot(message
+ *ip
- 1);
831 dot
->m_flag
&= ~(MREAD
| MTOUCH
);
832 dot
->m_flag
|= MSTATUS
;
833 n_pstate
|= n_PS_DID_PRINT_DOT
;
842 int *msgvec
= v
, *ip
;
845 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
846 struct message
*mp
= message
+ *ip
- 1;
858 int *msgvec
= v
, *ip
;
861 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
862 m
= message
+ *ip
- 1;
864 if (!(m
->m_flag
& (MFLAG
| MFLAGGED
)))
865 m
->m_flag
|= MFLAG
| MFLAGGED
;
875 int *msgvec
= v
, *ip
;
878 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
879 m
= message
+ *ip
- 1;
881 if (m
->m_flag
& (MFLAG
| MFLAGGED
)) {
882 m
->m_flag
&= ~(MFLAG
| MFLAGGED
);
883 m
->m_flag
|= MUNFLAG
;
894 int *msgvec
= v
, *ip
;
897 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
898 m
= message
+ *ip
- 1;
900 if (!(m
->m_flag
& (MANSWER
| MANSWERED
)))
901 m
->m_flag
|= MANSWER
| MANSWERED
;
908 c_unanswered(void *v
)
911 int *msgvec
= v
, *ip
;
914 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
915 m
= message
+ *ip
- 1;
917 if (m
->m_flag
& (MANSWER
| MANSWERED
)) {
918 m
->m_flag
&= ~(MANSWER
| MANSWERED
);
919 m
->m_flag
|= MUNANSWER
;
930 int *msgvec
= v
, *ip
;
933 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
934 m
= message
+ *ip
- 1;
936 if (!(m
->m_flag
& (MDRAFT
| MDRAFTED
)))
937 m
->m_flag
|= MDRAFT
| MDRAFTED
;
947 int *msgvec
= v
, *ip
;
950 for (ip
= msgvec
; *ip
!= 0; ++ip
) {
951 m
= message
+ *ip
- 1;
953 if (m
->m_flag
& (MDRAFT
| MDRAFTED
)) {
954 m
->m_flag
&= ~(MDRAFT
| MDRAFTED
);
955 m
->m_flag
|= MUNDRAFT
;