1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Collect input from standard input, handling ~ escapes.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2015 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. 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 collect
38 #ifndef HAVE_AMALGAMATION
42 /* The following hookiness with global variables is so that on receipt of an
43 * interrupt signal, the partial message can be salted away on *DEAD* */
45 static sighandler_type _coll_saveint
; /* Previous SIGINT value */
46 static sighandler_type _coll_savehup
; /* Previous SIGHUP value */
47 static sighandler_type _coll_savetstp
; /* Previous SIGTSTP value */
48 static sighandler_type _coll_savettou
; /* Previous SIGTTOU value */
49 static sighandler_type _coll_savettin
; /* Previous SIGTTIN value */
50 static FILE *_coll_fp
; /* File for saving away */
51 static int volatile _coll_hadintr
; /* Have seen one SIGINT so far */
52 static sigjmp_buf _coll_jmp
; /* To get back to work */
53 static int _coll_jmp_p
; /* whether to long jump */
54 static sigjmp_buf _coll_abort
; /* To end collection with error */
55 static sigjmp_buf _coll_pipejmp
; /* On broken pipe */
57 /* Handle `~:', `~_' */
58 static void _execute_command(struct header
*hp
, char *linebuf
,
61 /* If *interactive* is set and *doecho* is, too, also dump to *stdout* */
62 static int _include_file(char const *name
, int *linecount
,
63 int *charcount
, bool_t doecho
, bool_t indent
);
65 static void _collect_onpipe(int signo
);
67 /* Execute cmd and insert its standard output into fp */
68 static void insertcommand(FILE *fp
, char const *cmd
);
71 static void print_collf(FILE *collf
, struct header
*hp
);
73 /* Write a file, ex-like if f set */
74 static int exwrite(char const *name
, FILE *fp
, int f
);
76 /* Parse off the message header from fp and store relevant fields in hp,
77 * replace _coll_fp with a shiny new version without any header */
78 static enum okay
makeheader(FILE *fp
, struct header
*hp
, si8_t
*checkaddr_err
);
80 /* Edit the message being collected on fp. On return, make the edit file the
82 static void mesedit(int c
, struct header
*hp
);
84 /* Pipe the message through the command. Old message is on stdin of command,
85 * new message collected from stdout. Shell must return 0 to accept new msg */
86 static void mespipe(char *cmd
);
88 /* Interpolate the named messages into the current message, possibly doing
89 * indent stuff. The flag argument is one of the tilde escapes: [mMfFuU].
90 * Return a count of the number of characters now in the message, or -1 if an
91 * error is encountered writing the message temporary */
92 static int forward(char *ms
, FILE *fp
, int f
);
94 /* Print (continue) when continued after ^Z */
95 static void collstop(int s
);
97 /* On interrupt, come here to save the partial message in ~/dead.letter.
98 * Then jump out of the collection loop */
99 static void _collint(int s
);
101 static void collhup(int s
);
103 static int putesc(char const *s
, FILE *stream
);
106 _execute_command(struct header
*hp
, char *linebuf
, size_t linesize
)
108 /* The problem arises if there are rfc822 message attachments and the
109 * user uses `~:' to change the current file. TODO Unfortunately we
110 * TODO cannot simply keep a pointer to, or increment a reference count
111 * TODO of the current `file' (mailbox that is) object, because the
112 * TODO codebase doesn't deal with that at all; so, until some far
113 * TODO later time, copy the name of the path, and warn the user if it
114 * TODO changed; we COULD use the AC_TMPFILE attachment type, i.e.,
115 * TODO copy the message attachments over to temporary files, but that
116 * TODO would require more changes so that the user still can recognize
117 * TODO in `~@' etc. that its a rfc822 message attachment; see below */
119 size_t mnlen
= 0 /* silence CC */;
120 struct attachment
*ap
;
123 /* If the above todo is worked, remove or outsource to attachments.c! */
124 if ((ap
= hp
->h_attach
) != NULL
) do
126 mnlen
= strlen(mailname
) +1;
127 mnbuf
= ac_alloc(mnlen
);
128 memcpy(mnbuf
, mailname
, mnlen
);
131 while ((ap
= ap
->a_flink
) != NULL
);
133 pstate
&= ~PS_HOOK_MASK
;
134 execute(linebuf
, linesize
);
137 if (strncmp(mnbuf
, mailname
, mnlen
))
138 n_err(_("Mailbox changed: it is likely that existing "
139 "rfc822 attachments became invalid!\n"));
146 _include_file(char const *name
, int *linecount
, int *charcount
,
147 bool_t doecho
, bool_t indent
)
152 char *linebuf
= NULL
; /* TODO line pool */
153 size_t linesize
= 0, indl
, linelen
, cnt
;
156 if ((fbuf
= Fopen(name
, "r")) == NULL
) {
162 indb
= NULL
, indl
= 0;
164 if ((indb
= ok_vlook(indentprefix
)) == NULL
)
165 indb
= INDENT_DEFAULT
;
169 *linecount
= *charcount
= 0;
171 while (fgetline(&linebuf
, &linesize
, &cnt
, &linelen
, fbuf
, 0) != NULL
) {
172 if (indl
> 0 && fwrite(indb
, sizeof *indb
, indl
, _coll_fp
) != indl
)
174 if (fwrite(linebuf
, sizeof *linebuf
, linelen
, _coll_fp
) != linelen
)
177 (*charcount
) += linelen
+ indl
;
178 if ((options
& OPT_INTERACTIVE
) && doecho
) {
180 fwrite(indb
, sizeof *indb
, indl
, stdout
);
181 fwrite(linebuf
, sizeof *linebuf
, linelen
, stdout
);
184 if (fflush(_coll_fp
))
186 if ((options
& OPT_INTERACTIVE
) && doecho
)
200 _collect_onpipe(int signo
)
202 NYD_X
; /* Signal handler */
204 siglongjmp(_coll_pipejmp
, 1);
208 insertcommand(FILE *fp
, char const *cmd
)
215 cp
= ok_vlook(SHELL
);
219 if ((ibuf
= Popen(cmd
, "r", cp
, NULL
, 0)) != NULL
) {
220 while ((c
= getc(ibuf
)) != EOF
) /* XXX bytewise, yuck! */
229 print_collf(FILE *cf
, struct header
*hp
)
231 char *lbuf
= NULL
; /* TODO line pool */
232 sighandler_type sigint
;
233 FILE * volatile obuf
= stdout
;
234 struct attachment
*ap
;
237 size_t linesize
= 0, linelen
, cnt
, cnt2
;
241 cnt
= cnt2
= fsize(cf
);
243 sigint
= safe_signal(SIGINT
, SIG_IGN
);
245 if ((options
& OPT_INTERACTIVE
) && (cp
= ok_vlook(crt
)) != NULL
) {
249 if (hp
->h_to
!= NULL
)
251 if (hp
->h_subject
!= NULL
)
253 if (hp
->h_cc
!= NULL
)
255 if (hp
->h_bcc
!= NULL
)
257 if (hp
->h_attach
!= NULL
)
259 m
+= (hp
->h_from
!= NULL
|| myaddrs(hp
) != NULL
);
260 m
+= (hp
->h_sender
!= NULL
|| ok_vlook(sender
) != NULL
);
261 m
+= (hp
->h_replyto
!= NULL
|| ok_vlook(replyto
) != NULL
);
263 l
= (*cp
== '\0') ? screensize() : atoi(cp
);
268 for (m
= 0; fgetline(&lbuf
, &linesize
, &cnt2
, NULL
, cf
, 0); ++m
)
273 cp
= get_pager(NULL
);
274 if (sigsetjmp(_coll_pipejmp
, 1))
276 obuf
= Popen(cp
, "w", NULL
, NULL
, 1);
281 safe_signal(SIGPIPE
, &_collect_onpipe
);
285 fprintf(obuf
, _("-------\nMessage contains:\n"));
286 gf
= GIDENT
| GTO
| GSUBJECT
| GCC
| GBCC
| GNL
| GFILES
| GCOMMA
;
287 puthead(TRU1
, hp
, obuf
, gf
, SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
288 while (fgetline(&lbuf
, &linesize
, &cnt
, &linelen
, cf
, 1))
289 prout(lbuf
, linelen
, obuf
);
290 if (hp
->h_attach
!= NULL
) {
291 fputs(_("-------\nAttachments:\n"), obuf
);
292 for (ap
= hp
->h_attach
; ap
!= NULL
; ap
= ap
->a_flink
) {
294 fprintf(obuf
, " - message %u\n", ap
->a_msgno
);
296 /* TODO after MIME/send layer rewrite we *know*
297 * TODO the details of the attachment here,
298 * TODO so adjust this again, then */
299 char const *cs
, *csi
= "-> ";
301 if ((cs
= ap
->a_charset
) == NULL
&&
302 (csi
= "<- ", cs
= ap
->a_input_charset
) == NULL
)
303 cs
= charset_get_lc();
304 if ((cp
= ap
->a_content_type
) == NULL
)
306 else if (ascncasecmp(cp
, "text/", 5))
308 fprintf(obuf
, " - [%s, %s%s] %s\n", cp
, csi
, cs
, ap
->a_name
);
314 if (obuf
!= stdout
) {
315 safe_signal(SIGPIPE
, SIG_IGN
);
317 safe_signal(SIGPIPE
, dflpipe
);
321 safe_signal(SIGINT
, sigint
);
326 exwrite(char const *name
, FILE *fp
, int f
)
334 printf("\"%s\" ", name
);
337 if ((of
= Fopen(name
, "a")) == NULL
) {
344 while ((c
= getc(fp
)) != EOF
) {
356 printf(_("%d/%ld\n"), lc
, cc
);
365 makeheader(FILE *fp
, struct header
*hp
, si8_t
*checkaddr_err
)
372 if ((nf
= Ftmp(NULL
, "colhead", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
373 n_perr(_("temporary mail edit file"), 0);
377 extract_header(fp
, hp
, checkaddr_err
);
379 while ((c
= getc(fp
)) != EOF
) /* XXX bytewise, yuck! */
385 if (check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
)
394 mesedit(int c
, struct header
*hp
)
397 sighandler_type sigint
;
401 saved
= ok_blook(add_file_recipients
);
402 ok_bset(add_file_recipients
, TRU1
);
404 sigint
= safe_signal(SIGINT
, SIG_IGN
);
405 nf
= run_editor(_coll_fp
, (off_t
)-1, c
, FAL0
, hp
, NULL
, SEND_MBOX
, sigint
);
409 makeheader(nf
, hp
, NULL
);
411 fseek(nf
, 0L, SEEK_END
);
416 safe_signal(SIGINT
, sigint
);
418 ok_bset(add_file_recipients
, saved
);
426 sighandler_type sigint
;
430 sigint
= safe_signal(SIGINT
, SIG_IGN
);
432 if ((nf
= Ftmp(NULL
, "colpipe", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
433 n_perr(_("temporary mail edit file"), 0);
437 /* stdin = current message. stdout = new message */
438 if ((sh
= ok_vlook(SHELL
)) == NULL
)
441 if (run_command(sh
, 0, fileno(_coll_fp
), fileno(nf
), "-c", cmd
, NULL
, NULL
)
447 if (fsize(nf
) == 0) {
448 n_err(_("No bytes from \"%s\" !?\n"), cmd
);
454 fseek(nf
, 0L, SEEK_END
);
458 safe_signal(SIGINT
, sigint
);
463 forward(char *ms
, FILE *fp
, int f
)
466 struct ignoretab
*ig
;
468 enum sendaction action
;
471 msgvec
= salloc((size_t)(msgCount
+ 1) * sizeof *msgvec
);
472 if (getmsglist(ms
, msgvec
, 0) < 0)
475 *msgvec
= first(0, MMNORM
);
477 n_err(_("No appropriate messages\n"));
483 if (f
== 'f' || f
== 'F' || f
== 'u')
485 else if ((tabst
= ok_vlook(indentprefix
)) == NULL
)
486 tabst
= INDENT_DEFAULT
;
487 if (f
== 'u' || f
== 'U')
490 ig
= upperchar(f
) ? NULL
: ignore
;
491 action
= (upperchar(f
) && f
!= 'U') ? SEND_QUOTE_ALL
: SEND_QUOTE
;
493 printf(_("Interpolating:"));
494 for (; *msgvec
!= 0; ++msgvec
) {
495 struct message
*mp
= message
+ *msgvec
- 1;
498 printf(" %d", *msgvec
);
500 if (sendmp(mp
, fp
, ig
, tabst
, action
, NULL
) < 0) {
501 n_perr(_("temporary mail file"), 0);
515 sighandler_type old_action
;
517 NYD_X
; /* Signal handler */
519 old_action
= safe_signal(s
, SIG_DFL
);
523 sigprocmask(SIG_UNBLOCK
, &nset
, NULL
);
525 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
527 safe_signal(s
, old_action
);
531 siglongjmp(_coll_jmp
, 1);
538 NYD_X
; /* Signal handler */
540 /* the control flow is subtle, because we can be called from ~q */
541 if (_coll_hadintr
== 0) {
542 if (ok_blook(ignore
)) {
548 siglongjmp(_coll_jmp
, 1);
550 exit_status
|= EXIT_SEND_ERROR
;
552 savedeadletter(_coll_fp
, 1);
553 /* Aborting message, no need to fflush() .. */
554 siglongjmp(_coll_abort
, 1);
560 NYD_X
; /* Signal handler */
563 savedeadletter(_coll_fp
, 1);
564 /* Let's pretend nobody else wants to clean up, a true statement at
570 putesc(char const *s
, FILE *stream
)
575 while (s
[0] != '\0') {
578 if (putc('\t', stream
) == EOF
)
585 if (putc('\n', stream
) == EOF
)
592 if (putc(s
[0], stream
) == EOF
)
597 if (putc('\n', stream
) == EOF
)
606 collect(struct header
*hp
, int printheaders
, struct message
*mp
,
607 char *quotefile
, int doprefix
, si8_t
*checkaddr_err
)
609 struct ignoretab
*quoteig
;
611 int volatile escape
, getfields
;
612 char *linebuf
, *quote
;
614 size_t i
, linesize
; /* TODO line pool */
616 enum sendaction action
;
618 sighandler_type savedtop
;
619 FILE * volatile sigfp
;
625 linebuf
= quote
= NULL
;
627 /* Start catching signals from here, but we're still die on interrupts
628 * until we're in the main loop */
630 sigaddset(&nset
, SIGINT
);
631 sigaddset(&nset
, SIGHUP
);
632 sigprocmask(SIG_BLOCK
, &nset
, &oset
);
633 handlerpush(&_collint
);
634 if ((_coll_saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
635 safe_signal(SIGINT
, &_collint
);
636 if ((_coll_savehup
= safe_signal(SIGHUP
, SIG_IGN
)) != SIG_IGN
)
637 safe_signal(SIGHUP
, collhup
);
638 /* TODO We do a lot of redundant signal handling, especially
639 * TODO with the command line editor(s); try to merge this */
640 _coll_savetstp
= safe_signal(SIGTSTP
, collstop
);
641 _coll_savettou
= safe_signal(SIGTTOU
, collstop
);
642 _coll_savettin
= safe_signal(SIGTTIN
, collstop
);
643 if (sigsetjmp(_coll_abort
, 1))
645 if (sigsetjmp(_coll_jmp
, 1))
647 sigprocmask(SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
650 if ((_coll_fp
= Ftmp(NULL
, "collect", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
652 n_perr(_("temporary mail file"), 0);
657 char const *cp_obsolete
= ok_vlook(NAIL_HEAD
);
658 if(cp_obsolete
!= NULL
)
659 OBSOLETE(_("please use *message-inject-head* instead of *NAIL_HEAD*"));
661 if(((cp
= ok_vlook(message_inject_head
)) != NULL
||
662 (cp
= cp_obsolete
) != NULL
) && putesc(cp
, _coll_fp
) < 0)
666 /* If we are going to prompt for a subject, refrain from printing a newline
667 * after the headers (since some people mind) */
669 if (!(options
& OPT_t_FLAG
)) {
670 t
= GTO
| GSUBJECT
| GCC
| GNL
;
671 if (ok_blook(fullnames
))
674 if (options
& OPT_INTERACTIVE
) {
675 if (hp
->h_subject
== NULL
&& (ok_blook(ask
) || ok_blook(asksub
)))
676 t
&= ~GNL
, getfields
|= GSUBJECT
;
678 if (hp
->h_to
== NULL
)
679 t
&= ~GNL
, getfields
|= GTO
;
681 if (!ok_blook(bsdcompat
) && !ok_blook(askatend
)) {
682 if (hp
->h_bcc
== NULL
&& ok_blook(askbcc
))
683 t
&= ~GNL
, getfields
|= GBCC
;
684 if (hp
->h_cc
== NULL
&& ok_blook(askcc
))
685 t
&= ~GNL
, getfields
|= GCC
;
689 if (printheaders
&& !ok_blook(editalong
)) {
690 puthead(TRU1
, hp
, stdout
, t
, SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
695 /* Quote an original message */
696 if (mp
!= NULL
&& (doprefix
|| (quote
= ok_vlook(quote
)) != NULL
)) {
701 if ((cp
= ok_vlook(fwdheading
)) == NULL
)
702 cp
= "-------- Original Message --------";
703 if (*cp
!= '\0' && fprintf(_coll_fp
, "%s\n", cp
) < 0)
705 } else if (!strcmp(quote
, "noheading")) {
707 } else if (!strcmp(quote
, "headers")) {
709 } else if (!strcmp(quote
, "allheaders")) {
711 action
= SEND_QUOTE_ALL
;
713 cp
= hfield1("from", mp
);
714 if (cp
!= NULL
&& (cnt
= (long)strlen(cp
)) > 0) {
715 if (xmime_write(cp
, cnt
, _coll_fp
, CONV_FROMHDR
, TD_NONE
) < 0)
717 if (fprintf(_coll_fp
, _(" wrote:\n\n")) < 0)
721 if (fflush(_coll_fp
))
725 else if ((cp
= ok_vlook(indentprefix
)) == NULL
)
727 if (sendmp(mp
, _coll_fp
, quoteig
, cp
, action
, NULL
) < 0)
731 /* Print what we have sofar also on the terminal (if useful) */
732 if ((options
& OPT_INTERACTIVE
) && !ok_blook(editalong
)) {
734 while ((c
= getc(_coll_fp
)) != EOF
) /* XXX bytewise, yuck! */
736 if (fseek(_coll_fp
, 0, SEEK_END
))
738 /* Ensure this is clean xxx not really necessary? */
742 escape
= ((cp
= ok_vlook(escape
)) != NULL
) ? *cp
: ESCAPE
;
745 if (!sigsetjmp(_coll_jmp
, 1)) {
747 grab_headers(hp
, getfields
, 1);
748 if (quotefile
!= NULL
) {
749 if (_include_file(quotefile
, &lc
, &cc
, TRU1
, FAL0
) != 0)
752 if ((options
& OPT_INTERACTIVE
) && ok_blook(editalong
)) {
758 /* Come here for printing the after-signal message. Duplicate messages
759 * won't be printed because the write is aborted if we get a SIGTTOU */
761 n_err(_("\n(Interrupt -- one more to kill letter)\n"));
764 printf(_("(continue)\n"));
769 /* No tilde escapes, interrupts not expected. Simply copy STDIN */
770 if (!(options
& (OPT_INTERACTIVE
| OPT_t_FLAG
| OPT_TILDE_FLAG
))) {
771 linebuf
= srealloc(linebuf
, linesize
= LINESIZE
);
772 while ((i
= fread(linebuf
, sizeof *linebuf
, linesize
, stdin
)) > 0) {
773 if (i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
779 /* The interactive collect loop.
780 * All commands which come here are forbidden when sourcing! */
781 assert(_coll_hadintr
|| !(pstate
& PS_SOURCING
));
784 cnt
= readline_input("", FAL0
, &linebuf
, &linesize
, NULL
);
788 assert(!(pstate
& PS_SOURCING
));
789 if (options
& OPT_t_FLAG
) {
790 fflush_rewind(_coll_fp
);
791 /* It is important to set PS_t_FLAG before extract_header() *and*
792 * keep OPT_t_FLAG for the first parse of the message, too! */
794 if (makeheader(_coll_fp
, hp
, checkaddr_err
) != OKAY
)
796 options
&= ~OPT_t_FLAG
;
798 } else if ((options
& OPT_INTERACTIVE
) && ok_blook(ignoreeof
)) {
799 printf(_("*ignoreeof* set, use \"~.\" to terminate letter\n"));
807 if (cnt
== 0 || !(options
& (OPT_INTERACTIVE
| OPT_TILDE_FLAG
))) {
809 /* TODO calls putline(), which *always* appends LF;
810 * TODO thus, STDIN with -t will ALWAYS end with LF,
811 * TODO even if no trailing LF and QP encoding.
812 * TODO when finally changed, update cc-test.sh */
813 if (putline(_coll_fp
, linebuf
, cnt
) < 0)
816 } else if (linebuf
[0] == '.') {
817 if (linebuf
[1] == '\0' && (ok_blook(dot
) || ok_blook(ignoreeof
)))
820 if (linebuf
[0] != escape
)
823 if (!(options
& OPT_t_FLAG
))
824 n_tty_addhist(linebuf
, TRU1
);
829 /* On double escape, send a single one. Otherwise, it's an error */
831 if (putline(_coll_fp
, linebuf
+ 1, cnt
- 1) < 0)
836 n_err(_("Unknown tilde escape: ~%c\n"), asciichar(c
) ? c
: '?');
839 /* Shell escape, send the balance of line to sh -c */
840 c_shell(linebuf
+ 2);
845 /* Escape to command mode, but be nice! */
846 _execute_command(hp
, linebuf
+ 2, cnt
- 2);
849 /* Simulate end of file on input */
852 /* Same as 'q', but no *DEAD* saving */
855 /* Force a quit, act like an interrupt had happened */
857 _collint((c
== 'x') ? 0 : SIGINT
);
861 /* Grab a bunch of headers */
863 grab_headers(hp
, GTO
| GSUBJECT
| GCC
| GBCC
,
864 (ok_blook(bsdcompat
) && ok_blook(bsdorder
)));
865 while (hp
->h_to
== NULL
);
868 /* Grab extra headers */
870 grab_headers(hp
, GEXTRA
, 0);
871 while (check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
);
874 /* Add to the To list */
875 hp
->h_to
= cat(hp
->h_to
,
876 checkaddrs(lextract(linebuf
+ 2, GTO
| GFULL
), EACM_NORMAL
,
880 /* Set the Subject list */
882 while (whitechar(*cp
))
884 hp
->h_subject
= savestr(cp
);
892 /* Edit the attachment list */
893 if (linebuf
[2] != '\0')
894 append_attachments(&hp
->h_attach
, linebuf
+ 2);
896 edit_attachments(&hp
->h_attach
);
899 /* Add to the CC list */
900 hp
->h_cc
= cat(hp
->h_cc
,
901 checkaddrs(lextract(linebuf
+ 2, GCC
| GFULL
), EACM_NORMAL
,
905 /* Add stuff to blind carbon copies list */
906 hp
->h_bcc
= cat(hp
->h_bcc
,
907 checkaddrs(lextract(linebuf
+ 2, GBCC
| GFULL
), EACM_NORMAL
,
911 strncpy(linebuf
+ 2, getdeadletter(), linesize
- 2);
912 linebuf
[linesize
- 1] = '\0';
917 /* Invoke a file: Search for the file name, then open it and copy the
918 * contents to _coll_fp */
920 while (whitechar(*cp
))
923 n_err(_("Interpolate what file?\n"));
927 insertcommand(_coll_fp
, cp
+ 1);
930 if ((cp
= file_expand(cp
)) == NULL
)
933 n_err(_("\"%s\": Directory\n"), cp
);
936 printf(_("\"%s\" "), cp
);
938 if (_include_file(cp
, &lc
, &cc
, FAL0
, (c
== 'R')) != 0)
940 printf(_("%d/%d\n"), lc
, cc
);
943 /* Insert a variable into the file */
945 while (whitechar(*cp
))
947 if ((cp
= vok_vlook(cp
)) == NULL
|| *cp
== '\0')
949 if (putesc(cp
, _coll_fp
) < 0)
951 if ((options
& OPT_INTERACTIVE
) && putesc(cp
, stdout
) < 0)
956 /* Insert the contents of a signature variable */
957 cp
= (c
== 'a') ? ok_vlook(sign
) : ok_vlook(Sign
);
958 if (cp
!= NULL
&& *cp
!= '\0') {
959 if (putesc(cp
, _coll_fp
) < 0)
961 if ((options
& OPT_INTERACTIVE
) && putesc(cp
, stdout
) < 0)
966 /* Write the message on a file */
968 while (blankchar(*cp
))
970 if (*cp
== '\0' || (cp
= file_expand(cp
)) == NULL
) {
971 n_err(_("Write what file!?\n"));
975 if (exwrite(cp
, _coll_fp
, 1) < 0)
984 /* Interpolate the named messages, if we are in receiving mail mode.
985 * Does the standard list processing garbage. If ~f is given, we
986 * don't shift over */
987 if (forward(linebuf
+ 2, _coll_fp
, c
) < 0)
991 /* Print current state of the message without altering anything */
992 print_collf(_coll_fp
, hp
);
995 /* Pipe message through command. Collect output as new message */
997 mespipe(linebuf
+ 2);
1001 /* Edit the current message. 'e' -> use EDITOR, 'v' -> use VISUAL */
1003 mesedit(c
, ok_blook(editheaders
) ? hp
: NULL
);
1006 /* Last the lengthy help string. (Very ugly, but take care for
1007 * compiler supported string lengths :() */
1009 "TILDE ESCAPES (to be placed after a newline) excerpt:\n"
1010 "~. Commit and send message\n"
1011 "~: <command> Execute a mail command\n"
1012 "~<! <command> Insert output of command\n"
1013 "~@ [<files>] Edit attachment list\n"
1014 "~A Insert *Sign* variable (`~a' inserts *sign*)\n"
1015 "~c <users> Add users to Cc: list (`~b' for Bcc:)\n"
1016 "~d Read in *DEAD* (dead.letter)\n"
1017 "~e Edit message via *EDITOR*"
1020 "~F <msglist> Read in with headers, don't *indentprefix* lines\n"
1021 "~f <msglist> Like ~F, but honour `ignore' / `retain' configuration\n"
1022 "~H Edit From:, Reply-To: and Sender:\n"
1023 "~h Prompt for Subject:, To:, Cc: and \"blind\" Bcc:\n"
1024 "~i <variable> Insert a value and a newline\n"
1025 "~M <msglist> Read in with headers, *indentprefix* (`~m': `retain' etc.)\n"
1026 "~p Print current message compose buffer\n"
1027 "~r <file> Read in a file (`~R' *indentprefix* lines)"
1030 "~s <subject> Set Subject:\n"
1031 "~t <users> Add users to To: list\n"
1032 "~u <msglist> Read in message(s) without headers (`~U' indents lines)\n"
1033 "~v Edit message via *VISUAL*\n"
1034 "~w <file> Write message onto file\n"
1035 "~x Abort composition, discard message (`~q' saves in *DEAD*)\n"
1036 "~| <command> Pipe message through shell filter"
1043 /* Place signature? */
1044 if((cp
= ok_vlook(signature
)) != NULL
&& *cp
!= '\0'){
1045 if((quote
= file_expand(cp
)) == NULL
){
1046 n_err(_("*signature* expands to invalid file: \"%s\"\n"), cp
);
1049 if((sigfp
= Fopen(cp
= quote
, "r")) == NULL
){
1050 n_err(_("Can't open *signature* \"%s\": %s\n"), cp
, strerror(errno
));
1055 linebuf
= smalloc(linesize
= LINESIZE
);
1057 while((i
= fread(linebuf
, sizeof *linebuf
, linesize
, UNVOLATILE(sigfp
)))
1060 if(i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
1065 FILE *x
= UNVOLATILE(sigfp
);
1066 int e
= errno
, ise
= ferror(x
);
1072 n_err(_("Errors while reading *signature* \"%s\": %s\n"),
1078 if(c
!= '\0' && c
!= '\n')
1079 putc('\n', _coll_fp
);
1082 { char const *cp_obsolete
= ok_vlook(NAIL_TAIL
);
1084 if(cp_obsolete
!= NULL
)
1085 OBSOLETE(_("please use *message-inject-tail* instead of *NAIL_TAIL*"));
1087 if((cp
= ok_vlook(message_inject_tail
)) != NULL
||
1088 (cp
= cp_obsolete
) != NULL
){
1089 if(putesc(cp
, _coll_fp
) < 0)
1091 if((options
& OPT_INTERACTIVE
) && putesc(cp
, stdout
) < 0)
1096 if(fflush(_coll_fp
))
1101 if (linebuf
!= NULL
)
1106 sigaddset(&nset
, SIGINT
);
1107 sigaddset(&nset
, SIGHUP
);
1108 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
1109 safe_signal(SIGINT
, _coll_saveint
);
1110 safe_signal(SIGHUP
, _coll_savehup
);
1111 safe_signal(SIGTSTP
, _coll_savetstp
);
1112 safe_signal(SIGTTOU
, _coll_savettou
);
1113 safe_signal(SIGTTIN
, _coll_savettin
);
1114 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
1120 Fclose(UNVOLATILE(sigfp
));
1121 if (_coll_fp
!= NULL
) {
1129 savedeadletter(FILE *fp
, int fflush_rewind_first
)
1137 if ((options
& OPT_DEBUG
) || !ok_blook(save
))
1140 if (fflush_rewind_first
) {
1147 cp
= getdeadletter();
1149 dbuf
= Fopen(cp
, "a");
1156 printf("\"%s\" ", cp
);
1157 for (lines
= bytes
= 0; (c
= getc(fp
)) != EOF
; ++bytes
) {
1162 printf("%lu/%lu\n", lines
, bytes
);