1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Collect input from standard input, handling ~ escapes.
3 *@ TODO This needs a complete rewrite, with carriers, etc.
5 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
6 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
9 * Copyright (c) 1980, 1993
10 * The Regents of the University of California. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #define n_FILE collect
39 #ifndef HAVE_AMALGAMATION
43 struct a_coll_ocs_arg
{
44 sighandler_type coa_opipe
;
45 sighandler_type coa_oint
;
46 FILE *coa_stdin
; /* The descriptor (pipe(2)+Fdopen()) we read from */
47 FILE *coa_stdout
; /* The Popen()ed pipe through which we write to the hook */
48 int coa_pipe
[2]; /* ..backing .coa_stdin */
49 si8_t
*coa_senderr
; /* Set to 1 on failure */
50 char coa_cmd
[n_VFIELD_SIZE(0)];
53 /* The following hookiness with global variables is so that on receipt of an
54 * interrupt signal, the partial message can be salted away on *DEAD* */
56 static sighandler_type _coll_saveint
; /* Previous SIGINT value */
57 static sighandler_type _coll_savehup
; /* Previous SIGHUP value */
58 static FILE *_coll_fp
; /* File for saving away */
59 static int volatile _coll_hadintr
; /* Have seen one SIGINT so far */
60 static sigjmp_buf _coll_jmp
; /* To get back to work */
61 static sigjmp_buf _coll_abort
; /* To end collection with error */
62 static char const *a_coll_ocs__macname
; /* *on-compose-splice* */
64 /* Handle `~:', `~_' and some hooks; hp may be NULL */
65 static void _execute_command(struct header
*hp
, char const *linebuf
,
69 static si32_t
a_coll_include_file(char const *name
, bool_t indent
,
72 /* Execute cmd and insert its standard output into fp, return errno */
73 static si32_t
a_coll_insert_cmd(FILE *fp
, char const *cmd
);
76 static void print_collf(FILE *collf
, struct header
*hp
);
78 /* Write a file, ex-like if f set */
79 static si32_t
a_coll_write(char const *name
, FILE *fp
, int f
);
81 /* *message-inject-head* */
82 static bool_t
a_coll_message_inject_head(FILE *fp
);
84 /* Parse off the message header from fp and store relevant fields in hp,
85 * replace _coll_fp with a shiny new version without any header */
86 static bool_t
a_coll_makeheader(FILE *fp
, struct header
*hp
,
87 si8_t
*checkaddr_err
, bool_t do_delayed_due_t
);
89 /* Edit the message being collected on fp. On return, make the edit file the
90 * new temp file. Return errno */
91 static si32_t
a_coll_edit(int c
, struct header
*hp
);
93 /* Pipe the message through the command. Old message is on stdin of command,
94 * new message collected from stdout. Shell must return 0 to accept new msg */
95 static si32_t
a_coll_pipe(char const *cmd
);
97 /* Interpolate the named messages into the current message, possibly doing
98 * indent stuff. The flag argument is one of the command escapes: [mMfFuU].
100 static si32_t
a_coll_forward(char const *ms
, FILE *fp
, int f
);
103 static bool_t
a_collect_plumbing(char const *ms
, struct header
*p
);
105 static bool_t
a_collect__plumb_header(char const *cp
, struct header
*p
,
107 static bool_t
a_collect__plumb_attach(char const *cp
, struct header
*p
,
110 /* On interrupt, come here to save the partial message in ~/dead.letter.
111 * Then jump out of the collection loop */
112 static void _collint(int s
);
114 static void collhup(int s
);
116 /* ~[AaIi], *message-inject-**: put value, expand \[nt] if *posix* */
117 static bool_t
a_coll_putesc(char const *s
, bool_t addnl
, FILE *stream
);
119 /* *on-compose-splice* driver and *on-compose-splice(-shell)?* finalizer */
120 static int a_coll_ocs__mac(void);
121 static void a_coll_ocs__finalize(void *vp
);
124 _execute_command(struct header
*hp
, char const *linebuf
, size_t linesize
){
125 /* The problem arises if there are rfc822 message attachments and the
126 * user uses `~:' to change the current file. TODO Unfortunately we
127 * TODO cannot simply keep a pointer to, or increment a reference count
128 * TODO of the current `file' (mailbox that is) object, because the
129 * TODO codebase doesn't deal with that at all; so, until some far
130 * TODO later time, copy the name of the path, and warn the user if it
131 * TODO changed; we COULD use the AC_TMPFILE attachment type, i.e.,
132 * TODO copy the message attachments over to temporary files, but that
133 * TODO would require more changes so that the user still can recognize
134 * TODO in `~@' etc. that its a rfc822 message attachment; see below */
136 struct attachment
*ap
;
137 char * volatile mnbuf
;
143 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_HUP
| n_SIGMAN_INT
| n_SIGMAN_QUIT
){
147 n_pstate_err_no
= n_ERR_INTR
;
152 /* If the above todo is worked, remove or outsource to attachment.c! */
153 if(hp
!= NULL
&& (ap
= hp
->h_attach
) != NULL
) do
155 mnbuf
= sstrdup(mailname
);
158 while((ap
= ap
->a_flink
) != NULL
);
160 n_go_command(n_GO_INPUT_CTX_COMPOSE
, linebuf
);
162 n_sigman_cleanup_ping(&sm
);
165 if(strcmp(mnbuf
, mailname
))
166 n_err(_("Mailbox changed: it is likely that existing "
167 "rfc822 attachments became invalid!\n"));
171 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
175 a_coll_include_file(char const *name
, bool_t indent
, bool_t writestat
){
177 char const *heredb
, *indb
;
178 size_t linesize
, heredl
, indl
, cnt
, linelen
;
186 linebuf
= NULL
; /* TODO line pool */
191 /* The -M case is special */
192 if(name
== (char*)-1){
195 }else if(name
[0] == '-' &&
196 (name
[1] == '\0' || blankspacechar(name
[1]))){
199 if(!(n_psonce
& n_PSO_INTERACTIVE
)){
200 n_err(_("~< -: HERE-delimiter required in non-interactive mode\n"));
205 for(heredb
= &name
[2]; *heredb
!= '\0' && blankspacechar(*heredb
);
208 if((heredl
= strlen(heredb
)) == 0){
210 n_err(_("~< - HERE-delimiter: delimiter must not be empty\n"));
216 for(indb
= ++heredb
; *indb
!= '\0' && *indb
!= '\''; ++indb
)
219 n_err(_("~< - HERE-delimiter: missing trailing quote\n"));
222 }else if(indb
[1] != '\0'){
223 n_err(_("~< - HERE-delimiter: trailing characters after "
228 if((heredl
= PTR2SIZE(indb
- heredb
)) == 0)
230 heredb
= savestrbuf(heredb
, heredl
);
234 }else if((fbuf
= Fopen(name
, "r")) == NULL
){
235 n_perr(name
, rv
= n_err_no
);
239 indl
= indent
? strlen(indb
= ok_vlook(indentprefix
)) : 0;
243 while(fgetline(&linebuf
, &linesize
, (fbuf
== n_stdin
? NULL
: &cnt
),
244 &linelen
, fbuf
, 0) != NULL
){
245 if(heredl
> 0 && heredl
== linelen
- 1 &&
246 !memcmp(heredb
, linebuf
, heredl
)){
252 if(fwrite(indb
, sizeof *indb
, indl
, _coll_fp
) != indl
){
259 if(fwrite(linebuf
, sizeof *linebuf
, linelen
, _coll_fp
) != linelen
){
266 if(fflush(_coll_fp
)){
272 rv
= n_ERR_NOTOBACCO
;
284 fprintf(n_stdout
, "%s%s %" PRId64
"/%" PRId64
"\n",
285 n_shexp_quote_cp(name
, FAL0
), (rv
? " " n_ERROR
: n_empty
), lc
, cc
);
291 a_coll_insert_cmd(FILE *fp
, char const *cmd
){
300 if((ibuf
= Popen(cmd
, "r", ok_vlook(SHELL
), NULL
, 0)) != NULL
){
303 while((c
= getc(ibuf
)) != EOF
){ /* XXX bytewise, yuck! */
304 if(putc(c
, fp
) == EOF
){
312 if(!feof(ibuf
) || ferror(ibuf
)){
316 if(!Pclose(ibuf
, TRU1
)){
321 n_perr(cmd
, rv
= n_err_no
);
323 fprintf(n_stdout
, "CMD%s %" PRId64
"/%" PRId64
"\n",
324 (rv
== n_ERR_NONE
? n_empty
: " " n_ERROR
), lc
, cc
);
330 print_collf(FILE *cf
, struct header
*hp
)
334 size_t cnt
, linesize
, linelen
;
338 cnt
= (size_t)fsize(cf
);
340 if((obuf
= Ftmp(NULL
, "collfp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
){
341 n_perr(_("Can't create temporary file for `~p' command"), 0);
347 fprintf(obuf
, _("-------\nMessage contains:\n")); /* xxx SEARCH112 */
348 puthead(TRU1
, hp
, obuf
,
349 (GIDENT
| GTO
| GSUBJECT
| GCC
| GBCC
| GNL
| GFILES
| GCOMMA
),
350 SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
354 while(fgetline(&lbuf
, &linesize
, &cnt
, &linelen
, cf
, 1))
355 prout(lbuf
, linelen
, obuf
);
359 if(hp
->h_attach
!= NULL
){
360 fputs(_("-------\nAttachments:\n"), obuf
);
361 n_attachment_list_print(hp
->h_attach
, obuf
);
366 page_or_print(obuf
, 0);
374 a_coll_write(char const *name
, FILE *fp
, int f
)
385 fprintf(n_stdout
, "%s ", n_shexp_quote_cp(name
, FAL0
));
389 if ((of
= Fopen(name
, "a")) == NULL
) {
390 n_perr(name
, rv
= n_err_no
);
395 while ((c
= getc(fp
)) != EOF
) {
399 if (putc(c
, of
) == EOF
) {
400 n_perr(name
, rv
= n_err_no
);
404 fprintf(n_stdout
, _("%" PRId64
"/%" PRId64
"\n"), lc
, cc
);
414 putc('\n', n_stdout
);
419 a_coll_message_inject_head(FILE *fp
){
421 char const *cp
, *cp_obsolete
;
424 cp_obsolete
= ok_vlook(NAIL_HEAD
);
425 if(cp_obsolete
!= NULL
)
426 n_OBSOLETE(_("please use *message-inject-head*, not *NAIL_HEAD*"));
428 if(((cp
= ok_vlook(message_inject_head
)) != NULL
||
429 (cp
= cp_obsolete
) != NULL
) && !a_coll_putesc(cp
, TRU1
, fp
))
438 a_coll_makeheader(FILE *fp
, struct header
*hp
, si8_t
*checkaddr_err
,
439 bool_t do_delayed_due_t
)
448 if ((nf
= Ftmp(NULL
, "colhead", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
449 n_perr(_("temporary mail edit file"), 0);
453 n_header_extract(fp
, hp
, (do_delayed_due_t
? TRU1
: TRUM1
), checkaddr_err
);
454 if (checkaddr_err
!= NULL
&& *checkaddr_err
!= 0)
457 /* In template mode some things have been delayed until the template has
459 if(do_delayed_due_t
){
462 if((cp
= ok_vlook(on_compose_enter
)) != NULL
){
463 setup_from_and_sender(hp
);
464 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
468 if(!a_coll_message_inject_head(nf
))
472 while ((c
= getc(fp
)) != EOF
) /* XXX bytewise, yuck! */
481 if (check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
)
492 a_coll_edit(int c
, struct header
*hp
) /* TODO error(return) weird */
496 sighandler_type
volatile sigint
;
497 struct name
*saved_in_reply_to
;
502 n_UNINIT(sigint
, SIG_ERR
);
505 if(!(saved_filrec
= ok_blook(add_file_recipients
)))
506 ok_bset(add_file_recipients
);
508 saved_in_reply_to
= NULL
;
512 if((np
= hp
->h_in_reply_to
) == NULL
)
513 hp
->h_in_reply_to
= np
= n_header_setup_in_reply_to(hp
);
515 saved_in_reply_to
= ndup(np
, np
->n_type
);
518 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_ALL
){
520 sigint
= safe_signal(SIGINT
, SIG_IGN
);
527 nf
= run_editor(_coll_fp
, (off_t
)-1, c
, FAL0
, hp
, NULL
, SEND_MBOX
, sigint
);
530 if(!a_coll_makeheader(nf
, hp
, NULL
, FAL0
))
532 /* Break the thread if In-Reply-To: has been modified */
533 if(hp
->h_in_reply_to
== NULL
|| (saved_in_reply_to
!= NULL
&&
534 asccasecmp(hp
->h_in_reply_to
->n_fullname
,
535 saved_in_reply_to
->n_fullname
)))
538 fseek(nf
, 0L, SEEK_END
);
545 n_sigman_cleanup_ping(&sm
);
548 ok_bclear(add_file_recipients
);
549 safe_signal(SIGINT
, sigint
);
551 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
556 a_coll_pipe(char const *cmd
)
560 sighandler_type sigint
;
565 sigint
= safe_signal(SIGINT
, SIG_IGN
);
567 if ((nf
= Ftmp(NULL
, "colpipe", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
568 n_perr(_("temporary mail edit file"), rv
= n_err_no
);
572 /* stdin = current message. stdout = new message */
574 if (n_child_run(ok_vlook(SHELL
), 0, fileno(_coll_fp
), fileno(nf
), "-c",
575 cmd
, NULL
, NULL
, &ws
) < 0 || WEXITSTATUS(ws
) != 0) {
581 if (fsize(nf
) == 0) {
582 n_err(_("No bytes from %s !?\n"), n_shexp_quote_cp(cmd
, FAL0
));
589 fseek(nf
, 0L, SEEK_END
);
593 safe_signal(SIGINT
, sigint
);
599 a_coll_forward(char const *ms
, FILE *fp
, int f
)
602 struct n_ignore
const *itp
;
604 enum sendaction action
;
607 msgvec
= n_autorec_alloc((size_t)(msgCount
+ 1) * sizeof *msgvec
);
608 if (getmsglist(ms
, msgvec
, 0) < 0) {
609 rv
= n_ERR_NOENT
; /* XXX not really, should be handled there! */
613 *msgvec
= first(0, MMNORM
);
615 n_err(_("No appropriate messages\n"));
622 if (f
== 'f' || f
== 'F' || f
== 'u')
625 tabst
= ok_vlook(indentprefix
);
626 if (f
== 'u' || f
== 'U')
629 itp
= upperchar(f
) ? NULL
: n_IGNORE_TYPE
;
630 action
= (upperchar(f
) && f
!= 'U') ? SEND_QUOTE_ALL
: SEND_QUOTE
;
632 fprintf(n_stdout
, _("Interpolating:"));
634 for (; *msgvec
!= 0; ++msgvec
) {
635 struct message
*mp
= message
+ *msgvec
- 1;
638 fprintf(n_stdout
, " %d", *msgvec
);
640 if (sendmp(mp
, fp
, itp
, tabst
, action
, NULL
) < 0) {
641 n_perr(_("forward: temporary mail file"), 0);
648 fprintf(n_stdout
, "\n");
655 a_collect_plumbing(char const *ms
, struct header
*hp
){
656 /* TODO _collect_plumbing: instead of fields the basic headers should
657 * TODO be in an array and have IDs, like in termcap etc., so then this
658 * TODO could be simplified as table-walks. Also true for arg-checks! */
660 char const *cp
, *cmd
[4];
663 /* Protcol version for *on-compose-splice** -- update manual on change! */
664 #define a_COLL_PLUMBING_VERSION "0 0 1"
670 for(i
= 0; i
< n_NELEM(cmd
); ++i
){ /* TODO trim+strlist_split(_ifs?)() */
671 while(blankchar(*cp
))
676 if(i
< n_NELEM(cmd
) - 1)
677 for(cmd
[i
] = cp
++; *cp
!= '\0' && !blankchar(*cp
); ++cp
)
680 /* Last slot takes all the rest of the line, less trailing WS */
681 for(cmd
[i
] = cp
++; *cp
!= '\0'; ++cp
)
683 while(blankchar(cp
[-1]))
686 cmd
[i
] = savestrbuf(cmd
[i
], PTR2SIZE(cp
- cmd
[i
]));
691 if(n_UNLIKELY(cmd
[0] == NULL
))
693 if(is_asccaseprefix(cmd
[0], "header"))
694 rv
= a_collect__plumb_header(cp
, hp
, cmd
);
695 else if(is_asccaseprefix(cmd
[0], "attachment"))
696 rv
= a_collect__plumb_attach(cp
, hp
, cmd
);
699 fputs("500\n", n_stdout
);
709 a_collect__plumb_header(char const *cp
, struct header
*hp
,
712 struct n_header_field
*hfp
;
713 struct name
*np
, **npp
;
719 if(is_asccaseprefix(cmd
[1], "insert")){ /* TODO LOGIC BELONGS head.c
720 * TODO That is: Header::factory(string) -> object (blahblah).
721 * TODO I.e., as long as we don't have regular RFC compliant parsers
722 * TODO which differentiate in between structured and unstructured
723 * TODO header fields etc., a little workaround */
726 enum expand_addr_check_mode eacm
;
730 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
733 /* Strip [\r\n] which would render a body invalid XXX all controls? */
737 cmd
[3] = xp
= savestr(cmd
[3]);
738 for(; (c
= *xp
) != '\0'; ++xp
)
739 if(c
== '\n' || c
== '\r')
743 if(!asccasecmp(cmd
[2], cp
= "Subject")){
744 if(cmd
[3][0] != '\0'){
745 if(hp
->h_subject
!= NULL
)
746 hp
->h_subject
= savecatsep(hp
->h_subject
, ' ', cmd
[3]);
748 hp
->h_subject
= n_UNCONST(cmd
[3]);
749 fprintf(n_stdout
, "210 %s 1\n", cp
);
756 ntype
= GEXTRA
| GFULL
| GFULLEXTRA
;
759 if(!asccasecmp(cmd
[2], cp
= "From")){
763 if((np
= lextract(cmd
[3], ntype
)) == NULL
)
766 if((np
= checkaddrs(np
, eacm
, &aerr
), aerr
!= 0)){
767 fprintf(n_stdout
, "505 %s\n", cp
);
771 /* Go to the end of the list, track whether it contains any
772 * non-deleted entries */
774 if((xnp
= *npp
) != NULL
)
775 for(;; xnp
= xnp
->n_flink
){
776 if(!(xnp
->n_type
& GDEL
))
778 if(xnp
->n_flink
== NULL
)
782 if(!mult_ok
&& (i
!= 0 || np
->n_flink
!= NULL
))
783 fprintf(n_stdout
, "506 %s\n", cp
);
790 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", cp
, ++i
);
794 if(!asccasecmp(cmd
[2], cp
= "Sender")){
799 if(!asccasecmp(cmd
[2], cp
= "To")){
802 eacm
= EACM_NORMAL
| EAF_NAME
;
805 if(!asccasecmp(cmd
[2], cp
= "Cc")){
808 eacm
= EACM_NORMAL
| EAF_NAME
;
811 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
813 ntype
= GBCC
| GFULL
;
814 eacm
= EACM_NORMAL
| EAF_NAME
;
817 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
818 npp
= &hp
->h_reply_to
;
822 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
827 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
829 npp
= &hp
->h_message_id
;
834 if(!asccasecmp(cmd
[2], cp
= "References")){
840 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
841 npp
= &hp
->h_in_reply_to
;
847 if((cp
= n_header_is_standard(cmd
[2], UIZ_MAX
)) != NULL
){
848 fprintf(n_stdout
, "505 %s\n", cp
);
852 /* Free-form header fields */
855 struct n_header_field
**hfpp
;
857 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
858 if(!fieldnamechar(*cp
)){
863 for(i
= 0, hfpp
= &hp
->h_user_headers
; *hfpp
!= NULL
; ++i
)
864 hfpp
= &(*hfpp
)->hf_next
;
866 nl
= strlen(cp
= cmd
[2]) +1;
867 bl
= strlen(cmd
[3]) +1;
868 *hfpp
= hfp
= n_autorec_alloc(n_VSTRUCT_SIZEOF(struct n_header_field
,
873 memcpy(&hfp
->hf_dat
[0], cp
, nl
);
874 memcpy(&hfp
->hf_dat
[nl
], cmd
[3], bl
);
875 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", &hfp
->hf_dat
[0], ++i
);
880 if(is_asccaseprefix(cmd
[1], "list")){
883 fputs("210", n_stdout
);
884 if(hp
->h_subject
!= NULL
) fputs(" Subject", n_stdout
);
885 if(hp
->h_from
!= NULL
) fputs(" From", n_stdout
);
886 if(hp
->h_sender
!= NULL
) fputs(" Sender", n_stdout
);
887 if(hp
->h_to
!= NULL
) fputs(" To", n_stdout
);
888 if(hp
->h_cc
!= NULL
) fputs(" Cc", n_stdout
);
889 if(hp
->h_bcc
!= NULL
) fputs(" Bcc", n_stdout
);
890 if(hp
->h_reply_to
!= NULL
) fputs(" Reply-To", n_stdout
);
891 if(hp
->h_mft
!= NULL
) fputs(" Mail-Followup-To", n_stdout
);
892 if(hp
->h_message_id
!= NULL
) fputs(" Message-ID", n_stdout
);
893 if(hp
->h_ref
!= NULL
) fputs(" References", n_stdout
);
894 if(hp
->h_in_reply_to
!= NULL
) fputs(" In-Reply-To", n_stdout
);
895 if(hp
->h_mailx_command
!= NULL
) fputs(" Mailx-Command", n_stdout
);
896 if(hp
->h_mailx_raw_to
!= NULL
) fputs(" Mailx-Raw-To", n_stdout
);
897 if(hp
->h_mailx_raw_cc
!= NULL
) fputs(" Mailx-Raw-Cc", n_stdout
);
898 if(hp
->h_mailx_raw_bcc
!= NULL
) fputs(" Mailx-Raw-Bcc", n_stdout
);
899 if(hp
->h_mailx_orig_from
!= NULL
) fputs(" Mailx-Orig-From", n_stdout
);
900 if(hp
->h_mailx_orig_to
!= NULL
) fputs(" Mailx-Orig-To", n_stdout
);
901 if(hp
->h_mailx_orig_cc
!= NULL
) fputs(" Mailx-Orig-Cc", n_stdout
);
902 if(hp
->h_mailx_orig_bcc
!= NULL
) fputs(" Mailx-Orig-Bcc", n_stdout
);
904 /* Print only one instance of each free-form header */
905 for(hfp
= hp
->h_user_headers
; hfp
!= NULL
; hfp
= hfp
->hf_next
){
906 struct n_header_field
*hfpx
;
908 for(hfpx
= hp
->h_user_headers
;; hfpx
= hfpx
->hf_next
)
911 fputs(&hfp
->hf_dat
[0], n_stdout
);
913 }else if(!asccasecmp(&hfpx
->hf_dat
[0], &hfp
->hf_dat
[0]))
916 putc('\n', n_stdout
);
923 if(!asccasecmp(cmd
[2], cp
= "Subject")){
924 np
= (hp
->h_subject
!= NULL
) ? (struct name
*)-1 : NULL
;
927 if(!asccasecmp(cmd
[2], cp
= "From")){
930 fprintf(n_stdout
, "%s %s\n", (np
== NULL
? "501" : "210"), cp
);
933 if(!asccasecmp(cmd
[2], cp
= "Sender")){
937 if(!asccasecmp(cmd
[2], cp
= "To")){
941 if(!asccasecmp(cmd
[2], cp
= "Cc")){
945 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
949 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
953 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
957 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
958 np
= hp
->h_message_id
;
961 if(!asccasecmp(cmd
[2], cp
= "References")){
965 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
966 np
= hp
->h_in_reply_to
;
970 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command")){
971 np
= (hp
->h_mailx_command
!= NULL
) ? (struct name
*)-1 : NULL
;
974 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-To")){
975 np
= hp
->h_mailx_raw_to
;
978 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc")){
979 np
= hp
->h_mailx_raw_cc
;
982 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc")){
983 np
= hp
->h_mailx_raw_bcc
;
986 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-From")){
987 np
= hp
->h_mailx_orig_from
;
990 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-To")){
991 np
= hp
->h_mailx_orig_to
;
994 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc")){
995 np
= hp
->h_mailx_orig_cc
;
998 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
999 np
= hp
->h_mailx_orig_bcc
;
1003 /* Free-form header fields */
1004 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1005 if(!fieldnamechar(*cp
)){
1010 for(hfp
= hp
->h_user_headers
;; hfp
= hfp
->hf_next
){
1013 else if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1014 fprintf(n_stdout
, "210 %s\n", &hfp
->hf_dat
[0]);
1021 if(is_asccaseprefix(cmd
[1], "remove")){
1022 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1025 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1026 if(hp
->h_subject
!= NULL
){
1027 hp
->h_subject
= NULL
;
1028 fprintf(n_stdout
, "210 %s\n", cp
);
1034 if(!asccasecmp(cmd
[2], cp
= "From")){
1039 fprintf(n_stdout
, "210 %s\n", cp
);
1044 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1045 npp
= &hp
->h_sender
;
1048 if(!asccasecmp(cmd
[2], cp
= "To")){
1052 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1056 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1060 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1061 npp
= &hp
->h_reply_to
;
1064 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1068 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1069 npp
= &hp
->h_message_id
;
1072 if(!asccasecmp(cmd
[2], cp
= "References")){
1076 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1077 npp
= &hp
->h_in_reply_to
;
1081 if((cp
= n_header_is_standard(cmd
[2], UIZ_MAX
)) != NULL
){
1082 fprintf(n_stdout
, "505 %s\n", cp
);
1086 /* Free-form header fields (note j501cp may print non-normalized name) */
1088 struct n_header_field
**hfpp
;
1091 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1092 if(!fieldnamechar(*cp
)){
1098 for(any
= FAL0
, hfpp
= &hp
->h_user_headers
; (hfp
= *hfpp
) != NULL
;){
1099 if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1100 *hfpp
= hfp
->hf_next
;
1102 fprintf(n_stdout
, "210 %s\n", &hfp
->hf_dat
[0]);
1105 hfpp
= &hfp
->hf_next
;
1113 if(is_asccaseprefix(cmd
[1], "remove-at")){
1114 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1117 if((n_idec_uiz_cp(&i
, cmd
[3], 0, NULL
1118 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1119 ) != n_IDEC_STATE_CONSUMED
|| i
== 0){
1120 fputs("505\n", n_stdout
);
1124 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1125 if(hp
->h_subject
!= NULL
&& i
== 1){
1126 hp
->h_subject
= NULL
;
1127 fprintf(n_stdout
, "210 %s 1\n", cp
);
1133 if(!asccasecmp(cmd
[2], cp
= "From")){
1136 if((np
= *npp
) == NULL
)
1138 while(--i
!= 0 && np
!= NULL
)
1143 if(np
->n_blink
!= NULL
)
1144 np
->n_blink
->n_flink
= np
->n_flink
;
1147 if(np
->n_flink
!= NULL
)
1148 np
->n_flink
->n_blink
= np
->n_blink
;
1150 fprintf(n_stdout
, "210 %s\n", cp
);
1153 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1154 npp
= &hp
->h_sender
;
1157 if(!asccasecmp(cmd
[2], cp
= "To")){
1161 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1165 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1169 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1170 npp
= &hp
->h_reply_to
;
1173 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1177 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1178 npp
= &hp
->h_message_id
;
1181 if(!asccasecmp(cmd
[2], cp
= "References")){
1185 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1186 npp
= &hp
->h_in_reply_to
;
1190 if((cp
= n_header_is_standard(cmd
[2], UIZ_MAX
)) != NULL
){
1191 fprintf(n_stdout
, "505 %s\n", cp
);
1195 /* Free-form header fields */
1197 struct n_header_field
**hfpp
;
1199 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1200 if(!fieldnamechar(*cp
)){
1206 for(hfpp
= &hp
->h_user_headers
; (hfp
= *hfpp
) != NULL
;){
1208 *hfpp
= hfp
->hf_next
;
1209 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", &hfp
->hf_dat
[0], i
);
1212 hfpp
= &hfp
->hf_next
;
1220 if(is_asccaseprefix(cmd
[1], "show")){
1221 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1224 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1225 if(hp
->h_subject
== NULL
)
1227 fprintf(n_stdout
, "212 %s\n%s\n\n", cp
, hp
->h_subject
);
1231 if(!asccasecmp(cmd
[2], cp
= "From")){
1235 fprintf(n_stdout
, "211 %s\n", cp
);
1236 do if(!(np
->n_type
& GDEL
))
1237 fprintf(n_stdout
, "%s %s\n", np
->n_name
, np
->n_fullname
);
1238 while((np
= np
->n_flink
) != NULL
);
1239 putc('\n', n_stdout
);
1244 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1248 if(!asccasecmp(cmd
[2], cp
= "To")){
1252 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1256 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1260 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1261 np
= hp
->h_reply_to
;
1264 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1268 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1269 np
= hp
->h_message_id
;
1272 if(!asccasecmp(cmd
[2], cp
= "References")){
1276 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1277 np
= hp
->h_in_reply_to
;
1281 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command")){
1282 if(hp
->h_mailx_command
== NULL
)
1284 fprintf(n_stdout
, "212 %s\n%s\n\n", cp
, hp
->h_mailx_command
);
1287 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-To")){
1288 np
= hp
->h_mailx_raw_to
;
1291 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc")){
1292 np
= hp
->h_mailx_raw_cc
;
1295 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc")){
1296 np
= hp
->h_mailx_raw_bcc
;
1299 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-From")){
1300 np
= hp
->h_mailx_orig_from
;
1303 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-To")){
1304 np
= hp
->h_mailx_orig_to
;
1307 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc")){
1308 np
= hp
->h_mailx_orig_cc
;
1311 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
1312 np
= hp
->h_mailx_orig_bcc
;
1316 /* Free-form header fields */
1320 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1321 if(!fieldnamechar(*cp
)){
1327 for(any
= FAL0
, hfp
= hp
->h_user_headers
; hfp
!= NULL
;
1328 hfp
= hfp
->hf_next
){
1329 if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1331 fprintf(n_stdout
, "212 %s\n", &hfp
->hf_dat
[0]);
1333 fprintf(n_stdout
, "%s\n", &hfp
->hf_dat
[hfp
->hf_nl
+1]);
1337 putc('\n', n_stdout
);
1345 fputs("500\n", n_stdout
);
1349 return (cp
!= NULL
);
1352 fputs("501 ", n_stdout
);
1353 fputs(cp
, n_stdout
);
1354 putc('\n', n_stdout
);
1359 a_collect__plumb_attach(char const *cp
, struct header
*hp
,
1360 char const *cmd
[4]){
1362 struct attachment
*ap
;
1368 if(is_asccaseprefix(cmd
[1], "attribute")){
1369 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1372 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], NULL
)) != NULL
){
1374 fprintf(n_stdout
, "212 %s\n", cmd
[2]);
1376 fprintf(n_stdout
, "message-number %d\n\n", ap
->a_msgno
);
1379 "creation-name %s\nopen-path %s\nfilename %s\n",
1380 ap
->a_path_user
, ap
->a_path
, ap
->a_name
);
1381 if(ap
->a_content_description
!= NULL
)
1382 fprintf(n_stdout
, "content-description %s\n",
1383 ap
->a_content_description
);
1384 if(ap
->a_content_id
!= NULL
)
1385 fprintf(n_stdout
, "content-id %s\n",
1386 ap
->a_content_id
->n_name
);
1387 if(ap
->a_content_type
!= NULL
)
1388 fprintf(n_stdout
, "content-type %s\n", ap
->a_content_type
);
1389 if(ap
->a_content_disposition
!= NULL
)
1390 fprintf(n_stdout
, "content-disposition %s\n",
1391 ap
->a_content_disposition
);
1392 putc('\n', n_stdout
);
1395 fputs("501\n", n_stdout
);
1399 if(is_asccaseprefix(cmd
[1], "attribute-at")){
1402 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1405 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1406 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1407 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1408 fputs("505\n", n_stdout
);
1410 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1415 fputs("501\n", n_stdout
);
1420 if(is_asccaseprefix(cmd
[1], "attribute-set")){
1421 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1424 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], NULL
)) != NULL
){
1427 fputs("505\n", n_stdout
);
1432 while((c
= *cp
) != '\0' && !blankchar(c
))
1434 keyw
= savestrbuf(cmd
[3], PTR2SIZE(cp
- cmd
[3]));
1436 for(; (c
= *++cp
) != '\0' && blankchar(c
);)
1441 /* Strip [\r\n] which would render a parameter invalid XXX
1442 * XXX all controls? */
1443 cp
= xp
= savestr(cp
);
1444 for(; (c
= *xp
) != '\0'; ++xp
)
1445 if(c
== '\n' || c
== '\r')
1451 if(!asccasecmp(keyw
, "filename"))
1452 ap
->a_name
= (c
== '\0') ? ap
->a_path_bname
: cp
;
1453 else if(!asccasecmp(keyw
, "content-description"))
1454 ap
->a_content_description
= (c
== '\0') ? NULL
: cp
;
1455 else if(!asccasecmp(keyw
, "content-id")){
1456 ap
->a_content_id
= NULL
;
1461 np
= checkaddrs(lextract(cp
, GREF
),
1462 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG
|
1464 if(np
!= NULL
&& np
->n_flink
== NULL
)
1465 ap
->a_content_id
= np
;
1469 }else if(!asccasecmp(keyw
, "content-type"))
1470 ap
->a_content_type
= (c
== '\0') ? NULL
: cp
;
1471 else if(!asccasecmp(keyw
, "content-disposition"))
1472 ap
->a_content_disposition
= (c
== '\0') ? NULL
: cp
;
1479 for(i
= 0; ap
!= NULL
; ++i
, ap
= ap
->a_blink
)
1481 fprintf(n_stdout
, "210 %" PRIuZ
"\n", i
);
1483 fputs("505\n", n_stdout
);
1486 fputs("501\n", n_stdout
);
1490 if(is_asccaseprefix(cmd
[1], "attribute-set-at")){
1493 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1496 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1497 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1498 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1499 fputs("505\n", n_stdout
);
1501 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1506 fputs("501\n", n_stdout
);
1511 if(is_asccaseprefix(cmd
[1], "insert")){
1512 enum n_attach_error aerr
;
1514 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1517 hp
->h_attach
= n_attachment_append(hp
->h_attach
, cmd
[2], &aerr
, &ap
);
1519 case n_ATTACH_ERR_FILE_OPEN
: cp
= "505\n"; goto jatt_ins
;
1520 case n_ATTACH_ERR_ICONV_FAILED
: cp
= "506\n"; goto jatt_ins
;
1521 case n_ATTACH_ERR_ICONV_NAVAIL
:
1522 case n_ATTACH_ERR_OTHER
:
1526 fputs(cp
, n_stdout
);
1528 case n_ATTACH_ERR_NONE
:{
1531 for(i
= 0; ap
!= NULL
; ++i
, ap
= ap
->a_blink
)
1533 fprintf(n_stdout
, "210 %" PRIuZ
"\n", i
);
1539 if(is_asccaseprefix(cmd
[1], "list")){
1544 if((ap
= hp
->h_attach
) != NULL
){
1545 fputs("212\n", n_stdout
);
1547 fprintf(n_stdout
, "%s\n", ap
->a_path_user
);
1548 while((ap
= ap
->a_flink
) != NULL
);
1549 putc('\n', n_stdout
);
1551 fputs("501\n", n_stdout
);
1555 if(is_asccaseprefix(cmd
[1], "remove")){
1556 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1559 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], &status
)) != NULL
){
1561 fputs("506\n", n_stdout
);
1563 hp
->h_attach
= n_attachment_remove(hp
->h_attach
, ap
);
1564 fprintf(n_stdout
, "210 %s\n", cmd
[2]);
1567 fputs("501\n", n_stdout
);
1571 if(is_asccaseprefix(cmd
[1], "remove-at")){
1574 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1577 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1578 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1579 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1580 fputs("505\n", n_stdout
);
1582 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1585 hp
->h_attach
= n_attachment_remove(hp
->h_attach
, ap
);
1586 fprintf(n_stdout
, "210 %s\n", cmd
[2]);
1588 fputs("501\n", n_stdout
);
1594 fputs("500\n", n_stdout
);
1598 return (cp
!= NULL
);
1604 NYD_X
; /* Signal handler */
1606 /* the control flow is subtle, because we can be called from ~q */
1607 if (_coll_hadintr
== 0) {
1608 if (ok_blook(ignore
)) {
1609 fputs("@\n", n_stdout
);
1614 siglongjmp(_coll_jmp
, 1);
1616 n_exit_status
|= n_EXIT_SEND_ERROR
;
1618 savedeadletter(_coll_fp
, TRU1
);
1619 /* Aborting message, no need to fflush() .. */
1620 siglongjmp(_coll_abort
, 1);
1626 NYD_X
; /* Signal handler */
1629 savedeadletter(_coll_fp
, TRU1
);
1630 /* Let's pretend nobody else wants to clean up, a true statement at
1636 a_coll_putesc(char const *s
, bool_t addnl
, FILE *stream
){
1641 isposix
= ok_blook(posix
);
1643 while((c1
= *s
++) != '\0'){
1644 if(c1
== '\\' && ((c2
= *s
) == 't' || c2
== 'n')){
1646 isposix
= TRU1
; /* TODO v15 OBSOLETE! */
1647 n_err(_("Compose mode warning: expanding \\t or \\n in variable "
1649 "\n Support remains only for ~A,~a,~I,~i in *posix* mode!\n"));
1652 c1
= (c2
== 't') ? '\t' : '\n';
1655 if(putc(c1
, stream
) == EOF
)
1659 if(addnl
&& putc('\n', stream
) == EOF
)
1664 return (c1
== '\0');
1668 a_coll_ocs__mac(void){
1669 /* Executes in a fork(2)ed child TODO if remains, global MASKs for those! */
1670 setvbuf(n_stdin
, NULL
, _IOLBF
, 0);
1671 setvbuf(n_stdout
, NULL
, _IOLBF
, 0);
1672 n_psonce
&= ~(n_PSO_INTERACTIVE
| n_PSO_TTYIN
| n_PSO_TTYOUT
);
1673 n_pstate
|= n_PS_COMPOSE_FORKHOOK
;
1674 n_readctl_overlay
= NULL
; /* TODO we need OnForkEvent! See c_readctl() */
1675 if(n_poption
& n_PO_D_VV
){
1678 snprintf(buf
, sizeof buf
, "[%d]%s", getpid(), ok_vlook(log_prefix
));
1679 ok_vset(log_prefix
, buf
);
1681 /* TODO If that uses `!' it will effectively SIG_IGN SIGINT, ...and such */
1682 temporary_compose_mode_hook_call(a_coll_ocs__macname
, NULL
, NULL
);
1687 a_coll_ocs__finalize(void *vp
){
1688 /* Note we use this for destruction upon setup errors, thus */
1689 sighandler_type opipe
;
1690 sighandler_type oint
;
1691 struct a_coll_ocs_arg
**coapp
, *coap
;
1694 temporary_compose_mode_hook_call((char*)-1, NULL
, NULL
);
1696 coap
= *(coapp
= vp
);
1697 *coapp
= (struct a_coll_ocs_arg
*)-1;
1699 if(coap
->coa_stdin
!= NULL
)
1700 Fclose(coap
->coa_stdin
);
1701 else if(coap
->coa_pipe
[0] != -1)
1702 close(coap
->coa_pipe
[0]);
1704 if(coap
->coa_stdout
!= NULL
&& !Pclose(coap
->coa_stdout
, TRU1
))
1705 *coap
->coa_senderr
= 111;
1706 if(coap
->coa_pipe
[1] != -1)
1707 close(coap
->coa_pipe
[1]);
1709 opipe
= coap
->coa_opipe
;
1710 oint
= coap
->coa_oint
;
1715 safe_signal(SIGPIPE
, opipe
);
1716 safe_signal(SIGINT
, oint
);
1722 n_temporary_compose_hook_varset(void *arg
){ /* TODO v15: drop */
1729 if((val
= hp
->h_subject
) == NULL
)
1731 ok_vset(mailx_subject
, val
);
1732 if((val
= detract(hp
->h_from
, GNAMEONLY
)) == NULL
)
1734 ok_vset(mailx_from
, val
);
1735 if((val
= detract(hp
->h_sender
, GNAMEONLY
)) == NULL
)
1737 ok_vset(mailx_sender
, val
);
1738 if((val
= detract(hp
->h_to
, GNAMEONLY
)) == NULL
)
1740 ok_vset(mailx_to
, val
);
1741 if((val
= detract(hp
->h_cc
, GNAMEONLY
)) == NULL
)
1743 ok_vset(mailx_cc
, val
);
1744 if((val
= detract(hp
->h_bcc
, GNAMEONLY
)) == NULL
)
1746 ok_vset(mailx_bcc
, val
);
1748 if((val
= hp
->h_mailx_command
) == NULL
)
1750 ok_vset(mailx_command
, val
);
1752 if((val
= detract(hp
->h_mailx_raw_to
, GNAMEONLY
)) == NULL
)
1754 ok_vset(mailx_raw_to
, val
);
1755 if((val
= detract(hp
->h_mailx_raw_cc
, GNAMEONLY
)) == NULL
)
1757 ok_vset(mailx_raw_cc
, val
);
1758 if((val
= detract(hp
->h_mailx_raw_bcc
, GNAMEONLY
)) == NULL
)
1760 ok_vset(mailx_raw_bcc
, val
);
1762 if((val
= detract(hp
->h_mailx_orig_from
, GNAMEONLY
)) == NULL
)
1764 ok_vset(mailx_orig_from
, val
);
1765 if((val
= detract(hp
->h_mailx_orig_to
, GNAMEONLY
)) == NULL
)
1767 ok_vset(mailx_orig_to
, val
);
1768 if((val
= detract(hp
->h_mailx_orig_cc
, GNAMEONLY
)) == NULL
)
1770 ok_vset(mailx_orig_cc
, val
);
1771 if((val
= detract(hp
->h_mailx_orig_bcc
, GNAMEONLY
)) == NULL
)
1773 ok_vset(mailx_orig_bcc
, val
);
1778 collect(struct header
*hp
, int printheaders
, struct message
*mp
,
1779 char const *quotefile
, int doprefix
, si8_t
*checkaddr_err
)
1781 struct n_string s
, * volatile sp
;
1782 struct n_ignore
const *quoteitp
;
1783 struct a_coll_ocs_arg
*coap
;
1785 int volatile t
, eofcnt
, getfields
;
1786 char volatile escape
;
1791 a_COAP_NOSIGTERM
= 1u<<8
1792 #define a_HARDERR() ((flags & (a_ERREXIT | a_IGNERR)) == a_ERREXIT)
1795 char const *cp
, *cp_base
, * volatile coapm
, * volatile ifs_saved
;
1796 size_t i
, linesize
; /* TODO line pool */
1798 enum sendaction action
;
1799 sigset_t oset
, nset
;
1800 FILE * volatile sigfp
;
1809 ifs_saved
= coapm
= NULL
;
1813 /* Start catching signals from here, but we're still die on interrupts
1814 * until we're in the main loop */
1816 sigprocmask(SIG_BLOCK
, &nset
, &oset
);
1817 if ((_coll_saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1818 safe_signal(SIGINT
, &_collint
);
1819 if ((_coll_savehup
= safe_signal(SIGHUP
, SIG_IGN
)) != SIG_IGN
)
1820 safe_signal(SIGHUP
, collhup
);
1821 if (sigsetjmp(_coll_abort
, 1))
1823 if (sigsetjmp(_coll_jmp
, 1))
1825 n_pstate
|= n_PS_COMPOSE_MODE
;
1826 sigprocmask(SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
1828 if ((_coll_fp
= Ftmp(NULL
, "collect", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
1830 n_perr(_("collect: temporary mail file"), 0);
1834 /* If we are going to prompt for a subject, refrain from printing a newline
1835 * after the headers (since some people mind) */
1837 if(!(n_poption
& n_PO_t_FLAG
)){
1838 t
= GTO
| GSUBJECT
| GCC
| GNL
;
1839 if(ok_blook(fullnames
))
1842 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
)){
1843 if(hp
->h_subject
== NULL
&& ok_blook(asksub
)/* *ask* auto warped! */)
1844 t
&= ~GNL
, getfields
|= GSUBJECT
;
1846 if(hp
->h_to
== NULL
)
1847 t
&= ~GNL
, getfields
|= GTO
;
1849 if(!ok_blook(bsdcompat
) && !ok_blook(askatend
)){
1850 if(ok_blook(askbcc
))
1851 t
&= ~GNL
, getfields
|= GBCC
;
1853 t
&= ~GNL
, getfields
|= GCC
;
1862 if (!sigsetjmp(_coll_jmp
, 1)) {
1863 /* Ask for some headers first, as necessary */
1865 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, getfields
, 1);
1867 /* Execute compose-enter; delayed for -t mode */
1868 if(!(n_poption
& n_PO_t_FLAG
) &&
1869 (cp
= ok_vlook(on_compose_enter
)) != NULL
){
1870 setup_from_and_sender(hp
);
1871 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
1875 /* TODO Mm: nope since it may require turning this into a multipart one */
1876 if(!(n_poption
& (n_PO_Mm_FLAG
| n_PO_t_FLAG
))){
1877 if(!a_coll_message_inject_head(_coll_fp
))
1880 /* Quote an original message */
1881 if (mp
!= NULL
&& (doprefix
|| (cp
= ok_vlook(quote
)) != NULL
)) {
1882 quoteitp
= n_IGNORE_ALL
;
1883 action
= SEND_QUOTE
;
1885 char const *cp_v15compat
;
1887 quoteitp
= n_IGNORE_FWD
;
1889 if((cp_v15compat
= ok_vlook(fwdheading
)) != NULL
)
1890 n_OBSOLETE(_("please use *forward-inject-head*, "
1891 "not *fwdheading*"));
1892 cp
= ok_vlook(forward_inject_head
);
1893 if(cp
== NULL
&& (cp
= cp_v15compat
) == NULL
)
1894 cp
= "-------- Original Message --------";
1895 if (*cp
!= '\0' && fprintf(_coll_fp
, "%s\n", cp
) < 0)
1897 } else if (!strcmp(cp
, "noheading")) {
1899 } else if (!strcmp(cp
, "headers")) {
1900 quoteitp
= n_IGNORE_TYPE
;
1901 } else if (!strcmp(cp
, "allheaders")) {
1903 action
= SEND_QUOTE_ALL
;
1905 cp
= hfield1("from", mp
);
1906 if (cp
!= NULL
&& (cnt
= (long)strlen(cp
)) > 0) {
1907 if (xmime_write(cp
, cnt
, _coll_fp
, CONV_FROMHDR
, TD_NONE
,
1910 if (fprintf(_coll_fp
, _(" wrote:\n\n")) < 0)
1914 if (fflush(_coll_fp
))
1916 if (sendmp(mp
, _coll_fp
, quoteitp
,
1917 (doprefix
? NULL
: ok_vlook(indentprefix
)),
1923 if (quotefile
!= NULL
) {
1924 if((n_pstate_err_no
= a_coll_include_file(quotefile
, FAL0
, FAL0
)
1929 if(n_psonce
& n_PSO_INTERACTIVE
){
1930 if(!(n_pstate
& n_PS_SOURCING
)){
1931 sp
= n_string_creat_auto(&s
);
1932 sp
= n_string_reserve(sp
, 80);
1935 if(!(n_poption
& n_PO_Mm_FLAG
) && !(n_pstate
& n_PS_ROBOT
)){
1936 /* Print what we have sofar also on the terminal (if useful) */
1937 if((cp
= ok_vlook(editalong
)) == NULL
){
1939 puthead(TRU1
, hp
, n_stdout
, t
,
1940 SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
1943 while ((c
= getc(_coll_fp
)) != EOF
) /* XXX bytewise, yuck! */
1945 if (fseek(_coll_fp
, 0, SEEK_END
))
1949 if(a_coll_edit(((*cp
== 'v') ? 'v' : 'e'), hp
) != n_ERR_NONE
)
1951 /* Print msg mandated by the Mail Reference Manual */
1953 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
))
1954 fputs(_("(continue)\n"), n_stdout
);
1960 /* Come here for printing the after-signal message. Duplicate messages
1961 * won't be printed because the write is aborted if we get a SIGTTOU */
1962 if(_coll_hadintr
&& (n_psonce
& n_PSO_INTERACTIVE
) &&
1963 !(n_pstate
& n_PS_ROBOT
))
1964 n_err(_("\n(Interrupt -- one more to kill letter)\n"));
1967 /* If not under shell hook control */
1969 /* We're done with -M or -m TODO because: we are too stupid yet, above */
1970 if(n_poption
& n_PO_Mm_FLAG
)
1972 /* No command escapes, interrupts not expected. Simply copy STDIN */
1973 if(!(n_psonce
& n_PSO_INTERACTIVE
) &&
1974 !(n_poption
& (n_PO_t_FLAG
| n_PO_TILDE_FLAG
))){
1975 linebuf
= n_realloc(linebuf
, linesize
= LINESIZE
);
1976 while ((i
= fread(linebuf
, sizeof *linebuf
, linesize
, n_stdin
)) > 0) {
1977 if (i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
1984 /* The interactive collect loop */
1986 escape
= *ok_vlook(escape
);
1987 flags
= ok_blook(errexit
) ? a_ERREXIT
: a_NONE
;
1990 enum {a_HIST_NONE
, a_HIST_ADD
= 1u<<0, a_HIST_GABBY
= 1u<<1} hist
;
1993 enum n_go_input_flags gif
;
1996 /* TODO optimize: no need to evaluate that anew for each loop tick! */
1997 gif
= n_GO_INPUT_CTX_COMPOSE
;
1998 histadd
= (sp
!= NULL
);
1999 if((n_psonce
& n_PSO_INTERACTIVE
) || (n_poption
& n_PO_TILDE_FLAG
)){
2000 if(!(n_poption
& n_PO_t_FLAG
) || (n_psonce
& n_PSO_t_FLAG_DONE
))
2001 gif
|= n_GO_INPUT_NL_ESC
;
2003 cnt
= n_go_input(gif
, n_empty
, &linebuf
, &linesize
, NULL
, &histadd
);
2004 hist
= histadd
? a_HIST_ADD
| a_HIST_GABBY
: a_HIST_NONE
;
2010 if((n_poption
& n_PO_t_FLAG
) && !(n_psonce
& n_PSO_t_FLAG_DONE
)){
2011 fflush_rewind(_coll_fp
);
2012 n_psonce
|= n_PSO_t_FLAG_DONE
;
2013 if(!a_coll_makeheader(_coll_fp
, hp
, checkaddr_err
, TRU1
))
2016 }else if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
) &&
2017 ok_blook(ignoreeof
) && ++eofcnt
< 4){
2019 _("*ignoreeof* set, use `~.' to terminate letter\n"));
2020 n_go_input_clearerr();
2031 else if(coap
== NULL
){
2032 if(!(n_psonce
& n_PSO_INTERACTIVE
) && !(n_poption
& n_PO_TILDE_FLAG
))
2034 else if(cp
[0] == '.'){
2035 if(cnt
== 1 && (ok_blook(dot
) ||
2036 (ok_blook(posix
) && ok_blook(ignoreeof
))))
2040 if(cp
[0] != escape
){
2042 if(fwrite(cp
, sizeof *cp
, cnt
, _coll_fp
) != (size_t)cnt
)
2044 /* TODO n_PS_READLINE_NL is a terrible hack to ensure that _in_all_-
2045 * TODO _code_paths_ a file without trailing newline isn't modified
2046 * TODO to contain one; the "saw-newline" needs to be part of an
2047 * TODO I/O input machinery object */
2049 if(n_pstate
& n_PS_READLINE_NL
){
2050 if(putc('\n', _coll_fp
) == EOF
)
2056 c
= *(cp_base
= ++cp
);
2060 /* Avoid history entry? */
2061 while(spacechar(c
)){
2063 c
= *(cp_base
= ++cp
);
2068 /* It may just be an escaped escaped character, do that quick */
2072 /* Avoid hard *errexit*? */
2081 /* Trim input, also to gain a somewhat normalized history entry */
2086 x
.s
= n_UNCONST(cp
);
2088 n_str_trim_ifs(&x
, TRU1
);
2091 cnt
= (int)/*XXX*/x
.l
;
2094 if(hist
!= a_HIST_NONE
){
2095 sp
= n_string_assign_c(sp
, escape
);
2096 if(flags
& a_IGNERR
)
2097 sp
= n_string_push_c(sp
, '-');
2098 sp
= n_string_push_c(sp
, c
);
2100 sp
= n_string_push_c(sp
, ' ');
2101 sp
= n_string_push_buf(sp
, cp
, cnt
);
2105 /* Switch over all command escapes */
2109 char buf
[sizeof(n_UNIREPL
)];
2112 buf
[0] = c
, buf
[1] = '\0';
2113 else if(n_psonce
& n_PSO_UNICODE
)
2114 memcpy(buf
, n_unirepl
, sizeof n_unirepl
);
2116 buf
[0] = '?', buf
[1] = '\0';
2117 n_err(_("Unknown command escape: `%c%s'\n"), escape
, buf
);
2120 n_err(_("Invalid command escape usage: %s\n"),
2121 n_shexp_quote_cp(linebuf
, FAL0
));
2124 n_pstate_err_no
= n_ERR_INVAL
;
2128 /* Shell escape, send the balance of line to sh -c */
2129 if(cnt
== 0 || coap
!= NULL
)
2132 char const *argv
[2];
2136 n_pstate_ex_no
= c_shell(argv
); /* TODO history norm.; errexit? */
2140 /* Simulate end of file on input */
2141 if(cnt
!= 0 || coap
!= NULL
)
2143 goto jout
; /* TODO does not enter history, thus */
2146 /* Escape to command mode, but be nice! *//* TODO command expansion
2147 * TODO should be handled here so that we have unique history! */
2150 _execute_command(hp
, cp
, cnt
);
2151 if(ok_blook(errexit
))
2154 flags
&= ~a_ERREXIT
;
2155 if(n_pstate_ex_no
!= 0 && a_HARDERR())
2158 escape
= *ok_vlook(escape
);
2159 hist
&= ~a_HIST_GABBY
;
2161 /* case '<': <> 'd' */
2163 #ifdef HAVE_UISTRINGS
2165 "COMMAND ESCAPES (to be placed after a newline) excerpt:\n"
2166 "~. Commit and send message\n"
2167 "~: <command> Execute an internal command\n"
2168 "~< <file> Insert <file> (\"~<! <command>\" inserts shell command)\n"
2169 "~@ [<files>] Edit[/Add] attachments (file[=input-charset[#output-charset]])\n"
2170 "~c <users> Add users to Cc: list (`~b': to Bcc:)\n"
2171 "~d Read in $DEAD (dead.letter)\n"
2172 "~e Edit message via $EDITOR\n"
2173 "~F <msglist> Read in with headers, do not *indentprefix* lines\n"
2176 "~f <msglist> Like ~F, but honour `ignore' / `retain' configuration\n"
2177 "~H Edit From:, Reply-To: and Sender:\n"
2178 "~h Prompt for Subject:, To:, Cc: and \"blind\" Bcc:\n"
2179 "~i <variable> Insert a value and a newline\n"
2180 "~M <msglist> Read in with headers, *indentprefix* (`~m': `retain' etc.)\n"
2181 "~p Show current message compose buffer\n"
2182 "~r <file> Insert <file> (`~R': likewise, but *indentprefix* lines)\n"
2183 " <file> may also be <- [HERE-DELIMITER]>\n"
2186 "~s <subject> Set Subject:\n"
2187 "~t <users> Add users to To: list\n"
2188 "~u <msglist> Read in message(s) without headers (`~U': indent lines)\n"
2189 "~v Edit message via $VISUAL\n"
2190 "~w <file> Write message onto file\n"
2191 "~x Abort composition, discard message (`~q': save in $DEAD)\n"
2192 "~| <command> Pipe message through shell filter\n"
2194 #endif /* HAVE_UISTRINGS */
2197 n_pstate_err_no
= n_ERR_NONE
;
2201 struct attachment
*aplist
;
2203 /* Edit the attachment list */
2204 aplist
= hp
->h_attach
;
2205 hp
->h_attach
= NULL
;
2207 hp
->h_attach
= n_attachment_append_list(aplist
, cp
);
2209 hp
->h_attach
= n_attachment_list_edit(aplist
,
2210 n_GO_INPUT_CTX_COMPOSE
);
2211 n_pstate_err_no
= n_ERR_NONE
; /* XXX ~@ does NOT handle $!/$?! */
2212 n_pstate_ex_no
= 0; /* XXX */
2215 if(!a_collect_plumbing(cp
, hp
)){
2216 if(ferror(_coll_fp
))
2220 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2221 n_pstate_ex_no
= 0; /* XXX */
2222 hist
&= ~a_HIST_GABBY
;
2224 /* case '_': <> ':' */
2226 /* Pipe message through command. Collect output as new message */
2230 if((n_pstate_err_no
= a_coll_pipe(cp
)) == n_ERR_NONE
)
2232 else if(a_HARDERR())
2236 hist
&= ~a_HIST_GABBY
;
2240 /* Insert the contents of a sign variable */
2243 cp
= (c
== 'a') ? ok_vlook(sign
) : ok_vlook(Sign
);
2246 /* Add stuff to blind carbon copies list TODO join 'c' */
2254 if((np
= checkaddrs(lextract(cp
, GBCC
| GFULL
), EACM_NORMAL
, &soe
)
2256 hp
->h_bcc
= cat(hp
->h_bcc
, np
);
2258 n_pstate_err_no
= n_ERR_NONE
;
2262 n_pstate_err_no
= (soe
< 0) ? n_ERR_PERM
: n_ERR_INVAL
;
2265 hist
&= ~a_HIST_GABBY
;
2268 /* Add to the CC list TODO join 'b' */
2276 if((np
= checkaddrs(lextract(cp
, GCC
| GFULL
), EACM_NORMAL
, &soe
)
2278 hp
->h_cc
= cat(hp
->h_cc
, np
);
2280 n_pstate_err_no
= n_ERR_NONE
;
2284 n_pstate_err_no
= (soe
< 0) ? n_ERR_PERM
: n_ERR_INVAL
;
2287 hist
&= ~a_HIST_GABBY
;
2292 cp
= n_getdeadletter();
2297 /* Invoke a file: Search for the file name, then open it and copy
2298 * the contents to _coll_fp */
2300 n_err(_("Interpolate what file?\n"));
2303 n_pstate_err_no
= n_ERR_NOENT
;
2307 if(*cp
== '!' && c
== '<'){
2308 /* TODO hist. normalization */
2309 if((n_pstate_err_no
= a_coll_insert_cmd(_coll_fp
, ++cp
)
2311 if(ferror(_coll_fp
))
2320 /* Note this also expands things like
2321 * !:vput vexpr delim random 0
2323 if((cp
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
| FEXP_NSHELL
)
2327 n_pstate_err_no
= n_ERR_INVAL
;
2332 if(n_is_dir(cp
, FAL0
)){
2333 n_err(_("%s: is a directory\n"), n_shexp_quote_cp(cp
, FAL0
));
2336 n_pstate_err_no
= n_ERR_ISDIR
;
2340 if((n_pstate_err_no
= a_coll_include_file(cp
, (c
== 'R'), TRU1
)
2342 if(ferror(_coll_fp
))
2349 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2350 n_pstate_ex_no
= 0; /* XXX */
2354 /* Edit the current message. 'e' -> use EDITOR, 'v' -> use VISUAL */
2355 if(cnt
!= 0 || coap
!= NULL
)
2358 if((n_pstate_err_no
= a_coll_edit(c
, ok_blook(editheaders
) ? hp
: NULL
)
2361 else if(ferror(_coll_fp
))
2363 else if(a_HARDERR())
2374 /* Interpolate the named messages, if we are in receiving mail mode.
2375 * Does the standard list processing garbage. If ~f is given, we
2376 * don't shift over */
2377 if((n_pstate_err_no
= a_coll_forward(cp
, _coll_fp
, c
)) == n_ERR_NONE
)
2379 else if(ferror(_coll_fp
))
2381 else if(a_HARDERR())
2387 /* Grab extra headers */
2391 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, GEXTRA
, 0);
2392 while(check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
);
2393 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2394 n_pstate_ex_no
= 0; /* XXX */
2397 /* Grab a bunch of headers */
2401 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
,
2402 (GTO
| GSUBJECT
| GCC
| GBCC
),
2403 (ok_blook(bsdcompat
) && ok_blook(bsdorder
)));
2404 while(hp
->h_to
== NULL
);
2405 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2406 n_pstate_ex_no
= 0; /* XXX */
2410 /* Insert a variable into the file */
2413 cp
= n_var_vlook(cp
, TRU1
);
2415 if(cp
== NULL
|| *cp
== '\0')
2417 if(!a_coll_putesc(cp
, (c
!= 'I'), _coll_fp
))
2419 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
) &&
2420 !a_coll_putesc(cp
, (c
!= 'I'), n_stdout
))
2422 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2423 n_pstate_ex_no
= 0; /* XXX */
2425 /* case 'M': <> 'F' */
2426 /* case 'm': <> 'f' */
2428 /* Print current state of the message without altering anything */
2431 print_collf(_coll_fp
, hp
); /* XXX pstate_err_no ++ */
2432 if(ferror(_coll_fp
))
2434 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2435 n_pstate_ex_no
= 0; /* XXX */
2439 /* Force a quit, act like an interrupt had happened */
2442 /* If we are running a splice hook, assume it quits on its own now,
2443 * otherwise we (no true out-of-band IPC to signal this state, XXX sic)
2444 * have to SIGTERM it in order to stop this wild beast */
2445 flags
|= a_COAP_NOSIGTERM
;
2447 _collint((c
== 'x') ? 0 : SIGINT
);
2450 /* case 'R': <> 'd' */
2451 /* case 'r': <> 'd' */
2453 /* Set the Subject list */
2456 /* Subject:; take care for Debian #419840 and strip any \r and \n */
2457 if(n_anyof_cp("\n\r", hp
->h_subject
= savestr(cp
))){
2460 n_err(_("-s: normalizing away invalid ASCII NL / CR bytes\n"));
2461 for(xp
= hp
->h_subject
; *xp
!= '\0'; ++xp
)
2462 if(*xp
== '\n' || *xp
== '\r')
2464 n_pstate_err_no
= n_ERR_INVAL
;
2467 n_pstate_err_no
= n_ERR_NONE
;
2472 /* Add to the To: list TODO join 'b', 'c' */
2480 if((np
= checkaddrs(lextract(cp
, GTO
| GFULL
), EACM_NORMAL
, &soe
)
2482 hp
->h_to
= cat(hp
->h_to
, np
);
2484 n_pstate_err_no
= n_ERR_NONE
;
2488 n_pstate_err_no
= (soe
< 0) ? n_ERR_PERM
: n_ERR_INVAL
;
2491 hist
&= ~a_HIST_GABBY
;
2493 /* case 'U': <> 'F' */
2494 /* case 'u': <> 'f' */
2495 /* case 'v': <> 'e' */
2497 /* Write the message on a file */
2500 if((cp
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
){
2501 n_err(_("Write what file!?\n"));
2504 n_pstate_err_no
= n_ERR_INVAL
;
2509 if((n_pstate_err_no
= a_coll_write(cp
, _coll_fp
, 1)) == n_ERR_NONE
)
2511 else if(ferror(_coll_fp
))
2513 else if(a_HARDERR())
2518 /* case 'x': <> 'q' */
2521 /* Finally place an entry in history as applicable */
2527 if(hist
& a_HIST_ADD
){
2528 /* Do not add *escape* to the history in order to allow history search
2529 * to be handled generically in the MLE regardless of actual *escape*
2531 n_tty_addhist(&n_string_cp(sp
)[1], (n_GO_INPUT_CTX_COMPOSE
|
2532 (hist
& a_HIST_GABBY
? n_GO_INPUT_HIST_GABBY
: n_GO_INPUT_NONE
)));
2539 /* Do we have *on-compose-splice-shell*, or *on-compose-splice*?
2540 * TODO Usual f...ed up state of signals and terminal etc. */
2541 if(coap
== NULL
&& (cp
= ok_vlook(on_compose_splice_shell
)) != NULL
) Jocs
:{
2542 union {int (*ptf
)(void); char const *sh
;} u
;
2545 /* Reset *escape* and more to their defaults. On change update manual! */
2546 if(ifs_saved
== NULL
)
2547 ifs_saved
= savestr(ok_vlook(ifs
));
2548 escape
= n_ESCAPE
[0];
2552 /* XXX Due Popen() fflush(NULL) in PTF mode, ensure nothing to flush */
2553 /*if(!n_real_seek(_coll_fp, 0, SEEK_END))
2555 u
.ptf
= &a_coll_ocs__mac
;
2557 a_coll_ocs__macname
= cp
= coapm
;
2559 u
.sh
= ok_vlook(SHELL
);
2564 coap
= n_lofi_alloc(n_VSTRUCT_SIZEOF(struct a_coll_ocs_arg
, coa_cmd
2566 coap
->coa_pipe
[0] = coap
->coa_pipe
[1] = -1;
2567 coap
->coa_stdin
= coap
->coa_stdout
= NULL
;
2568 coap
->coa_senderr
= checkaddr_err
;
2569 memcpy(coap
->coa_cmd
, cp
, i
);
2572 coap
->coa_opipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2573 coap
->coa_oint
= safe_signal(SIGINT
, SIG_IGN
);
2576 if(pipe_cloexec(coap
->coa_pipe
) != -1 &&
2577 (coap
->coa_stdin
= Fdopen(coap
->coa_pipe
[0], "r", FAL0
)) != NULL
&&
2578 (coap
->coa_stdout
= Popen(cmd
, "W", u
.sh
, NULL
, coap
->coa_pipe
[1])
2580 close(coap
->coa_pipe
[1]);
2581 coap
->coa_pipe
[1] = -1;
2583 temporary_compose_mode_hook_call(NULL
, NULL
, NULL
);
2584 n_go_splice_hack(coap
->coa_cmd
, coap
->coa_stdin
, coap
->coa_stdout
,
2585 (n_psonce
& ~(n_PSO_INTERACTIVE
| n_PSO_TTYIN
| n_PSO_TTYOUT
)),
2586 &a_coll_ocs__finalize
, &coap
);
2587 /* Hook version protocol for ~^: update manual upon change! */
2588 fputs(a_COLL_PLUMBING_VERSION
"\n", coap
->coa_stdout
);
2589 #undef a_COLL_PLUMBING_VERSION
2594 a_coll_ocs__finalize(coap
);
2595 n_perr(_("Cannot invoke *on-compose-splice(-shell)?*"), c
);
2598 if(*checkaddr_err
!= 0){
2602 if(coapm
== NULL
&& (coapm
= ok_vlook(on_compose_splice
)) != NULL
)
2605 ok_vset(ifs
, ifs_saved
);
2609 /* Final chance to edit headers, if not already above */
2610 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
)){
2611 if(ok_blook(bsdcompat
) || ok_blook(askatend
)){
2617 if(ok_blook(askbcc
))
2620 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, gf
, 1);
2622 if(ok_blook(askattach
))
2623 hp
->h_attach
= n_attachment_list_edit(hp
->h_attach
,
2624 n_GO_INPUT_CTX_COMPOSE
);
2627 /* Execute compose-leave */
2628 if((cp
= ok_vlook(on_compose_leave
)) != NULL
){
2629 setup_from_and_sender(hp
);
2630 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
2634 /* Add automatic receivers */
2635 if ((cp
= ok_vlook(autocc
)) != NULL
&& *cp
!= '\0')
2636 hp
->h_cc
= cat(hp
->h_cc
, checkaddrs(lextract(cp
, GCC
|
2637 (ok_blook(fullnames
) ? GFULL
| GSKIN
: GSKIN
)),
2638 EACM_NORMAL
, checkaddr_err
));
2639 if ((cp
= ok_vlook(autobcc
)) != NULL
&& *cp
!= '\0')
2640 hp
->h_bcc
= cat(hp
->h_bcc
, checkaddrs(lextract(cp
, GBCC
|
2641 (ok_blook(fullnames
) ? GFULL
| GSKIN
: GSKIN
)),
2642 EACM_NORMAL
, checkaddr_err
));
2643 if (*checkaddr_err
!= 0)
2646 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
) &&
2650 ifs_saved
= coapm
= NULL
;
2653 fprintf(n_stdout
, _("-------\nEnvelope contains:\n")); /* xxx SEARCH112 */
2654 puthead(TRU1
, hp
, n_stdout
,
2655 GIDENT
| GREF_IRT
| GSUBJECT
| GTO
| GCC
| GBCC
| GCOMMA
,
2656 SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
2659 if(n_go_input(n_GO_INPUT_CTX_COMPOSE
| n_GO_INPUT_NL_ESC
,
2660 _("Send this message [yes/no, empty: recompose]? "),
2661 &linebuf
, &linesize
, NULL
, NULL
) < 0){
2662 if(!n_go_input_is_eof())
2667 if((b
= n_boolify(linebuf
, UIZ_MAX
, TRUM1
)) < FAL0
)
2675 /* TODO Cannot do since it may require turning this into a multipart one */
2676 if(n_poption
& n_PO_Mm_FLAG
)
2679 /* Place signature? */
2680 if((cp
= ok_vlook(signature
)) != NULL
&& *cp
!= '\0'){ /* TODO OBSOLETE */
2683 n_OBSOLETE(_("please use *on-compose-{leave,splice}* and/or "
2684 "*message-inject-tail*, not *signature*"));
2686 if((cpq
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
){
2687 n_err(_("*signature* expands to invalid file: %s\n"),
2688 n_shexp_quote_cp(cp
, FAL0
));
2691 cpq
= n_shexp_quote_cp(cp
= cpq
, FAL0
);
2693 if((sigfp
= Fopen(cp
, "r")) == NULL
){
2694 n_err(_("Can't open *signature* %s: %s\n"),
2695 cpq
, n_err_to_doc(n_err_no
));
2700 linebuf
= n_alloc(linesize
= LINESIZE
);
2702 while((i
= fread(linebuf
, sizeof *linebuf
, linesize
, n_UNVOLATILE(sigfp
)))
2705 if(i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
2710 FILE *x
= n_UNVOLATILE(sigfp
);
2711 int e
= n_err_no
, ise
= ferror(x
);
2717 n_err(_("Errors while reading *signature* %s: %s\n"),
2718 cpq
, n_err_to_doc(e
));
2723 if(c
!= '\0' && c
!= '\n')
2724 putc('\n', _coll_fp
);
2727 { char const *cp_obsolete
= ok_vlook(NAIL_TAIL
);
2729 if(cp_obsolete
!= NULL
)
2730 n_OBSOLETE(_("please use *message-inject-tail*, not *NAIL_TAIL*"));
2732 if((cp
= ok_vlook(message_inject_tail
)) != NULL
||
2733 (cp
= cp_obsolete
) != NULL
){
2734 if(!a_coll_putesc(cp
, TRU1
, _coll_fp
))
2736 if((n_psonce
& n_PSO_INTERACTIVE
) && !(n_pstate
& n_PS_ROBOT
) &&
2737 !a_coll_putesc(cp
, TRU1
, n_stdout
))
2743 if(fflush(_coll_fp
))
2748 if (linebuf
!= NULL
)
2750 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
2751 n_pstate
&= ~n_PS_COMPOSE_MODE
;
2752 safe_signal(SIGINT
, _coll_saveint
);
2753 safe_signal(SIGHUP
, _coll_savehup
);
2754 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
2761 if(coap
!= NULL
&& coap
!= (struct a_coll_ocs_arg
*)-1){
2762 if(!(flags
& a_COAP_NOSIGTERM
))
2763 n_psignal(coap
->coa_stdout
, SIGTERM
);
2764 n_go_splice_hack_remove_after_jump();
2767 if(ifs_saved
!= NULL
){
2768 ok_vset(ifs
, ifs_saved
);
2772 Fclose(n_UNVOLATILE(sigfp
));
2775 if(_coll_fp
!= NULL
){
2782 assert(checkaddr_err
!= NULL
);
2783 /* TODO We don't save in $DEAD upon error because msg not readily composed?
2784 * TODO But this no good, it should go ZOMBIE / DRAFT / POSTPONED or what! */
2785 if(*checkaddr_err
!= 0){
2786 if(*checkaddr_err
== 111)
2787 n_err(_("Compose mode splice hook failure\n"));
2789 n_err(_("Some addressees were classified as \"hard error\"\n"));
2790 }else if(_coll_hadintr
== 0){
2791 *checkaddr_err
= TRU1
; /* TODO ugly: "sendout_error" now.. */
2792 n_err(_("Failed to prepare composed message\n"));