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 - 2017 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 static int putesc(char const *s
, FILE *stream
); /* TODO wysh set! */
118 /* *on-compose-splice* driver and *on-compose-splice(-shell)?* finalizer */
119 static int a_coll_ocs__mac(void);
120 static void a_coll_ocs__finalize(void *vp
);
123 _execute_command(struct header
*hp
, char const *linebuf
, size_t linesize
){
124 /* The problem arises if there are rfc822 message attachments and the
125 * user uses `~:' to change the current file. TODO Unfortunately we
126 * TODO cannot simply keep a pointer to, or increment a reference count
127 * TODO of the current `file' (mailbox that is) object, because the
128 * TODO codebase doesn't deal with that at all; so, until some far
129 * TODO later time, copy the name of the path, and warn the user if it
130 * TODO changed; we COULD use the AC_TMPFILE attachment type, i.e.,
131 * TODO copy the message attachments over to temporary files, but that
132 * TODO would require more changes so that the user still can recognize
133 * TODO in `~@' etc. that its a rfc822 message attachment; see below */
135 struct attachment
*ap
;
136 char * volatile mnbuf
;
142 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_HUP
| n_SIGMAN_INT
| n_SIGMAN_QUIT
){
146 n_pstate_err_no
= n_ERR_INTR
;
151 /* If the above todo is worked, remove or outsource to attachment.c! */
152 if(hp
!= NULL
&& (ap
= hp
->h_attach
) != NULL
) do
154 mnbuf
= sstrdup(mailname
);
157 while((ap
= ap
->a_flink
) != NULL
);
159 n_go_command(n_GO_INPUT_CTX_COMPOSE
, linebuf
);
161 n_sigman_cleanup_ping(&sm
);
164 if(strcmp(mnbuf
, mailname
))
165 n_err(_("Mailbox changed: it is likely that existing "
166 "rfc822 attachments became invalid!\n"));
170 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
174 a_coll_include_file(char const *name
, bool_t indent
, bool_t writestat
){
176 char const *heredb
, *indb
;
177 size_t linesize
, heredl
, indl
, cnt
, linelen
;
185 linebuf
= NULL
; /* TODO line pool */
190 /* The -M case is special */
191 if(name
== (char*)-1){
194 }else if(name
[0] == '-' &&
195 (name
[1] == '\0' || blankspacechar(name
[1]))){
198 if(!(n_psonce
& n_PSO_INTERACTIVE
)){
199 n_err(_("~< -: HERE-delimiter required in non-interactive mode\n"));
204 for(heredb
= &name
[2]; *heredb
!= '\0' && blankspacechar(*heredb
);
207 if((heredl
= strlen(heredb
)) == 0){
209 n_err(_("~< - HERE-delimiter: delimiter must not be empty\n"));
215 for(indb
= ++heredb
; *indb
!= '\0' && *indb
!= '\''; ++indb
)
218 n_err(_("~< - HERE-delimiter: missing trailing quote\n"));
221 }else if(indb
[1] != '\0'){
222 n_err(_("~< - HERE-delimiter: trailing characters after "
227 if((heredl
= PTR2SIZE(indb
- heredb
)) == 0)
229 heredb
= savestrbuf(heredb
, heredl
);
233 }else if((fbuf
= Fopen(name
, "r")) == NULL
){
234 n_perr(name
, rv
= n_err_no
);
241 if((indb
= ok_vlook(indentprefix
)) == NULL
)
242 indb
= INDENT_DEFAULT
;
248 while(fgetline(&linebuf
, &linesize
, (fbuf
== n_stdin
? NULL
: &cnt
),
249 &linelen
, fbuf
, 0) != NULL
){
250 if(heredl
> 0 && heredl
== linelen
- 1 &&
251 !memcmp(heredb
, linebuf
, heredl
)){
257 if(fwrite(indb
, sizeof *indb
, indl
, _coll_fp
) != indl
){
264 if(fwrite(linebuf
, sizeof *linebuf
, linelen
, _coll_fp
) != linelen
){
271 if(fflush(_coll_fp
)){
277 rv
= n_ERR_NOTOBACCO
;
289 fprintf(n_stdout
, "%s%s %" PRId64
"/%" PRId64
"\n",
290 n_shexp_quote_cp(name
, FAL0
), (rv
? " " n_ERROR
: n_empty
), lc
, cc
);
296 a_coll_insert_cmd(FILE *fp
, char const *cmd
){
305 if((ibuf
= Popen(cmd
, "r", ok_vlook(SHELL
), NULL
, 0)) != NULL
){
308 while((c
= getc(ibuf
)) != EOF
){ /* XXX bytewise, yuck! */
309 if(putc(c
, fp
) == EOF
){
317 if(!feof(ibuf
) || ferror(ibuf
)){
321 if(!Pclose(ibuf
, TRU1
)){
326 n_perr(cmd
, rv
= n_err_no
);
328 fprintf(n_stdout
, "CMD%s %" PRId64
"/%" PRId64
"\n",
329 (rv
== n_ERR_NONE
? n_empty
: " " n_ERROR
), lc
, cc
);
335 print_collf(FILE *cf
, struct header
*hp
)
339 size_t cnt
, linesize
, linelen
;
343 cnt
= (size_t)fsize(cf
);
345 if((obuf
= Ftmp(NULL
, "collfp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
){
346 n_perr(_("Can't create temporary file for `~p' command"), 0);
352 fprintf(obuf
, _("-------\nMessage contains:\n"));
353 puthead(TRU1
, hp
, obuf
,
354 (GIDENT
| GTO
| GSUBJECT
| GCC
| GBCC
| GNL
| GFILES
| GCOMMA
),
355 SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
359 while(fgetline(&lbuf
, &linesize
, &cnt
, &linelen
, cf
, 1))
360 prout(lbuf
, linelen
, obuf
);
364 if(hp
->h_attach
!= NULL
){
365 fputs(_("-------\nAttachments:\n"), obuf
);
366 n_attachment_list_print(hp
->h_attach
, obuf
);
371 page_or_print(obuf
, 0);
379 a_coll_write(char const *name
, FILE *fp
, int f
)
390 fprintf(n_stdout
, "%s ", n_shexp_quote_cp(name
, FAL0
));
394 if ((of
= Fopen(name
, "a")) == NULL
) {
395 n_perr(name
, rv
= n_err_no
);
400 while ((c
= getc(fp
)) != EOF
) {
404 if (putc(c
, of
) == EOF
) {
405 n_perr(name
, rv
= n_err_no
);
409 fprintf(n_stdout
, _("%" PRId64
"/%" PRId64
"\n"), lc
, cc
);
419 putc('\n', n_stdout
);
424 a_coll_message_inject_head(FILE *fp
){
426 char const *cp
, *cp_obsolete
;
429 cp_obsolete
= ok_vlook(NAIL_HEAD
);
430 if(cp_obsolete
!= NULL
)
431 n_OBSOLETE(_("please use *message-inject-head*, not *NAIL_HEAD*"));
433 if(((cp
= ok_vlook(message_inject_head
)) != NULL
||
434 (cp
= cp_obsolete
) != NULL
) && putesc(cp
, fp
) < 0)
443 a_coll_makeheader(FILE *fp
, struct header
*hp
, si8_t
*checkaddr_err
,
444 bool_t do_delayed_due_t
)
453 if ((nf
= Ftmp(NULL
, "colhead", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
454 n_perr(_("temporary mail edit file"), 0);
458 extract_header(fp
, hp
, checkaddr_err
);
459 if (checkaddr_err
!= NULL
&& *checkaddr_err
!= 0)
462 /* In template mode some things have been delayed until the template has
464 if(do_delayed_due_t
){
467 if((cp
= ok_vlook(on_compose_enter
)) != NULL
){
468 setup_from_and_sender(hp
);
469 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
473 if(!a_coll_message_inject_head(nf
))
477 while ((c
= getc(fp
)) != EOF
) /* XXX bytewise, yuck! */
485 if (check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
)
494 a_coll_edit(int c
, struct header
*hp
) /* TODO error(return) weird */
498 sighandler_type
volatile sigint
;
503 n_UNINIT(sigint
, SIG_ERR
);
506 if(!(saved
= ok_blook(add_file_recipients
)))
507 ok_bset(add_file_recipients
);
509 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_ALL
){
511 sigint
= safe_signal(SIGINT
, SIG_IGN
);
518 nf
= run_editor(_coll_fp
, (off_t
)-1, c
, FAL0
, hp
, NULL
, SEND_MBOX
, sigint
);
521 if(!a_coll_makeheader(nf
, hp
, NULL
, FAL0
))
524 fseek(nf
, 0L, SEEK_END
);
531 n_sigman_cleanup_ping(&sm
);
534 ok_bclear(add_file_recipients
);
535 safe_signal(SIGINT
, sigint
);
537 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
542 a_coll_pipe(char const *cmd
)
546 sighandler_type sigint
;
551 sigint
= safe_signal(SIGINT
, SIG_IGN
);
553 if ((nf
= Ftmp(NULL
, "colpipe", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==NULL
) {
554 n_perr(_("temporary mail edit file"), rv
= n_err_no
);
558 /* stdin = current message. stdout = new message */
560 if (n_child_run(ok_vlook(SHELL
), 0, fileno(_coll_fp
), fileno(nf
), "-c",
561 cmd
, NULL
, NULL
, &ws
) < 0 || WEXITSTATUS(ws
) != 0) {
567 if (fsize(nf
) == 0) {
568 n_err(_("No bytes from %s !?\n"), n_shexp_quote_cp(cmd
, FAL0
));
575 fseek(nf
, 0L, SEEK_END
);
579 safe_signal(SIGINT
, sigint
);
585 a_coll_forward(char const *ms
, FILE *fp
, int f
)
588 struct n_ignore
const *itp
;
590 enum sendaction action
;
593 msgvec
= salloc((size_t)(msgCount
+ 1) * sizeof *msgvec
);
594 if (getmsglist(ms
, msgvec
, 0) < 0) {
595 rv
= n_ERR_NOENT
; /* XXX not really, should be handled there! */
599 *msgvec
= first(0, MMNORM
);
601 n_err(_("No appropriate messages\n"));
608 if (f
== 'f' || f
== 'F' || f
== 'u')
610 else if ((tabst
= ok_vlook(indentprefix
)) == NULL
)
611 tabst
= INDENT_DEFAULT
;
612 if (f
== 'u' || f
== 'U')
615 itp
= upperchar(f
) ? NULL
: n_IGNORE_TYPE
;
616 action
= (upperchar(f
) && f
!= 'U') ? SEND_QUOTE_ALL
: SEND_QUOTE
;
618 fprintf(n_stdout
, _("Interpolating:"));
620 for (; *msgvec
!= 0; ++msgvec
) {
621 struct message
*mp
= message
+ *msgvec
- 1;
624 fprintf(n_stdout
, " %d", *msgvec
);
626 if (sendmp(mp
, fp
, itp
, tabst
, action
, NULL
) < 0) {
627 n_perr(_("temporary mail file"), 0);
634 fprintf(n_stdout
, "\n");
641 a_collect_plumbing(char const *ms
, struct header
*hp
){
642 /* TODO _collect_plumbing: instead of fields the basic headers should
643 * TODO be in an array and have IDs, like in termcap etc., so then this
644 * TODO could be simplified as table-walks. Also true for arg-checks! */
646 char const *cp
, *cmd
[4];
649 /* Protcol version for *on-compose-splice** -- update manual on change! */
650 #define a_COLL_PLUMBING_VERSION "0 0 1"
656 for(i
= 0; i
< n_NELEM(cmd
); ++i
){ /* TODO trim+strlist_split(_ifs?)() */
657 while(blankchar(*cp
))
662 if(i
< n_NELEM(cmd
) - 1)
663 for(cmd
[i
] = cp
++; *cp
!= '\0' && !blankchar(*cp
); ++cp
)
666 /* Last slot takes all the rest of the line, less trailing WS */
667 for(cmd
[i
] = cp
++; *cp
!= '\0'; ++cp
)
669 while(blankchar(cp
[-1]))
672 cmd
[i
] = savestrbuf(cmd
[i
], PTR2SIZE(cp
- cmd
[i
]));
677 if(n_UNLIKELY(cmd
[0] == NULL
))
679 if(is_asccaseprefix(cmd
[0], "header"))
680 rv
= a_collect__plumb_header(cp
, hp
, cmd
);
681 else if(is_asccaseprefix(cmd
[0], "attachment"))
682 rv
= a_collect__plumb_attach(cp
, hp
, cmd
);
685 fputs("500\n", n_stdout
);
695 a_collect__plumb_header(char const *cp
, struct header
*hp
,
698 struct n_header_field
*hfp
;
699 struct name
*np
, **npp
;
705 if(is_asccaseprefix(cmd
[1], "insert")){ /* TODO LOGIC BELONGS head.c
706 * TODO That is: Header::factory(string) -> object (blahblah).
707 * TODO I.e., as long as we don't have regular RFC compliant parsers
708 * TODO which differentiate in between structured and unstructured
709 * TODO header fields etc., a little workaround */
712 enum expand_addr_check_mode eacm
;
716 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
719 /* Strip [\r\n] which would render a body invalid XXX all controls? */
723 cmd
[3] = xp
= savestr(cmd
[3]);
724 for(; (c
= *xp
) != '\0'; ++xp
)
725 if(c
== '\n' || c
== '\r')
729 if(!asccasecmp(cmd
[2], cp
= "Subject")){
730 if(cmd
[3][0] != '\0'){
731 if(hp
->h_subject
!= NULL
)
732 hp
->h_subject
= savecatsep(hp
->h_subject
, ' ', cmd
[3]);
734 hp
->h_subject
= n_UNCONST(cmd
[3]);
735 fprintf(n_stdout
, "210 %s 1\n", cp
);
742 ntype
= GEXTRA
| GFULL
| GFULLEXTRA
;
745 if(!asccasecmp(cmd
[2], cp
= "From")){
749 if((np
= lextract(cmd
[3], ntype
)) == NULL
)
752 if((np
= checkaddrs(np
, eacm
, &aerr
), aerr
!= 0)){
753 fprintf(n_stdout
, "505 %s\n", cp
);
757 /* Go to the end of the list, track whether it contains any
758 * non-deleted entries */
760 if((xnp
= *npp
) != NULL
)
761 for(;; xnp
= xnp
->n_flink
){
762 if(!(xnp
->n_type
& GDEL
))
764 if(xnp
->n_flink
== NULL
)
768 if(!mult_ok
&& (i
!= 0 || np
->n_flink
!= NULL
))
769 fprintf(n_stdout
, "506 %s\n", cp
);
776 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", cp
, ++i
);
780 if(!asccasecmp(cmd
[2], cp
= "Sender")){
785 if(!asccasecmp(cmd
[2], cp
= "To")){
788 eacm
= EACM_NORMAL
| EAF_NAME
;
791 if(!asccasecmp(cmd
[2], cp
= "Cc")){
794 eacm
= EACM_NORMAL
| EAF_NAME
;
797 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
799 ntype
= GBCC
| GFULL
;
800 eacm
= EACM_NORMAL
| EAF_NAME
;
803 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
804 npp
= &hp
->h_replyto
;
808 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
813 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
815 npp
= &hp
->h_message_id
;
820 if(!asccasecmp(cmd
[2], cp
= "References")){
826 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
827 npp
= &hp
->h_in_reply_to
;
833 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command") ||
834 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-To") ||
835 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc") ||
836 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc") ||
837 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-From") ||
838 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-To") ||
839 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc") ||
840 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
841 fprintf(n_stdout
, "505 %s\n", cp
);
845 /* Free-form header fields (note j501cp may print non-normalized name) */
848 struct n_header_field
**hfpp
;
850 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
851 if(!fieldnamechar(*cp
)){
856 for(i
= 0, hfpp
= &hp
->h_user_headers
; *hfpp
!= NULL
; ++i
)
857 hfpp
= &(*hfpp
)->hf_next
;
859 nl
= strlen(cp
= cmd
[2]) +1;
860 bl
= strlen(cmd
[3]) +1;
861 *hfpp
= hfp
= salloc(n_VSTRUCT_SIZEOF(struct n_header_field
, hf_dat
866 hfp
->hf_dat
[nl
= 0] = upperconv(*cp
);
868 hfp
->hf_dat
[++nl
] = lowerconv(*cp
);
869 memcpy(&hfp
->hf_dat
[++nl
], cmd
[3], bl
);
870 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", &hfp
->hf_dat
[0], ++i
);
875 if(is_asccaseprefix(cmd
[1], "list")){
878 fputs("210", n_stdout
);
879 if(hp
->h_subject
!= NULL
) fputs(" Subject", n_stdout
);
880 if(hp
->h_from
!= NULL
) fputs(" From", n_stdout
);
881 if(hp
->h_sender
!= NULL
) fputs(" Sender", n_stdout
);
882 if(hp
->h_to
!= NULL
) fputs(" To", n_stdout
);
883 if(hp
->h_cc
!= NULL
) fputs(" Cc", n_stdout
);
884 if(hp
->h_bcc
!= NULL
) fputs(" Bcc", n_stdout
);
885 if(hp
->h_replyto
!= NULL
) fputs(" Reply-To", n_stdout
);
886 if(hp
->h_mft
!= NULL
) fputs(" Mail-Followup-To", n_stdout
);
887 if(hp
->h_message_id
!= NULL
) fputs(" Message-ID", n_stdout
);
888 if(hp
->h_ref
!= NULL
) fputs(" References", n_stdout
);
889 if(hp
->h_in_reply_to
!= NULL
) fputs(" In-Reply-To", n_stdout
);
890 if(hp
->h_mailx_command
!= NULL
) fputs(" Mailx-Command", n_stdout
);
891 if(hp
->h_mailx_raw_to
!= NULL
) fputs(" Mailx-Raw-To", n_stdout
);
892 if(hp
->h_mailx_raw_cc
!= NULL
) fputs(" Mailx-Raw-Cc", n_stdout
);
893 if(hp
->h_mailx_raw_bcc
!= NULL
) fputs(" Mailx-Raw-Bcc", n_stdout
);
894 if(hp
->h_mailx_orig_from
!= NULL
) fputs(" Mailx-Orig-From", n_stdout
);
895 if(hp
->h_mailx_orig_to
!= NULL
) fputs(" Mailx-Orig-To", n_stdout
);
896 if(hp
->h_mailx_orig_cc
!= NULL
) fputs(" Mailx-Orig-Cc", n_stdout
);
897 if(hp
->h_mailx_orig_bcc
!= NULL
) fputs(" Mailx-Orig-Bcc", n_stdout
);
899 /* Print only one instance of each free-form header */
900 for(hfp
= hp
->h_user_headers
; hfp
!= NULL
; hfp
= hfp
->hf_next
){
901 struct n_header_field
*hfpx
;
903 for(hfpx
= hp
->h_user_headers
;; hfpx
= hfpx
->hf_next
)
906 fputs(&hfp
->hf_dat
[0], n_stdout
);
908 }else if(!strcmp(&hfpx
->hf_dat
[0], &hfp
->hf_dat
[0]))
911 putc('\n', n_stdout
);
918 if(!asccasecmp(cmd
[2], cp
= "Subject")){
919 np
= (hp
->h_subject
!= NULL
) ? (struct name
*)-1 : NULL
;
922 if(!asccasecmp(cmd
[2], cp
= "From")){
925 fprintf(n_stdout
, "%s %s\n", (np
== NULL
? "501" : "210"), cp
);
928 if(!asccasecmp(cmd
[2], cp
= "Sender")){
932 if(!asccasecmp(cmd
[2], cp
= "To")){
936 if(!asccasecmp(cmd
[2], cp
= "Cc")){
940 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
944 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
948 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
952 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
953 np
= hp
->h_message_id
;
956 if(!asccasecmp(cmd
[2], cp
= "References")){
960 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
961 np
= hp
->h_in_reply_to
;
965 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command")){
966 np
= (hp
->h_mailx_command
!= NULL
) ? (struct name
*)-1 : NULL
;
969 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-To")){
970 np
= hp
->h_mailx_raw_to
;
973 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc")){
974 np
= hp
->h_mailx_raw_cc
;
977 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc")){
978 np
= hp
->h_mailx_raw_bcc
;
981 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-From")){
982 np
= hp
->h_mailx_orig_from
;
985 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-To")){
986 np
= hp
->h_mailx_orig_to
;
989 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc")){
990 np
= hp
->h_mailx_orig_cc
;
993 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
994 np
= hp
->h_mailx_orig_bcc
;
998 /* Free-form header fields (note j501cp may print non-normalized name) */
999 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1000 if(!fieldnamechar(*cp
)){
1005 for(hfp
= hp
->h_user_headers
;; hfp
= hfp
->hf_next
){
1008 else if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1009 fprintf(n_stdout
, "210 %s\n", &hfp
->hf_dat
[0]);
1016 if(is_asccaseprefix(cmd
[1], "remove")){
1017 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1020 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1021 if(hp
->h_subject
!= NULL
){
1022 hp
->h_subject
= NULL
;
1023 fprintf(n_stdout
, "210 %s\n", cp
);
1029 if(!asccasecmp(cmd
[2], cp
= "From")){
1034 fprintf(n_stdout
, "210 %s\n", cp
);
1039 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1040 npp
= &hp
->h_sender
;
1043 if(!asccasecmp(cmd
[2], cp
= "To")){
1047 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1051 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1055 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1056 npp
= &hp
->h_replyto
;
1059 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1063 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1064 npp
= &hp
->h_message_id
;
1067 if(!asccasecmp(cmd
[2], cp
= "References")){
1071 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1072 npp
= &hp
->h_in_reply_to
;
1076 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command") ||
1077 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-To") ||
1078 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc") ||
1079 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc") ||
1080 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-From") ||
1081 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-To") ||
1082 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc") ||
1083 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
1084 fprintf(n_stdout
, "505 %s\n", cp
);
1088 /* Free-form header fields (note j501cp may print non-normalized name) */
1090 struct n_header_field
**hfpp
;
1093 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1094 if(!fieldnamechar(*cp
)){
1100 for(any
= FAL0
, hfpp
= &hp
->h_user_headers
; (hfp
= *hfpp
) != NULL
;){
1101 if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1102 *hfpp
= hfp
->hf_next
;
1104 fprintf(n_stdout
, "210 %s\n", &hfp
->hf_dat
[0]);
1107 hfpp
= &hfp
->hf_next
;
1115 if(is_asccaseprefix(cmd
[1], "remove-at")){
1116 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1119 if((n_idec_uiz_cp(&i
, cmd
[3], 0, NULL
1120 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1121 ) != n_IDEC_STATE_CONSUMED
|| i
== 0){
1122 fputs("505\n", n_stdout
);
1126 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1127 if(hp
->h_subject
!= NULL
&& i
== 1){
1128 hp
->h_subject
= NULL
;
1129 fprintf(n_stdout
, "210 %s 1\n", cp
);
1135 if(!asccasecmp(cmd
[2], cp
= "From")){
1138 if((np
= *npp
) == NULL
)
1140 while(--i
!= 0 && np
!= NULL
)
1145 if(np
->n_blink
!= NULL
)
1146 np
->n_blink
->n_flink
= np
->n_flink
;
1149 if(np
->n_flink
!= NULL
)
1150 np
->n_flink
->n_blink
= np
->n_blink
;
1152 fprintf(n_stdout
, "210 %s\n", cp
);
1155 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1156 npp
= &hp
->h_sender
;
1159 if(!asccasecmp(cmd
[2], cp
= "To")){
1163 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1167 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1171 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1172 npp
= &hp
->h_replyto
;
1175 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1179 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1180 npp
= &hp
->h_message_id
;
1183 if(!asccasecmp(cmd
[2], cp
= "References")){
1187 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1188 npp
= &hp
->h_in_reply_to
;
1192 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command") ||
1193 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-To") ||
1194 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc") ||
1195 !asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc") ||
1196 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-From") ||
1197 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-To") ||
1198 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc") ||
1199 !asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
1200 fprintf(n_stdout
, "505 %s\n", cp
);
1204 /* Free-form header fields (note j501cp may print non-normalized name) */
1206 struct n_header_field
**hfpp
;
1208 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1209 if(!fieldnamechar(*cp
)){
1215 for(hfpp
= &hp
->h_user_headers
; (hfp
= *hfpp
) != NULL
;){
1217 *hfpp
= hfp
->hf_next
;
1218 fprintf(n_stdout
, "210 %s %" PRIuZ
"\n", &hfp
->hf_dat
[0], i
);
1221 hfpp
= &hfp
->hf_next
;
1229 if(is_asccaseprefix(cmd
[1], "show")){
1230 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1233 if(!asccasecmp(cmd
[2], cp
= "Subject")){
1234 if(hp
->h_subject
== NULL
)
1236 fprintf(n_stdout
, "212 %s\n%s\n\n", cp
, hp
->h_subject
);
1240 if(!asccasecmp(cmd
[2], cp
= "From")){
1244 fprintf(n_stdout
, "211 %s\n", cp
);
1245 do if(!(np
->n_type
& GDEL
))
1246 fprintf(n_stdout
, "%s %s\n", np
->n_name
, np
->n_fullname
);
1247 while((np
= np
->n_flink
) != NULL
);
1248 putc('\n', n_stdout
);
1253 if(!asccasecmp(cmd
[2], cp
= "Sender")){
1257 if(!asccasecmp(cmd
[2], cp
= "To")){
1261 if(!asccasecmp(cmd
[2], cp
= "Cc")){
1265 if(!asccasecmp(cmd
[2], cp
= "Bcc")){
1269 if(!asccasecmp(cmd
[2], cp
= "Reply-To")){
1273 if(!asccasecmp(cmd
[2], cp
= "Mail-Followup-To")){
1277 if(!asccasecmp(cmd
[2], cp
= "Message-ID")){
1278 np
= hp
->h_message_id
;
1281 if(!asccasecmp(cmd
[2], cp
= "References")){
1285 if(!asccasecmp(cmd
[2], cp
= "In-Reply-To")){
1286 np
= hp
->h_in_reply_to
;
1290 if(!asccasecmp(cmd
[2], cp
= "Mailx-Command")){
1291 if(hp
->h_mailx_command
== NULL
)
1293 fprintf(n_stdout
, "212 %s\n%s\n\n", cp
, hp
->h_mailx_command
);
1296 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-To")){
1297 np
= hp
->h_mailx_raw_to
;
1300 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Cc")){
1301 np
= hp
->h_mailx_raw_cc
;
1304 if(!asccasecmp(cmd
[2], cp
= "Mailx-Raw-Bcc")){
1305 np
= hp
->h_mailx_raw_bcc
;
1308 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-From")){
1309 np
= hp
->h_mailx_orig_from
;
1312 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-To")){
1313 np
= hp
->h_mailx_orig_to
;
1316 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Cc")){
1317 np
= hp
->h_mailx_orig_cc
;
1320 if(!asccasecmp(cmd
[2], cp
= "Mailx-Orig-Bcc")){
1321 np
= hp
->h_mailx_orig_bcc
;
1325 /* Free-form header fields (note j501cp may print non-normalized name) */
1329 for(cp
= cmd
[2]; *cp
!= '\0'; ++cp
)
1330 if(!fieldnamechar(*cp
)){
1336 for(any
= FAL0
, hfp
= hp
->h_user_headers
; hfp
!= NULL
;
1337 hfp
= hfp
->hf_next
){
1338 if(!asccasecmp(cp
, &hfp
->hf_dat
[0])){
1340 fprintf(n_stdout
, "212 %s\n", &hfp
->hf_dat
[0]);
1342 fprintf(n_stdout
, "%s\n", &hfp
->hf_dat
[hfp
->hf_nl
+1]);
1346 putc('\n', n_stdout
);
1354 fputs("500\n", n_stdout
);
1358 return (cp
!= NULL
);
1361 fputs("501 ", n_stdout
);
1362 fputs(cp
, n_stdout
);
1363 putc('\n', n_stdout
);
1368 a_collect__plumb_attach(char const *cp
, struct header
*hp
,
1369 char const *cmd
[4]){
1371 struct attachment
*ap
;
1377 if(is_asccaseprefix(cmd
[1], "attribute")){
1378 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1381 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], NULL
)) != NULL
){
1383 fprintf(n_stdout
, "212 %s\n", cmd
[2]);
1385 fprintf(n_stdout
, "message-number %d\n\n", ap
->a_msgno
);
1388 "creation-name %s\nopen-path %s\nfilename %s\n",
1389 ap
->a_path_user
, ap
->a_path
, ap
->a_name
);
1390 if(ap
->a_content_description
!= NULL
)
1391 fprintf(n_stdout
, "content-description %s\n",
1392 ap
->a_content_description
);
1393 if(ap
->a_content_id
!= NULL
)
1394 fprintf(n_stdout
, "content-id %s\n",
1395 ap
->a_content_id
->n_name
);
1396 if(ap
->a_content_type
!= NULL
)
1397 fprintf(n_stdout
, "content-type %s\n", ap
->a_content_type
);
1398 if(ap
->a_content_disposition
!= NULL
)
1399 fprintf(n_stdout
, "content-disposition %s\n",
1400 ap
->a_content_disposition
);
1401 putc('\n', n_stdout
);
1404 fputs("501\n", n_stdout
);
1408 if(is_asccaseprefix(cmd
[1], "attribute-at")){
1411 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1414 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1415 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1416 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1417 fputs("505\n", n_stdout
);
1419 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1424 fputs("501\n", n_stdout
);
1429 if(is_asccaseprefix(cmd
[1], "attribute-set")){
1430 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1433 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], NULL
)) != NULL
){
1436 fputs("505\n", n_stdout
);
1441 while((c
= *cp
) != '\0' && !blankchar(c
))
1443 keyw
= savestrbuf(cmd
[3], PTR2SIZE(cp
- cmd
[3]));
1445 for(; (c
= *++cp
) != '\0' && blankchar(c
);)
1450 /* Strip [\r\n] which would render a parameter invalid XXX
1451 * XXX all controls? */
1452 cp
= xp
= savestr(cp
);
1453 for(; (c
= *xp
) != '\0'; ++xp
)
1454 if(c
== '\n' || c
== '\r')
1460 if(!asccasecmp(keyw
, "filename"))
1461 ap
->a_name
= (c
== '\0') ? ap
->a_path_bname
: cp
;
1462 else if(!asccasecmp(keyw
, "content-description"))
1463 ap
->a_content_description
= (c
== '\0') ? NULL
: cp
;
1464 else if(!asccasecmp(keyw
, "content-id")){
1465 ap
->a_content_id
= NULL
;
1470 np
= checkaddrs(lextract(cp
, GREF
),
1471 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG
|
1473 if(np
!= NULL
&& np
->n_flink
== NULL
)
1474 ap
->a_content_id
= np
;
1478 }else if(!asccasecmp(keyw
, "content-type"))
1479 ap
->a_content_type
= (c
== '\0') ? NULL
: cp
;
1480 else if(!asccasecmp(keyw
, "content-disposition"))
1481 ap
->a_content_disposition
= (c
== '\0') ? NULL
: cp
;
1488 for(i
= 0; ap
!= NULL
; ++i
, ap
= ap
->a_blink
)
1490 fprintf(n_stdout
, "210 %" PRIuZ
"\n", i
);
1492 fputs("505\n", n_stdout
);
1495 fputs("501\n", n_stdout
);
1499 if(is_asccaseprefix(cmd
[1], "attribute-set-at")){
1502 if(cmd
[2] == NULL
|| cmd
[3] == NULL
)
1505 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1506 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1507 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1508 fputs("505\n", n_stdout
);
1510 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1515 fputs("501\n", n_stdout
);
1520 if(is_asccaseprefix(cmd
[1], "insert")){
1521 enum n_attach_error aerr
;
1523 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1526 hp
->h_attach
= n_attachment_append(hp
->h_attach
, cmd
[2], &aerr
, &ap
);
1528 case n_ATTACH_ERR_FILE_OPEN
: cp
= "505\n"; goto jatt_ins
;
1529 case n_ATTACH_ERR_ICONV_FAILED
: cp
= "506\n"; goto jatt_ins
;
1530 case n_ATTACH_ERR_ICONV_NAVAIL
:
1531 case n_ATTACH_ERR_OTHER
:
1535 fputs(cp
, n_stdout
);
1537 case n_ATTACH_ERR_NONE
:{
1540 for(i
= 0; ap
!= NULL
; ++i
, ap
= ap
->a_blink
)
1542 fprintf(n_stdout
, "210 %" PRIuZ
"\n", i
);
1548 if(is_asccaseprefix(cmd
[1], "list")){
1553 if((ap
= hp
->h_attach
) != NULL
){
1554 fputs("212\n", n_stdout
);
1556 fprintf(n_stdout
, "%s\n", ap
->a_path_user
);
1557 while((ap
= ap
->a_flink
) != NULL
);
1558 putc('\n', n_stdout
);
1560 fputs("501\n", n_stdout
);
1564 if(is_asccaseprefix(cmd
[1], "remove")){
1565 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1568 if((ap
= n_attachment_find(hp
->h_attach
, cmd
[2], &status
)) != NULL
){
1570 fputs("506\n", n_stdout
);
1572 hp
->h_attach
= n_attachment_remove(hp
->h_attach
, ap
);
1573 fprintf(n_stdout
, "210 %s\n", cmd
[2]);
1576 fputs("501\n", n_stdout
);
1580 if(is_asccaseprefix(cmd
[1], "remove-at")){
1583 if(cmd
[2] == NULL
|| cmd
[3] != NULL
)
1586 if((n_idec_uiz_cp(&i
, cmd
[2], 0, NULL
1587 ) & (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
1588 ) != n_IDEC_STATE_CONSUMED
|| i
== 0)
1589 fputs("505\n", n_stdout
);
1591 for(ap
= hp
->h_attach
; ap
!= NULL
&& --i
!= 0; ap
= ap
->a_flink
)
1594 hp
->h_attach
= n_attachment_remove(hp
->h_attach
, ap
);
1595 fprintf(n_stdout
, "210 %s\n", cmd
[2]);
1597 fputs("501\n", n_stdout
);
1603 fputs("500\n", n_stdout
);
1607 return (cp
!= NULL
);
1613 NYD_X
; /* Signal handler */
1615 /* the control flow is subtle, because we can be called from ~q */
1616 if (_coll_hadintr
== 0) {
1617 if (ok_blook(ignore
)) {
1618 fputs("@\n", n_stdout
);
1623 siglongjmp(_coll_jmp
, 1);
1625 n_exit_status
|= n_EXIT_SEND_ERROR
;
1627 savedeadletter(_coll_fp
, TRU1
);
1628 /* Aborting message, no need to fflush() .. */
1629 siglongjmp(_coll_abort
, 1);
1635 NYD_X
; /* Signal handler */
1638 savedeadletter(_coll_fp
, TRU1
);
1639 /* Let's pretend nobody else wants to clean up, a true statement at
1645 putesc(char const *s
, FILE *stream
) /* TODO: v15: drop */
1650 while (s
[0] != '\0') {
1653 if (putc('\t', stream
) == EOF
)
1660 if (putc('\n', stream
) == EOF
)
1667 if (putc(s
[0], stream
) == EOF
)
1672 if (putc('\n', stream
) == EOF
)
1681 a_coll_ocs__mac(void){
1682 /* Executes in a fork(2)ed child TODO if remains, global MASKs for those! */
1683 setvbuf(n_stdin
, NULL
, _IOLBF
, 0);
1684 setvbuf(n_stdout
, NULL
, _IOLBF
, 0);
1685 n_psonce
&= ~(n_PSO_INTERACTIVE
| n_PSO_TTYIN
| n_PSO_TTYOUT
);
1686 n_pstate
|= n_PS_COMPOSE_FORKHOOK
;
1687 n_readctl_overlay
= NULL
; /* TODO we need OnForkEvent! See c_readctl() */
1688 if(n_poption
& n_PO_D_VV
){
1691 snprintf(buf
, sizeof buf
, "[%d]%s", getpid(), ok_vlook(log_prefix
));
1692 ok_vset(log_prefix
, buf
);
1694 /* TODO If that uses `!' it will effectively SIG_IGN SIGINT, ...and such */
1695 temporary_compose_mode_hook_call(a_coll_ocs__macname
, NULL
, NULL
);
1700 a_coll_ocs__finalize(void *vp
){
1701 /* Note we use this for destruction upon setup errors, thus */
1702 sighandler_type opipe
;
1703 sighandler_type oint
;
1704 struct a_coll_ocs_arg
**coapp
, *coap
;
1707 temporary_compose_mode_hook_call((char*)-1, NULL
, NULL
);
1709 coap
= *(coapp
= vp
);
1710 *coapp
= (struct a_coll_ocs_arg
*)-1;
1712 if(coap
->coa_stdin
!= NULL
)
1713 Fclose(coap
->coa_stdin
);
1714 else if(coap
->coa_pipe
[0] != -1)
1715 close(coap
->coa_pipe
[0]);
1717 if(coap
->coa_stdout
!= NULL
&& !Pclose(coap
->coa_stdout
, TRU1
))
1718 *coap
->coa_senderr
= 111;
1719 if(coap
->coa_pipe
[1] != -1)
1720 close(coap
->coa_pipe
[1]);
1722 opipe
= coap
->coa_opipe
;
1723 oint
= coap
->coa_oint
;
1728 safe_signal(SIGPIPE
, opipe
);
1729 safe_signal(SIGINT
, oint
);
1735 n_temporary_compose_hook_varset(void *arg
){ /* TODO v15: drop */
1742 if((val
= hp
->h_subject
) == NULL
)
1744 ok_vset(mailx_subject
, val
);
1745 if((val
= detract(hp
->h_from
, GNAMEONLY
)) == NULL
)
1747 ok_vset(mailx_from
, val
);
1748 if((val
= detract(hp
->h_sender
, GNAMEONLY
)) == NULL
)
1750 ok_vset(mailx_sender
, val
);
1751 if((val
= detract(hp
->h_to
, GNAMEONLY
)) == NULL
)
1753 ok_vset(mailx_to
, val
);
1754 if((val
= detract(hp
->h_cc
, GNAMEONLY
)) == NULL
)
1756 ok_vset(mailx_cc
, val
);
1757 if((val
= detract(hp
->h_bcc
, GNAMEONLY
)) == NULL
)
1759 ok_vset(mailx_bcc
, val
);
1761 if((val
= hp
->h_mailx_command
) == NULL
)
1763 ok_vset(mailx_command
, val
);
1765 if((val
= detract(hp
->h_mailx_raw_to
, GNAMEONLY
)) == NULL
)
1767 ok_vset(mailx_raw_to
, val
);
1768 if((val
= detract(hp
->h_mailx_raw_cc
, GNAMEONLY
)) == NULL
)
1770 ok_vset(mailx_raw_cc
, val
);
1771 if((val
= detract(hp
->h_mailx_raw_bcc
, GNAMEONLY
)) == NULL
)
1773 ok_vset(mailx_raw_bcc
, val
);
1775 if((val
= detract(hp
->h_mailx_orig_from
, GNAMEONLY
)) == NULL
)
1777 ok_vset(mailx_orig_from
, val
);
1778 if((val
= detract(hp
->h_mailx_orig_to
, GNAMEONLY
)) == NULL
)
1780 ok_vset(mailx_orig_to
, val
);
1781 if((val
= detract(hp
->h_mailx_orig_cc
, GNAMEONLY
)) == NULL
)
1783 ok_vset(mailx_orig_cc
, val
);
1784 if((val
= detract(hp
->h_mailx_orig_bcc
, GNAMEONLY
)) == NULL
)
1786 ok_vset(mailx_orig_bcc
, val
);
1791 collect(struct header
*hp
, int printheaders
, struct message
*mp
,
1792 char const *quotefile
, int doprefix
, si8_t
*checkaddr_err
)
1794 struct n_string s
, * volatile sp
;
1795 struct n_ignore
const *quoteitp
;
1796 struct a_coll_ocs_arg
*coap
;
1798 int volatile t
, eofcnt
, getfields
;
1799 char volatile escape
;
1804 a_COAP_NOSIGTERM
= 1u<<8
1805 #define a_HARDERR() ((flags & (a_ERREXIT | a_IGNERR)) == a_ERREXIT)
1808 char const *cp
, *cp_base
, * volatile coapm
, * volatile ifs_saved
;
1809 size_t i
, linesize
; /* TODO line pool */
1811 enum sendaction action
;
1812 sigset_t oset
, nset
;
1813 FILE * volatile sigfp
;
1821 ifs_saved
= coapm
= NULL
;
1825 /* Start catching signals from here, but we're still die on interrupts
1826 * until we're in the main loop */
1828 sigprocmask(SIG_BLOCK
, &nset
, &oset
);
1829 if ((_coll_saveint
= safe_signal(SIGINT
, SIG_IGN
)) != SIG_IGN
)
1830 safe_signal(SIGINT
, &_collint
);
1831 if ((_coll_savehup
= safe_signal(SIGHUP
, SIG_IGN
)) != SIG_IGN
)
1832 safe_signal(SIGHUP
, collhup
);
1833 if (sigsetjmp(_coll_abort
, 1))
1835 if (sigsetjmp(_coll_jmp
, 1))
1837 n_pstate
|= n_PS_COMPOSE_MODE
;
1838 sigprocmask(SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
1840 if ((_coll_fp
= Ftmp(NULL
, "collect", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
1842 n_perr(_("temporary mail file"), 0);
1846 /* If we are going to prompt for a subject, refrain from printing a newline
1847 * after the headers (since some people mind) */
1849 if (!(n_poption
& n_PO_t_FLAG
)) {
1850 t
= GTO
| GSUBJECT
| GCC
| GNL
;
1851 if (ok_blook(fullnames
))
1854 if (n_psonce
& n_PSO_INTERACTIVE
) {
1855 if (hp
->h_subject
== NULL
&& (ok_blook(ask
) || ok_blook(asksub
)))
1856 t
&= ~GNL
, getfields
|= GSUBJECT
;
1858 if (hp
->h_to
== NULL
)
1859 t
&= ~GNL
, getfields
|= GTO
;
1861 if (!ok_blook(bsdcompat
) && !ok_blook(askatend
)) {
1862 if (hp
->h_bcc
== NULL
&& ok_blook(askbcc
))
1863 t
&= ~GNL
, getfields
|= GBCC
;
1864 if (hp
->h_cc
== NULL
&& ok_blook(askcc
))
1865 t
&= ~GNL
, getfields
|= GCC
;
1874 if (!sigsetjmp(_coll_jmp
, 1)) {
1875 /* Ask for some headers first, as necessary */
1877 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, getfields
, 1);
1879 /* Execute compose-enter; delayed for -t mode */
1880 if(!(n_poption
& n_PO_t_FLAG
) &&
1881 (cp
= ok_vlook(on_compose_enter
)) != NULL
){
1882 setup_from_and_sender(hp
);
1883 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
1887 /* TODO Mm: nope since it may require turning this into a multipart one */
1888 if(!(n_poption
& (n_PO_Mm_FLAG
| n_PO_t_FLAG
))){
1889 if(!a_coll_message_inject_head(_coll_fp
))
1892 /* Quote an original message */
1893 if (mp
!= NULL
&& (doprefix
|| (cp
= ok_vlook(quote
)) != NULL
)) {
1894 quoteitp
= n_IGNORE_ALL
;
1895 action
= SEND_QUOTE
;
1897 char const *cp_v15compat
;
1899 quoteitp
= n_IGNORE_FWD
;
1901 if((cp_v15compat
= ok_vlook(fwdheading
)) != NULL
)
1902 n_OBSOLETE(_("please use *forward-inject-head*, "
1903 "not *fwdheading*"));
1904 cp
= ok_vlook(forward_inject_head
);
1905 if(cp
== NULL
&& (cp
= cp_v15compat
) == NULL
)
1906 cp
= "-------- Original Message --------";
1907 if (*cp
!= '\0' && fprintf(_coll_fp
, "%s\n", cp
) < 0)
1909 } else if (!strcmp(cp
, "noheading")) {
1911 } else if (!strcmp(cp
, "headers")) {
1912 quoteitp
= n_IGNORE_TYPE
;
1913 } else if (!strcmp(cp
, "allheaders")) {
1915 action
= SEND_QUOTE_ALL
;
1917 cp
= hfield1("from", mp
);
1918 if (cp
!= NULL
&& (cnt
= (long)strlen(cp
)) > 0) {
1919 if (xmime_write(cp
, cnt
, _coll_fp
, CONV_FROMHDR
, TD_NONE
) < 0)
1921 if (fprintf(_coll_fp
, _(" wrote:\n\n")) < 0)
1925 if (fflush(_coll_fp
))
1929 else if ((cp
= ok_vlook(indentprefix
)) == NULL
)
1930 cp
= INDENT_DEFAULT
;
1931 if (sendmp(mp
, _coll_fp
, quoteitp
, cp
, action
, NULL
) < 0)
1936 if (quotefile
!= NULL
) {
1937 if((n_pstate_err_no
= a_coll_include_file(quotefile
, FAL0
, FAL0
)
1942 if(n_psonce
& n_PSO_INTERACTIVE
){
1943 if(!(n_pstate
& n_PS_SOURCING
)){
1944 sp
= n_string_creat_auto(&s
);
1945 sp
= n_string_reserve(sp
, 80);
1948 if(!(n_poption
& n_PO_Mm_FLAG
)){
1949 /* Print what we have sofar also on the terminal (if useful) */
1950 if (!ok_blook(editalong
)) {
1952 puthead(TRU1
, hp
, n_stdout
, t
,
1953 SEND_TODISP
, CONV_NONE
, NULL
, NULL
);
1956 while ((c
= getc(_coll_fp
)) != EOF
) /* XXX bytewise, yuck! */
1958 if (fseek(_coll_fp
, 0, SEEK_END
))
1962 if(a_coll_edit('e', hp
) != n_ERR_NONE
)
1964 /* Print msg mandated by the Mail Reference Manual */
1966 if(n_psonce
& n_PSO_INTERACTIVE
)
1967 fputs(_("(continue)\n"), n_stdout
);
1973 /* Come here for printing the after-signal message. Duplicate messages
1974 * won't be printed because the write is aborted if we get a SIGTTOU */
1976 n_err(_("\n(Interrupt -- one more to kill letter)\n"));
1979 /* If not under shell hook control */
1981 /* We're done with -M or -m TODO because: we are too stupid yet, above */
1982 if(n_poption
& n_PO_Mm_FLAG
)
1984 /* No command escapes, interrupts not expected. Simply copy STDIN */
1985 if(!(n_psonce
& n_PSO_INTERACTIVE
) &&
1986 !(n_poption
& (n_PO_t_FLAG
| n_PO_TILDE_FLAG
))){
1987 linebuf
= srealloc(linebuf
, linesize
= LINESIZE
);
1988 while ((i
= fread(linebuf
, sizeof *linebuf
, linesize
, n_stdin
)) > 0) {
1989 if (i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
1996 /* The interactive collect loop */
1998 escape
= *ok_vlook(escape
);
1999 flags
= ok_blook(errexit
) ? a_ERREXIT
: a_NONE
;
2002 enum {a_HIST_NONE
, a_HIST_ADD
= 1u<<0, a_HIST_GABBY
= 1u<<1} hist
;
2005 enum n_go_input_flags gif
;
2008 gif
= n_GO_INPUT_CTX_COMPOSE
;
2009 histadd
= (sp
!= NULL
);
2010 if((n_psonce
& n_PSO_INTERACTIVE
) || (n_poption
& n_PO_TILDE_FLAG
)){
2011 if(!(n_poption
& n_PO_t_FLAG
))
2012 gif
|= n_GO_INPUT_NL_ESC
;
2014 cnt
= n_go_input(gif
, n_empty
, &linebuf
, &linesize
, NULL
, &histadd
);
2015 hist
= histadd
? a_HIST_ADD
| a_HIST_GABBY
: a_HIST_NONE
;
2021 if(n_poption
& n_PO_t_FLAG
){
2022 fflush_rewind(_coll_fp
);
2023 /* It is important to set n_PSO_t_FLAG before extract_header()
2024 * *and* keep n_PO_t_FLAG for the first parse of the message!
2025 * TODO This is a hack, we need a clean approach for this */
2026 n_psonce
|= n_PSO_t_FLAG
;
2027 if(!a_coll_makeheader(_coll_fp
, hp
, checkaddr_err
, TRU1
))
2029 n_poption
&= ~n_PO_t_FLAG
;
2031 }else if((n_psonce
& n_PSO_INTERACTIVE
) && ok_blook(ignoreeof
) &&
2034 _("*ignoreeof* set, use `~.' to terminate letter\n"));
2035 n_go_input_clearerr();
2046 else if(coap
== NULL
){
2047 if(!(n_psonce
& n_PSO_INTERACTIVE
) && !(n_poption
& n_PO_TILDE_FLAG
))
2049 else if(cp
[0] == '.'){
2050 if(cnt
== 1 && (ok_blook(dot
) ||
2051 (ok_blook(posix
) && ok_blook(ignoreeof
))))
2055 if(cp
[0] != escape
){
2057 if(fwrite(cp
, sizeof *cp
, cnt
, _coll_fp
) != (size_t)cnt
)
2059 /* TODO n_PS_READLINE_NL is a terrible hack to ensure that _in_all_-
2060 * TODO _code_paths_ a file without trailing newline isn't modified
2061 * TODO to contain one; the "saw-newline" needs to be part of an
2062 * TODO I/O input machinery object */
2064 if(n_pstate
& n_PS_READLINE_NL
){
2065 if(putc('\n', _coll_fp
) == EOF
)
2071 c
= *(cp_base
= ++cp
);
2075 /* Avoid history entry? */
2076 while(spacechar(c
)){
2078 c
= *(cp_base
= ++cp
);
2083 /* It may just be an escaped escaped character, do that quick */
2087 /* Avoid hard *errexit*? */
2096 /* Trim input, also to gain a somewhat normalized history entry */
2101 x
.s
= n_UNCONST(cp
);
2103 n_str_trim_ifs(&x
, TRU1
);
2106 cnt
= (int)/*XXX*/x
.l
;
2109 if(hist
!= a_HIST_NONE
){
2110 sp
= n_string_assign_c(sp
, escape
);
2111 if(flags
& a_IGNERR
)
2112 sp
= n_string_push_c(sp
, '-');
2113 sp
= n_string_push_c(sp
, c
);
2115 sp
= n_string_push_c(sp
, ' ');
2116 sp
= n_string_push_buf(sp
, cp
, cnt
);
2123 char buf
[sizeof(n_UNIREPL
)];
2126 buf
[0] = c
, buf
[1] = '\0';
2127 else if(n_psonce
& n_PSO_UNICODE
)
2128 memcpy(buf
, n_unirepl
, sizeof n_unirepl
);
2130 buf
[0] = '?', buf
[1] = '\0';
2131 n_err(_("Unknown command escape: `%c%s'\n"), escape
, buf
);
2134 n_err(_("Invalid command escape usage: %s\n"),
2135 n_shexp_quote_cp(linebuf
, FAL0
));
2138 n_pstate_err_no
= n_ERR_INVAL
;
2142 /* Shell escape, send the balance of line to sh -c */
2143 if(cnt
== 0 || coap
!= NULL
)
2146 char const *argv
[2];
2150 n_pstate_ex_no
= c_shell(argv
); /* TODO history norm.; errexit? */
2156 /* Escape to command mode, but be nice! *//* TODO command expansion
2157 * TODO should be handled here so that we have unique history! */
2160 _execute_command(hp
, cp
, cnt
);
2161 if(ok_blook(errexit
))
2164 flags
&= ~a_ERREXIT
;
2165 if(n_pstate_ex_no
!= 0 && a_HARDERR())
2168 escape
= *ok_vlook(escape
);
2171 /* Simulate end of file on input */
2172 if(cnt
!= 0 || coap
!= NULL
)
2174 goto jout
; /* TODO does not enter history, thus */
2176 /* Same as 'q', but no *DEAD* saving */
2179 /* Force a quit, act like an interrupt had happened */
2182 /* If we are running a splice hook, assume it quits on its own now,
2183 * otherwise we (no true out-of-band IPC to signal this state, XXX sic)
2184 * have to SIGTERM it in order to stop this wild beast */
2185 flags
|= a_COAP_NOSIGTERM
;
2187 _collint((c
== 'x') ? 0 : SIGINT
);
2191 /* Grab a bunch of headers */
2195 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
,
2196 (GTO
| GSUBJECT
| GCC
| GBCC
),
2197 (ok_blook(bsdcompat
) && ok_blook(bsdorder
)));
2198 while(hp
->h_to
== NULL
);
2199 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2200 n_pstate_ex_no
= 0; /* XXX */
2203 /* Grab extra headers */
2207 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, GEXTRA
, 0);
2208 while(check_from_and_sender(hp
->h_from
, hp
->h_sender
) == NULL
);
2209 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2210 n_pstate_ex_no
= 0; /* XXX */
2213 /* Add to the To: list */
2221 if((np
= checkaddrs(lextract(cp
, GTO
| GFULL
), EACM_NORMAL
, &soe
)
2223 hp
->h_to
= cat(hp
->h_to
, np
);
2225 n_pstate_err_no
= n_ERR_NONE
;
2229 n_pstate_err_no
= (soe
< 0) ? n_ERR_PERM
: n_ERR_INVAL
;
2232 hist
&= ~a_HIST_GABBY
;
2235 /* Set the Subject list */
2238 /* Subject:; take care for Debian #419840 and strip any \r and \n */
2239 if(n_anyof_cp("\n\r", hp
->h_subject
= savestr(cp
))){
2242 n_err(_("-s: normalizing away invalid ASCII NL / CR bytes\n"));
2243 for(xp
= hp
->h_subject
; *xp
!= '\0'; ++xp
)
2244 if(*xp
== '\n' || *xp
== '\r')
2246 n_pstate_err_no
= n_ERR_INVAL
;
2249 n_pstate_err_no
= n_ERR_NONE
;
2254 struct attachment
*aplist
;
2256 /* Edit the attachment list */
2257 aplist
= hp
->h_attach
;
2258 hp
->h_attach
= NULL
;
2260 hp
->h_attach
= n_attachment_append_list(aplist
, cp
);
2262 hp
->h_attach
= n_attachment_list_edit(aplist
,
2263 n_GO_INPUT_CTX_COMPOSE
);
2264 n_pstate_err_no
= n_ERR_NONE
; /* XXX ~@ does NOT handle $!/$?! */
2265 n_pstate_ex_no
= 0; /* XXX */
2268 /* Add to the CC list */
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
;
2290 /* Add stuff to blind carbon copies list */
2298 if((np
= checkaddrs(lextract(cp
, GBCC
| GFULL
), EACM_NORMAL
, &soe
)
2300 hp
->h_bcc
= cat(hp
->h_bcc
, np
);
2302 n_pstate_err_no
= n_ERR_NONE
;
2306 n_pstate_err_no
= (soe
< 0) ? n_ERR_PERM
: n_ERR_INVAL
;
2309 hist
&= ~a_HIST_GABBY
;
2314 cp
= n_getdeadletter();
2320 /* Invoke a file: Search for the file name, then open it and copy
2321 * the contents to _coll_fp */
2323 n_err(_("Interpolate what file?\n"));
2326 n_pstate_err_no
= n_ERR_NOENT
;
2330 if(*cp
== '!' && c
== '<'){
2331 /* TODO hist. normalization */
2332 if((n_pstate_err_no
= a_coll_insert_cmd(_coll_fp
, ++cp
)
2334 if(ferror(_coll_fp
))
2343 /* Note this also expands things like
2344 * !:vput vexpr delim random 0
2346 if((cp
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
| FEXP_NSHELL
)
2350 n_pstate_err_no
= n_ERR_INVAL
;
2355 if(n_is_dir(cp
, FAL0
)){
2356 n_err(_("%s: is a directory\n"), n_shexp_quote_cp(cp
, FAL0
));
2359 n_pstate_err_no
= n_ERR_ISDIR
;
2363 if((n_pstate_err_no
= a_coll_include_file(cp
, (c
== 'R'), TRU1
)
2365 if(ferror(_coll_fp
))
2372 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2373 n_pstate_ex_no
= 0; /* XXX */
2376 /* Insert a variable into the file */
2379 if((cp
= n_var_vlook(cp
, TRU1
)) == NULL
|| *cp
== '\0')
2381 if(putesc(cp
, _coll_fp
) < 0) /* TODO v15: user resp upon `set' time */
2383 if((n_psonce
& n_PSO_INTERACTIVE
) && putesc(cp
, n_stdout
) < 0)
2385 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2386 n_pstate_ex_no
= 0; /* XXX */
2390 /* Insert the contents of a signature variable */
2393 cp
= (c
== 'a') ? ok_vlook(sign
) : ok_vlook(Sign
);
2394 if(cp
!= NULL
&& *cp
!= '\0'){
2395 if(putesc(cp
, _coll_fp
) < 0) /* TODO v15: user upon `set' time */
2397 if((n_psonce
& n_PSO_INTERACTIVE
) && putesc(cp
, n_stdout
) < 0)
2400 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2401 n_pstate_ex_no
= 0; /* XXX */
2404 /* Write the message on a file */
2407 if((cp
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
){
2408 n_err(_("Write what file!?\n"));
2411 n_pstate_err_no
= n_ERR_INVAL
;
2416 if((n_pstate_err_no
= a_coll_write(cp
, _coll_fp
, 1)) == n_ERR_NONE
)
2418 else if(ferror(_coll_fp
))
2420 else if(a_HARDERR())
2431 /* Interpolate the named messages, if we are in receiving mail mode.
2432 * Does the standard list processing garbage. If ~f is given, we
2433 * don't shift over */
2436 if((n_pstate_err_no
= a_coll_forward(cp
, _coll_fp
, c
)) == n_ERR_NONE
)
2438 else if(ferror(_coll_fp
))
2440 else if(a_HARDERR())
2446 /* Print current state of the message without altering anything */
2449 print_collf(_coll_fp
, hp
); /* XXX pstate_err_no ++ */
2450 if(ferror(_coll_fp
))
2452 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2453 n_pstate_ex_no
= 0; /* XXX */
2456 /* Pipe message through command. Collect output as new message */
2460 if((n_pstate_err_no
= a_coll_pipe(cp
)) == n_ERR_NONE
)
2462 else if(a_HARDERR())
2466 hist
&= ~a_HIST_GABBY
;
2470 /* Edit the current message. 'e' -> use EDITOR, 'v' -> use VISUAL */
2471 if(cnt
!= 0 || coap
!= NULL
)
2474 if((n_pstate_err_no
= a_coll_edit(c
, ok_blook(editheaders
) ? hp
: NULL
)
2477 else if(ferror(_coll_fp
))
2479 else if(a_HARDERR())
2485 if(!a_collect_plumbing(cp
, hp
)){
2486 if(ferror(_coll_fp
))
2490 n_pstate_err_no
= n_ERR_NONE
; /* XXX */
2491 n_pstate_ex_no
= 0; /* XXX */
2492 hist
&= ~a_HIST_GABBY
;
2495 /* Last the lengthy help string. (Very ugly, but take care for
2496 * compiler supported string lengths :() */
2498 "COMMAND ESCAPES (to be placed after a newline) excerpt:\n"
2499 "~. Commit and send message\n"
2500 "~: <command> Execute an internal command\n"
2501 "~< <file> Insert <file> (\"~<! <command>\" inserts shell command)\n"
2502 "~@ [<files>] Edit[/Add] attachments (file[=input-charset[#output-charset]])\n"
2503 "~c <users> Add users to Cc: list (`~b': to Bcc:)\n"
2504 "~d Read in $DEAD (dead.letter)\n"
2505 "~e Edit message via $EDITOR\n"
2506 "~F <msglist> Read in with headers, do not *indentprefix* lines\n"
2509 "~f <msglist> Like ~F, but honour `ignore' / `retain' configuration\n"
2510 "~H Edit From:, Reply-To: and Sender:\n"
2511 "~h Prompt for Subject:, To:, Cc: and \"blind\" Bcc:\n"
2512 "~i <variable> Insert a value and a newline\n"
2513 "~M <msglist> Read in with headers, *indentprefix* (`~m': `retain' etc.)\n"
2514 "~p Show current message compose buffer\n"
2515 "~r <file> Insert <file> (`~R': likewise, but *indentprefix* lines)\n"
2516 " <file> may also be <- [HERE-DELIMITER]>\n"
2519 "~s <subject> Set Subject:\n"
2520 "~t <users> Add users to To: list\n"
2521 "~u <msglist> Read in message(s) without headers (`~U': indent lines)\n"
2522 "~v Edit message via $VISUAL\n"
2523 "~w <file> Write message onto file\n"
2524 "~x Abort composition, discard message (`~q': save in $DEAD)\n"
2525 "~| <command> Pipe message through shell filter\n"
2529 n_pstate_err_no
= n_ERR_NONE
;
2534 /* Finally place an entry in history as applicable */
2540 if(hist
& a_HIST_ADD
)
2541 n_tty_addhist(n_string_cp(sp
), ((hist
& a_HIST_GABBY
) != 0));
2547 /* Do we have *on-compose-splice-shell*, or *on-compose-splice*?
2548 * TODO Usual f...ed up state of signals and terminal etc. */
2549 if(coap
== NULL
&& (cp
= ok_vlook(on_compose_splice_shell
)) != NULL
) Jocs
:{
2550 union {int (*ptf
)(void); char const *sh
;} u
;
2553 /* Reset *escape* and more to their defaults. On change update manual! */
2554 if(ifs_saved
== NULL
)
2555 ifs_saved
= savestr(ok_vlook(ifs
));
2556 escape
= n_ESCAPE
[0];
2560 /* XXX Due Popen() fflush(NULL) in PTF mode, ensure nothing to flush */
2561 /*if(!n_real_seek(_coll_fp, 0, SEEK_END))
2563 u
.ptf
= &a_coll_ocs__mac
;
2565 a_coll_ocs__macname
= cp
= coapm
;
2567 u
.sh
= ok_vlook(SHELL
);
2572 coap
= n_lofi_alloc(n_VSTRUCT_SIZEOF(struct a_coll_ocs_arg
, coa_cmd
2574 coap
->coa_pipe
[0] = coap
->coa_pipe
[1] = -1;
2575 coap
->coa_stdin
= coap
->coa_stdout
= NULL
;
2576 coap
->coa_senderr
= checkaddr_err
;
2577 memcpy(coap
->coa_cmd
, cp
, i
);
2580 coap
->coa_opipe
= safe_signal(SIGPIPE
, SIG_IGN
);
2581 coap
->coa_oint
= safe_signal(SIGINT
, SIG_IGN
);
2584 if(pipe_cloexec(coap
->coa_pipe
) != -1 &&
2585 (coap
->coa_stdin
= Fdopen(coap
->coa_pipe
[0], "r", FAL0
)) != NULL
&&
2586 (coap
->coa_stdout
= Popen(cmd
, "W", u
.sh
, NULL
, coap
->coa_pipe
[1])
2588 close(coap
->coa_pipe
[1]);
2589 coap
->coa_pipe
[1] = -1;
2591 temporary_compose_mode_hook_call(NULL
, NULL
, NULL
);
2592 n_go_splice_hack(coap
->coa_cmd
, coap
->coa_stdin
, coap
->coa_stdout
,
2593 (n_psonce
& ~(n_PSO_INTERACTIVE
| n_PSO_TTYIN
| n_PSO_TTYOUT
)),
2594 &a_coll_ocs__finalize
, &coap
);
2595 /* Hook version protocol for ~^: update manual upon change! */
2596 fputs(a_COLL_PLUMBING_VERSION
"\n", coap
->coa_stdout
);
2597 #undef a_COLL_PLUMBING_VERSION
2602 a_coll_ocs__finalize(coap
);
2603 n_perr(_("Cannot invoke *on-compose-splice(-shell)?*"), c
);
2606 if(*checkaddr_err
!= 0){
2610 if(coapm
== NULL
&& (coapm
= ok_vlook(on_compose_splice
)) != NULL
)
2613 ok_vset(ifs
, ifs_saved
);
2617 /* Final chance to edit headers, if not already above */
2618 if (ok_blook(bsdcompat
) || ok_blook(askatend
)) {
2619 if (hp
->h_cc
== NULL
&& ok_blook(askcc
))
2620 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, GCC
, 1);
2621 if (hp
->h_bcc
== NULL
&& ok_blook(askbcc
))
2622 grab_headers(n_GO_INPUT_CTX_COMPOSE
, hp
, GBCC
, 1);
2624 if (hp
->h_attach
== NULL
&& ok_blook(askattach
))
2625 hp
->h_attach
= n_attachment_list_edit(hp
->h_attach
,
2626 n_GO_INPUT_CTX_COMPOSE
);
2628 /* Execute compose-leave */
2629 if((cp
= ok_vlook(on_compose_leave
)) != NULL
){
2630 setup_from_and_sender(hp
);
2631 temporary_compose_mode_hook_call(cp
, &n_temporary_compose_hook_varset
,
2635 /* Add automatic receivers */
2636 if ((cp
= ok_vlook(autocc
)) != NULL
&& *cp
!= '\0')
2637 hp
->h_cc
= cat(hp
->h_cc
, checkaddrs(lextract(cp
, GCC
| GFULL
),
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
| GFULL
),
2641 EACM_NORMAL
, checkaddr_err
));
2642 if (*checkaddr_err
!= 0)
2645 /* TODO Cannot do since it may require turning this into a multipart one */
2646 if(n_poption
& n_PO_Mm_FLAG
)
2649 /* Place signature? */
2650 if((cp
= ok_vlook(signature
)) != NULL
&& *cp
!= '\0'){
2653 if((cpq
= fexpand(cp
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
){
2654 n_err(_("*signature* expands to invalid file: %s\n"),
2655 n_shexp_quote_cp(cp
, FAL0
));
2658 cpq
= n_shexp_quote_cp(cp
= cpq
, FAL0
);
2660 if((sigfp
= Fopen(cp
, "r")) == NULL
){
2661 n_err(_("Can't open *signature* %s: %s\n"),
2662 cpq
, n_err_to_doc(n_err_no
));
2667 linebuf
= smalloc(linesize
= LINESIZE
);
2669 while((i
= fread(linebuf
, sizeof *linebuf
, linesize
, n_UNVOLATILE(sigfp
)))
2672 if(i
!= fwrite(linebuf
, sizeof *linebuf
, i
, _coll_fp
))
2677 FILE *x
= n_UNVOLATILE(sigfp
);
2678 int e
= n_err_no
, ise
= ferror(x
);
2684 n_err(_("Errors while reading *signature* %s: %s\n"),
2685 cpq
, n_err_to_doc(e
));
2690 if(c
!= '\0' && c
!= '\n')
2691 putc('\n', _coll_fp
);
2694 { char const *cp_obsolete
= ok_vlook(NAIL_TAIL
);
2696 if(cp_obsolete
!= NULL
)
2697 n_OBSOLETE(_("please use *message-inject-tail*, not *NAIL_TAIL*"));
2699 if((cp
= ok_vlook(message_inject_tail
)) != NULL
||
2700 (cp
= cp_obsolete
) != NULL
){
2701 if(putesc(cp
, _coll_fp
) < 0)
2703 if((n_psonce
& n_PSO_INTERACTIVE
) && putesc(cp
, n_stdout
) < 0)
2709 if(fflush(_coll_fp
))
2714 if (linebuf
!= NULL
)
2716 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
2717 n_pstate
&= ~n_PS_COMPOSE_MODE
;
2718 safe_signal(SIGINT
, _coll_saveint
);
2719 safe_signal(SIGHUP
, _coll_savehup
);
2720 sigprocmask(SIG_SETMASK
, &oset
, NULL
);
2727 if(coap
!= NULL
&& coap
!= (struct a_coll_ocs_arg
*)-1){
2728 if(!(flags
& a_COAP_NOSIGTERM
))
2729 n_psignal(coap
->coa_stdout
, SIGTERM
);
2730 n_go_splice_hack_remove_after_jump();
2733 if(ifs_saved
!= NULL
){
2734 ok_vset(ifs
, ifs_saved
);
2738 Fclose(n_UNVOLATILE(sigfp
));
2741 if(_coll_fp
!= NULL
){
2748 assert(checkaddr_err
!= NULL
);
2749 /* TODO We don't save in $DEAD upon error because msg not readily composed?
2750 * TODO But this no good, it should go ZOMBIE / DRAFT / POSTPONED or what! */
2751 if(*checkaddr_err
!= 0){
2752 if(*checkaddr_err
== 111)
2753 n_err(_("Compose mode splice hook failure\n"));
2755 n_err(_("Some addressees were classified as \"hard error\"\n"));
2756 }else if(_coll_hadintr
== 0){
2757 *checkaddr_err
= TRU1
; /* TODO ugly: "sendout_error" now.. */
2758 n_err(_("Failed to prepare composed message (I/O error, disk full?)\n"));