THANKS: Paul Eggert
[s-mailx.git] / send.c
blob20f993c0ef78be081b005fca94bd4196ee4fe4e7
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Message content preparation (sendmp()).
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE send
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
42 static sigjmp_buf _send_pipejmp;
44 /* Going for user display, print Part: info string */
45 static void _print_part_info(FILE *obuf, struct mimepart const *mpp,
46 struct n_ignore const *doitp, int level,
47 struct quoteflt *qf, ui64_t *stats);
49 /* Create a pipe; if mpp is not NULL, place some NAILENV_* environment
50 * variables accordingly */
51 static FILE * _pipefile(struct mime_handler *mhp,
52 struct mimepart const *mpp, FILE **qbuf,
53 char const *tmpname, int term_infd);
55 /* Call mime_write() as approbiate and adjust statistics */
56 SINLINE ssize_t _out(char const *buf, size_t len, FILE *fp,
57 enum conversion convert, enum sendaction action,
58 struct quoteflt *qf, ui64_t *stats, struct str *outrest,
59 struct str *inrest);
61 /* SIGPIPE handler */
62 static void _send_onpipe(int signo);
64 /* Send one part */
65 static int sendpart(struct message *zmp, struct mimepart *ip,
66 FILE *obuf, struct n_ignore const *doitp,
67 struct quoteflt *qf, enum sendaction action,
68 ui64_t *stats, int level);
70 /* Get a file for an attachment */
71 static FILE * newfile(struct mimepart *ip, bool_t volatile *ispipe);
73 static void pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf,
74 struct quoteflt *qf, ui64_t *stats);
76 /* Output a reasonable looking status field */
77 static void statusput(const struct message *mp, FILE *obuf,
78 struct quoteflt *qf, ui64_t *stats);
79 static void xstatusput(const struct message *mp, FILE *obuf,
80 struct quoteflt *qf, ui64_t *stats);
82 static void put_from_(FILE *fp, struct mimepart *ip, ui64_t *stats);
84 static void
85 _print_part_info(FILE *obuf, struct mimepart const *mpp, /* TODO strtofmt.. */
86 struct n_ignore const *doitp, int level, struct quoteflt *qf, ui64_t *stats)
88 char buf[64];
89 struct str ti = {NULL, 0}, to;
90 struct str const *cpre, *csuf;
91 char const *cp;
92 NYD2_ENTER;
94 #ifdef HAVE_COLOUR
96 struct n_colour_pen *cpen = n_colour_pen_create(n_COLOUR_ID_VIEW_PARTINFO,
97 NULL);
98 if ((cpre = n_colour_pen_to_str(cpen)) != NULL)
99 csuf = n_colour_reset_to_str();
100 else
101 csuf = NULL;
103 #else
104 cpre = csuf = NULL;
105 #endif
107 /* Take care of "99.99", i.e., 5 */
108 if ((cp = mpp->m_partstring) == NULL || cp[0] == '\0')
109 cp = "?";
110 if (level || (cp[0] != '1' && cp[1] == '\0') || (cp[0] == '1' && /* TODO */
111 cp[1] == '.' && cp[2] != '1')) /* TODO code should not look like so */
112 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
114 /* Part id, content-type, encoding, charset */
115 if (cpre != NULL)
116 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
117 _out("[-- #", 5, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
118 _out(cp, strlen(cp), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
120 to.l = snprintf(buf, sizeof buf, " %" PRIuZ "/%" PRIuZ " ",
121 (uiz_t)mpp->m_lines, (uiz_t)mpp->m_size);
122 _out(buf, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
124 if ((cp = mpp->m_ct_type_usr_ovwr) != NULL)
125 _out("+", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
126 else
127 cp = mpp->m_ct_type_plain;
128 if ((to.l = strlen(cp)) > 30 && is_asccaseprefix(cp, "application/")) {
129 size_t const al = sizeof("appl../") -1, fl = sizeof("application/") -1;
130 size_t i = to.l - fl;
131 char *x = salloc(al + i +1);
133 memcpy(x, "appl../", al);
134 memcpy(x + al, cp + fl, i +1);
135 cp = x;
136 to.l = al + i;
138 _out(cp, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
140 if (mpp->m_multipart == NULL/* TODO */ && (cp = mpp->m_ct_enc) != NULL) {
141 _out(", ", 2, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
142 if (to.l > 25 && !asccasecmp(cp, "quoted-printable"))
143 cp = "qu.-pr.";
144 _out(cp, strlen(cp), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
147 if (mpp->m_multipart == NULL/* TODO */ && (cp = mpp->m_charset) != NULL) {
148 _out(", ", 2, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
149 _out(cp, strlen(cp), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
152 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
153 if (csuf != NULL)
154 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
155 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
157 /* */
158 if (mpp->m_content_info & CI_MIME_ERRORS) {
159 if (cpre != NULL)
160 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
161 NULL, NULL);
162 _out("[-- ", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
164 ti.l = strlen(ti.s = n_UNCONST(_("Defective MIME structure")));
165 makeprint(&ti, &to);
166 ti.s = NULL; /* Not allocated! */
167 to.l = delctrl(to.s, to.l);
168 _out(to.s, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
169 free(to.s);
171 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
172 if (csuf != NULL)
173 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
174 NULL, NULL);
175 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
178 /* Filename */
179 if (n_ignore_is_ign(doitp, "content-disposition", 19) &&
180 mpp->m_filename != NULL && *mpp->m_filename != '\0') {
181 if (cpre != NULL)
182 _out(cpre->s, cpre->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
183 NULL, NULL);
184 _out("[-- ", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
186 ti.l = 0;
187 makeprint(n_str_add_cp(&ti, mpp->m_filename), &to);
188 to.l = delctrl(to.s, to.l);
189 _out(to.s, to.l, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
190 free(to.s);
192 _out(" --]", 4, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
193 if (csuf != NULL)
194 _out(csuf->s, csuf->l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
195 NULL, NULL);
196 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL, NULL);
199 if (ti.s != NULL)
200 free(ti.s);
201 NYD2_LEAVE;
204 static FILE *
205 _pipefile(struct mime_handler *mhp, struct mimepart const *mpp, FILE **qbuf,
206 char const *tmpname, int term_infd)
208 struct str s;
209 char const *env_addon[8], *cp, *sh;
210 FILE *rbuf;
211 NYD_ENTER;
213 rbuf = *qbuf;
215 if (mhp->mh_flags & MIME_HDL_ISQUOTE) {
216 if ((*qbuf = Ftmp(NULL, "sendp", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==
217 NULL) {
218 n_perr(_("tmpfile"), 0);
219 *qbuf = rbuf;
223 if ((mhp->mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_PTF) {
224 union {int (*ptf)(void); char const *sh;} u;
226 fflush(*qbuf);
227 if (*qbuf != stdout) /* xxx never? v15: it'll be a filter anyway */
228 fflush(stdout);
230 u.ptf = mhp->mh_ptf;
231 if((rbuf = Popen((char*)-1, "W", u.sh, NULL, fileno(*qbuf))) == NULL)
232 goto jerror;
233 goto jleave;
236 /* NAIL_FILENAME */
237 if (mpp == NULL || (cp = mpp->m_filename) == NULL)
238 cp = n_empty;
239 env_addon[0] = str_concat_csvl(&s, NAILENV_FILENAME, "=", cp, NULL)->s;
241 /* NAIL_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
242 * TODO a file wherever he wants! *Do* create a zero-size temporary file
243 * TODO and give *that* path as NAIL_FILENAME_TEMPORARY, clean it up once
244 * TODO the pipe returns? Like this we *can* verify path/name issues! */
245 env_addon[1] = str_concat_csvl(&s, NAILENV_FILENAME_GENERATED, "=",
246 getrandstring(n_MIN(NAME_MAX / 4, 16)), NULL)->s;
248 /* NAIL_CONTENT{,_EVIDENCE} */
249 if (mpp == NULL || (cp = mpp->m_ct_type_plain) == NULL)
250 cp = n_empty;
251 env_addon[2] = str_concat_csvl(&s, NAILENV_CONTENT, "=", cp, NULL)->s;
253 if (mpp != NULL && mpp->m_ct_type_usr_ovwr != NULL)
254 cp = mpp->m_ct_type_usr_ovwr;
255 env_addon[3] = str_concat_csvl(&s, NAILENV_CONTENT_EVIDENCE, "=", cp,
256 NULL)->s;
258 env_addon[4] = str_concat_csvl(&s, NAILENV_TMPDIR, /* TODO v15*/
259 "=", ok_vlook(TMPDIR), NULL)->s;
261 env_addon[5] = NULL;
263 /* NAIL_FILENAME_TEMPORARY? */
264 if (tmpname != NULL) {
265 env_addon[5] = str_concat_csvl(&s, NAILENV_FILENAME_TEMPORARY, "=",
266 tmpname, NULL)->s;
267 env_addon[6] = NULL;
270 sh = ok_vlook(SHELL);
272 if (mhp->mh_flags & MIME_HDL_NEEDSTERM) {
273 sigset_t nset;
274 int pid;
276 sigemptyset(&nset);
277 pid = run_command(sh, &nset, term_infd, COMMAND_FD_PASS, "-c",
278 mhp->mh_shell_cmd, NULL, env_addon);
279 rbuf = (pid < 0) ? NULL : (FILE*)-1;
280 } else {
281 rbuf = Popen(mhp->mh_shell_cmd, "W", sh, env_addon,
282 (mhp->mh_flags & MIME_HDL_ASYNC ? -1 : fileno(*qbuf)));
283 jerror:
284 if (rbuf == NULL)
285 n_err(_("Cannot run MIME type handler: %s: %s\n"),
286 mhp->mh_msg, strerror(errno));
287 else {
288 fflush(*qbuf);
289 if (*qbuf != stdout)
290 fflush(stdout);
293 jleave:
294 NYD_LEAVE;
295 return rbuf;
298 SINLINE ssize_t
299 _out(char const *buf, size_t len, FILE *fp, enum conversion convert, enum
300 sendaction action, struct quoteflt *qf, ui64_t *stats, struct str *outrest,
301 struct str *inrest)
303 ssize_t sz = 0, n;
304 int flags;
305 NYD_ENTER;
307 #if 0
308 Well ... it turns out to not work like that since of course a valid
309 RFC 4155 compliant parser, like S-nail, takes care for From_ lines only
310 after an empty line has been seen, which cannot be detected that easily
311 right here!
312 ifdef HAVE_DEBUG /* TODO assert legacy */
313 /* TODO if at all, this CAN only happen for SEND_DECRYPT, since all
314 * TODO other input situations handle RFC 4155 OR, if newly generated,
315 * TODO enforce quoted-printable if there is From_, as "required" by
316 * TODO RFC 5751. The SEND_DECRYPT case is not yet overhauled;
317 * TODO if it may happen in this path, we should just treat decryption
318 * TODO as we do for the other input paths; i.e., handle it in SSL!! */
319 if (action == SEND_MBOX || action == SEND_DECRYPT)
320 assert(!is_head(buf, len, FAL0));
321 #else
322 if ((/*action == SEND_MBOX ||*/ action == SEND_DECRYPT) &&
323 is_head(buf, len, FAL0)) {
324 putc('>', fp);
325 ++sz;
327 #endif
329 flags = ((int)action & _TD_EOF);
330 action &= ~_TD_EOF;
331 n = mime_write(buf, len, fp,
332 action == SEND_MBOX ? CONV_NONE : convert,
333 flags | ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
334 action == SEND_QUOTE || action == SEND_QUOTE_ALL)
335 ? TD_ISPR | TD_ICONV
336 : (action == SEND_TOSRCH || action == SEND_TOPIPE)
337 ? TD_ICONV : (action == SEND_SHOW ? TD_ISPR : TD_NONE)),
338 qf, outrest, inrest);
339 if (n < 0)
340 sz = n;
341 else if (n > 0) {
342 sz += n;
343 if (stats != NULL)
344 *stats += sz;
346 NYD_LEAVE;
347 return sz;
350 static void
351 _send_onpipe(int signo)
353 NYD_X; /* Signal handler */
354 n_UNUSED(signo);
355 siglongjmp(_send_pipejmp, 1);
358 static sigjmp_buf __sendp_actjmp; /* TODO someday.. */
359 static int __sendp_sig; /* TODO someday.. */
360 static sighandler_type __sendp_opipe;
361 static void
362 __sendp_onsig(int sig) /* TODO someday, we won't need it no more */
364 NYD_X; /* Signal handler */
365 __sendp_sig = sig;
366 siglongjmp(__sendp_actjmp, 1);
369 static int
370 sendpart(struct message *zmp, struct mimepart *ip, FILE * volatile obuf,
371 struct n_ignore const *doitp, struct quoteflt *qf,
372 enum sendaction volatile action, ui64_t * volatile stats, int level)
374 int volatile rv = 0;
375 struct mime_handler mh;
376 struct str outrest, inrest;
377 char *line = NULL, *cp, *cp2, *start;
378 char const * volatile tmpname = NULL;
379 size_t linesize = 0, linelen, cnt;
380 int volatile term_infd;
381 int dostat, c;
382 struct mimepart *volatile np;
383 FILE * volatile ibuf = NULL, * volatile pbuf = obuf,
384 * volatile qbuf = obuf, *origobuf = obuf;
385 enum conversion volatile convert;
386 sighandler_type volatile oldpipe = SIG_DFL;
387 NYD_ENTER;
389 n_UNINIT(term_infd, 0);
390 n_UNINIT(cnt, 0);
392 quoteflt_reset(qf, obuf);
394 if (ip->m_mimecontent == MIME_PKCS7) {
395 if (ip->m_multipart &&
396 action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
397 goto jheaders_skip;
400 dostat = 0;
401 if (level == 0) {
402 if (doitp != NULL) {
403 if (!n_ignore_is_ign(doitp, "status", 6))
404 dostat |= 1;
405 if (!n_ignore_is_ign(doitp, "x-status", 8))
406 dostat |= 2;
407 } else
408 dostat = 3;
410 if ((ibuf = setinput(&mb, (struct message*)ip, NEED_BODY)) == NULL) {
411 rv = -1;
412 goto jleave;
414 cnt = ip->m_size;
416 if (ip->m_mimecontent == MIME_DISCARD)
417 goto jheaders_skip;
419 if (!(ip->m_flag & MNOFROM))
420 while (cnt && (c = getc(ibuf)) != EOF) {
421 cnt--;
422 if (c == '\n')
423 break;
425 convert = (action == SEND_TODISP || action == SEND_TODISP_ALL ||
426 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
427 action == SEND_TOSRCH)
428 ? CONV_FROMHDR : CONV_NONE;
430 /* Work the headers */
431 /* C99 */{
432 enum {
433 HPS_NONE = 0,
434 HPS_IN_FIELD = 1<<0,
435 HPS_IGNORE = 1<<1,
436 HPS_ISENC_1 = 1<<2,
437 HPS_ISENC_2 = 1<<3
438 } hps = HPS_NONE;
439 size_t lineno = 0;
441 while (fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0)) {
442 ++lineno;
443 if (line[0] == '\n') {
444 /* If line is blank, we've reached end of headers, so force out
445 * status: field and note that we are no longer in header fields */
446 if (dostat & 1)
447 statusput(zmp, obuf, qf, stats);
448 if (dostat & 2)
449 xstatusput(zmp, obuf, qf, stats);
450 if (doitp != n_IGNORE_ALL)
451 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL,NULL);
452 break;
455 hps &= ~HPS_ISENC_1;
456 if ((hps & HPS_IN_FIELD) && blankchar(line[0])) {
457 /* If this line is a continuation (SP / HT) of a previous header
458 * field, determine if the start of the line is a MIME encoded word */
459 if (hps & HPS_ISENC_2) {
460 for (cp = line; blankchar(*cp); ++cp)
462 if (cp > line && linelen - PTR2SIZE(cp - line) > 8 &&
463 cp[0] == '=' && cp[1] == '?')
464 hps |= HPS_ISENC_1;
466 } else {
467 /* Pick up the header field if we have one */
468 for (cp = line; (c = *cp & 0377) && c != ':' && !spacechar(c); ++cp)
470 cp2 = cp;
471 while (spacechar(*cp))
472 ++cp;
473 if (cp[0] != ':') {
474 if (lineno != 1)
475 n_err(_("Malformed message: headers and body not separated "
476 "(with empty line)\n"));
477 /* Not a header line, force out status: This happens in uucp style
478 * mail where there are no headers at all */
479 if (level == 0 /*&& lineno == 1*/) {
480 if (dostat & 1)
481 statusput(zmp, obuf, qf, stats);
482 if (dostat & 2)
483 xstatusput(zmp, obuf, qf, stats);
485 if (doitp != n_IGNORE_ALL)
486 _out("\n", 1, obuf, CONV_NONE,SEND_MBOX, qf, stats, NULL,NULL);
487 break;
490 /* If it is an ignored field and we care about such things, skip it.
491 * Misuse dostat also for another bit xxx use a bitenum + for more */
492 if (ok_blook(keep_content_length))
493 dostat |= 1 << 2;
494 c = *cp2;
495 *cp2 = 0; /* temporarily null terminate */
496 if ((doitp != NULL &&
497 n_ignore_is_ign(doitp, line, PTR2SIZE(cp2 - line))) ||
498 (action == SEND_MBOX && !(dostat & (1 << 2)) &&
499 (!asccasecmp(line, "content-length") ||
500 !asccasecmp(line, "lines"))))
501 hps |= HPS_IGNORE;
502 else if (!asccasecmp(line, "status")) {
503 /* If field is "status," go compute and print real Status: field */
504 if (dostat & 1) {
505 statusput(zmp, obuf, qf, stats);
506 dostat &= ~1;
507 hps |= HPS_IGNORE;
509 } else if (!asccasecmp(line, "x-status")) {
510 /* If field is "status," go compute and print real Status: field */
511 if (dostat & 2) {
512 xstatusput(zmp, obuf, qf, stats);
513 dostat &= ~2;
514 hps |= HPS_IGNORE;
516 } else {
517 hps &= ~HPS_IGNORE;
518 /* For colourization we need the complete line, so save it */
519 /* XXX This is all temporary (colour belongs into backend), so
520 * XXX use tmpname as a temporary storage in the meanwhile */
521 #ifdef HAVE_COLOUR
522 if (pstate & PS_COLOUR_ACTIVE)
523 tmpname = savestrbuf(line, PTR2SIZE(cp2 - line));
524 #endif
526 *cp2 = c;
527 dostat &= ~(1 << 2);
528 hps |= HPS_IN_FIELD;
531 /* Determine if the end of the line is a MIME encoded word */
532 /* TODO geeeh! all this lengthy stuff that follows is about is dealing
533 * TODO with header follow lines, and it should be up to the backend
534 * TODO what happens and what not, i.e., it doesn't matter whether it's
535 * TODO a MIME-encoded word or not, as long as a single separating space
536 * TODO remains in between lines (the MIME stuff will correctly remove
537 * TODO whitespace in between multiple adjacent encoded words) */
538 hps &= ~HPS_ISENC_2;
539 if (cnt && (c = getc(ibuf)) != EOF) {
540 if (blankchar(c)) {
541 cp = line + linelen - 1;
542 if (linelen > 0 && *cp == '\n')
543 --cp;
544 while (cp >= line && whitechar(*cp))
545 --cp;
546 if (PTR2SIZE(cp - line > 8) && cp[0] == '=' && cp[-1] == '?')
547 hps |= HPS_ISENC_2;
549 ungetc(c, ibuf);
552 if (!(hps & HPS_IGNORE)) {
553 size_t len = linelen;
554 start = line;
555 if (action == SEND_TODISP || action == SEND_TODISP_ALL ||
556 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
557 action == SEND_TOSRCH) {
558 /* Strip blank characters if two MIME-encoded words follow on
559 * continuing lines */
560 if (hps & HPS_ISENC_1)
561 while (len > 0 && blankchar(*start)) {
562 ++start;
563 --len;
565 if (hps & HPS_ISENC_2)
566 if (len > 0 && start[len - 1] == '\n')
567 --len;
568 while (len > 0 && blankchar(start[len - 1]))
569 --len;
571 #ifdef HAVE_COLOUR
573 bool_t colour_stripped = FAL0;
574 if (tmpname != NULL) {
575 n_colour_put(obuf, n_COLOUR_ID_VIEW_HEADER, tmpname);
576 if (len > 0 && start[len - 1] == '\n') {
577 colour_stripped = TRU1;
578 --len;
581 #endif
582 _out(start, len, obuf, convert, action, qf, stats, NULL,NULL);
583 #ifdef HAVE_COLOUR
584 if (tmpname != NULL) {
585 n_colour_reset(obuf);
586 if (colour_stripped)
587 putc('\n', obuf);
590 #endif
591 if (ferror(obuf)) {
592 free(line);
593 rv = -1;
594 goto jleave;
598 } /* C99 */
599 quoteflt_flush(qf);
600 free(line);
601 line = NULL;
602 tmpname = NULL;
604 jheaders_skip:
605 memset(&mh, 0, sizeof mh);
607 switch (ip->m_mimecontent) {
608 case MIME_822:
609 switch (action) {
610 case SEND_TODISP:
611 case SEND_TODISP_ALL:
612 case SEND_QUOTE:
613 case SEND_QUOTE_ALL:
614 if (ok_blook(rfc822_body_from_)) {
615 if (qf->qf_pfix_len > 0) {
616 size_t i = fwrite(qf->qf_pfix, sizeof *qf->qf_pfix,
617 qf->qf_pfix_len, obuf);
618 if (i == qf->qf_pfix_len && stats != NULL)
619 *stats += i;
621 put_from_(obuf, ip->m_multipart, stats);
623 /* FALLTHRU */
624 case SEND_TOSRCH:
625 case SEND_DECRYPT:
626 goto jmulti;
627 case SEND_TOFILE:
628 case SEND_TOPIPE:
629 if (ok_blook(rfc822_body_from_))
630 put_from_(obuf, ip->m_multipart, stats);
631 /* FALLTHRU */
632 case SEND_MBOX:
633 case SEND_RFC822:
634 case SEND_SHOW:
635 break;
637 break;
638 case MIME_TEXT_HTML:
639 case MIME_TEXT:
640 case MIME_TEXT_PLAIN:
641 switch (action) {
642 case SEND_TODISP:
643 case SEND_TODISP_ALL:
644 case SEND_QUOTE:
645 case SEND_QUOTE_ALL:
646 switch (mime_type_handler(&mh, ip, action)) {
647 case MIME_HDL_MSG:
648 _out(mh.mh_msg.s, mh.mh_msg.l, obuf, CONV_NONE, SEND_MBOX, qf,
649 stats, NULL, NULL);
650 /* We would print this as plain text, so better force going home */
651 goto jleave;
652 default:
653 break;
655 /* FALLTRHU */
656 default:
657 break;
659 break;
660 case MIME_DISCARD:
661 if (action != SEND_DECRYPT)
662 goto jleave;
663 break;
664 case MIME_PKCS7:
665 if (action != SEND_MBOX && action != SEND_RFC822 &&
666 action != SEND_SHOW && ip->m_multipart != NULL)
667 goto jmulti;
668 /* FALLTHRU */
669 default:
670 switch (action) {
671 case SEND_TODISP:
672 case SEND_TODISP_ALL:
673 case SEND_QUOTE:
674 case SEND_QUOTE_ALL:
675 switch (mime_type_handler(&mh, ip, action)) {
676 case MIME_HDL_MSG:
677 _out(mh.mh_msg.s, mh.mh_msg.l, obuf, CONV_NONE, SEND_MBOX, qf,
678 stats, NULL, NULL);
679 /* We would print this as plain text, so better force going home */
680 goto jleave;
681 case MIME_HDL_CMD:
682 /* FIXME WE NEED TO DO THAT IF WE ARE THE ONLY MAIL
683 * FIXME CONTENT !! */
684 case MIME_HDL_TEXT:
685 break;
686 default:
687 case MIME_HDL_NULL:
688 if (level == 0 && cnt) {
689 char const *x = _("[-- Binary content --]\n");
690 _out(x, strlen(x), obuf, CONV_NONE, SEND_MBOX, qf, stats,
691 NULL,NULL);
693 goto jleave;
695 break;
696 case SEND_TOFILE:
697 case SEND_TOPIPE:
698 case SEND_TOSRCH:
699 case SEND_DECRYPT:
700 case SEND_MBOX:
701 case SEND_RFC822:
702 case SEND_SHOW:
703 break;
705 break;
706 case MIME_ALTERNATIVE:
707 if ((action == SEND_TODISP || action == SEND_QUOTE) &&
708 !ok_blook(print_alternatives)) {
709 /* XXX This (a) should not remain (b) should be own fun
710 * TODO (despite the fact that v15 will do this completely differently
711 * TODO by having an action-specific "manager" that will traverse the
712 * TODO parsed MIME tree and decide for each part whether it'll be
713 * TODO displayed or not *before* we walk the tree for doing action */
714 struct mpstack {
715 struct mpstack *outer;
716 struct mimepart *mp;
717 } outermost, * volatile curr, * volatile mpsp;
718 bool_t volatile neednl, hadpart;
719 struct n_sigman smalter;
721 (curr = &outermost)->outer = NULL;
722 curr->mp = ip;
723 neednl = hadpart = FAL0;
725 n_SIGMAN_ENTER_SWITCH(&smalter, n_SIGMAN_ALL) {
726 case 0:
727 break;
728 default:
729 rv = -1;
730 goto jalter_leave;
733 for (np = ip->m_multipart;;) {
734 jalter_redo:
735 for (; np != NULL; np = np->m_nextpart) {
736 if (action != SEND_QUOTE && np->m_ct_type_plain != NULL) {
737 if (neednl)
738 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats,
739 NULL, NULL);
740 _print_part_info(obuf, np, doitp, level, qf, stats);
742 neednl = TRU1;
744 switch (np->m_mimecontent) {
745 case MIME_ALTERNATIVE:
746 case MIME_RELATED:
747 case MIME_DIGEST:
748 case MIME_SIGNED:
749 case MIME_ENCRYPTED:
750 case MIME_MULTI:
751 mpsp = salloc(sizeof *mpsp);
752 mpsp->outer = curr;
753 mpsp->mp = np->m_multipart;
754 curr->mp = np;
755 curr = mpsp;
756 np = mpsp->mp;
757 neednl = FAL0;
758 goto jalter_redo;
759 default:
760 if (hadpart)
761 break;
762 switch (mime_type_handler(&mh, np, action)) {
763 default:
764 mh.mh_flags = MIME_HDL_NULL;
765 continue; /* break; break; */
766 case MIME_HDL_PTF:
767 if (!ok_blook(mime_alternative_favour_rich)) {/* TODO */
768 struct mimepart *x = np;
770 while ((x = x->m_nextpart) != NULL) {
771 struct mime_handler mhx;
773 if (x->m_mimecontent == MIME_TEXT_PLAIN ||
774 mime_type_handler(&mhx, x, action) ==
775 MIME_HDL_TEXT)
776 break;
778 if (x != NULL)
779 continue; /* break; break; */
780 goto jalter_plain;
782 /* FALLTHRU */
783 case MIME_HDL_TEXT:
784 break;
786 /* FALLTHRU */
787 case MIME_TEXT_PLAIN:
788 if (hadpart)
789 break;
790 if (ok_blook(mime_alternative_favour_rich)) { /* TODO */
791 struct mimepart *x = np;
793 /* TODO twice TODO, we should dive into /related and
794 * TODO check whether that has rich parts! */
795 while ((x = x->m_nextpart) != NULL) {
796 struct mime_handler mhx;
798 switch (mime_type_handler(&mhx, x, action)) {
799 case MIME_HDL_PTF:
800 break;
801 default:
802 continue;
804 break;
806 if (x != NULL)
807 continue; /* break; break; */
809 jalter_plain:
810 quoteflt_flush(qf);
811 if (action == SEND_QUOTE && hadpart) {
812 struct quoteflt *dummy = quoteflt_dummy();
813 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, dummy, stats,
814 NULL,NULL);
815 quoteflt_flush(dummy);
817 hadpart = TRU1;
818 neednl = FAL0;
819 rv = sendpart(zmp, np, obuf, doitp, qf, action, stats,
820 level + 1);
821 quoteflt_reset(qf, origobuf);
823 if (rv < 0)
824 curr = &outermost; /* Cause overall loop termination */
825 break;
829 mpsp = curr->outer;
830 if (mpsp == NULL)
831 break;
832 curr = mpsp;
833 np = curr->mp->m_nextpart;
835 jalter_leave:
836 n_sigman_leave(&smalter, n_SIGMAN_VIPSIGS_NTTYOUT);
837 goto jleave;
839 /* FALLTHRU */
840 case MIME_RELATED:
841 case MIME_DIGEST:
842 case MIME_SIGNED:
843 case MIME_ENCRYPTED:
844 case MIME_MULTI:
845 switch (action) {
846 case SEND_TODISP:
847 case SEND_TODISP_ALL:
848 case SEND_QUOTE:
849 case SEND_QUOTE_ALL:
850 case SEND_TOFILE:
851 case SEND_TOPIPE:
852 case SEND_TOSRCH:
853 case SEND_DECRYPT:
854 jmulti:
855 if ((action == SEND_TODISP || action == SEND_TODISP_ALL) &&
856 ip->m_multipart != NULL &&
857 ip->m_multipart->m_mimecontent == MIME_DISCARD &&
858 ip->m_multipart->m_nextpart == NULL) {
859 char const *x = _("[Missing multipart boundary - use show "
860 "to display the raw message]\n");
861 _out(x, strlen(x), obuf, CONV_NONE, SEND_MBOX, qf, stats,
862 NULL,NULL);
865 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart) {
866 bool_t volatile ispipe;
868 if (np->m_mimecontent == MIME_DISCARD && action != SEND_DECRYPT)
869 continue;
871 ispipe = FAL0;
872 switch (action) {
873 case SEND_TOFILE:
874 if (np->m_partstring && !strcmp(np->m_partstring, "1"))
875 break;
876 stats = NULL;
877 /* TODO Always open multipart on /dev/null, it's a hack to be
878 * TODO able to dive into that structure, and still better
879 * TODO than asking the user for something stupid.
880 * TODO oh, wait, we did ask for a filename for this MIME mail,
881 * TODO and that outer container is useless anyway ;-P */
882 if (np->m_multipart != NULL) {
883 if ((obuf = Fopen("/dev/null", "w")) == NULL)
884 continue;
885 } else if ((obuf = newfile(np, &ispipe)) == NULL)
886 continue;
887 if (!ispipe)
888 break;
889 if (sigsetjmp(_send_pipejmp, 1)) {
890 rv = -1;
891 goto jpipe_close;
893 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
894 break;
895 case SEND_TODISP:
896 case SEND_TODISP_ALL:
897 if (ip->m_mimecontent != MIME_ALTERNATIVE &&
898 ip->m_mimecontent != MIME_RELATED &&
899 ip->m_mimecontent != MIME_DIGEST &&
900 ip->m_mimecontent != MIME_SIGNED &&
901 ip->m_mimecontent != MIME_ENCRYPTED &&
902 ip->m_mimecontent != MIME_MULTI)
903 break;
904 _print_part_info(obuf, np, doitp, level, qf, stats);
905 break;
906 case SEND_QUOTE:
907 case SEND_QUOTE_ALL:
908 case SEND_MBOX:
909 case SEND_RFC822:
910 case SEND_SHOW:
911 case SEND_TOSRCH:
912 case SEND_DECRYPT:
913 case SEND_TOPIPE:
914 break;
917 quoteflt_flush(qf);
918 if ((action == SEND_QUOTE || action == SEND_QUOTE_ALL) &&
919 np->m_multipart == NULL && ip->m_parent != NULL) {
920 struct quoteflt *dummy = quoteflt_dummy();
921 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, dummy, stats,
922 NULL,NULL);
923 quoteflt_flush(dummy);
925 if (sendpart(zmp, np, obuf, doitp, qf, action, stats, level+1) < 0)
926 rv = -1;
927 quoteflt_reset(qf, origobuf);
929 if (action == SEND_QUOTE) {
930 if (ip->m_mimecontent != MIME_RELATED)
931 break;
933 if (action == SEND_TOFILE && obuf != origobuf) {
934 if (!ispipe)
935 Fclose(obuf);
936 else {
937 jpipe_close:
938 safe_signal(SIGPIPE, SIG_IGN);
939 Pclose(obuf, TRU1);
940 safe_signal(SIGPIPE, oldpipe);
944 goto jleave;
945 case SEND_MBOX:
946 case SEND_RFC822:
947 case SEND_SHOW:
948 break;
950 break;
953 /* Copy out message body */
954 if (doitp == n_IGNORE_ALL && level == 0) /* skip final blank line */
955 --cnt;
956 switch (ip->m_mime_enc) {
957 case MIMEE_BIN:
958 case MIMEE_7B:
959 case MIMEE_8B:
960 convert = CONV_NONE;
961 break;
962 case MIMEE_QP:
963 convert = CONV_FROMQP;
964 break;
965 case MIMEE_B64:
966 switch (ip->m_mimecontent) {
967 case MIME_TEXT:
968 case MIME_TEXT_PLAIN:
969 case MIME_TEXT_HTML:
970 convert = CONV_FROMB64_T;
971 break;
972 default:
973 switch (mh.mh_flags & MIME_HDL_TYPE_MASK) {
974 case MIME_HDL_TEXT:
975 case MIME_HDL_PTF:
976 convert = CONV_FROMB64_T;
977 break;
978 default:
979 convert = CONV_FROMB64;
980 break;
982 break;
984 break;
985 default:
986 convert = CONV_NONE;
989 /* TODO Unless we have filters, ensure iconvd==-1 so that mime.c:fwrite_td()
990 * TODO cannot mess things up misusing outrest as line buffer */
991 #ifdef HAVE_ICONV
992 if (iconvd != (iconv_t)-1) {
993 n_iconv_close(iconvd);
994 iconvd = (iconv_t)-1;
996 #endif
998 if (action == SEND_DECRYPT || action == SEND_MBOX ||
999 action == SEND_RFC822 || action == SEND_SHOW)
1000 convert = CONV_NONE;
1001 #ifdef HAVE_ICONV
1002 else if ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
1003 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
1004 action == SEND_TOSRCH) &&
1005 (ip->m_mimecontent == MIME_TEXT_PLAIN ||
1006 ip->m_mimecontent == MIME_TEXT_HTML ||
1007 ip->m_mimecontent == MIME_TEXT ||
1008 (mh.mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_TEXT ||
1009 (mh.mh_flags & MIME_HDL_TYPE_MASK) == MIME_HDL_PTF)) {
1010 char const *tcs = charset_get_lc();
1012 if (asccasecmp(tcs, ip->m_charset) &&
1013 asccasecmp(charset_get_7bit(), ip->m_charset)) {
1014 iconvd = n_iconv_open(tcs, ip->m_charset);
1015 if (iconvd == (iconv_t)-1 && errno == EINVAL) {
1016 n_err(_("Cannot convert from %s to %s\n"), ip->m_charset, tcs);
1017 /*rv = 1; goto jleave;*/
1021 #endif
1023 switch (mh.mh_flags & MIME_HDL_TYPE_MASK) {
1024 case MIME_HDL_CMD:
1025 case MIME_HDL_PTF:
1026 tmpname = NULL;
1027 qbuf = obuf;
1029 term_infd = COMMAND_FD_PASS;
1030 if (mh.mh_flags & (MIME_HDL_TMPF | MIME_HDL_NEEDSTERM)) {
1031 enum oflags of;
1033 of = OF_RDWR | OF_REGISTER;
1034 if (!(mh.mh_flags & MIME_HDL_TMPF)) {
1035 term_infd = 0;
1036 mh.mh_flags |= MIME_HDL_TMPF_FILL;
1037 of |= OF_UNLINK;
1038 } else if (mh.mh_flags & MIME_HDL_TMPF_UNLINK)
1039 of |= OF_REGISTER_UNLINK;
1041 if ((pbuf = Ftmp((mh.mh_flags & MIME_HDL_TMPF ? &cp : NULL),
1042 (mh.mh_flags & MIME_HDL_TMPF_FILL ? "mimehdlfill" : "mimehdl"),
1043 of)) == NULL)
1044 goto jesend;
1046 if (mh.mh_flags & MIME_HDL_TMPF) {
1047 tmpname = savestr(cp);
1048 Ftmp_free(&cp);
1051 if (mh.mh_flags & MIME_HDL_TMPF_FILL) {
1052 if (term_infd == 0)
1053 term_infd = fileno(pbuf);
1054 goto jsend;
1058 jpipe_for_real:
1059 pbuf = _pipefile(&mh, ip, n_UNVOLATILE(&qbuf), tmpname, term_infd);
1060 if (pbuf == NULL) {
1061 jesend:
1062 pbuf = qbuf = NULL;
1063 rv = -1;
1064 goto jend;
1065 } else if ((mh.mh_flags & MIME_HDL_NEEDSTERM) && pbuf == (FILE*)-1) {
1066 pbuf = qbuf = NULL;
1067 goto jend;
1069 tmpname = NULL;
1070 action = SEND_TOPIPE;
1071 if (pbuf != qbuf) {
1072 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
1073 if (sigsetjmp(_send_pipejmp, 1))
1074 goto jend;
1076 break;
1078 default:
1079 mh.mh_flags = MIME_HDL_NULL;
1080 pbuf = qbuf = obuf;
1081 break;
1084 jsend:
1086 bool_t volatile eof;
1087 ui32_t save_qf_pfix_len = qf->qf_pfix_len;
1088 ui64_t *save_stats = stats;
1090 if (pbuf != origobuf) {
1091 qf->qf_pfix_len = 0; /* XXX legacy (remove filter instead) */
1092 stats = NULL;
1094 eof = FAL0;
1095 outrest.s = inrest.s = NULL;
1096 outrest.l = inrest.l = 0;
1098 if (pbuf == qbuf) {
1099 __sendp_sig = 0;
1100 __sendp_opipe = safe_signal(SIGPIPE, &__sendp_onsig);
1101 if (sigsetjmp(__sendp_actjmp, 1)) {
1102 if (outrest.s != NULL)
1103 free(outrest.s);
1104 if (inrest.s != NULL)
1105 free(inrest.s);
1106 free(line);
1107 #ifdef HAVE_ICONV
1108 if (iconvd != (iconv_t)-1)
1109 n_iconv_close(iconvd);
1110 #endif
1111 safe_signal(SIGPIPE, __sendp_opipe);
1112 n_raise(__sendp_sig);
1116 quoteflt_reset(qf, pbuf);
1117 while (!eof && fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0)) {
1118 joutln:
1119 if (_out(line, linelen, pbuf, convert, action, qf, stats, &outrest,
1120 (action & _TD_EOF ? NULL : &inrest)) < 0 || ferror(pbuf)) {
1121 rv = -1; /* XXX Should bail away?! */
1122 break;
1125 if(eof <= FAL0 && rv >= 0 && (outrest.l != 0 || inrest.l != 0)){
1126 linelen = 0;
1127 if(eof || inrest.l == 0)
1128 action |= _TD_EOF;
1129 eof = eof ? TRU1 : TRUM1;
1130 goto joutln;
1132 action &= ~_TD_EOF;
1134 /* TODO HACK: when sending to the display we yet get fooled if a message
1135 * TODO doesn't end in a newline, because of our input/output 1:1.
1136 * TODO This should be handled automatically by a display filter, then */
1137 if(rv >= 0 && !qf->qf_nl_last &&
1138 (action == SEND_TODISP || action == SEND_TODISP_ALL))
1139 rv = quoteflt_push(qf, "\n", 1);
1141 quoteflt_flush(qf);
1143 if (rv >= 0 && (mh.mh_flags & MIME_HDL_TMPF_FILL)) {
1144 mh.mh_flags &= ~MIME_HDL_TMPF_FILL;
1145 fflush(pbuf);
1146 really_rewind(pbuf);
1147 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1148 goto jpipe_for_real;
1151 if (pbuf == qbuf)
1152 safe_signal(SIGPIPE, __sendp_opipe);
1154 if (outrest.s != NULL)
1155 free(outrest.s);
1156 if (inrest.s != NULL)
1157 free(inrest.s);
1159 if (pbuf != origobuf) {
1160 qf->qf_pfix_len = save_qf_pfix_len;
1161 stats = save_stats;
1165 jend:
1166 if (line != NULL)
1167 free(line);
1168 if (pbuf != qbuf) {
1169 safe_signal(SIGPIPE, SIG_IGN);
1170 Pclose(pbuf, !(mh.mh_flags & MIME_HDL_ASYNC));
1171 safe_signal(SIGPIPE, oldpipe);
1172 if (rv >= 0 && qbuf != NULL && qbuf != obuf)
1173 pipecpy(qbuf, obuf, origobuf, qf, stats);
1175 #ifdef HAVE_ICONV
1176 if (iconvd != (iconv_t)-1)
1177 n_iconv_close(iconvd);
1178 #endif
1179 jleave:
1180 NYD_LEAVE;
1181 return rv;
1184 static FILE *
1185 newfile(struct mimepart *ip, bool_t volatile *ispipe)
1187 struct str in, out;
1188 char *f;
1189 FILE *fp;
1190 NYD_ENTER;
1192 f = ip->m_filename;
1193 *ispipe = FAL0;
1195 if (f != NULL && f != (char*)-1) {
1196 in.s = f;
1197 in.l = strlen(f);
1198 makeprint(&in, &out);
1199 out.l = delctrl(out.s, out.l);
1200 f = savestrbuf(out.s, out.l);
1201 free(out.s);
1204 /* In interactive mode, let user perform all kind of expansions as desired,
1205 * and offer |SHELL-SPEC pipe targets, too */
1206 if (options & OPT_INTERACTIVE) {
1207 struct str prompt;
1208 struct n_string shou, *shoup;
1209 char *f2, *f3;
1211 shoup = n_string_creat_auto(&shou);
1213 /* TODO Generic function which asks for filename.
1214 * TODO If the current part is the first textpart the target
1215 * TODO is implicit from outer `write' etc! */
1216 /* I18N: Filename input prompt with file type indication */
1217 str_concat_csvl(&prompt, _("Enter filename for part "),
1218 (ip->m_partstring != NULL) ? ip->m_partstring : _("?"),
1219 _(" ("), ip->m_ct_type_plain, _("): "), NULL);
1220 jgetname:
1221 f2 = n_lex_input_cp(n_LEXINPUT_CTX_DEFAULT | n_LEXINPUT_HIST_ADD,
1222 prompt.s, ((f != (char*)-1 && f != NULL)
1223 ? n_shexp_quote_cp(f, FAL0) : NULL));
1224 if(f2 != NULL){
1225 in.s = n_UNCONST(f2);
1226 in.l = UIZ_MAX;
1227 if((n_shexp_parse_token(shoup, &in, n_SHEXP_PARSE_TRUNC |
1228 n_SHEXP_PARSE_TRIMSPACE | n_SHEXP_PARSE_LOG |
1229 n_SHEXP_PARSE_IGNORE_EMPTY) &
1230 (n_SHEXP_STATE_STOP | n_SHEXP_STATE_OUTPUT |
1231 n_SHEXP_STATE_ERR_MASK)
1232 ) != (n_SHEXP_STATE_STOP | n_SHEXP_STATE_OUTPUT))
1233 goto jgetname;
1234 f2 = n_string_cp(shoup);
1236 if (f2 == NULL || *f2 == '\0') {
1237 if (options & OPT_D_V)
1238 n_err(_("... skipping this\n"));
1239 n_string_gut(shoup);
1240 fp = NULL;
1241 goto jleave;
1244 if (*f2 == '|')
1245 /* Pipes are expanded by the shell */
1246 f = f2;
1247 else if ((f3 = fexpand(f2, FEXP_LOCAL | FEXP_NVAR)) == NULL)
1248 /* (Error message written by fexpand()) */
1249 goto jgetname;
1250 else
1251 f = f3;
1253 n_string_gut(shoup);
1256 if (f == NULL || f == (char*)-1 || *f == '\0')
1257 fp = NULL;
1258 else if (options & OPT_INTERACTIVE) {
1259 if (*f == '|') {
1260 fp = Popen(&f[1], "w", ok_vlook(SHELL), NULL, 1);
1261 if (!(*ispipe = (fp != NULL)))
1262 n_perr(f, 0);
1263 } else if ((fp = Fopen(f, "w")) == NULL)
1264 n_err(_("Cannot open %s\n"), n_shexp_quote_cp(f, FAL0));
1265 } else {
1266 /* Be very picky in non-interactive mode: actively disallow pipes,
1267 * prevent directory separators, and any filename member that would
1268 * become expanded by the shell if the name would be echo(1)ed */
1269 if(anyof(f, "/" n_SHEXP_MAGIC_PATH_CHARS)){
1270 char c;
1272 for(out.s = salloc((strlen(f) * 3) +1), out.l = 0; (c = *f++) != '\0';)
1273 if(strchr("/" n_SHEXP_MAGIC_PATH_CHARS, c)){
1274 out.s[out.l++] = '%';
1275 n_c_to_hex_base16(&out.s[out.l], c);
1276 out.l += 2;
1277 }else
1278 out.s[out.l++] = c;
1279 out.s[out.l] = '\0';
1280 f = out.s;
1283 /* Avoid overwriting of existing files */
1284 while((fp = Fopen(f, "wx")) == NULL){
1285 int e;
1287 if((e = errno) != EEXIST){
1288 n_err(_("Cannot open %s: %s\n"),
1289 n_shexp_quote_cp(f, FAL0), strerror(e));
1290 break;
1293 if(ip->m_partstring != NULL)
1294 f = savecatsep(f, '#', ip->m_partstring);
1295 else
1296 f = savecat(f, "#.");
1299 jleave:
1300 NYD_LEAVE;
1301 return fp;
1304 static void
1305 pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf, struct quoteflt *qf,
1306 ui64_t *stats)
1308 char *line = NULL; /* TODO line pool */
1309 size_t linesize = 0, linelen, cnt;
1310 ssize_t all_sz, sz;
1311 NYD_ENTER;
1313 fflush(pipebuf);
1314 rewind(pipebuf);
1315 cnt = (size_t)fsize(pipebuf);
1316 all_sz = 0;
1318 quoteflt_reset(qf, outbuf);
1319 while (fgetline(&line, &linesize, &cnt, &linelen, pipebuf, 0) != NULL) {
1320 if ((sz = quoteflt_push(qf, line, linelen)) < 0)
1321 break;
1322 all_sz += sz;
1324 if ((sz = quoteflt_flush(qf)) > 0)
1325 all_sz += sz;
1326 if (line)
1327 free(line);
1329 if (all_sz > 0 && outbuf == origobuf && stats != NULL)
1330 *stats += all_sz;
1331 Fclose(pipebuf);
1332 NYD_LEAVE;
1335 static void
1336 statusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1337 ui64_t *stats)
1339 char statout[3], *cp = statout;
1340 NYD_ENTER;
1342 if (mp->m_flag & MREAD)
1343 *cp++ = 'R';
1344 if (!(mp->m_flag & MNEW))
1345 *cp++ = 'O';
1346 *cp = 0;
1347 if (statout[0]) {
1348 int i = fprintf(obuf, "%.*sStatus: %s\n", (int)qf->qf_pfix_len,
1349 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), statout);
1350 if (i > 0 && stats != NULL)
1351 *stats += i;
1353 NYD_LEAVE;
1356 static void
1357 xstatusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1358 ui64_t *stats)
1360 char xstatout[4];
1361 char *xp = xstatout;
1362 NYD_ENTER;
1364 if (mp->m_flag & MFLAGGED)
1365 *xp++ = 'F';
1366 if (mp->m_flag & MANSWERED)
1367 *xp++ = 'A';
1368 if (mp->m_flag & MDRAFTED)
1369 *xp++ = 'T';
1370 *xp = 0;
1371 if (xstatout[0]) {
1372 int i = fprintf(obuf, "%.*sX-Status: %s\n", (int)qf->qf_pfix_len,
1373 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), xstatout);
1374 if (i > 0 && stats != NULL)
1375 *stats += i;
1377 NYD_LEAVE;
1380 static void
1381 put_from_(FILE *fp, struct mimepart *ip, ui64_t *stats)
1383 char const *froma, *date, *nl;
1384 int i;
1385 NYD_ENTER;
1387 if (ip != NULL && ip->m_from != NULL) {
1388 froma = ip->m_from;
1389 date = fakedate(ip->m_time);
1390 nl = "\n";
1391 } else {
1392 froma = myname;
1393 date = time_current.tc_ctime;
1394 nl = n_empty;
1397 n_COLOUR( n_colour_put(fp, n_COLOUR_ID_VIEW_FROM_, NULL); )
1398 i = fprintf(fp, "From %s %s%s", froma, date, nl);
1399 n_COLOUR( n_colour_reset(fp); )
1400 if (i > 0 && stats != NULL)
1401 *stats += i;
1402 NYD_LEAVE;
1405 FL int
1406 sendmp(struct message *mp, FILE *obuf, struct n_ignore const *doitp,
1407 char const *prefix, enum sendaction action, ui64_t *stats)
1409 struct quoteflt qf;
1410 size_t cnt, sz, i;
1411 FILE *ibuf;
1412 enum mime_parse_flags mpf;
1413 struct mimepart *ip;
1414 int rv = -1, c;
1415 NYD_ENTER;
1417 time_current_update(&time_current, TRU1);
1419 if (mp == dot && action != SEND_TOSRCH)
1420 pstate |= PS_DID_PRINT_DOT;
1421 if (stats != NULL)
1422 *stats = 0;
1423 quoteflt_init(&qf, prefix);
1425 /* First line is the From_ line, so no headers there to worry about */
1426 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
1427 goto jleave;
1429 cnt = mp->m_size;
1430 sz = 0;
1432 bool_t nozap;
1433 char const *cpre = n_empty, *csuf = n_empty;
1434 #ifdef HAVE_COLOUR
1435 struct n_colour_pen *cpen = n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_,NULL);
1436 struct str const *sp = n_colour_pen_to_str(cpen);
1438 if (sp != NULL) {
1439 cpre = sp->s;
1440 sp = n_colour_reset_to_str();
1441 if (sp != NULL)
1442 csuf = sp->s;
1444 #endif
1446 nozap = (doitp != n_IGNORE_ALL && doitp != n_IGNORE_FWD &&
1447 action != SEND_RFC822 &&
1448 !n_ignore_is_ign(doitp, "from_", sizeof("from_") -1));
1449 if (mp->m_flag & MNOFROM) {
1450 if (nozap)
1451 sz = fprintf(obuf, "%s%.*sFrom %s %s%s\n",
1452 cpre, (int)qf.qf_pfix_len,
1453 (qf.qf_pfix_len != 0 ? qf.qf_pfix : n_empty), fakefrom(mp),
1454 fakedate(mp->m_time), csuf);
1455 } else if (nozap) {
1456 if (qf.qf_pfix_len > 0) {
1457 i = fwrite(qf.qf_pfix, sizeof *qf.qf_pfix, qf.qf_pfix_len, obuf);
1458 if (i != qf.qf_pfix_len)
1459 goto jleave;
1460 sz += i;
1462 #ifdef HAVE_COLOUR
1463 if (cpre != NULL) {
1464 fputs(cpre, obuf);
1465 cpre = (char const*)0x1;
1467 #endif
1469 while (cnt > 0 && (c = getc(ibuf)) != EOF) {
1470 #ifdef HAVE_COLOUR
1471 if (c == '\n' && csuf != NULL) {
1472 cpre = (char const*)0x1;
1473 fputs(csuf, obuf);
1475 #endif
1476 putc(c, obuf);
1477 ++sz;
1478 --cnt;
1479 if (c == '\n')
1480 break;
1483 #ifdef HAVE_COLOUR
1484 if (csuf != NULL && cpre != (char const*)0x1)
1485 fputs(csuf, obuf);
1486 #endif
1487 } else {
1488 while (cnt > 0 && (c = getc(ibuf)) != EOF) {
1489 --cnt;
1490 if (c == '\n')
1491 break;
1495 if (sz > 0 && stats != NULL)
1496 *stats += sz;
1498 mpf = MIME_PARSE_NONE;
1499 if (action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
1500 mpf |= MIME_PARSE_PARTS | MIME_PARSE_DECRYPT;
1501 if ((ip = mime_parse_msg(mp, mpf)) == NULL)
1502 goto jleave;
1504 rv = sendpart(mp, ip, obuf, doitp, &qf, action, stats, 0);
1505 jleave:
1506 quoteflt_destroy(&qf);
1507 NYD_LEAVE;
1508 return rv;
1511 /* s-it-mode */