run_editor(): also compare size when deciding "has changed"
[s-mailx.git] / send.c
blob10ca25fdab580de14c374d6ab98fdefa9c53cf83
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Mail to mail folders and displays.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
40 #ifndef HAVE_AMALGAMATION
41 # include "nail.h"
42 #endif
44 enum pipeflags {
45 PIPE_NULL, /* No pipe- mimetype handler */
46 PIPE_COMM, /* Normal command */
47 PIPE_ASYNC, /* Normal command, run asynchronous */
48 PIPE_TEXT, /* @ special command to force treatment as text */
49 PIPE_MSG /* Display message (returned as command string) */
52 enum parseflags {
53 PARSE_DEFAULT = 0,
54 PARSE_DECRYPT = 01,
55 PARSE_PARTS = 02
58 static sigjmp_buf _send_pipejmp;
60 /* */
61 static struct mimepart *parsemsg(struct message *mp, enum parseflags pf);
62 static enum okay parsepart(struct message *zmp, struct mimepart *ip,
63 enum parseflags pf, int level);
64 static void parse822(struct message *zmp, struct mimepart *ip,
65 enum parseflags pf, int level);
66 #ifdef HAVE_SSL
67 static void parsepkcs7(struct message *zmp, struct mimepart *ip,
68 enum parseflags pf, int level);
69 #endif
70 static void _parsemultipart(struct message *zmp,
71 struct mimepart *ip, enum parseflags pf, int level);
72 static void __newpart(struct mimepart *ip, struct mimepart **np,
73 off_t offs, int *part);
74 static void __endpart(struct mimepart **np, off_t xoffs, long lines);
76 /* Going for user display, print Part: info string */
77 static void _print_part_info(struct str *out, struct mimepart *mip,
78 struct ignoretab *doign, int level);
80 /* Query possible pipe command for MIME type */
81 static enum pipeflags _pipecmd(char **result, char const *content_type);
83 /* Create a pipe */
84 static FILE * _pipefile(char const *pipecomm, FILE **qbuf, bool_t quote,
85 bool_t async);
87 /* Adjust output statistics */
88 SINLINE void _addstats(off_t *stats, off_t lines, off_t bytes);
90 /* Call mime_write() as approbiate and adjust statistics */
91 SINLINE ssize_t _out(char const *buf, size_t len, FILE *fp,
92 enum conversion convert, enum sendaction action,
93 struct quoteflt *qf, off_t *stats,
94 struct str *rest);
96 /* SIGPIPE handler */
97 static void _send_onpipe(int signo);
99 /* Send one part */
100 static int sendpart(struct message *zmp, struct mimepart *ip,
101 FILE *obuf, struct ignoretab *doign,
102 struct quoteflt *qf, enum sendaction action,
103 off_t *stats, int level);
105 /* Get a file for an attachment */
106 static FILE * newfile(struct mimepart *ip, int *ispipe);
108 static void pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf,
109 struct quoteflt *qf, off_t *stats);
111 /* Output a reasonable looking status field */
112 static void statusput(const struct message *mp, FILE *obuf,
113 struct quoteflt *qf, off_t *stats);
114 static void xstatusput(const struct message *mp, FILE *obuf,
115 struct quoteflt *qf, off_t *stats);
117 static void put_from_(FILE *fp, struct mimepart *ip, off_t *stats);
119 static struct mimepart *
120 parsemsg(struct message *mp, enum parseflags pf)
122 struct mimepart *ip;
123 NYD_ENTER;
125 ip = csalloc(1, sizeof *ip);
126 ip->m_flag = mp->m_flag;
127 ip->m_have = mp->m_have;
128 ip->m_block = mp->m_block;
129 ip->m_offset = mp->m_offset;
130 ip->m_size = mp->m_size;
131 ip->m_xsize = mp->m_xsize;
132 ip->m_lines = mp->m_lines;
133 ip->m_xlines = mp->m_lines;
134 if (parsepart(mp, ip, pf, 0) != OKAY)
135 ip = NULL;
136 NYD_LEAVE;
137 return ip;
140 static enum okay
141 parsepart(struct message *zmp, struct mimepart *ip, enum parseflags pf,
142 int level)
144 char *cp_b, *cp;
145 enum okay rv = STOP;
146 NYD_ENTER;
148 ip->m_ct_type = hfield1("content-type", (struct message*)ip);
149 if (ip->m_ct_type != NULL) {
150 cp_b = ip->m_ct_type_plain = savestr(ip->m_ct_type);
151 if ((cp = strchr(cp_b, ';')) != NULL)
152 *cp = '\0';
153 cp = cp_b + strlen(cp_b);
154 while (cp > cp_b && blankchar(cp[-1]))
155 --cp;
156 *cp = '\0';
157 } else if (ip->m_parent != NULL &&
158 ip->m_parent->m_mimecontent == MIME_DIGEST)
159 ip->m_ct_type_plain = UNCONST("message/rfc822");
160 else
161 ip->m_ct_type_plain = UNCONST("text/plain");
163 if (ip->m_ct_type != NULL)
164 ip->m_charset = mime_getparam("charset", ip->m_ct_type);
165 if (ip->m_charset == NULL)
166 ip->m_charset = charset_get_7bit();
168 ip->m_ct_transfer_enc = hfield1("content-transfer-encoding",
169 (struct message*)ip);
170 ip->m_mimeenc = (ip->m_ct_transfer_enc != NULL)
171 ? mime_getenc(ip->m_ct_transfer_enc) : MIME_7B;
173 if (((cp = hfield1("content-disposition", (struct message*)ip)) == NULL ||
174 (ip->m_filename = mime_getparam("filename", cp)) == NULL) &&
175 ip->m_ct_type != NULL)
176 ip->m_filename = mime_getparam("name", ip->m_ct_type);
178 ip->m_mimecontent = mime_classify_content_of_part(ip);
180 if (pf & PARSE_PARTS) {
181 if (level > 9999) { /* TODO MAGIC */
182 fprintf(stderr, _("MIME content too deeply nested\n"));
183 goto jleave;
185 switch (ip->m_mimecontent) {
186 case MIME_PKCS7:
187 if (pf & PARSE_DECRYPT) {
188 #ifdef HAVE_SSL
189 parsepkcs7(zmp, ip, pf, level);
190 break;
191 #else
192 fprintf(stderr, _("No SSL support compiled in.\n"));
193 goto jleave;
194 #endif
196 /* FALLTHRU */
197 default:
198 break;
199 case MIME_MULTI:
200 case MIME_ALTERNATIVE:
201 case MIME_DIGEST:
202 _parsemultipart(zmp, ip, pf, level);
203 break;
204 case MIME_822:
205 parse822(zmp, ip, pf, level);
206 break;
209 rv = OKAY;
210 jleave:
211 NYD_LEAVE;
212 return rv;
215 static void
216 parse822(struct message *zmp, struct mimepart *ip, enum parseflags pf,
217 int level)
219 int c, lastc = '\n';
220 size_t cnt;
221 FILE *ibuf;
222 off_t offs;
223 struct mimepart *np;
224 long lines;
225 NYD_ENTER;
227 if ((ibuf = setinput(&mb, (struct message*)ip, NEED_BODY)) == NULL)
228 goto jleave;
230 cnt = ip->m_size;
231 lines = ip->m_lines;
232 while (cnt && ((c = getc(ibuf)) != EOF)) {
233 --cnt;
234 if (c == '\n') {
235 --lines;
236 if (lastc == '\n')
237 break;
239 lastc = c;
241 offs = ftell(ibuf);
243 np = csalloc(1, sizeof *np);
244 np->m_flag = MNOFROM;
245 np->m_have = HAVE_HEADER | HAVE_BODY;
246 np->m_block = mailx_blockof(offs);
247 np->m_offset = mailx_offsetof(offs);
248 np->m_size = np->m_xsize = cnt;
249 np->m_lines = np->m_xlines = lines;
250 np->m_partstring = ip->m_partstring;
251 np->m_parent = ip;
252 ip->m_multipart = np;
254 if (ok_blook(rfc822_body_from_)) {
255 substdate((struct message*)np);
256 np->m_from = fakefrom((struct message*)np);/* TODO strip MNOFROM flag? */
259 parsepart(zmp, np, pf, level + 1);
260 jleave:
261 NYD_LEAVE;
264 #ifdef HAVE_SSL
265 static void
266 parsepkcs7(struct message *zmp, struct mimepart *ip, enum parseflags pf,
267 int level)
269 struct message m, *xmp;
270 struct mimepart *np;
271 char *to, *cc;
272 NYD_ENTER;
274 memcpy(&m, ip, sizeof m);
275 to = hfield1("to", zmp);
276 cc = hfield1("cc", zmp);
278 if ((xmp = smime_decrypt(&m, to, cc, 0)) != NULL) {
279 np = csalloc(1, sizeof *np);
280 np->m_flag = xmp->m_flag;
281 np->m_have = xmp->m_have;
282 np->m_block = xmp->m_block;
283 np->m_offset = xmp->m_offset;
284 np->m_size = xmp->m_size;
285 np->m_xsize = xmp->m_xsize;
286 np->m_lines = xmp->m_lines;
287 np->m_xlines = xmp->m_xlines;
288 np->m_partstring = ip->m_partstring;
290 if (parsepart(zmp, np, pf, level + 1) == OKAY) {
291 np->m_parent = ip;
292 ip->m_multipart = np;
295 NYD_LEAVE;
297 #endif
299 static void
300 _parsemultipart(struct message *zmp, struct mimepart *ip, enum parseflags pf,
301 int level)
303 /* TODO Instead of the recursive multiple run parse we have today,
304 * TODO the send/MIME layer rewrite must create a "tree" of parts with
305 * TODO a single-pass parse, then address each part directly as
306 * TODO necessary; since boundaries start with -- and the content
307 * TODO rather forms a stack this is pretty cheap indeed! */
308 struct mimepart *np = NULL;
309 char *boundary, *line = NULL;
310 size_t linesize = 0, linelen, cnt, boundlen;
311 FILE *ibuf;
312 off_t offs;
313 int part = 0;
314 long lines = 0;
315 NYD_ENTER;
317 if ((boundary = mime_get_boundary(ip->m_ct_type, &linelen)) == NULL)
318 goto jleave;
320 boundlen = linelen;
321 if ((ibuf = setinput(&mb, (struct message*)ip, NEED_BODY)) == NULL)
322 goto jleave;
324 cnt = ip->m_size;
325 while (fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0))
326 if (line[0] == '\n')
327 break;
328 offs = ftell(ibuf);
330 __newpart(ip, &np, offs, NULL);
331 while (fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0)) {
332 /* XXX linelen includes LF */
333 if (!((lines > 0 || part == 0) && linelen > boundlen &&
334 !strncmp(line, boundary, boundlen))) {
335 ++lines;
336 continue;
339 /* Subpart boundary? */
340 if (line[boundlen] == '\n') {
341 offs = ftell(ibuf);
342 if (part > 0) {
343 __endpart(&np, offs - boundlen - 2, lines);
344 __newpart(ip, &np, offs - boundlen - 2, NULL);
346 __endpart(&np, offs, 2);
347 __newpart(ip, &np, offs, &part);
348 lines = 0;
349 continue;
352 /* Final boundary? Be aware of cases where there is no separating
353 * newline in between boundaries, as has been seen in a message with
354 * "Content-Type: multipart/appledouble;" */
355 if (linelen < boundlen + 2)
356 continue;
357 linelen -= boundlen + 2;
358 if (line[boundlen] != '-' || line[boundlen + 1] != '-' ||
359 (linelen > 0 && line[boundlen + 2] != '\n'))
360 continue;
361 offs = ftell(ibuf);
362 if (part != 0) {
363 __endpart(&np, offs - boundlen - 4, lines);
364 __newpart(ip, &np, offs - boundlen - 4, NULL);
366 __endpart(&np, offs + cnt, 2);
367 break;
369 if (np) {
370 offs = ftell(ibuf);
371 __endpart(&np, offs, lines);
374 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart)
375 if (np->m_mimecontent != MIME_DISCARD)
376 parsepart(zmp, np, pf, level + 1);
377 free(line);
378 jleave:
379 NYD_LEAVE;
382 static void
383 __newpart(struct mimepart *ip, struct mimepart **np, off_t offs, int *part)
385 struct mimepart *pp;
386 size_t sz;
387 NYD_ENTER;
389 *np = csalloc(1, sizeof **np);
390 (*np)->m_flag = MNOFROM;
391 (*np)->m_have = HAVE_HEADER | HAVE_BODY;
392 (*np)->m_block = mailx_blockof(offs);
393 (*np)->m_offset = mailx_offsetof(offs);
395 if (part) {
396 ++(*part);
397 sz = (ip->m_partstring != NULL) ? strlen(ip->m_partstring) : 0;
398 sz += 20;
399 (*np)->m_partstring = salloc(sz);
400 if (ip->m_partstring)
401 snprintf((*np)->m_partstring, sz, "%s.%u", ip->m_partstring, *part);
402 else
403 snprintf((*np)->m_partstring, sz, "%u", *part);
404 } else
405 (*np)->m_mimecontent = MIME_DISCARD;
406 (*np)->m_parent = ip;
408 if (ip->m_multipart) {
409 for (pp = ip->m_multipart; pp->m_nextpart != NULL; pp = pp->m_nextpart)
411 pp->m_nextpart = *np;
412 } else
413 ip->m_multipart = *np;
414 NYD_LEAVE;
417 static void
418 __endpart(struct mimepart **np, off_t xoffs, long lines)
420 off_t offs;
421 NYD_ENTER;
423 offs = mailx_positionof((*np)->m_block, (*np)->m_offset);
424 (*np)->m_size = (*np)->m_xsize = xoffs - offs;
425 (*np)->m_lines = (*np)->m_xlines = lines;
426 *np = NULL;
427 NYD_LEAVE;
430 static void
431 _print_part_info(struct str *out, struct mimepart *mip,
432 struct ignoretab *doign, int level)
434 struct str ct = {NULL, 0}, cd = {NULL, 0};
435 char const *ps;
436 struct str const *cpre, *csuf;
437 NYD_ENTER;
439 /* Max. 24 */
440 if (is_ign("content-type", 12, doign)) {
441 out->s = mip->m_ct_type_plain;
442 out->l = strlen(out->s);
443 ct.s = ac_alloc(out->l + 2 +1);
444 ct.s[0] = ',';
445 ct.s[1] = ' ';
446 ct.l = 2;
447 if (is_prefix("application/", out->s)) {
448 memcpy(ct.s + 2, "appl../", 7);
449 ct.l += 7;
450 out->l -= 12;
451 out->s += 12;
452 out->l = MIN(out->l, 17);
453 } else
454 out->l = MIN(out->l, 24);
455 memcpy(ct.s + ct.l, out->s, out->l);
456 ct.l += out->l;
457 ct.s[ct.l] = '\0';
460 /* Max. 32 */
461 if (is_ign("content-disposition", 19, doign) && mip->m_filename != NULL) {
462 struct str ti, to;
464 ti.l = strlen(ti.s = mip->m_filename);
465 mime_fromhdr(&ti, &to, TD_ISPR | TD_ICONV | TD_DELCTRL);
467 cd.s = ac_alloc(2 + 32 +1); /* FIXME was 25.. UNI: USE VISUAL WIDTH!!! */
468 cd.s[0] = ',';
469 cd.s[1] = ' ';
470 cd.l = 2 + field_put_bidi_clip(cd.s + 2, 32 +1, to.s, to.l);
472 free(to.s);
475 /* Take care of "99.99", i.e., 5 */
476 if ((ps = mip->m_partstring) == NULL || ps[0] == '\0')
477 ps = "?";
479 #ifdef HAVE_COLOUR
480 cpre = colour_get(COLOURSPEC_PARTINFO);
481 csuf = colour_get(COLOURSPEC_RESET);
482 #else
483 cpre = csuf = NULL;
484 #endif
486 /* Assume maximum possible sizes for 64 bit integers here to avoid any
487 * buffer overflows just in case we have a bug somewhere and / or the
488 * snprintf() is our internal version that doesn't really provide hard
489 * buffer cuts TODO ensure upper bound on numbers, use 9999999 else */
490 #define __msg "%s%s[-- #%s : %lu/%lu%s%s --]%s\n"
491 out->l = sizeof(__msg) +
492 #ifdef HAVE_COLOUR
493 (cpre != NULL ? cpre->l + csuf->l : 0) +
494 #endif
495 strlen(ps) + 2*21 + ct.l + cd.l +1;
496 out->s = salloc(out->l);
497 out->l = snprintf(out->s, out->l, __msg,
498 (level || (ps[0] != '1' && ps[1] == '\0') ? "\n" : ""),
499 (cpre != NULL ? cpre->s : ""),
500 ps, (ul_it)mip->m_lines, (ul_it)mip->m_size,
501 (ct.s != NULL ? ct.s : ""),
502 (cd.s != NULL ? cd.s : ""),
503 (csuf != NULL ? csuf->s : ""));
504 out->s[out->l] = '\0';
505 #undef __msg
507 if (cd.s != NULL)
508 ac_free(cd.s);
509 if (ct.s != NULL)
510 ac_free(ct.s);
511 NYD_LEAVE;
514 static enum pipeflags
515 _pipecmd(char **result, char const *content_type)
517 enum pipeflags ret;
518 char *s, *cp;
519 char const *cq;
520 NYD_ENTER;
522 ret = PIPE_NULL;
523 *result = NULL;
524 if (content_type == NULL)
525 goto jleave;
527 /* First check wether there is a special pipe-MIMETYPE handler */
528 s = ac_alloc(strlen(content_type) + 5 +1);
529 memcpy(s, "pipe-", 5);
530 cp = s + 5;
531 cq = content_type;
533 *cp++ = lowerconv(*cq);
534 while (*cq++ != '\0');
535 cp = vok_vlook(s);
536 ac_free(s);
538 if (cp == NULL)
539 goto jleave;
541 /* User specified a command, inspect for special cases */
542 if (cp[0] != '@') {
543 /* Normal command line */
544 ret = PIPE_COMM;
545 *result = cp;
546 } else if (*++cp == '\0') {
547 /* Treat as plain text */
548 ret = PIPE_TEXT;
549 } else if (!msglist_is_single) {
550 /* Viewing multiple messages in one go, don't block system */
551 ret = PIPE_MSG;
552 *result = UNCONST(_("[Directly address message only to display this]\n"));
553 } else {
554 /* Viewing a single message only */
555 #if 0 /* TODO send/MIME layer rewrite: when we have a single-pass parser
556 * TODO then the parsing phase and the send phase will be separated;
557 * TODO that allows us to ask a user *before* we start the send, i.e.,
558 * TODO *before* a pager pipe is setup (which is the problem with
559 * TODO the '#if 0' code here) */
560 size_t l = strlen(content_type);
561 char const *x = _("Should i display a part `%s' (y/n)? ");
562 s = ac_alloc(l += strlen(x) +1);
563 snprintf(s, l - 1, x, content_type);
564 l = getapproval(s), TRU1;
565 puts(""); /* .. we've hijacked a pipe 8-] ... */
566 ac_free(s);
567 if (!l) {
568 x = _("[User skipped diplay]\n");
569 ret = PIPE_MSG;
570 *result = UNCONST(x);
571 } else
572 #endif
573 if (cp[0] == '&')
574 /* Asynchronous command, normal command line */
575 ret = PIPE_ASYNC, *result = ++cp;
576 else
577 ret = PIPE_COMM, *result = cp;
579 jleave:
580 NYD_LEAVE;
581 return ret;
584 static FILE *
585 _pipefile(char const *pipecomm, FILE **qbuf, bool_t quote, bool_t async)
587 char const *sh;
588 FILE *rbuf;
589 NYD_ENTER;
591 rbuf = *qbuf;
593 if (quote) {
594 if ((*qbuf = Ftmp(NULL, "sendp", OF_RDWR | OF_UNLINK | OF_REGISTER,
595 0600)) == NULL) {
596 perror(_("tmpfile"));
597 *qbuf = rbuf;
599 async = FAL0;
602 if ((sh = ok_vlook(SHELL)) == NULL)
603 sh = XSHELL;
604 if ((rbuf = Popen(pipecomm, "W", sh, NULL, (async ? -1 : fileno(*qbuf)))
605 ) == NULL)
606 perror(pipecomm);
607 else {
608 fflush(*qbuf);
609 if (*qbuf != stdout)
610 fflush(stdout);
612 NYD_LEAVE;
613 return rbuf;
616 SINLINE void
617 _addstats(off_t *stats, off_t lines, off_t bytes)
619 NYD_ENTER;
620 if (stats != NULL) {
621 if (stats[0] >= 0)
622 stats[0] += lines;
623 stats[1] += bytes;
625 NYD_LEAVE;
628 SINLINE ssize_t
629 _out(char const *buf, size_t len, FILE *fp, enum conversion convert, enum
630 sendaction action, struct quoteflt *qf, off_t *stats, struct str *rest)
632 ssize_t sz = 0, n;
633 int flags;
634 char const *cp;
635 NYD_ENTER;
637 #if 0
638 Well ... it turns out to not work like that since of course a valid
639 RFC 4155 compliant parser, like S-nail, takes care for From_ lines only
640 after an empty line has been seen, which cannot be detected that easily
641 right here!
642 ifdef HAVE_DEBUG /* TODO assert legacy */
643 /* TODO if at all, this CAN only happen for SEND_DECRYPT, since all
644 * TODO other input situations handle RFC 4155 OR, if newly generated,
645 * TODO enforce quoted-printable if there is From_, as "required" by
646 * TODO RFC 5751. The SEND_DECRYPT case is not yet overhauled;
647 * TODO if it may happen in this path, we should just treat decryption
648 * TODO as we do for the other input paths; i.e., handle it in SSL!! */
649 if (action == SEND_MBOX || action == SEND_DECRYPT)
650 assert(!is_head(buf, len));
651 #else
652 if ((/*action == SEND_MBOX ||*/ action == SEND_DECRYPT) &&
653 is_head(buf, len)) {
654 putc('>', fp);
655 ++sz;
657 #endif
659 flags = ((int)action & _TD_EOF);
660 action &= ~_TD_EOF;
661 n = mime_write(buf, len, fp,
662 action == SEND_MBOX ? CONV_NONE : convert,
663 flags | ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
664 action == SEND_QUOTE || action == SEND_QUOTE_ALL)
665 ? TD_ISPR | TD_ICONV
666 : (action == SEND_TOSRCH || action == SEND_TOPIPE)
667 ? TD_ICONV : (action == SEND_SHOW ? TD_ISPR : TD_NONE)),
668 qf, rest);
669 if (n < 0)
670 sz = n;
671 else if (n > 0) {
672 sz = (ssize_t)((size_t)sz + n);
673 n = 0;
674 if (stats != NULL && stats[0] != -1)
675 for (cp = buf; PTRCMP(cp, <, buf + sz); ++cp)
676 if (*cp == '\n')
677 ++n;
678 _addstats(stats, n, sz);
680 NYD_LEAVE;
681 return sz;
684 static void
685 _send_onpipe(int signo)
687 NYD_X; /* Signal handler */
688 UNUSED(signo);
689 siglongjmp(_send_pipejmp, 1);
692 static int
693 sendpart(struct message *zmp, struct mimepart *ip, FILE * volatile obuf,
694 struct ignoretab *doign, struct quoteflt *qf,
695 enum sendaction volatile action, off_t *volatile stats, int level)
697 int volatile ispipe, rv = 0;
698 struct str rest;
699 char *line = NULL, *cp, *cp2, *start, *pipecomm = NULL;
700 size_t linesize = 0, linelen, cnt;
701 int dostat, infld = 0, ignoring = 1, isenc, c;
702 struct mimepart *volatile np;
703 FILE * volatile ibuf = NULL, * volatile pbuf = obuf, * volatile qbuf = obuf,
704 *origobuf = obuf;
705 enum conversion volatile convert;
706 sighandler_type volatile oldpipe = SIG_DFL;
707 long lineno = 0;
708 NYD_ENTER;
710 if (ip->m_mimecontent == MIME_PKCS7 && ip->m_multipart &&
711 action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
712 goto jskip;
714 dostat = 0;
715 if (level == 0) {
716 if (doign != NULL) {
717 if (!is_ign("status", 6, doign))
718 dostat |= 1;
719 if (!is_ign("x-status", 8, doign))
720 dostat |= 2;
721 } else
722 dostat = 3;
724 if ((ibuf = setinput(&mb, (struct message*)ip, NEED_BODY)) == NULL) {
725 rv = -1;
726 goto jleave;
728 cnt = ip->m_size;
730 if (ip->m_mimecontent == MIME_DISCARD)
731 goto jskip;
733 if (!(ip->m_flag & MNOFROM))
734 while (cnt && (c = getc(ibuf)) != EOF) {
735 cnt--;
736 if (c == '\n')
737 break;
739 isenc = 0;
740 convert = (action == SEND_TODISP || action == SEND_TODISP_ALL ||
741 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
742 action == SEND_TOSRCH)
743 ? CONV_FROMHDR : CONV_NONE;
745 /* Work the headers */
746 quoteflt_reset(qf, obuf);
747 while (fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0)) {
748 ++lineno;
749 if (line[0] == '\n') {
750 /* If line is blank, we've reached end of headers, so force out
751 * status: field and note that we are no longer in header fields */
752 if (dostat & 1)
753 statusput(zmp, obuf, qf, stats);
754 if (dostat & 2)
755 xstatusput(zmp, obuf, qf, stats);
756 if (doign != allignore)
757 _out("\n", 1, obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL);
758 break;
761 isenc &= ~1;
762 if (infld && blankchar(line[0])) {
763 /* If this line is a continuation (SP / HT) of a previous header
764 * field, determine if the start of the line is a MIME encoded word */
765 if (isenc & 2) {
766 for (cp = line; blankchar(*cp); ++cp);
767 if (cp > line && linelen - PTR2SIZE(cp - line) > 8 &&
768 cp[0] == '=' && cp[1] == '?')
769 isenc |= 1;
771 } else {
772 /* Pick up the header field if we have one */
773 for (cp = line; (c = *cp & 0377) && c != ':' && !spacechar(c); ++cp)
775 cp2 = cp;
776 while (spacechar(*cp))
777 ++cp;
778 if (cp[0] != ':' && level == 0 && lineno == 1) {
779 /* Not a header line, force out status: This happens in uucp style
780 * mail where there are no headers at all */
781 if (dostat & 1)
782 statusput(zmp, obuf, qf, stats);
783 if (dostat & 2)
784 xstatusput(zmp, obuf, qf, stats);
785 if (doign != allignore)
786 _out("\n", 1, obuf, CONV_NONE,SEND_MBOX, qf, stats, NULL);
787 break;
790 /* If it is an ignored field and we care about such things, skip it.
791 * Misuse dostat also for another bit xxx use a bitenum + for more */
792 if (ok_blook(keep_content_length))
793 dostat |= 1 << 2;
794 c = *cp2;
795 *cp2 = 0; /* temporarily null terminate */
796 if ((doign && is_ign(line, PTR2SIZE(cp2 - line), doign)) ||
797 (action == SEND_MBOX && !(dostat & (1 << 2)) &&
798 (!asccasecmp(line, "content-length") ||
799 !asccasecmp(line, "lines"))))
800 ignoring = 1;
801 else if (!asccasecmp(line, "status")) {
802 /* If field is "status," go compute and print real Status: field */
803 if (dostat & 1) {
804 statusput(zmp, obuf, qf, stats);
805 dostat &= ~1;
806 ignoring = 1;
808 } else if (!asccasecmp(line, "x-status")) {
809 /* If field is "status," go compute and print real Status: field */
810 if (dostat & 2) {
811 xstatusput(zmp, obuf, qf, stats);
812 dostat &= ~2;
813 ignoring = 1;
815 } else {
816 ignoring = 0;
817 #ifdef HAVE_COLOUR
818 pipecomm = savestrbuf(line, PTR2SIZE(cp2 - line));
819 #endif
821 *cp2 = c;
822 dostat &= ~(1 << 2);
823 infld = 1;
826 /* Determine if the end of the line is a MIME encoded word */
827 /* TODO geeeh! all this lengthy stuff that follows is about is dealing
828 * TODO with header follow lines, and it should be up to the backend
829 * TODO what happens and what not, i.e., it doesn't matter wether it's
830 * TODO a MIME-encoded word or not, as long as a single separating space
831 * TODO remains in between lines (the MIME stuff will correctly remove
832 * TODO whitespace in between multiple adjacent encoded words) */
833 isenc &= ~2;
834 if (cnt && (c = getc(ibuf)) != EOF) {
835 if (blankchar(c)) {
836 cp = line + linelen - 1;
837 if (linelen > 0 && *cp == '\n')
838 --cp;
839 while (cp >= line && whitechar(*cp))
840 --cp;
841 if (PTR2SIZE(cp - line > 8) && cp[0] == '=' && cp[-1] == '?')
842 isenc |= 2;
844 ungetc(c, ibuf);
847 if (!ignoring) {
848 size_t len = linelen;
849 start = line;
850 if (action == SEND_TODISP || action == SEND_TODISP_ALL ||
851 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
852 action == SEND_TOSRCH) {
853 /* Strip blank characters if two MIME-encoded words follow on
854 * continuing lines */
855 if (isenc & 1)
856 while (len > 0 && blankchar(*start)) {
857 ++start;
858 --len;
860 if (isenc & 2)
861 if (len > 0 && start[len - 1] == '\n')
862 --len;
863 while (len > 0 && blankchar(start[len - 1]))
864 --len;
866 #ifdef HAVE_COLOUR
868 bool_t colour_stripped = FAL0;
869 if (pipecomm != NULL) {
870 colour_put_header(obuf, pipecomm);
871 if (len > 0 && start[len - 1] == '\n') {
872 colour_stripped = TRU1;
873 --len;
876 #endif
877 _out(start, len, obuf, convert, action, qf, stats, NULL);
878 #ifdef HAVE_COLOUR
879 if (pipecomm != NULL) {
880 colour_reset(obuf); /* XXX reset after \n!! */
881 if (colour_stripped)
882 fputc('\n', obuf);
885 #endif
886 if (ferror(obuf)) {
887 free(line);
888 rv = -1;
889 goto jleave;
893 quoteflt_flush(qf);
894 free(line);
895 line = NULL;
897 jskip:
898 switch (ip->m_mimecontent) {
899 case MIME_822:
900 switch (action) {
901 case SEND_TODISP:
902 case SEND_TODISP_ALL:
903 case SEND_QUOTE:
904 case SEND_QUOTE_ALL:
905 if (ok_blook(rfc822_body_from_)) {
906 if (qf->qf_pfix_len > 0) {
907 size_t i = fwrite(qf->qf_pfix, sizeof *qf->qf_pfix,
908 qf->qf_pfix_len, obuf);
909 if (i == qf->qf_pfix_len)
910 _addstats(stats, 0, i);
912 put_from_(obuf, ip->m_multipart, stats);
914 /* FALLTHRU */
915 case SEND_TOSRCH:
916 case SEND_DECRYPT:
917 goto jmulti;
918 case SEND_TOFILE:
919 case SEND_TOPIPE:
920 if (ok_blook(rfc822_body_from_))
921 put_from_(obuf, ip->m_multipart, stats);
922 /* FALLTHRU */
923 case SEND_MBOX:
924 case SEND_RFC822:
925 case SEND_SHOW:
926 break;
928 break;
929 case MIME_TEXT_HTML:
930 case MIME_TEXT:
931 case MIME_TEXT_PLAIN:
932 switch (action) {
933 case SEND_TODISP:
934 case SEND_TODISP_ALL:
935 case SEND_QUOTE:
936 case SEND_QUOTE_ALL:
937 ispipe = TRU1;
938 switch (_pipecmd(&pipecomm, ip->m_ct_type_plain)) {
939 case PIPE_MSG:
940 _out(pipecomm, strlen(pipecomm), obuf, CONV_NONE, SEND_MBOX, qf,
941 stats, NULL);
942 pipecomm = NULL;
943 /* FALLTRHU */
944 case PIPE_TEXT:
945 case PIPE_COMM:
946 case PIPE_ASYNC:
947 case PIPE_NULL:
948 break;
950 /* FALLTRHU */
951 default:
952 break;
954 break;
955 case MIME_DISCARD:
956 if (action != SEND_DECRYPT)
957 goto jleave;
958 break;
959 case MIME_PKCS7:
960 if (action != SEND_MBOX && action != SEND_RFC822 &&
961 action != SEND_SHOW && ip->m_multipart != NULL)
962 goto jmulti;
963 /* FALLTHRU */
964 default:
965 switch (action) {
966 case SEND_TODISP:
967 case SEND_TODISP_ALL:
968 case SEND_QUOTE:
969 case SEND_QUOTE_ALL:
970 ispipe = TRU1;
971 switch (_pipecmd(&pipecomm, ip->m_ct_type_plain)) {
972 case PIPE_MSG:
973 _out(pipecomm, strlen(pipecomm), obuf, CONV_NONE, SEND_MBOX, qf,
974 stats, NULL);
975 pipecomm = NULL;
976 break;
977 case PIPE_ASYNC:
978 ispipe = FAL0;
979 /* FALLTHRU */
980 case PIPE_COMM:
981 case PIPE_NULL:
982 break;
983 case PIPE_TEXT:
984 goto jcopyout; /* break; break; */
986 if (pipecomm != NULL)
987 break;
988 if (level == 0 && cnt) {
989 char const *x = _("[Binary content]\n");
990 _out(x, strlen(x), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL);
992 goto jleave;
993 case SEND_TOFILE:
994 case SEND_TOPIPE:
995 case SEND_TOSRCH:
996 case SEND_DECRYPT:
997 case SEND_MBOX:
998 case SEND_RFC822:
999 case SEND_SHOW:
1000 break;
1002 break;
1003 case MIME_ALTERNATIVE:
1004 if ((action == SEND_TODISP || action == SEND_QUOTE) &&
1005 !ok_blook(print_alternatives)) {
1006 bool_t doact = FAL0;
1008 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart)
1009 if (np->m_mimecontent == MIME_TEXT_PLAIN)
1010 doact = TRU1;
1011 if (doact) {
1012 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart) {
1013 if (np->m_ct_type_plain != NULL && action != SEND_QUOTE) {
1014 _print_part_info(&rest, np, doign, level);
1015 _out(rest.s, rest.l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
1016 NULL);
1018 if (doact && np->m_mimecontent == MIME_TEXT_PLAIN) {
1019 doact = FAL0;
1020 rv = sendpart(zmp, np, obuf, doign, qf, action, stats,
1021 level + 1);
1022 quoteflt_reset(qf, origobuf);
1023 if (rv < 0)
1024 break;
1027 goto jleave;
1030 /* FALLTHRU */
1031 case MIME_MULTI:
1032 case MIME_DIGEST:
1033 switch (action) {
1034 case SEND_TODISP:
1035 case SEND_TODISP_ALL:
1036 case SEND_QUOTE:
1037 case SEND_QUOTE_ALL:
1038 case SEND_TOFILE:
1039 case SEND_TOPIPE:
1040 case SEND_TOSRCH:
1041 case SEND_DECRYPT:
1042 jmulti:
1043 if ((action == SEND_TODISP || action == SEND_TODISP_ALL) &&
1044 ip->m_multipart != NULL &&
1045 ip->m_multipart->m_mimecontent == MIME_DISCARD &&
1046 ip->m_multipart->m_nextpart == NULL) {
1047 char const *x = _("[Missing multipart boundary - use \"show\" "
1048 "to display the raw message]\n");
1049 _out(x, strlen(x), obuf, CONV_NONE, SEND_MBOX, qf, stats, NULL);
1052 for (np = ip->m_multipart; np != NULL; np = np->m_nextpart) {
1053 if (np->m_mimecontent == MIME_DISCARD && action != SEND_DECRYPT)
1054 continue;
1055 ispipe = FAL0;
1056 switch (action) {
1057 case SEND_TOFILE:
1058 if (np->m_partstring && !strcmp(np->m_partstring, "1"))
1059 break;
1060 stats = NULL;
1061 if ((obuf = newfile(np, UNVOLATILE(&ispipe))) == NULL)
1062 continue;
1063 if (!ispipe)
1064 break;
1065 if (sigsetjmp(_send_pipejmp, 1)) {
1066 rv = -1;
1067 goto jpipe_close;
1069 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
1070 break;
1071 case SEND_TODISP:
1072 case SEND_TODISP_ALL:
1073 case SEND_QUOTE_ALL:
1074 if (ip->m_mimecontent != MIME_MULTI &&
1075 ip->m_mimecontent != MIME_ALTERNATIVE &&
1076 ip->m_mimecontent != MIME_DIGEST)
1077 break;
1078 _print_part_info(&rest, np, doign, level);
1079 _out(rest.s, rest.l, obuf, CONV_NONE, SEND_MBOX, qf, stats,
1080 NULL);
1081 break;
1082 case SEND_MBOX:
1083 case SEND_RFC822:
1084 case SEND_SHOW:
1085 case SEND_TOSRCH:
1086 case SEND_QUOTE:
1087 case SEND_DECRYPT:
1088 case SEND_TOPIPE:
1089 break;
1092 quoteflt_flush(qf);
1093 if (sendpart(zmp, np, obuf, doign, qf, action, stats, level+1) < 0)
1094 rv = -1;
1095 quoteflt_reset(qf, origobuf);
1096 if (action == SEND_QUOTE)
1097 break;
1098 if (action == SEND_TOFILE && obuf != origobuf) {
1099 if (!ispipe)
1100 Fclose(obuf);
1101 else {
1102 jpipe_close:
1103 safe_signal(SIGPIPE, SIG_IGN);
1104 Pclose(obuf, TRU1);
1105 safe_signal(SIGPIPE, oldpipe);
1109 goto jleave;
1110 case SEND_MBOX:
1111 case SEND_RFC822:
1112 case SEND_SHOW:
1113 break;
1117 /* Copy out message body */
1118 jcopyout:
1119 if (doign == allignore && level == 0) /* skip final blank line */
1120 --cnt;
1121 switch (ip->m_mimeenc) {
1122 case MIME_BIN:
1123 if (stats != NULL)
1124 stats[0] = -1;
1125 /* FALLTHRU */
1126 case MIME_7B:
1127 case MIME_8B:
1128 convert = CONV_NONE;
1129 break;
1130 case MIME_QP:
1131 convert = CONV_FROMQP;
1132 break;
1133 case MIME_B64:
1134 switch (ip->m_mimecontent) {
1135 case MIME_TEXT:
1136 case MIME_TEXT_PLAIN:
1137 case MIME_TEXT_HTML:
1138 convert = CONV_FROMB64_T;
1139 break;
1140 default:
1141 convert = CONV_FROMB64;
1143 break;
1144 default:
1145 convert = CONV_NONE;
1148 if (action == SEND_DECRYPT || action == SEND_MBOX ||
1149 action == SEND_RFC822 || action == SEND_SHOW)
1150 convert = CONV_NONE;
1151 #ifdef HAVE_ICONV
1152 if ((action == SEND_TODISP || action == SEND_TODISP_ALL ||
1153 action == SEND_QUOTE || action == SEND_QUOTE_ALL ||
1154 action == SEND_TOSRCH) &&
1155 (ip->m_mimecontent == MIME_TEXT_PLAIN ||
1156 ip->m_mimecontent == MIME_TEXT_HTML ||
1157 ip->m_mimecontent == MIME_TEXT)) {
1158 char const *tcs = charset_get_lc();
1160 if (iconvd != (iconv_t)-1)
1161 n_iconv_close(iconvd);
1162 /* TODO Since Base64 has an odd 4:3 relation in between input
1163 * TODO and output an input line may end with a partial
1164 * TODO multibyte character; this is no problem at all unless
1165 * TODO we send to the display or whatever, i.e., ensure
1166 * TODO makeprint() or something; to avoid this trap, *force*
1167 * TODO iconv(), in which case this layer will handle leftovers
1168 * TODO correctly */
1169 if (convert == CONV_FROMB64_T || (asccasecmp(tcs, ip->m_charset) &&
1170 asccasecmp(charset_get_7bit(), ip->m_charset))) {
1171 iconvd = n_iconv_open(tcs, ip->m_charset);
1172 /* XXX Don't bail out if we cannot iconv(3) here;
1173 * XXX alternatively we could avoid trying to open
1174 * XXX if ip->m_charset is "unknown-8bit", which was
1175 * XXX the one that has bitten me?? */
1177 * TODO errors should DEFINETELY not be scrolled away!
1178 * TODO what about an error buffer (think old shsp(1)),
1179 * TODO re-dump errors since last snapshot when the
1180 * TODO command loop enters again? i.e., at least print
1181 * TODO "There were errors ?" before the next prompt,
1182 * TODO so that the user can look at the error buffer?
1184 if (iconvd == (iconv_t)-1 && errno == EINVAL) {
1185 fprintf(stderr, _("Cannot convert from %s to %s\n"),
1186 ip->m_charset, tcs);
1187 /*rv = 1; goto jleave;*/
1191 #endif
1193 if (pipecomm != NULL && (action == SEND_TODISP ||
1194 action == SEND_TODISP_ALL || action == SEND_QUOTE ||
1195 action == SEND_QUOTE_ALL)) {
1196 qbuf = obuf;
1197 pbuf = _pipefile(pipecomm, UNVOLATILE(&qbuf),
1198 (action == SEND_QUOTE || action == SEND_QUOTE_ALL), !ispipe);
1199 action = SEND_TOPIPE;
1200 if (pbuf != qbuf) {
1201 oldpipe = safe_signal(SIGPIPE, &_send_onpipe);
1202 if (sigsetjmp(_send_pipejmp, 1))
1203 goto jend;
1205 } else
1206 pbuf = qbuf = obuf;
1209 bool_t eof;
1210 ui32_t save_qf_pfix_len = qf->qf_pfix_len;
1211 off_t *save_stats = stats;
1213 if (pbuf != origobuf) {
1214 qf->qf_pfix_len = 0; /* XXX legacy (remove filter instead) */
1215 stats = NULL;
1217 eof = FAL0;
1218 rest.s = NULL;
1219 rest.l = 0;
1221 quoteflt_reset(qf, pbuf);
1222 while (!eof && fgetline(&line, &linesize, &cnt, &linelen, ibuf, 0)) {
1223 joutln:
1224 if (_out(line, linelen, pbuf, convert, action, qf, stats, &rest) < 0 ||
1225 ferror(pbuf)) {
1226 rv = -1; /* XXX Should bail away?! */
1227 break;
1230 if (!eof && rest.l != 0) {
1231 linelen = 0;
1232 eof = TRU1;
1233 action |= _TD_EOF;
1234 goto joutln;
1236 quoteflt_flush(qf);
1237 if (rest.s != NULL)
1238 free(rest.s);
1240 if (pbuf != origobuf) {
1241 qf->qf_pfix_len = save_qf_pfix_len;
1242 stats = save_stats;
1246 jend:
1247 free(line);
1248 if (pbuf != qbuf) {
1249 safe_signal(SIGPIPE, SIG_IGN);
1250 Pclose(pbuf, ispipe);
1251 safe_signal(SIGPIPE, oldpipe);
1252 if (qbuf != obuf)
1253 pipecpy(qbuf, obuf, origobuf, qf, stats);
1255 #ifdef HAVE_ICONV
1256 if (iconvd != (iconv_t)-1)
1257 n_iconv_close(iconvd);
1258 #endif
1259 jleave:
1260 NYD_LEAVE;
1261 return rv;
1264 static FILE *
1265 newfile(struct mimepart *ip, int *ispipe)
1267 struct str in, out;
1268 char *f;
1269 FILE *fp;
1270 NYD_ENTER;
1272 f = ip->m_filename;
1273 *ispipe = 0;
1275 if (f != NULL && f != (char*)-1) {
1276 in.s = f;
1277 in.l = strlen(f);
1278 mime_fromhdr(&in, &out, TD_ISPR);
1279 memcpy(f, out.s, out.l);
1280 *(f + out.l) = '\0';
1281 free(out.s);
1284 if (options & OPT_INTERACTIVE) {
1285 char *f2, *f3;
1286 jgetname:
1287 printf(_("Enter filename for part %s (%s)"),
1288 (ip->m_partstring != NULL) ? ip->m_partstring : "?",
1289 ip->m_ct_type_plain);
1290 f2 = readstr_input(": ", (f != (char*)-1) ? f : NULL);
1291 if (f2 == NULL || *f2 == '\0') {
1292 fprintf(stderr, _("... skipping this\n"));
1293 fp = NULL;
1294 goto jleave;
1295 } else if (*f2 == '|')
1296 /* Pipes are expanded by the shell */
1297 f = f2;
1298 else if ((f3 = file_expand(f2)) == NULL)
1299 /* (Error message written by file_expand()) */
1300 goto jgetname;
1301 else
1302 f = f3;
1304 if (f == NULL || f == (char*)-1) {
1305 fp = NULL;
1306 goto jleave;
1309 if (*f == '|') {
1310 char const *cp;
1311 cp = ok_vlook(SHELL);
1312 if (cp == NULL)
1313 cp = XSHELL;
1314 fp = Popen(f + 1, "w", cp, NULL, 1);
1315 if (!(*ispipe = (fp != NULL)))
1316 perror(f);
1317 } else {
1318 if ((fp = Fopen(f, "w")) == NULL)
1319 fprintf(stderr, _("Cannot open `%s'\n"), f);
1321 jleave:
1322 NYD_LEAVE;
1323 return fp;
1326 static void
1327 pipecpy(FILE *pipebuf, FILE *outbuf, FILE *origobuf, struct quoteflt *qf,
1328 off_t *stats)
1330 char *line = NULL; /* TODO line pool */
1331 size_t linesize = 0, linelen, cnt;
1332 ssize_t all_sz, sz;
1333 NYD_ENTER;
1335 fflush(pipebuf);
1336 rewind(pipebuf);
1337 cnt = fsize(pipebuf);
1338 all_sz = 0;
1340 quoteflt_reset(qf, outbuf);
1341 while (fgetline(&line, &linesize, &cnt, &linelen, pipebuf, 0) != NULL) {
1342 if ((sz = quoteflt_push(qf, line, linelen)) < 0)
1343 break;
1344 all_sz += sz;
1346 if ((sz = quoteflt_flush(qf)) > 0)
1347 all_sz += sz;
1348 if (line)
1349 free(line);
1351 if (all_sz > 0 && outbuf == origobuf)
1352 _addstats(stats, 1, all_sz);
1353 fclose(pipebuf);
1354 NYD_LEAVE;
1357 static void
1358 statusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1359 off_t *stats)
1361 char statout[3], *cp = statout;
1362 NYD_ENTER;
1364 if (mp->m_flag & MREAD)
1365 *cp++ = 'R';
1366 if (!(mp->m_flag & MNEW))
1367 *cp++ = 'O';
1368 *cp = 0;
1369 if (statout[0]) {
1370 int i = fprintf(obuf, "%.*sStatus: %s\n", (int)qf->qf_pfix_len,
1371 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), statout);
1372 if (i > 0)
1373 _addstats(stats, 1, i);
1375 NYD_LEAVE;
1378 static void
1379 xstatusput(const struct message *mp, FILE *obuf, struct quoteflt *qf,
1380 off_t *stats)
1382 char xstatout[4];
1383 char *xp = xstatout;
1384 NYD_ENTER;
1386 if (mp->m_flag & MFLAGGED)
1387 *xp++ = 'F';
1388 if (mp->m_flag & MANSWERED)
1389 *xp++ = 'A';
1390 if (mp->m_flag & MDRAFTED)
1391 *xp++ = 'T';
1392 *xp = 0;
1393 if (xstatout[0]) {
1394 int i = fprintf(obuf, "%.*sX-Status: %s\n", (int)qf->qf_pfix_len,
1395 (qf->qf_pfix_len > 0 ? qf->qf_pfix : 0), xstatout);
1396 if (i > 0)
1397 _addstats(stats, 1, i);
1399 NYD_LEAVE;
1402 static void
1403 put_from_(FILE *fp, struct mimepart *ip, off_t *stats)
1405 char const *froma, *date, *nl;
1406 int i;
1407 NYD_ENTER;
1409 if (ip != NULL && ip->m_from != NULL) {
1410 froma = ip->m_from;
1411 date = fakedate(ip->m_time);
1412 nl = "\n";
1413 } else {
1414 froma = myname;
1415 date = time_current.tc_ctime;
1416 nl = "";
1419 colour_put(fp, COLOURSPEC_FROM_);
1420 i = fprintf(fp, "From %s %s%s", froma, date, nl);
1421 colour_reset(fp);
1422 if (i > 0)
1423 _addstats(stats, (*nl != '\0'), i);
1424 NYD_LEAVE;
1427 FL int
1428 sendmp(struct message *mp, FILE *obuf, struct ignoretab *doign,
1429 char const *prefix, enum sendaction action, off_t *stats)
1431 struct quoteflt qf;
1432 size_t cnt, sz, i;
1433 FILE *ibuf;
1434 enum parseflags pf;
1435 struct mimepart *ip;
1436 int rv = -1, c;
1437 NYD_ENTER;
1439 if (mp == dot && action != SEND_TOSRCH)
1440 did_print_dot = 1;
1441 if (stats != NULL)
1442 stats[0] = stats[1] = 0;
1443 quoteflt_init(&qf, prefix);
1445 /* First line is the From_ line, so no headers there to worry about */
1446 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
1447 goto jleave;
1449 cnt = mp->m_size;
1450 sz = 0;
1452 struct str const *cpre, *csuf;
1453 #ifdef HAVE_COLOUR
1454 cpre = colour_get(COLOURSPEC_FROM_);
1455 csuf = colour_get(COLOURSPEC_RESET);
1456 #else
1457 cpre = csuf = NULL;
1458 #endif
1459 if (mp->m_flag & MNOFROM) {
1460 if (doign != allignore && doign != fwdignore && action != SEND_RFC822)
1461 sz = fprintf(obuf, "%s%.*sFrom %s %s%s\n",
1462 (cpre != NULL ? cpre->s : ""),
1463 (int)qf.qf_pfix_len, (qf.qf_pfix_len != 0 ? qf.qf_pfix : ""),
1464 fakefrom(mp), fakedate(mp->m_time),
1465 (csuf != NULL ? csuf->s : ""));
1466 } else {
1467 if (doign != allignore && doign != fwdignore && action != SEND_RFC822) {
1468 if (qf.qf_pfix_len > 0) {
1469 i = fwrite(qf.qf_pfix, sizeof *qf.qf_pfix, qf.qf_pfix_len, obuf);
1470 if (i != qf.qf_pfix_len)
1471 goto jleave;
1472 sz += i;
1474 #ifdef HAVE_COLOUR
1475 if (cpre != NULL) {
1476 fputs(cpre->s, obuf);
1477 cpre = (struct str const*)0x1;
1479 #endif
1482 while (cnt > 0 && (c = getc(ibuf)) != EOF) {
1483 if (doign != allignore && doign != fwdignore &&
1484 action != SEND_RFC822) {
1485 #ifdef HAVE_COLOUR
1486 if (c == '\n' && csuf != NULL) {
1487 cpre = (struct str const*)0x1;
1488 fputs(csuf->s, obuf);
1490 #endif
1491 putc(c, obuf);
1492 sz++;
1494 --cnt;
1495 if (c == '\n')
1496 break;
1499 #ifdef HAVE_COLOUR
1500 if (csuf != NULL && cpre != (struct str const*)0x1)
1501 fputs(csuf->s, obuf);
1502 #endif
1505 if (sz > 0)
1506 _addstats(stats, 1, sz);
1508 pf = 0;
1509 if (action != SEND_MBOX && action != SEND_RFC822 && action != SEND_SHOW)
1510 pf |= PARSE_DECRYPT | PARSE_PARTS;
1511 if ((ip = parsemsg(mp, pf)) == NULL)
1512 goto jleave;
1514 rv = sendpart(mp, ip, obuf, doign, &qf, action, stats, 0);
1515 jleave:
1516 quoteflt_destroy(&qf);
1517 NYD_LEAVE;
1518 return rv;
1521 /* vim:set fenc=utf-8:s-it-mode */