nail.1: move IMAP section further upwards
[s-mailx.git] / collect.c
blob4842af48f92216fdc7eca878339cbfefd93e6ed2
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>.
7 */
8 /*
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
14 * are met:
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
34 * SUCH DAMAGE.
36 #undef n_FILE
37 #define n_FILE collect
39 #ifndef HAVE_AMALGAMATION
40 # include "nail.h"
41 #endif
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,
66 size_t linesize);
68 /* Return errno */
69 static si32_t a_coll_include_file(char const *name, bool_t indent,
70 bool_t writestat);
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);
75 /* ~p command */
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].
99 * Return errno */
100 static si32_t a_coll_forward(char const *ms, FILE *fp, int f);
102 /* ~^ mode */
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,
106 char const *cmd[4]);
107 static bool_t a_collect__plumb_attach(char const *cp, struct header *p,
108 char const *cmd[4]);
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);
122 static void
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 */
134 struct n_sigman sm;
135 struct attachment *ap;
136 char * volatile mnbuf;
137 NYD_ENTER;
139 n_UNUSED(linesize);
140 mnbuf = NULL;
142 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_HUP | n_SIGMAN_INT | n_SIGMAN_QUIT){
143 case 0:
144 break;
145 default:
146 n_pstate_err_no = n_ERR_INTR;
147 n_pstate_ex_no = 1;
148 goto jleave;
151 /* If the above todo is worked, remove or outsource to attachment.c! */
152 if(hp != NULL && (ap = hp->h_attach) != NULL) do
153 if(ap->a_msgno){
154 mnbuf = sstrdup(mailname);
155 break;
157 while((ap = ap->a_flink) != NULL);
159 n_go_command(n_GO_INPUT_CTX_COMPOSE, linebuf);
161 n_sigman_cleanup_ping(&sm);
162 jleave:
163 if(mnbuf != NULL){
164 if(strcmp(mnbuf, mailname))
165 n_err(_("Mailbox changed: it is likely that existing "
166 "rfc822 attachments became invalid!\n"));
167 free(mnbuf);
169 NYD_LEAVE;
170 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
173 static si32_t
174 a_coll_include_file(char const *name, bool_t indent, bool_t writestat){
175 FILE *fbuf;
176 bool_t quoted;
177 char const *heredb, *indb;
178 size_t linesize, heredl, indl, cnt, linelen;
179 char *linebuf;
180 si64_t lc, cc;
181 si32_t rv;
182 NYD_ENTER;
184 rv = n_ERR_NONE;
185 lc = cc = 0;
186 linebuf = NULL; /* TODO line pool */
187 linesize = 0;
188 heredb = NULL;
189 heredl = 0;
190 quoted = FAL0;
192 /* The -M case is special */
193 if(name == (char*)-1){
194 fbuf = n_stdin;
195 name = "-";
196 }else if(name[0] == '-' &&
197 (name[1] == '\0' || blankspacechar(name[1]))){
198 fbuf = n_stdin;
199 if(name[1] == '\0'){
200 if(!(n_psonce & n_PSO_INTERACTIVE)){
201 n_err(_("~< -: HERE-delimiter required in non-interactive mode\n"));
202 rv = n_ERR_INVAL;
203 goto jleave;
205 }else{
206 for(heredb = &name[2]; *heredb != '\0' && blankspacechar(*heredb);
207 ++heredb)
209 if((heredl = strlen(heredb)) == 0){
210 jdelim_empty:
211 n_err(_("~< - HERE-delimiter: delimiter must not be empty\n"));
212 rv = n_ERR_INVAL;
213 goto jleave;
216 if((quoted = (*heredb == '\''))){
217 for(indb = ++heredb; *indb != '\0' && *indb != '\''; ++indb)
219 if(*indb == '\0'){
220 n_err(_("~< - HERE-delimiter: missing trailing quote\n"));
221 rv = n_ERR_INVAL;
222 goto jleave;
223 }else if(indb[1] != '\0'){
224 n_err(_("~< - HERE-delimiter: trailing characters after "
225 "quote\n"));
226 rv = n_ERR_INVAL;
227 goto jleave;
229 if((heredl = PTR2SIZE(indb - heredb)) == 0)
230 goto jdelim_empty;
231 heredb = savestrbuf(heredb, heredl);
234 name = "-";
235 }else if((fbuf = Fopen(name, "r")) == NULL){
236 n_perr(name, rv = n_err_no);
237 goto jleave;
240 if(!indent)
241 indl = 0;
242 else{
243 if((indb = ok_vlook(indentprefix)) == NULL)
244 indb = INDENT_DEFAULT;
245 indl = strlen(indb);
248 if(fbuf != n_stdin)
249 cnt = fsize(fbuf);
250 while(fgetline(&linebuf, &linesize, (fbuf == n_stdin ? NULL : &cnt),
251 &linelen, fbuf, 0) != NULL){
252 if(heredl > 0 && heredl == linelen - 1 &&
253 !memcmp(heredb, linebuf, heredl)){
254 heredb = NULL;
255 break;
258 if(indl > 0){
259 if(fwrite(indb, sizeof *indb, indl, _coll_fp) != indl){
260 rv = n_err_no;
261 goto jleave;
263 cc += indl;
266 if(fwrite(linebuf, sizeof *linebuf, linelen, _coll_fp) != linelen){
267 rv = n_err_no;
268 goto jleave;
270 cc += linelen;
271 ++lc;
273 if(fflush(_coll_fp)){
274 rv = n_err_no;
275 goto jleave;
278 if(heredb != NULL)
279 rv = n_ERR_NOTOBACCO;
280 jleave:
281 if(linebuf != NULL)
282 free(linebuf);
283 if(fbuf != NULL){
284 if(fbuf != n_stdin)
285 Fclose(fbuf);
286 else if(heredl > 0)
287 clearerr(n_stdin);
290 if(writestat)
291 fprintf(n_stdout, "%s%s %" PRId64 "/%" PRId64 "\n",
292 n_shexp_quote_cp(name, FAL0), (rv ? " " n_ERROR : n_empty), lc, cc);
293 NYD_LEAVE;
294 return rv;
297 static si32_t
298 a_coll_insert_cmd(FILE *fp, char const *cmd){
299 FILE *ibuf;
300 si64_t lc, cc;
301 si32_t rv;
302 NYD_ENTER;
304 rv = n_ERR_NONE;
305 lc = cc = 0;
307 if((ibuf = Popen(cmd, "r", ok_vlook(SHELL), NULL, 0)) != NULL){
308 int c;
310 while((c = getc(ibuf)) != EOF){ /* XXX bytewise, yuck! */
311 if(putc(c, fp) == EOF){
312 rv = n_err_no;
313 break;
315 ++cc;
316 if(c == '\n')
317 ++lc;
319 if(!feof(ibuf) || ferror(ibuf)){
320 if(rv == n_ERR_NONE)
321 rv = n_ERR_IO;
323 if(!Pclose(ibuf, TRU1)){
324 if(rv == n_ERR_NONE)
325 rv = n_ERR_IO;
327 }else
328 n_perr(cmd, rv = n_err_no);
330 fprintf(n_stdout, "CMD%s %" PRId64 "/%" PRId64 "\n",
331 (rv == n_ERR_NONE ? n_empty : " " n_ERROR), lc, cc);
332 NYD_LEAVE;
333 return rv;
336 static void
337 print_collf(FILE *cf, struct header *hp)
339 char *lbuf;
340 FILE *obuf;
341 size_t cnt, linesize, linelen;
342 NYD_ENTER;
344 fflush_rewind(cf);
345 cnt = (size_t)fsize(cf);
347 if((obuf = Ftmp(NULL, "collfp", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL){
348 n_perr(_("Can't create temporary file for `~p' command"), 0);
349 goto jleave;
352 hold_all_sigs();
354 fprintf(obuf, _("-------\nMessage contains:\n"));
355 puthead(TRU1, hp, obuf,
356 (GIDENT | GTO | GSUBJECT | GCC | GBCC | GNL | GFILES | GCOMMA),
357 SEND_TODISP, CONV_NONE, NULL, NULL);
359 lbuf = NULL;
360 linesize = 0;
361 while(fgetline(&lbuf, &linesize, &cnt, &linelen, cf, 1))
362 prout(lbuf, linelen, obuf);
363 if(lbuf != NULL)
364 free(lbuf);
366 if(hp->h_attach != NULL){
367 fputs(_("-------\nAttachments:\n"), obuf);
368 n_attachment_list_print(hp->h_attach, obuf);
371 rele_all_sigs();
373 page_or_print(obuf, 0);
374 jleave:
375 Fclose(obuf);
376 NYD_LEAVE;
379 static si32_t
380 a_coll_write(char const *name, FILE *fp, int f)
382 FILE *of;
383 int c;
384 si64_t lc, cc;
385 si32_t rv;
386 NYD_ENTER;
388 rv = n_ERR_NONE;
390 if(f) {
391 fprintf(n_stdout, "%s ", n_shexp_quote_cp(name, FAL0));
392 fflush(n_stdout);
395 if ((of = Fopen(name, "a")) == NULL) {
396 n_perr(name, rv = n_err_no);
397 goto jerr;
400 lc = cc = 0;
401 while ((c = getc(fp)) != EOF) {
402 ++cc;
403 if (c == '\n')
404 ++lc;
405 if (putc(c, of) == EOF) {
406 n_perr(name, rv = n_err_no);
407 goto jerr;
410 fprintf(n_stdout, _("%" PRId64 "/%" PRId64 "\n"), lc, cc);
412 jleave:
413 if(of != NULL)
414 Fclose(of);
415 fflush(n_stdout);
416 NYD_LEAVE;
417 return rv;
418 jerr:
419 putc('-', n_stdout);
420 putc('\n', n_stdout);
421 goto jleave;
424 static bool_t
425 a_coll_message_inject_head(FILE *fp){
426 bool_t rv;
427 char const *cp, *cp_obsolete;
428 NYD2_ENTER;
430 cp_obsolete = ok_vlook(NAIL_HEAD);
431 if(cp_obsolete != NULL)
432 n_OBSOLETE(_("please use *message-inject-head*, not *NAIL_HEAD*"));
434 if(((cp = ok_vlook(message_inject_head)) != NULL ||
435 (cp = cp_obsolete) != NULL) && putesc(cp, fp) < 0)
436 rv = FAL0;
437 else
438 rv = TRU1;
439 NYD2_LEAVE;
440 return rv;
443 static bool_t
444 a_coll_makeheader(FILE *fp, struct header *hp, si8_t *checkaddr_err,
445 bool_t do_delayed_due_t)
447 FILE *nf;
448 int c;
449 bool_t rv;
450 NYD_ENTER;
452 rv = FAL0;
454 if ((nf = Ftmp(NULL, "colhead", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==NULL) {
455 n_perr(_("temporary mail edit file"), 0);
456 goto jleave;
459 extract_header(fp, hp, checkaddr_err);
460 if (checkaddr_err != NULL && *checkaddr_err != 0)
461 goto jleave;
463 /* In template mode some things have been delayed until the template has
464 * been read */
465 if(do_delayed_due_t){
466 char const *cp;
468 if((cp = ok_vlook(on_compose_enter)) != NULL){
469 setup_from_and_sender(hp);
470 temporary_compose_mode_hook_call(cp, &n_temporary_compose_hook_varset,
471 hp);
474 if(!a_coll_message_inject_head(nf))
475 goto jleave;
478 while ((c = getc(fp)) != EOF) /* XXX bytewise, yuck! */
479 putc(c, nf);
481 if (fp != _coll_fp)
482 Fclose(_coll_fp);
483 Fclose(fp);
484 _coll_fp = nf;
486 if (check_from_and_sender(hp->h_from, hp->h_sender) == NULL)
487 goto jleave;
488 rv = TRU1;
489 jleave:
490 NYD_LEAVE;
491 return rv;
494 static si32_t
495 a_coll_edit(int c, struct header *hp) /* TODO error(return) weird */
497 struct n_sigman sm;
498 FILE *nf;
499 sighandler_type volatile sigint;
500 bool_t saved;
501 si32_t volatile rv;
502 NYD_ENTER;
504 rv = n_ERR_NONE;
506 if(!(saved = ok_blook(add_file_recipients)))
507 ok_bset(add_file_recipients);
509 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL){
510 case 0:
511 sigint = safe_signal(SIGINT, SIG_IGN);
512 break;
513 default:
514 rv = n_ERR_INTR;
515 goto jleave;
518 nf = run_editor(_coll_fp, (off_t)-1, c, FAL0, hp, NULL, SEND_MBOX, sigint);
519 if (nf != NULL) {
520 if (hp) {
521 if(!a_coll_makeheader(nf, hp, NULL, FAL0))
522 rv = n_ERR_INVAL;
523 } else {
524 fseek(nf, 0L, SEEK_END);
525 Fclose(_coll_fp);
526 _coll_fp = nf;
528 } else
529 rv = n_ERR_CHILD;
531 n_sigman_cleanup_ping(&sm);
532 jleave:
533 if(!saved)
534 ok_bclear(add_file_recipients);
535 safe_signal(SIGINT, sigint);
536 NYD_LEAVE;
537 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
538 return rv;
541 static si32_t
542 a_coll_pipe(char const *cmd)
544 int ws;
545 FILE *nf;
546 sighandler_type sigint;
547 si32_t rv;
548 NYD_ENTER;
550 rv = n_ERR_NONE;
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);
555 goto jout;
558 /* stdin = current message. stdout = new message */
559 fflush(_coll_fp);
560 if (n_child_run(ok_vlook(SHELL), 0, fileno(_coll_fp), fileno(nf), "-c",
561 cmd, NULL, NULL, &ws) < 0 || WEXITSTATUS(ws) != 0) {
562 Fclose(nf);
563 rv = n_ERR_CHILD;
564 goto jout;
567 if (fsize(nf) == 0) {
568 n_err(_("No bytes from %s !?\n"), n_shexp_quote_cp(cmd, FAL0));
569 Fclose(nf);
570 rv = n_ERR_NODATA;
571 goto jout;
574 /* Take new files */
575 fseek(nf, 0L, SEEK_END);
576 Fclose(_coll_fp);
577 _coll_fp = nf;
578 jout:
579 safe_signal(SIGINT, sigint);
580 NYD_LEAVE;
581 return rv;
584 static si32_t
585 a_coll_forward(char const *ms, FILE *fp, int f)
587 int *msgvec, rv = 0;
588 struct n_ignore const *itp;
589 char const *tabst;
590 enum sendaction action;
591 NYD_ENTER;
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! */
596 goto jleave;
598 if (*msgvec == 0) {
599 *msgvec = first(0, MMNORM);
600 if (*msgvec == 0) {
601 n_err(_("No appropriate messages\n"));
602 rv = n_ERR_NOENT;
603 goto jleave;
605 msgvec[1] = 0;
608 if (f == 'f' || f == 'F' || f == 'u')
609 tabst = NULL;
610 else if ((tabst = ok_vlook(indentprefix)) == NULL)
611 tabst = INDENT_DEFAULT;
612 if (f == 'u' || f == 'U')
613 itp = n_IGNORE_ALL;
614 else
615 itp = upperchar(f) ? NULL : n_IGNORE_TYPE;
616 action = (upperchar(f) && f != 'U') ? SEND_QUOTE_ALL : SEND_QUOTE;
618 fprintf(n_stdout, _("Interpolating:"));
619 srelax_hold();
620 for (; *msgvec != 0; ++msgvec) {
621 struct message *mp = message + *msgvec - 1;
623 touch(mp);
624 fprintf(n_stdout, " %d", *msgvec);
625 fflush(n_stdout);
626 if (sendmp(mp, fp, itp, tabst, action, NULL) < 0) {
627 n_perr(_("temporary mail file"), 0);
628 rv = n_ERR_IO;
629 break;
631 srelax();
633 srelax_rele();
634 fprintf(n_stdout, "\n");
635 jleave:
636 NYD_LEAVE;
637 return rv;
640 static bool_t
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! */
645 bool_t rv;
646 char const *cp, *cmd[4];
647 NYD2_ENTER;
649 /* Protcol version for *on-compose-splice** -- update manual on change! */
650 #define a_COLL_PLUMBING_VERSION "0 0 1"
651 cp = ms;
653 /* C99 */{
654 size_t i;
656 for(i = 0; i < n_NELEM(cmd); ++i){ /* TODO trim+strlist_split(_ifs?)() */
657 while(blankchar(*cp))
658 ++cp;
659 if(*cp == '\0')
660 cmd[i] = NULL;
661 else{
662 if(i < n_NELEM(cmd) - 1)
663 for(cmd[i] = cp++; *cp != '\0' && !blankchar(*cp); ++cp)
665 else{
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]))
670 --cp;
672 cmd[i] = savestrbuf(cmd[i], PTR2SIZE(cp - cmd[i]));
677 if(n_UNLIKELY(cmd[0] == NULL))
678 goto jecmd;
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);
683 else{
684 jecmd:
685 fputs("500\n", n_stdout);
686 rv = FAL0;
688 fflush(n_stdout);
690 NYD2_LEAVE;
691 return rv;
694 static bool_t
695 a_collect__plumb_header(char const *cp, struct header *hp,
696 char const *cmd[4]){
697 uiz_t i;
698 struct n_header_field *hfp;
699 struct name *np, **npp;
700 NYD2_ENTER;
702 if(cmd[1] == NULL)
703 goto jdefault;
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 */
710 struct name *xnp;
711 si8_t aerr;
712 enum expand_addr_check_mode eacm;
713 enum gfield ntype;
714 bool_t mult_ok;
716 if(cmd[2] == NULL || cmd[3] == NULL)
717 goto jecmd;
719 /* Strip [\r\n] which would render a body invalid XXX all controls? */
720 /* C99 */{
721 char *xp, c;
723 cmd[3] = xp = savestr(cmd[3]);
724 for(; (c = *xp) != '\0'; ++xp)
725 if(c == '\n' || c == '\r')
726 *xp = ' ';
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]);
733 else
734 hp->h_subject = n_UNCONST(cmd[3]);
735 fprintf(n_stdout, "210 %s 1\n", cp);
736 goto jleave;
737 }else
738 goto j501cp;
741 mult_ok = TRU1;
742 ntype = GEXTRA | GFULL | GFULLEXTRA;
743 eacm = EACM_STRICT;
745 if(!asccasecmp(cmd[2], cp = "From")){
746 npp = &hp->h_from;
747 jins:
748 aerr = 0;
749 if((np = lextract(cmd[3], ntype)) == NULL)
750 goto j501cp;
752 if((np = checkaddrs(np, eacm, &aerr), aerr != 0)){
753 fprintf(n_stdout, "505 %s\n", cp);
754 goto jleave;
757 /* Go to the end of the list, track whether it contains any
758 * non-deleted entries */
759 i = 0;
760 if((xnp = *npp) != NULL)
761 for(;; xnp = xnp->n_flink){
762 if(!(xnp->n_type & GDEL))
763 ++i;
764 if(xnp->n_flink == NULL)
765 break;
768 if(!mult_ok && (i != 0 || np->n_flink != NULL))
769 fprintf(n_stdout, "506 %s\n", cp);
770 else{
771 if(xnp == NULL)
772 *npp = np;
773 else
774 xnp->n_flink = np;
775 np->n_blink = xnp;
776 fprintf(n_stdout, "210 %s %" PRIuZ "\n", cp, ++i);
778 goto jleave;
780 if(!asccasecmp(cmd[2], cp = "Sender")){
781 mult_ok = FAL0;
782 npp = &hp->h_sender;
783 goto jins;
785 if(!asccasecmp(cmd[2], cp = "To")){
786 npp = &hp->h_to;
787 ntype = GTO | GFULL;
788 eacm = EACM_NORMAL | EAF_NAME;
789 goto jins;
791 if(!asccasecmp(cmd[2], cp = "Cc")){
792 npp = &hp->h_cc;
793 ntype = GCC | GFULL;
794 eacm = EACM_NORMAL | EAF_NAME;
795 goto jins;
797 if(!asccasecmp(cmd[2], cp = "Bcc")){
798 npp = &hp->h_bcc;
799 ntype = GBCC | GFULL;
800 eacm = EACM_NORMAL | EAF_NAME;
801 goto jins;
803 if(!asccasecmp(cmd[2], cp = "Reply-To")){
804 npp = &hp->h_replyto;
805 eacm = EACM_NONAME;
806 goto jins;
808 if(!asccasecmp(cmd[2], cp = "Mail-Followup-To")){
809 npp = &hp->h_mft;
810 eacm = EACM_NONAME;
811 goto jins;
813 if(!asccasecmp(cmd[2], cp = "Message-ID")){
814 mult_ok = FAL0;
815 npp = &hp->h_message_id;
816 ntype = GREF;
817 eacm = EACM_NONAME;
818 goto jins;
820 if(!asccasecmp(cmd[2], cp = "References")){
821 npp = &hp->h_ref;
822 ntype = GREF;
823 eacm = EACM_NONAME;
824 goto jins;
826 if(!asccasecmp(cmd[2], cp = "In-Reply-To")){
827 npp = &hp->h_in_reply_to;
828 ntype = GREF;
829 eacm = EACM_NONAME;
830 goto jins;
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);
842 goto jleave;
845 /* Free-form header fields (note j501cp may print non-normalized name) */
846 /* C99 */{
847 size_t nl, bl;
848 struct n_header_field **hfpp;
850 for(cp = cmd[2]; *cp != '\0'; ++cp)
851 if(!fieldnamechar(*cp)){
852 cp = cmd[2];
853 goto j501cp;
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
862 ) + nl + bl);
863 hfp->hf_next = NULL;
864 hfp->hf_nl = --nl;
865 hfp->hf_bl = bl - 1;
866 hfp->hf_dat[nl = 0] = upperconv(*cp);
867 while(*cp++ != '\0')
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);
872 goto jleave;
875 if(is_asccaseprefix(cmd[1], "list")){
876 jdefault:
877 if(cmd[2] == NULL){
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)
904 if(hfpx == hfp){
905 putc(' ', n_stdout);
906 fputs(&hfp->hf_dat[0], n_stdout);
907 break;
908 }else if(!strcmp(&hfpx->hf_dat[0], &hfp->hf_dat[0]))
909 break;
911 putc('\n', n_stdout);
912 goto jleave;
915 if(cmd[3] != NULL)
916 goto jecmd;
918 if(!asccasecmp(cmd[2], cp = "Subject")){
919 np = (hp->h_subject != NULL) ? (struct name*)-1 : NULL;
920 goto jlist;
922 if(!asccasecmp(cmd[2], cp = "From")){
923 np = hp->h_from;
924 jlist:
925 fprintf(n_stdout, "%s %s\n", (np == NULL ? "501" : "210"), cp);
926 goto jleave;
928 if(!asccasecmp(cmd[2], cp = "Sender")){
929 np = hp->h_sender;
930 goto jlist;
932 if(!asccasecmp(cmd[2], cp = "To")){
933 np = hp->h_to;
934 goto jlist;
936 if(!asccasecmp(cmd[2], cp = "Cc")){
937 np = hp->h_cc;
938 goto jlist;
940 if(!asccasecmp(cmd[2], cp = "Bcc")){
941 np = hp->h_bcc;
942 goto jlist;
944 if(!asccasecmp(cmd[2], cp = "Reply-To")){
945 np = hp->h_replyto;
946 goto jlist;
948 if(!asccasecmp(cmd[2], cp = "Mail-Followup-To")){
949 np = hp->h_mft;
950 goto jlist;
952 if(!asccasecmp(cmd[2], cp = "Message-ID")){
953 np = hp->h_message_id;
954 goto jlist;
956 if(!asccasecmp(cmd[2], cp = "References")){
957 np = hp->h_ref;
958 goto jlist;
960 if(!asccasecmp(cmd[2], cp = "In-Reply-To")){
961 np = hp->h_in_reply_to;
962 goto jlist;
965 if(!asccasecmp(cmd[2], cp = "Mailx-Command")){
966 np = (hp->h_mailx_command != NULL) ? (struct name*)-1 : NULL;
967 goto jlist;
969 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-To")){
970 np = hp->h_mailx_raw_to;
971 goto jlist;
973 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-Cc")){
974 np = hp->h_mailx_raw_cc;
975 goto jlist;
977 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-Bcc")){
978 np = hp->h_mailx_raw_bcc;
979 goto jlist;
981 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-From")){
982 np = hp->h_mailx_orig_from;
983 goto jlist;
985 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-To")){
986 np = hp->h_mailx_orig_to;
987 goto jlist;
989 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-Cc")){
990 np = hp->h_mailx_orig_cc;
991 goto jlist;
993 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-Bcc")){
994 np = hp->h_mailx_orig_bcc;
995 goto jlist;
998 /* Free-form header fields (note j501cp may print non-normalized name) */
999 for(cp = cmd[2]; *cp != '\0'; ++cp)
1000 if(!fieldnamechar(*cp)){
1001 cp = cmd[2];
1002 goto j501cp;
1004 cp = cmd[2];
1005 for(hfp = hp->h_user_headers;; hfp = hfp->hf_next){
1006 if(hfp == NULL)
1007 goto j501cp;
1008 else if(!asccasecmp(cp, &hfp->hf_dat[0])){
1009 fprintf(n_stdout, "210 %s\n", &hfp->hf_dat[0]);
1010 break;
1013 goto jleave;
1016 if(is_asccaseprefix(cmd[1], "remove")){
1017 if(cmd[2] == NULL || cmd[3] != NULL)
1018 goto jecmd;
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);
1024 goto jleave;
1025 }else
1026 goto j501cp;
1029 if(!asccasecmp(cmd[2], cp = "From")){
1030 npp = &hp->h_from;
1031 jrem:
1032 if(*npp != NULL){
1033 *npp = NULL;
1034 fprintf(n_stdout, "210 %s\n", cp);
1035 goto jleave;
1036 }else
1037 goto j501cp;
1039 if(!asccasecmp(cmd[2], cp = "Sender")){
1040 npp = &hp->h_sender;
1041 goto jrem;
1043 if(!asccasecmp(cmd[2], cp = "To")){
1044 npp = &hp->h_to;
1045 goto jrem;
1047 if(!asccasecmp(cmd[2], cp = "Cc")){
1048 npp = &hp->h_cc;
1049 goto jrem;
1051 if(!asccasecmp(cmd[2], cp = "Bcc")){
1052 npp = &hp->h_bcc;
1053 goto jrem;
1055 if(!asccasecmp(cmd[2], cp = "Reply-To")){
1056 npp = &hp->h_replyto;
1057 goto jrem;
1059 if(!asccasecmp(cmd[2], cp = "Mail-Followup-To")){
1060 npp = &hp->h_mft;
1061 goto jrem;
1063 if(!asccasecmp(cmd[2], cp = "Message-ID")){
1064 npp = &hp->h_message_id;
1065 goto jrem;
1067 if(!asccasecmp(cmd[2], cp = "References")){
1068 npp = &hp->h_ref;
1069 goto jrem;
1071 if(!asccasecmp(cmd[2], cp = "In-Reply-To")){
1072 npp = &hp->h_in_reply_to;
1073 goto jrem;
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);
1085 goto jleave;
1088 /* Free-form header fields (note j501cp may print non-normalized name) */
1089 /* C99 */{
1090 struct n_header_field **hfpp;
1091 bool_t any;
1093 for(cp = cmd[2]; *cp != '\0'; ++cp)
1094 if(!fieldnamechar(*cp)){
1095 cp = cmd[2];
1096 goto j501cp;
1098 cp = cmd[2];
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;
1103 if(!any)
1104 fprintf(n_stdout, "210 %s\n", &hfp->hf_dat[0]);
1105 any = TRU1;
1106 }else
1107 hfp = *(hfpp = &hfp->hf_next);
1109 if(!any)
1110 goto j501cp;
1112 goto jleave;
1115 if(is_asccaseprefix(cmd[1], "remove-at")){
1116 if(cmd[2] == NULL || cmd[3] == NULL)
1117 goto jecmd;
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);
1123 goto jleave;
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);
1130 goto jleave;
1131 }else
1132 goto j501cp;
1135 if(!asccasecmp(cmd[2], cp = "From")){
1136 npp = &hp->h_from;
1137 jremat:
1138 if((np = *npp) == NULL)
1139 goto j501cp;
1140 while(--i != 0 && np != NULL)
1141 np = np->n_flink;
1142 if(np == NULL)
1143 goto j501cp;
1145 if(np->n_blink != NULL)
1146 np->n_blink->n_flink = np->n_flink;
1147 else
1148 *npp = 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);
1153 goto jleave;
1155 if(!asccasecmp(cmd[2], cp = "Sender")){
1156 npp = &hp->h_sender;
1157 goto jremat;
1159 if(!asccasecmp(cmd[2], cp = "To")){
1160 npp = &hp->h_to;
1161 goto jremat;
1163 if(!asccasecmp(cmd[2], cp = "Cc")){
1164 npp = &hp->h_cc;
1165 goto jremat;
1167 if(!asccasecmp(cmd[2], cp = "Bcc")){
1168 npp = &hp->h_bcc;
1169 goto jremat;
1171 if(!asccasecmp(cmd[2], cp = "Reply-To")){
1172 npp = &hp->h_replyto;
1173 goto jremat;
1175 if(!asccasecmp(cmd[2], cp = "Mail-Followup-To")){
1176 npp = &hp->h_mft;
1177 goto jremat;
1179 if(!asccasecmp(cmd[2], cp = "Message-ID")){
1180 npp = &hp->h_message_id;
1181 goto jremat;
1183 if(!asccasecmp(cmd[2], cp = "References")){
1184 npp = &hp->h_ref;
1185 goto jremat;
1187 if(!asccasecmp(cmd[2], cp = "In-Reply-To")){
1188 npp = &hp->h_in_reply_to;
1189 goto jremat;
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);
1201 goto jleave;
1204 /* Free-form header fields (note j501cp may print non-normalized name) */
1205 /* C99 */{
1206 struct n_header_field **hfpp;
1208 for(cp = cmd[2]; *cp != '\0'; ++cp)
1209 if(!fieldnamechar(*cp)){
1210 cp = cmd[2];
1211 goto j501cp;
1213 cp = cmd[2];
1215 for(hfpp = &hp->h_user_headers; (hfp = *hfpp) != NULL;){
1216 if(--i == 0){
1217 *hfpp = hfp->hf_next;
1218 fprintf(n_stdout, "210 %s %" PRIuZ "\n", &hfp->hf_dat[0], i);
1219 break;
1220 }else
1221 hfp = *(hfpp = &hfp->hf_next);
1223 if(hfp == NULL)
1224 goto j501cp;
1226 goto jleave;
1229 if(is_asccaseprefix(cmd[1], "show")){
1230 if(cmd[2] == NULL || cmd[3] != NULL)
1231 goto jecmd;
1233 if(!asccasecmp(cmd[2], cp = "Subject")){
1234 if(hp->h_subject == NULL)
1235 goto j501cp;
1236 fprintf(n_stdout, "212 %s\n%s\n\n", cp, hp->h_subject);
1237 goto jleave;
1240 if(!asccasecmp(cmd[2], cp = "From")){
1241 np = hp->h_from;
1242 jshow:
1243 if(np != NULL){
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);
1249 goto jleave;
1250 }else
1251 goto j501cp;
1253 if(!asccasecmp(cmd[2], cp = "Sender")){
1254 np = hp->h_sender;
1255 goto jshow;
1257 if(!asccasecmp(cmd[2], cp = "To")){
1258 np = hp->h_to;
1259 goto jshow;
1261 if(!asccasecmp(cmd[2], cp = "Cc")){
1262 np = hp->h_cc;
1263 goto jshow;
1265 if(!asccasecmp(cmd[2], cp = "Bcc")){
1266 np = hp->h_bcc;
1267 goto jshow;
1269 if(!asccasecmp(cmd[2], cp = "Reply-To")){
1270 np = hp->h_replyto;
1271 goto jshow;
1273 if(!asccasecmp(cmd[2], cp = "Mail-Followup-To")){
1274 np = hp->h_mft;
1275 goto jshow;
1277 if(!asccasecmp(cmd[2], cp = "Message-ID")){
1278 np = hp->h_message_id;
1279 goto jshow;
1281 if(!asccasecmp(cmd[2], cp = "References")){
1282 np = hp->h_ref;
1283 goto jshow;
1285 if(!asccasecmp(cmd[2], cp = "In-Reply-To")){
1286 np = hp->h_in_reply_to;
1287 goto jshow;
1290 if(!asccasecmp(cmd[2], cp = "Mailx-Command")){
1291 if(hp->h_mailx_command == NULL)
1292 goto j501cp;
1293 fprintf(n_stdout, "212 %s\n%s\n\n", cp, hp->h_mailx_command);
1294 goto jleave;
1296 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-To")){
1297 np = hp->h_mailx_raw_to;
1298 goto jshow;
1300 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-Cc")){
1301 np = hp->h_mailx_raw_cc;
1302 goto jshow;
1304 if(!asccasecmp(cmd[2], cp = "Mailx-Raw-Bcc")){
1305 np = hp->h_mailx_raw_bcc;
1306 goto jshow;
1308 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-From")){
1309 np = hp->h_mailx_orig_from;
1310 goto jshow;
1312 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-To")){
1313 np = hp->h_mailx_orig_to;
1314 goto jshow;
1316 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-Cc")){
1317 np = hp->h_mailx_orig_cc;
1318 goto jshow;
1320 if(!asccasecmp(cmd[2], cp = "Mailx-Orig-Bcc")){
1321 np = hp->h_mailx_orig_bcc;
1322 goto jshow;
1325 /* Free-form header fields (note j501cp may print non-normalized name) */
1326 /* C99 */{
1327 bool_t any;
1329 for(cp = cmd[2]; *cp != '\0'; ++cp)
1330 if(!fieldnamechar(*cp)){
1331 cp = cmd[2];
1332 goto j501cp;
1334 cp = cmd[2];
1336 for(any = FAL0, hfp = hp->h_user_headers; hfp != NULL;
1337 hfp = hfp->hf_next){
1338 if(!asccasecmp(cp, &hfp->hf_dat[0])){
1339 if(!any)
1340 fprintf(n_stdout, "212 %s\n", &hfp->hf_dat[0]);
1341 any = TRU1;
1342 fprintf(n_stdout, "%s\n", &hfp->hf_dat[hfp->hf_nl +1]);
1345 if(any)
1346 putc('\n', n_stdout);
1347 else
1348 goto j501cp;
1350 goto jleave;
1353 jecmd:
1354 fputs("500\n", n_stdout);
1355 cp = NULL;
1356 jleave:
1357 NYD2_LEAVE;
1358 return (cp != NULL);
1360 j501cp:
1361 fputs("501 ", n_stdout);
1362 fputs(cp, n_stdout);
1363 putc('\n', n_stdout);
1364 goto jleave;
1367 static bool_t
1368 a_collect__plumb_attach(char const *cp, struct header *hp,
1369 char const *cmd[4]){
1370 bool_t status;
1371 struct attachment *ap;
1372 NYD2_ENTER;
1374 if(cmd[1] == NULL)
1375 goto jdefault;
1377 if(is_asccaseprefix(cmd[1], "attribute")){
1378 if(cmd[2] == NULL || cmd[3] != NULL)
1379 goto jecmd;
1381 if((ap = n_attachment_find(hp->h_attach, cmd[2], NULL)) != NULL){
1382 jatt_att:
1383 fprintf(n_stdout, "212 %s\n", cmd[2]);
1384 if(ap->a_msgno > 0)
1385 fprintf(n_stdout, "message-number %d\n\n", ap->a_msgno);
1386 else{
1387 fprintf(n_stdout,
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);
1403 }else
1404 fputs("501\n", n_stdout);
1405 goto jleave;
1408 if(is_asccaseprefix(cmd[1], "attribute-at")){
1409 uiz_t i;
1411 if(cmd[2] == NULL || cmd[3] != NULL)
1412 goto jecmd;
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);
1418 else{
1419 for(ap = hp->h_attach; ap != NULL && --i != 0; ap = ap->a_flink)
1421 if(ap != NULL)
1422 goto jatt_att;
1423 else
1424 fputs("501\n", n_stdout);
1426 goto jleave;
1429 if(is_asccaseprefix(cmd[1], "attribute-set")){
1430 if(cmd[2] == NULL || cmd[3] == NULL)
1431 goto jecmd;
1433 if((ap = n_attachment_find(hp->h_attach, cmd[2], NULL)) != NULL){
1434 jatt_attset:
1435 if(ap->a_msgno > 0)
1436 fputs("505\n", n_stdout);
1437 else{
1438 char c, *keyw;
1440 cp = cmd[3];
1441 while((c = *cp) != '\0' && !blankchar(c))
1442 ++cp;
1443 keyw = savestrbuf(cmd[3], PTR2SIZE(cp - cmd[3]));
1444 if(c != '\0'){
1445 for(; (c = *++cp) != '\0' && blankchar(c);)
1447 if(c != '\0'){
1448 char *xp;
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')
1455 *xp = ' ';
1456 c = *cp;
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;
1467 if(c != '\0'){
1468 struct name *np;
1470 np = checkaddrs(lextract(cp, GREF),
1471 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG |
1472 EACM_NONAME, NULL);
1473 if(np != NULL && np->n_flink == NULL)
1474 ap->a_content_id = np;
1475 else
1476 cp = NULL;
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;
1482 else
1483 cp = NULL;
1485 if(cp != NULL){
1486 size_t i;
1488 for(i = 0; ap != NULL; ++i, ap = ap->a_blink)
1490 fprintf(n_stdout, "210 %" PRIuZ "\n", i);
1491 }else
1492 fputs("505\n", n_stdout);
1494 }else
1495 fputs("501\n", n_stdout);
1496 goto jleave;
1499 if(is_asccaseprefix(cmd[1], "attribute-set-at")){
1500 uiz_t i;
1502 if(cmd[2] == NULL || cmd[3] == NULL)
1503 goto jecmd;
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);
1509 else{
1510 for(ap = hp->h_attach; ap != NULL && --i != 0; ap = ap->a_flink)
1512 if(ap != NULL)
1513 goto jatt_attset;
1514 else
1515 fputs("501\n", n_stdout);
1517 goto jleave;
1520 if(is_asccaseprefix(cmd[1], "insert")){
1521 enum n_attach_error aerr;
1523 if(cmd[2] == NULL || cmd[3] != NULL)
1524 goto jecmd;
1526 hp->h_attach = n_attachment_append(hp->h_attach, cmd[2], &aerr, &ap);
1527 switch(aerr){
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:
1532 default:
1533 cp = "501\n";
1534 jatt_ins:
1535 fputs(cp, n_stdout);
1536 break;
1537 case n_ATTACH_ERR_NONE:{
1538 size_t i;
1540 for(i = 0; ap != NULL; ++i, ap = ap->a_blink)
1542 fprintf(n_stdout, "210 %" PRIuZ "\n", i);
1543 } break;
1545 goto jleave;
1548 if(is_asccaseprefix(cmd[1], "list")){
1549 jdefault:
1550 if(cmd[2] != NULL)
1551 goto jecmd;
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);
1559 }else
1560 fputs("501\n", n_stdout);
1561 goto jleave;
1564 if(is_asccaseprefix(cmd[1], "remove")){
1565 if(cmd[2] == NULL || cmd[3] != NULL)
1566 goto jecmd;
1568 if((ap = n_attachment_find(hp->h_attach, cmd[2], &status)) != NULL){
1569 if(status == TRUM1)
1570 fputs("506\n", n_stdout);
1571 else{
1572 hp->h_attach = n_attachment_remove(hp->h_attach, ap);
1573 fprintf(n_stdout, "210 %s\n", cmd[2]);
1575 }else
1576 fputs("501\n", n_stdout);
1577 goto jleave;
1580 if(is_asccaseprefix(cmd[1], "remove-at")){
1581 uiz_t i;
1583 if(cmd[2] == NULL || cmd[3] != NULL)
1584 goto jecmd;
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);
1590 else{
1591 for(ap = hp->h_attach; ap != NULL && --i != 0; ap = ap->a_flink)
1593 if(ap != NULL){
1594 hp->h_attach = n_attachment_remove(hp->h_attach, ap);
1595 fprintf(n_stdout, "210 %s\n", cmd[2]);
1596 }else
1597 fputs("501\n", n_stdout);
1599 goto jleave;
1602 jecmd:
1603 fputs("500\n", n_stdout);
1604 cp = NULL;
1605 jleave:
1606 NYD2_LEAVE;
1607 return (cp != NULL);
1610 static void
1611 _collint(int s)
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);
1619 fflush(n_stdout);
1620 clearerr(n_stdin);
1621 } else
1622 _coll_hadintr = 1;
1623 siglongjmp(_coll_jmp, 1);
1625 n_exit_status |= n_EXIT_SEND_ERROR;
1626 if (s != 0)
1627 savedeadletter(_coll_fp, TRU1);
1628 /* Aborting message, no need to fflush() .. */
1629 siglongjmp(_coll_abort, 1);
1632 static void
1633 collhup(int s)
1635 NYD_X; /* Signal handler */
1636 n_UNUSED(s);
1638 savedeadletter(_coll_fp, TRU1);
1639 /* Let's pretend nobody else wants to clean up, a true statement at
1640 * this time */
1641 exit(n_EXIT_ERR);
1644 static int
1645 putesc(char const *s, FILE *stream) /* TODO: v15: drop */
1647 int n = 0, rv = -1;
1648 NYD_ENTER;
1650 while (s[0] != '\0') {
1651 if (s[0] == '\\') {
1652 if (s[1] == 't') {
1653 if (putc('\t', stream) == EOF)
1654 goto jleave;
1655 ++n;
1656 s += 2;
1657 continue;
1659 if (s[1] == 'n') {
1660 if (putc('\n', stream) == EOF)
1661 goto jleave;
1662 ++n;
1663 s += 2;
1664 continue;
1667 if (putc(s[0], stream) == EOF)
1668 goto jleave;
1669 ++n;
1670 ++s;
1672 if (putc('\n', stream) == EOF)
1673 goto jleave;
1674 rv = ++n;
1675 jleave:
1676 NYD_LEAVE;
1677 return rv;
1680 static int
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){
1689 char buf[128];
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);
1696 return 0;
1699 static void
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;
1705 NYD2_ENTER;
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;
1725 n_lofi_free(coap);
1727 hold_all_sigs();
1728 safe_signal(SIGPIPE, opipe);
1729 safe_signal(SIGINT, oint);
1730 rele_all_sigs();
1731 NYD2_LEAVE;
1734 FL void
1735 n_temporary_compose_hook_varset(void *arg){ /* TODO v15: drop */
1736 struct header *hp;
1737 char const *val;
1738 NYD2_ENTER;
1740 hp = arg;
1742 if((val = hp->h_subject) == NULL)
1743 val = n_empty;
1744 ok_vset(mailx_subject, val);
1745 if((val = detract(hp->h_from, GNAMEONLY)) == NULL)
1746 val = n_empty;
1747 ok_vset(mailx_from, val);
1748 if((val = detract(hp->h_sender, GNAMEONLY)) == NULL)
1749 val = n_empty;
1750 ok_vset(mailx_sender, val);
1751 if((val = detract(hp->h_to, GNAMEONLY)) == NULL)
1752 val = n_empty;
1753 ok_vset(mailx_to, val);
1754 if((val = detract(hp->h_cc, GNAMEONLY)) == NULL)
1755 val = n_empty;
1756 ok_vset(mailx_cc, val);
1757 if((val = detract(hp->h_bcc, GNAMEONLY)) == NULL)
1758 val = n_empty;
1759 ok_vset(mailx_bcc, val);
1761 if((val = hp->h_mailx_command) == NULL)
1762 val = n_empty;
1763 ok_vset(mailx_command, val);
1765 if((val = detract(hp->h_mailx_raw_to, GNAMEONLY)) == NULL)
1766 val = n_empty;
1767 ok_vset(mailx_raw_to, val);
1768 if((val = detract(hp->h_mailx_raw_cc, GNAMEONLY)) == NULL)
1769 val = n_empty;
1770 ok_vset(mailx_raw_cc, val);
1771 if((val = detract(hp->h_mailx_raw_bcc, GNAMEONLY)) == NULL)
1772 val = n_empty;
1773 ok_vset(mailx_raw_bcc, val);
1775 if((val = detract(hp->h_mailx_orig_from, GNAMEONLY)) == NULL)
1776 val = n_empty;
1777 ok_vset(mailx_orig_from, val);
1778 if((val = detract(hp->h_mailx_orig_to, GNAMEONLY)) == NULL)
1779 val = n_empty;
1780 ok_vset(mailx_orig_to, val);
1781 if((val = detract(hp->h_mailx_orig_cc, GNAMEONLY)) == NULL)
1782 val = n_empty;
1783 ok_vset(mailx_orig_cc, val);
1784 if((val = detract(hp->h_mailx_orig_bcc, GNAMEONLY)) == NULL)
1785 val = n_empty;
1786 ok_vset(mailx_orig_bcc, val);
1787 NYD2_LEAVE;
1790 FL FILE *
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;
1797 int c;
1798 int volatile t, eofcnt, getfields;
1799 char volatile escape;
1800 enum{
1801 a_NONE,
1802 a_ERREXIT = 1u<<0,
1803 a_IGNERR = 1u<<1,
1804 a_COAP_NOSIGTERM = 1u<<8
1805 #define a_HARDERR() ((flags & (a_ERREXIT | a_IGNERR)) == a_ERREXIT)
1806 } volatile flags;
1807 char *linebuf;
1808 char const *cp, *cp_base, * volatile coapm, * volatile ifs_saved;
1809 size_t i, linesize; /* TODO line pool */
1810 long cnt;
1811 enum sendaction action;
1812 sigset_t oset, nset;
1813 FILE * volatile sigfp;
1814 NYD_ENTER;
1816 _coll_fp = NULL;
1817 sigfp = NULL;
1818 linesize = 0;
1819 linebuf = NULL;
1820 eofcnt = 0;
1821 ifs_saved = coapm = NULL;
1822 coap = NULL;
1824 /* Start catching signals from here, but we're still die on interrupts
1825 * until we're in the main loop */
1826 sigfillset(&nset);
1827 sigprocmask(SIG_BLOCK, &nset, &oset);
1828 if ((_coll_saveint = safe_signal(SIGINT, SIG_IGN)) != SIG_IGN)
1829 safe_signal(SIGINT, &_collint);
1830 if ((_coll_savehup = safe_signal(SIGHUP, SIG_IGN)) != SIG_IGN)
1831 safe_signal(SIGHUP, collhup);
1832 if (sigsetjmp(_coll_abort, 1))
1833 goto jerr;
1834 if (sigsetjmp(_coll_jmp, 1))
1835 goto jerr;
1836 n_pstate |= n_PS_COMPOSE_MODE;
1837 sigprocmask(SIG_SETMASK, &oset, (sigset_t*)NULL);
1839 if ((_coll_fp = Ftmp(NULL, "collect", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==
1840 NULL) {
1841 n_perr(_("temporary mail file"), 0);
1842 goto jerr;
1845 /* If we are going to prompt for a subject, refrain from printing a newline
1846 * after the headers (since some people mind) */
1847 getfields = 0;
1848 if (!(n_poption & n_PO_t_FLAG)) {
1849 t = GTO | GSUBJECT | GCC | GNL;
1850 if (ok_blook(fullnames))
1851 t |= GCOMMA;
1853 if (n_psonce & n_PSO_INTERACTIVE) {
1854 if (hp->h_subject == NULL && (ok_blook(ask) || ok_blook(asksub)))
1855 t &= ~GNL, getfields |= GSUBJECT;
1857 if (hp->h_to == NULL)
1858 t &= ~GNL, getfields |= GTO;
1860 if (!ok_blook(bsdcompat) && !ok_blook(askatend)) {
1861 if (hp->h_bcc == NULL && ok_blook(askbcc))
1862 t &= ~GNL, getfields |= GBCC;
1863 if (hp->h_cc == NULL && ok_blook(askcc))
1864 t &= ~GNL, getfields |= GCC;
1867 } else {
1868 n_UNINIT(t, 0);
1871 _coll_hadintr = 0;
1873 if (!sigsetjmp(_coll_jmp, 1)) {
1874 /* Ask for some headers first, as necessary */
1875 if (getfields)
1876 grab_headers(n_GO_INPUT_CTX_COMPOSE, hp, getfields, 1);
1878 /* Execute compose-enter; delayed for -t mode */
1879 if(!(n_poption & n_PO_t_FLAG) &&
1880 (cp = ok_vlook(on_compose_enter)) != NULL){
1881 setup_from_and_sender(hp);
1882 temporary_compose_mode_hook_call(cp, &n_temporary_compose_hook_varset,
1883 hp);
1886 /* TODO Mm: nope since it may require turning this into a multipart one */
1887 if(!(n_poption & (n_PO_Mm_FLAG | n_PO_t_FLAG))){
1888 if(!a_coll_message_inject_head(_coll_fp))
1889 goto jerr;
1891 /* Quote an original message */
1892 if (mp != NULL && (doprefix || (cp = ok_vlook(quote)) != NULL)) {
1893 quoteitp = n_IGNORE_ALL;
1894 action = SEND_QUOTE;
1895 if (doprefix) {
1896 char const *cp_v15compat;
1898 quoteitp = n_IGNORE_FWD;
1900 if((cp_v15compat = ok_vlook(fwdheading)) != NULL)
1901 n_OBSOLETE(_("please use *forward-inject-head*, "
1902 "not *fwdheading*"));
1903 cp = ok_vlook(forward_inject_head);
1904 if(cp == NULL && cp_v15compat == NULL)
1905 cp = "-------- Original Message --------";
1906 if (*cp != '\0' && fprintf(_coll_fp, "%s\n", cp) < 0)
1907 goto jerr;
1908 } else if (!strcmp(cp, "noheading")) {
1909 /*EMPTY*/;
1910 } else if (!strcmp(cp, "headers")) {
1911 quoteitp = n_IGNORE_TYPE;
1912 } else if (!strcmp(cp, "allheaders")) {
1913 quoteitp = NULL;
1914 action = SEND_QUOTE_ALL;
1915 } else {
1916 cp = hfield1("from", mp);
1917 if (cp != NULL && (cnt = (long)strlen(cp)) > 0) {
1918 if (xmime_write(cp, cnt, _coll_fp, CONV_FROMHDR, TD_NONE) < 0)
1919 goto jerr;
1920 if (fprintf(_coll_fp, _(" wrote:\n\n")) < 0)
1921 goto jerr;
1924 if (fflush(_coll_fp))
1925 goto jerr;
1926 if (doprefix)
1927 cp = NULL;
1928 else if ((cp = ok_vlook(indentprefix)) == NULL)
1929 cp = INDENT_DEFAULT;
1930 if (sendmp(mp, _coll_fp, quoteitp, cp, action, NULL) < 0)
1931 goto jerr;
1935 if (quotefile != NULL) {
1936 if((n_pstate_err_no = a_coll_include_file(quotefile, FAL0, FAL0)
1937 ) != n_ERR_NONE)
1938 goto jerr;
1941 sp = NULL;
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)) {
1951 if (printheaders)
1952 puthead(TRU1, hp, n_stdout, t,
1953 SEND_TODISP, CONV_NONE, NULL, NULL);
1955 rewind(_coll_fp);
1956 while ((c = getc(_coll_fp)) != EOF) /* XXX bytewise, yuck! */
1957 putc(c, n_stdout);
1958 if (fseek(_coll_fp, 0, SEEK_END))
1959 goto jerr;
1960 } else {
1961 rewind(_coll_fp);
1962 if(a_coll_edit('e', hp) != n_ERR_NONE)
1963 goto jerr;
1964 /* Print msg mandated by the Mail Reference Manual */
1965 jcont:
1966 if(n_psonce & n_PSO_INTERACTIVE)
1967 fputs(_("(continue)\n"), n_stdout);
1969 fflush(n_stdout);
1972 } else {
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 */
1975 if (_coll_hadintr)
1976 n_err(_("\n(Interrupt -- one more to kill letter)\n"));
1979 /* If not under shell hook control */
1980 if(coap == NULL){
1981 /* We're done with -M or -m TODO because: we are too stupid yet, above */
1982 if(n_poption & n_PO_Mm_FLAG)
1983 goto jout;
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))
1990 goto jerr;
1992 goto jout;
1996 /* The interactive collect loop */
1997 if(coap == NULL)
1998 escape = *ok_vlook(escape);
1999 flags = ok_blook(errexit) ? a_ERREXIT : a_NONE;
2001 for(;;){
2002 enum {a_HIST_NONE, a_HIST_ADD = 1u<<0, a_HIST_GABBY = 1u<<1} hist;
2004 /* C99 */{
2005 enum n_go_input_flags gif;
2006 bool_t histadd;
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;
2018 if(cnt < 0){
2019 if(coap != NULL)
2020 break;
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))
2028 goto jerr;
2029 n_poption &= ~n_PO_t_FLAG;
2030 continue;
2031 }else if((n_psonce & n_PSO_INTERACTIVE) && ok_blook(ignoreeof) &&
2032 ++eofcnt < 4){
2033 fprintf(n_stdout,
2034 _("*ignoreeof* set, use `~.' to terminate letter\n"));
2035 n_go_input_clearerr();
2036 continue;
2038 break;
2041 _coll_hadintr = 0;
2043 cp = linebuf;
2044 if(cnt == 0)
2045 goto jputnl;
2046 else if(coap == NULL){
2047 if(!(n_psonce & n_PSO_INTERACTIVE) && !(n_poption & n_PO_TILDE_FLAG))
2048 goto jputline;
2049 else if(cp[0] == '.'){
2050 if(cnt == 1 && (ok_blook(dot) ||
2051 (ok_blook(posix) && ok_blook(ignoreeof))))
2052 break;
2055 if(cp[0] != escape){
2056 jputline:
2057 if(fwrite(cp, sizeof *cp, cnt, _coll_fp) != (size_t)cnt)
2058 goto jerr;
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 */
2063 jputnl:
2064 if(n_pstate & n_PS_READLINE_NL){
2065 if(putc('\n', _coll_fp) == EOF)
2066 goto jerr;
2068 continue;
2071 c = *(cp_base = ++cp);
2072 if(--cnt == 0)
2073 goto jearg;
2075 /* Avoid history entry? */
2076 while(spacechar(c)){
2077 hist = a_HIST_NONE;
2078 c = *(cp_base = ++cp);
2079 if(--cnt == 0)
2080 goto jearg;
2083 /* It may just be an escaped escaped character, do that quick */
2084 if(c == escape)
2085 goto jputline;
2087 /* Avoid hard *errexit*? */
2088 flags &= ~a_IGNERR;
2089 if(c == '-'){
2090 flags ^= a_IGNERR;
2091 c = *++cp;
2092 if(--cnt == 0)
2093 goto jearg;
2096 /* Trim input, also to gain a somewhat normalized history entry */
2097 ++cp;
2098 if(--cnt > 0){
2099 struct str x;
2101 x.s = n_UNCONST(cp);
2102 x.l = (size_t)cnt;
2103 n_str_trim_ifs(&x, TRU1);
2104 x.s[x.l] = '\0';
2105 cp = x.s;
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);
2114 if(cnt > 0){
2115 sp = n_string_push_c(sp, ' ');
2116 sp = n_string_push_buf(sp, cp, cnt);
2120 switch(c){
2121 default:
2122 if(1){
2123 char buf[sizeof(n_UNIREPL)];
2125 if(asciichar(c))
2126 buf[0] = c, buf[1] = '\0';
2127 else if(n_psonce & n_PSO_UNICODE)
2128 memcpy(buf, n_unirepl, sizeof n_unirepl);
2129 else
2130 buf[0] = '?', buf[1] = '\0';
2131 n_err(_("Unknown command escape: `%c%s'\n"), escape, buf);
2132 }else
2133 jearg:
2134 n_err(_("Invalid command escape usage: %s\n"),
2135 n_shexp_quote_cp(linebuf, FAL0));
2136 if(a_HARDERR())
2137 goto jerr;
2138 n_pstate_err_no = n_ERR_INVAL;
2139 n_pstate_ex_no = 1;
2140 continue;
2141 case '!':
2142 /* Shell escape, send the balance of line to sh -c */
2143 if(cnt == 0 || coap != NULL)
2144 goto jearg;
2145 else{
2146 char const *argv[2];
2148 argv[0] = cp;
2149 argv[1] = NULL;
2150 n_pstate_ex_no = c_shell(argv); /* TODO history norm.; errexit? */
2152 goto jhistcont;
2153 case ':':
2154 /* FALLTHRU */
2155 case '_':
2156 /* Escape to command mode, but be nice! *//* TODO command expansion
2157 * TODO should be handled here so that we have unique history! */
2158 if(cnt == 0)
2159 goto jearg;
2160 _execute_command(hp, cp, cnt);
2161 if(ok_blook(errexit))
2162 flags |= a_ERREXIT;
2163 else
2164 flags &= ~a_ERREXIT;
2165 if(n_pstate_ex_no != 0 && a_HARDERR())
2166 goto jerr;
2167 if(coap == NULL)
2168 escape = *ok_vlook(escape);
2169 break;
2170 case '.':
2171 /* Simulate end of file on input */
2172 if(cnt != 0 || coap != NULL)
2173 goto jearg;
2174 goto jout; /* TODO does not enter history, thus */
2175 case 'x':
2176 /* Same as 'q', but no *DEAD* saving */
2177 /* FALLTHRU */
2178 case 'q':
2179 /* Force a quit, act like an interrupt had happened */
2180 if(cnt != 0)
2181 goto jearg;
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;
2186 ++_coll_hadintr;
2187 _collint((c == 'x') ? 0 : SIGINT);
2188 exit(n_EXIT_ERR);
2189 /*NOTREACHED*/
2190 case 'h':
2191 /* Grab a bunch of headers */
2192 if(cnt != 0)
2193 goto jearg;
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 */
2201 break;
2202 case 'H':
2203 /* Grab extra headers */
2204 if(cnt != 0)
2205 goto jearg;
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 */
2211 break;
2212 case 't':
2213 /* Add to the To: list */
2214 if(cnt == 0)
2215 goto jearg;
2216 hp->h_to = cat(hp->h_to,
2217 checkaddrs(lextract(cp, GTO | GFULL), EACM_NORMAL, NULL));
2218 n_pstate_err_no = n_ERR_NONE; /* XXX */
2219 n_pstate_ex_no = 0; /* XXX */
2220 hist &= ~a_HIST_GABBY;
2221 break;
2222 case 's':
2223 /* Set the Subject list */
2224 if(cnt == 0)
2225 goto jearg;
2226 /* Subject:; take care for Debian #419840 and strip any \r and \n */
2227 if(n_anyof_cp("\n\r", hp->h_subject = savestr(cp))){
2228 char *xp;
2230 n_err(_("-s: normalizing away invalid ASCII NL / CR bytes\n"));
2231 for(xp = hp->h_subject; *xp != '\0'; ++xp)
2232 if(*xp == '\n' || *xp == '\r')
2233 *xp = ' ';
2234 n_pstate_err_no = n_ERR_INVAL;
2235 n_pstate_ex_no = 1;
2236 }else{
2237 n_pstate_err_no = n_ERR_NONE;
2238 n_pstate_ex_no = 0;
2240 break;
2241 case '@':{
2242 struct attachment *aplist;
2244 /* Edit the attachment list */
2245 aplist = hp->h_attach;
2246 hp->h_attach = NULL;
2247 if(cnt != 0)
2248 hp->h_attach = n_attachment_append_list(aplist, cp);
2249 else
2250 hp->h_attach = n_attachment_list_edit(aplist,
2251 n_GO_INPUT_CTX_COMPOSE);
2252 n_pstate_err_no = n_ERR_NONE; /* XXX ~@ does NOT handle $!/$?! */
2253 n_pstate_ex_no = 0; /* XXX */
2254 } break;
2255 case 'c':
2256 /* Add to the CC list */
2257 if(cnt == 0)
2258 goto jearg;
2259 hp->h_cc = cat(hp->h_cc,
2260 checkaddrs(lextract(cp, GCC | GFULL), EACM_NORMAL, NULL));
2261 n_pstate_err_no = n_ERR_NONE; /* XXX */
2262 n_pstate_ex_no = 0; /* XXX */
2263 hist &= ~a_HIST_GABBY;
2264 break;
2265 case 'b':
2266 /* Add stuff to blind carbon copies list */
2267 if(cnt == 0)
2268 goto jearg;
2269 hp->h_bcc = cat(hp->h_bcc,
2270 checkaddrs(lextract(cp, GBCC | GFULL), EACM_NORMAL, NULL));
2271 n_pstate_err_no = n_ERR_NONE; /* XXX */
2272 n_pstate_ex_no = 0; /* XXX */
2273 hist &= ~a_HIST_GABBY;
2274 break;
2275 case 'd':
2276 if(cnt != 0)
2277 goto jearg;
2278 cp = n_getdeadletter();
2279 if(0){
2280 /*FALLTHRU*/
2281 case 'R':
2282 case 'r':
2283 case '<':
2284 /* Invoke a file: Search for the file name, then open it and copy
2285 * the contents to _coll_fp */
2286 if(cnt == 0){
2287 n_err(_("Interpolate what file?\n"));
2288 if(a_HARDERR())
2289 goto jerr;
2290 n_pstate_err_no = n_ERR_NOENT;
2291 n_pstate_ex_no = 1;
2292 break;
2294 if(*cp == '!' && c == '<'){
2295 /* TODO hist. normalization */
2296 if((n_pstate_err_no = a_coll_insert_cmd(_coll_fp, ++cp)
2297 ) != n_ERR_NONE){
2298 if(ferror(_coll_fp))
2299 goto jerr;
2300 if(a_HARDERR())
2301 goto jerr;
2302 n_pstate_ex_no = 1;
2303 break;
2305 goto jhistcont;
2307 /* Note this also expands things like
2308 * !:vput vexpr delim random 0
2309 * !< - $delim */
2310 if((cp = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO | FEXP_NSHELL)
2311 ) == NULL){
2312 if(a_HARDERR())
2313 goto jerr;
2314 n_pstate_err_no = n_ERR_INVAL;
2315 n_pstate_ex_no = 1;
2316 break;
2319 if(n_is_dir(cp, FAL0)){
2320 n_err(_("%s: is a directory\n"), n_shexp_quote_cp(cp, FAL0));
2321 if(a_HARDERR())
2322 goto jerr;
2323 n_pstate_err_no = n_ERR_ISDIR;
2324 n_pstate_ex_no = 1;
2325 break;
2327 if((n_pstate_err_no = a_coll_include_file(cp, (c == 'R'), TRU1)
2328 ) != n_ERR_NONE){
2329 if(ferror(_coll_fp))
2330 goto jerr;
2331 if(a_HARDERR())
2332 goto jerr;
2333 n_pstate_ex_no = 1;
2334 break;
2336 n_pstate_err_no = n_ERR_NONE; /* XXX */
2337 n_pstate_ex_no = 0; /* XXX */
2338 break;
2339 case 'i':
2340 /* Insert a variable into the file */
2341 if(cnt == 0)
2342 goto jearg;
2343 if((cp = n_var_vlook(cp, TRU1)) == NULL || *cp == '\0')
2344 break;
2345 if(putesc(cp, _coll_fp) < 0) /* TODO v15: user resp upon `set' time */
2346 goto jerr;
2347 if((n_psonce & n_PSO_INTERACTIVE) && putesc(cp, n_stdout) < 0)
2348 goto jerr;
2349 n_pstate_err_no = n_ERR_NONE; /* XXX */
2350 n_pstate_ex_no = 0; /* XXX */
2351 break;
2352 case 'a':
2353 case 'A':
2354 /* Insert the contents of a signature variable */
2355 if(cnt != 0)
2356 goto jearg;
2357 cp = (c == 'a') ? ok_vlook(sign) : ok_vlook(Sign);
2358 if(cp != NULL && *cp != '\0'){
2359 if(putesc(cp, _coll_fp) < 0) /* TODO v15: user upon `set' time */
2360 goto jerr;
2361 if((n_psonce & n_PSO_INTERACTIVE) && putesc(cp, n_stdout) < 0)
2362 goto jerr;
2364 n_pstate_err_no = n_ERR_NONE; /* XXX */
2365 n_pstate_ex_no = 0; /* XXX */
2366 break;
2367 case 'w':
2368 /* Write the message on a file */
2369 if(cnt == 0)
2370 goto jearg;
2371 if((cp = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
2372 n_err(_("Write what file!?\n"));
2373 if(a_HARDERR())
2374 goto jerr;
2375 n_pstate_err_no = n_ERR_INVAL;
2376 n_pstate_ex_no = 1;
2377 break;
2379 rewind(_coll_fp);
2380 if((n_pstate_err_no = a_coll_write(cp, _coll_fp, 1)) == n_ERR_NONE)
2381 n_pstate_ex_no = 0;
2382 else if(ferror(_coll_fp))
2383 goto jerr;
2384 else if(a_HARDERR())
2385 goto jerr;
2386 else
2387 n_pstate_ex_no = 1;
2388 break;
2389 case 'm':
2390 case 'M':
2391 case 'f':
2392 case 'F':
2393 case 'u':
2394 case 'U':
2395 /* Interpolate the named messages, if we are in receiving mail mode.
2396 * Does the standard list processing garbage. If ~f is given, we
2397 * don't shift over */
2398 if(cnt == 0)
2399 goto jearg;
2400 if((n_pstate_err_no = a_coll_forward(cp, _coll_fp, c)) == n_ERR_NONE)
2401 n_pstate_ex_no = 0;
2402 else if(ferror(_coll_fp))
2403 goto jerr;
2404 else if(a_HARDERR())
2405 goto jerr;
2406 else
2407 n_pstate_ex_no = 1;
2408 break;
2409 case 'p':
2410 /* Print current state of the message without altering anything */
2411 if(cnt != 0)
2412 goto jearg;
2413 print_collf(_coll_fp, hp); /* XXX pstate_err_no ++ */
2414 if(ferror(_coll_fp))
2415 goto jerr;
2416 n_pstate_err_no = n_ERR_NONE; /* XXX */
2417 n_pstate_ex_no = 0; /* XXX */
2418 break;
2419 case '|':
2420 /* Pipe message through command. Collect output as new message */
2421 if(cnt == 0)
2422 goto jearg;
2423 rewind(_coll_fp);
2424 if((n_pstate_err_no = a_coll_pipe(cp)) == n_ERR_NONE)
2425 n_pstate_ex_no = 0;
2426 else if(a_HARDERR())
2427 goto jerr;
2428 else
2429 n_pstate_ex_no = 1;
2430 hist &= ~a_HIST_GABBY;
2431 goto jhistcont;
2432 case 'v':
2433 case 'e':
2434 /* Edit the current message. 'e' -> use EDITOR, 'v' -> use VISUAL */
2435 if(cnt != 0 || coap != NULL)
2436 goto jearg;
2437 rewind(_coll_fp);
2438 if((n_pstate_err_no = a_coll_edit(c, ok_blook(editheaders) ? hp : NULL)
2439 ) == n_ERR_NONE)
2440 n_pstate_ex_no = 0;
2441 else if(ferror(_coll_fp))
2442 goto jerr;
2443 else if(a_HARDERR())
2444 goto jerr;
2445 else
2446 n_pstate_ex_no = 1;
2447 goto jhistcont;
2448 case '^':
2449 if(!a_collect_plumbing(cp, hp)){
2450 if(ferror(_coll_fp))
2451 goto jerr;
2452 goto jearg;
2454 n_pstate_err_no = n_ERR_NONE; /* XXX */
2455 n_pstate_ex_no = 0; /* XXX */
2456 hist &= ~a_HIST_GABBY;
2457 break;
2458 case '?':
2459 /* Last the lengthy help string. (Very ugly, but take care for
2460 * compiler supported string lengths :() */
2461 fputs(_(
2462 "COMMAND ESCAPES (to be placed after a newline) excerpt:\n"
2463 "~. Commit and send message\n"
2464 "~: <command> Execute an internal command\n"
2465 "~< <file> Insert <file> (\"~<! <command>\" inserts shell command)\n"
2466 "~@ [<files>] Edit[/Add] attachments (file[=input-charset[#output-charset]])\n"
2467 "~A Insert *Sign* variable (`~a': insert *sign*)\n"
2468 "~c <users> Add users to Cc: list (`~b': to Bcc:)\n"
2469 "~d Read in $DEAD (dead.letter)\n"
2470 "~e Edit message via $EDITOR\n"
2471 ), n_stdout);
2472 fputs(_(
2473 "~F <msglist> Read in with headers, do not *indentprefix* lines\n"
2474 "~f <msglist> Like ~F, but honour `ignore' / `retain' configuration\n"
2475 "~H Edit From:, Reply-To: and Sender:\n"
2476 "~h Prompt for Subject:, To:, Cc: and \"blind\" Bcc:\n"
2477 "~i <variable> Insert a value and a newline\n"
2478 "~M <msglist> Read in with headers, *indentprefix* (`~m': `retain' etc.)\n"
2479 "~p Show current message compose buffer\n"
2480 "~r <file> Insert <file> (`~R': likewise, but *indentprefix* lines)\n"
2481 ), n_stdout);
2482 fputs(_(
2483 "~s <subject> Set Subject:\n"
2484 "~t <users> Add users to To: list\n"
2485 "~u <msglist> Read in message(s) without headers (`~U': indent lines)\n"
2486 "~v Edit message via $VISUAL\n"
2487 "~w <file> Write message onto file\n"
2488 "~x Abort composition, discard message (`~q': save in $DEAD)\n"
2489 "~| <command> Pipe message through shell filter\n"
2490 ), n_stdout);
2491 if(cnt != 0)
2492 goto jearg;
2493 n_pstate_err_no = n_ERR_NONE;
2494 n_pstate_ex_no = 0;
2495 break;
2498 /* Finally place an entry in history as applicable */
2499 if(0){
2500 jhistcont:
2501 c = '\1';
2502 }else
2503 c = '\0';
2504 if(hist & a_HIST_ADD)
2505 n_tty_addhist(n_string_cp(sp), ((hist & a_HIST_GABBY) != 0));
2506 if(c != '\0')
2507 goto jcont;
2510 jout:
2511 /* Do we have *on-compose-splice-shell*, or *on-compose-splice*?
2512 * TODO Usual f...ed up state of signals and terminal etc. */
2513 if(coap == NULL && (cp = ok_vlook(on_compose_splice_shell)) != NULL) Jocs:{
2514 union {int (*ptf)(void); char const *sh;} u;
2515 char const *cmd;
2517 /* Reset *escape* and more to their defaults. On change update manual! */
2518 if(ifs_saved == NULL)
2519 ifs_saved = savestr(ok_vlook(ifs));
2520 escape = n_ESCAPE[0];
2521 ok_vclear(ifs);
2523 if(coapm != NULL){
2524 /* XXX Due Popen() fflush(NULL) in PTF mode, ensure nothing to flush */
2525 /*if(!n_real_seek(_coll_fp, 0, SEEK_END))
2526 * goto jerr;*/
2527 u.ptf = &a_coll_ocs__mac;
2528 cmd = (char*)-1;
2529 a_coll_ocs__macname = cp = coapm;
2530 }else{
2531 u.sh = ok_vlook(SHELL);
2532 cmd = cp;
2535 i = strlen(cp) +1;
2536 coap = n_lofi_alloc(n_VSTRUCT_SIZEOF(struct a_coll_ocs_arg, coa_cmd
2537 ) + i);
2538 coap->coa_pipe[0] = coap->coa_pipe[1] = -1;
2539 coap->coa_stdin = coap->coa_stdout = NULL;
2540 coap->coa_senderr = checkaddr_err;
2541 memcpy(coap->coa_cmd, cp, i);
2543 hold_all_sigs();
2544 coap->coa_opipe = safe_signal(SIGPIPE, SIG_IGN);
2545 coap->coa_oint = safe_signal(SIGINT, SIG_IGN);
2546 rele_all_sigs();
2548 if(pipe_cloexec(coap->coa_pipe) != -1 &&
2549 (coap->coa_stdin = Fdopen(coap->coa_pipe[0], "r", FAL0)) != NULL &&
2550 (coap->coa_stdout = Popen(cmd, "W", u.sh, NULL, coap->coa_pipe[1])
2551 ) != NULL){
2552 close(coap->coa_pipe[1]);
2553 coap->coa_pipe[1] = -1;
2555 temporary_compose_mode_hook_call(NULL, NULL, NULL);
2556 n_go_splice_hack(coap->coa_cmd, coap->coa_stdin, coap->coa_stdout,
2557 (n_psonce & ~(n_PSO_INTERACTIVE | n_PSO_TTYIN | n_PSO_TTYOUT)),
2558 &a_coll_ocs__finalize, &coap);
2559 /* Hook version protocol for ~^: update manual upon change! */
2560 fputs(a_COLL_PLUMBING_VERSION "\n", coap->coa_stdout);
2561 #undef a_COLL_PLUMBING_VERSION
2562 goto jcont;
2565 c = n_err_no;
2566 a_coll_ocs__finalize(coap);
2567 n_perr(_("Cannot invoke *on-compose-splice(-shell)?*"), c);
2568 goto jerr;
2570 if(*checkaddr_err != 0){
2571 *checkaddr_err = 0;
2572 goto jerr;
2574 if(coapm == NULL && (coapm = ok_vlook(on_compose_splice)) != NULL)
2575 goto Jocs;
2576 if(coap != NULL){
2577 ok_vset(ifs, ifs_saved);
2578 ifs_saved = NULL;
2581 /* Final chance to edit headers, if not already above */
2582 if (ok_blook(bsdcompat) || ok_blook(askatend)) {
2583 if (hp->h_cc == NULL && ok_blook(askcc))
2584 grab_headers(n_GO_INPUT_CTX_COMPOSE, hp, GCC, 1);
2585 if (hp->h_bcc == NULL && ok_blook(askbcc))
2586 grab_headers(n_GO_INPUT_CTX_COMPOSE, hp, GBCC, 1);
2588 if (hp->h_attach == NULL && ok_blook(askattach))
2589 hp->h_attach = n_attachment_list_edit(hp->h_attach,
2590 n_GO_INPUT_CTX_COMPOSE);
2592 /* Execute compose-leave */
2593 if((cp = ok_vlook(on_compose_leave)) != NULL){
2594 setup_from_and_sender(hp);
2595 temporary_compose_mode_hook_call(cp, &n_temporary_compose_hook_varset,
2596 hp);
2599 /* Add automatic receivers */
2600 if ((cp = ok_vlook(autocc)) != NULL && *cp != '\0')
2601 hp->h_cc = cat(hp->h_cc, checkaddrs(lextract(cp, GCC | GFULL),
2602 EACM_NORMAL, checkaddr_err));
2603 if ((cp = ok_vlook(autobcc)) != NULL && *cp != '\0')
2604 hp->h_bcc = cat(hp->h_bcc, checkaddrs(lextract(cp, GBCC | GFULL),
2605 EACM_NORMAL, checkaddr_err));
2606 if (*checkaddr_err != 0)
2607 goto jerr;
2609 /* TODO Cannot do since it may require turning this into a multipart one */
2610 if(n_poption & n_PO_Mm_FLAG)
2611 goto jskiptails;
2613 /* Place signature? */
2614 if((cp = ok_vlook(signature)) != NULL && *cp != '\0'){
2615 char const *cpq;
2617 if((cpq = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
2618 n_err(_("*signature* expands to invalid file: %s\n"),
2619 n_shexp_quote_cp(cp, FAL0));
2620 goto jerr;
2622 cpq = n_shexp_quote_cp(cp = cpq, FAL0);
2624 if((sigfp = Fopen(cp, "r")) == NULL){
2625 n_err(_("Can't open *signature* %s: %s\n"),
2626 cpq, n_err_to_doc(n_err_no));
2627 goto jerr;
2630 if(linebuf == NULL)
2631 linebuf = smalloc(linesize = LINESIZE);
2632 c = '\0';
2633 while((i = fread(linebuf, sizeof *linebuf, linesize, n_UNVOLATILE(sigfp)))
2634 > 0){
2635 c = linebuf[i - 1];
2636 if(i != fwrite(linebuf, sizeof *linebuf, i, _coll_fp))
2637 goto jerr;
2640 /* C99 */{
2641 FILE *x = n_UNVOLATILE(sigfp);
2642 int e = n_err_no, ise = ferror(x);
2644 sigfp = NULL;
2645 Fclose(x);
2647 if(ise){
2648 n_err(_("Errors while reading *signature* %s: %s\n"),
2649 cpq, n_err_to_doc(e));
2650 goto jerr;
2654 if(c != '\0' && c != '\n')
2655 putc('\n', _coll_fp);
2658 { char const *cp_obsolete = ok_vlook(NAIL_TAIL);
2660 if(cp_obsolete != NULL)
2661 n_OBSOLETE(_("please use *message-inject-tail*, not *NAIL_TAIL*"));
2663 if((cp = ok_vlook(message_inject_tail)) != NULL ||
2664 (cp = cp_obsolete) != NULL){
2665 if(putesc(cp, _coll_fp) < 0)
2666 goto jerr;
2667 if((n_psonce & n_PSO_INTERACTIVE) && putesc(cp, n_stdout) < 0)
2668 goto jerr;
2672 jskiptails:
2673 if(fflush(_coll_fp))
2674 goto jerr;
2675 rewind(_coll_fp);
2677 jleave:
2678 if (linebuf != NULL)
2679 free(linebuf);
2680 sigprocmask(SIG_BLOCK, &nset, NULL);
2681 n_pstate &= ~n_PS_COMPOSE_MODE;
2682 safe_signal(SIGINT, _coll_saveint);
2683 safe_signal(SIGHUP, _coll_savehup);
2684 sigprocmask(SIG_SETMASK, &oset, NULL);
2685 NYD_LEAVE;
2686 return _coll_fp;
2688 jerr:
2689 hold_all_sigs();
2691 if(coap != NULL && coap != (struct a_coll_ocs_arg*)-1){
2692 if(!(flags & a_COAP_NOSIGTERM))
2693 n_psignal(coap->coa_stdout, SIGTERM);
2694 n_go_splice_hack_remove_after_jump();
2695 coap = NULL;
2697 if(ifs_saved != NULL){
2698 ok_vset(ifs, ifs_saved);
2699 ifs_saved = NULL;
2701 if(sigfp != NULL){
2702 Fclose(n_UNVOLATILE(sigfp));
2703 sigfp = NULL;
2705 if(_coll_fp != NULL){
2706 Fclose(_coll_fp);
2707 _coll_fp = NULL;
2710 rele_all_sigs();
2712 assert(checkaddr_err != NULL);
2713 /* TODO We don't save in $DEAD upon error because msg not readily composed?
2714 * TODO But this no good, it should go ZOMBIE / DRAFT / POSTPONED or what! */
2715 if(*checkaddr_err != 0){
2716 if(*checkaddr_err == 111)
2717 n_err(_("Compose mode splice hook failure\n"));
2718 else
2719 n_err(_("Some addressees were classified as \"hard error\"\n"));
2720 }else if(_coll_hadintr == 0){
2721 *checkaddr_err = TRU1; /* TODO ugly: "sendout_error" now.. */
2722 n_err(_("Failed to prepare composed message (I/O error, disk full?)\n"));
2724 goto jleave;
2726 #undef a_HARDERR
2729 /* s-it-mode */