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 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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
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
38 #ifndef HAVE_AMALGAMATION
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 ignoretab
*doign
, 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
*rest
);
61 static void _send_onpipe(int signo
);
64 static int sendpart(struct message
*zmp
, struct mimepart
*ip
,
65 FILE *obuf
, struct ignoretab
*doign
,
66 struct quoteflt
*qf
, enum sendaction action
,
67 ui64_t
*stats
, int level
);
69 /* Get a file for an attachment */
70 static FILE * newfile(struct mimepart
*ip
, bool_t
*ispipe
);
72 static void pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
,
73 struct quoteflt
*qf
, ui64_t
*stats
);
75 /* Output a reasonable looking status field */
76 static void statusput(const struct message
*mp
, FILE *obuf
,
77 struct quoteflt
*qf
, ui64_t
*stats
);
78 static void xstatusput(const struct message
*mp
, FILE *obuf
,
79 struct quoteflt
*qf
, ui64_t
*stats
);
81 static void put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
);
84 _print_part_info(FILE *obuf
, struct mimepart
const *mpp
, /* TODO strtofmt.. */
85 struct ignoretab
*doign
, int level
, struct quoteflt
*qf
, ui64_t
*stats
)
88 struct str ti
= {NULL
, 0}, to
;
89 struct str
const *cpre
, *csuf
;
95 struct n_colour_pen
*cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_PARTINFO
,
97 if ((cpre
= n_colour_pen_to_str(cpen
)) != NULL
)
98 csuf
= n_colour_reset_to_str();
106 /* Take care of "99.99", i.e., 5 */
107 if ((cp
= mpp
->m_partstring
) == NULL
|| cp
[0] == '\0')
109 if (level
|| (cp
[0] != '1' && cp
[1] == '\0'))
110 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
112 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
113 _out("[-- #", 5, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
114 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
116 to
.l
= snprintf(buf
, sizeof buf
, " %" PRIuZ
"/%" PRIuZ
" ",
117 (uiz_t
)mpp
->m_lines
, (uiz_t
)mpp
->m_size
);
118 _out(buf
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
120 if ((cp
= mpp
->m_ct_type_usr_ovwr
) != NULL
)
121 _out("+", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
123 cp
= mpp
->m_ct_type_plain
;
124 if ((to
.l
= strlen(cp
)) > 30 && is_asccaseprefix(cp
, "application/")) {
125 size_t const al
= sizeof("appl../") -1, fl
= sizeof("application/") -1;
126 size_t i
= to
.l
- fl
;
127 char *x
= salloc(al
+ i
+1);
129 memcpy(x
, "appl../", al
);
130 memcpy(x
+ al
, cp
+ fl
, i
+1);
134 _out(cp
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
136 if (mpp
->m_multipart
== NULL
/* TODO */ && (cp
= mpp
->m_ct_enc
) != NULL
) {
137 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
138 if (to
.l
> 25 && !asccasecmp(cp
, "quoted-printable"))
140 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
143 if (mpp
->m_multipart
== NULL
/* TODO */ && (cp
= mpp
->m_charset
) != NULL
) {
144 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
145 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
148 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
150 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
151 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
153 if (is_ign("content-disposition", 19, doign
) && mpp
->m_filename
!= NULL
&&
154 *mpp
->m_filename
!= '\0') {
155 makeprint(n_str_add_cp(&ti
, mpp
->m_filename
), &to
);
157 to
.l
= delctrl(to
.s
, to
.l
);
160 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
161 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
162 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
163 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
165 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
166 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
174 _pipefile(struct mime_handler
*mhp
, struct mimepart
const *mpp
, FILE **qbuf
,
175 char const *tmpname
, int term_infd
)
178 char const *env_addon
[8], *cp
, *sh
;
184 if (mhp
->mh_flags
& MIME_HDL_ISQUOTE
) {
185 if ((*qbuf
= Ftmp(NULL
, "sendp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
187 n_perr(_("tmpfile"), 0);
192 if ((mhp
->mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
) {
193 union {int (*ptf
)(void); char const *sh
;} u
;
196 if (*qbuf
!= stdout
) /* xxx never? v15: it'll be a filter anyway */
200 if((rbuf
= Popen((char*)-1, "W", u
.sh
, NULL
, fileno(*qbuf
))) == NULL
)
206 if (mpp
== NULL
|| (cp
= mpp
->m_filename
) == NULL
)
208 env_addon
[0] = str_concat_csvl(&s
, NAILENV_FILENAME
, "=", cp
, NULL
)->s
;
210 /* NAIL_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
211 * TODO a file wherever he wants! *Do* create a zero-size temporary file
212 * TODO and give *that* path as NAIL_FILENAME_TEMPORARY, clean it up once
213 * TODO the pipe returns? Like this we *can* verify path/name issues! */
214 env_addon
[1] = str_concat_csvl(&s
, NAILENV_FILENAME_GENERATED
, "=",
215 getrandstring(MIN(NAME_MAX
/ 4, 16)), NULL
)->s
;
217 /* NAIL_CONTENT{,_EVIDENCE} */
218 if (mpp
== NULL
|| (cp
= mpp
->m_ct_type_plain
) == NULL
)
220 env_addon
[2] = str_concat_csvl(&s
, NAILENV_CONTENT
, "=", cp
, NULL
)->s
;
222 if (mpp
!= NULL
&& mpp
->m_ct_type_usr_ovwr
!= NULL
)
223 cp
= mpp
->m_ct_type_usr_ovwr
;
224 env_addon
[3] = str_concat_csvl(&s
, NAILENV_CONTENT_EVIDENCE
, "=", cp
,
227 env_addon
[4] = str_concat_csvl(&s
, NAILENV_TMPDIR
, "=", tempdir
, NULL
)->s
;
228 env_addon
[5] = str_concat_csvl(&s
, "TMPDIR", "=", tempdir
, NULL
)->s
;
232 /* NAIL_FILENAME_TEMPORARY? */
233 if (tmpname
!= NULL
) {
234 env_addon
[6] = str_concat_csvl(&s
, NAILENV_FILENAME_TEMPORARY
, "=",
239 sh
= ok_vlook(SHELL
);
241 if (mhp
->mh_flags
& MIME_HDL_NEEDSTERM
) {
246 pid
= run_command(sh
, NULL
, term_infd
, COMMAND_FD_PASS
, "-c",
247 mhp
->mh_shell_cmd
, NULL
, env_addon
);
248 rbuf
= (pid
< 0) ? NULL
: (FILE*)-1;
250 rbuf
= Popen(mhp
->mh_shell_cmd
, "W", sh
, env_addon
,
251 (mhp
->mh_flags
& MIME_HDL_ASYNC
? -1 : fileno(*qbuf
)));
254 n_err(_("Cannot run MIME type handler \"%s\": %s\n"),
255 mhp
->mh_msg
, strerror(errno
));
268 _out(char const *buf
, size_t len
, FILE *fp
, enum conversion convert
, enum
269 sendaction action
, struct quoteflt
*qf
, ui64_t
*stats
, struct str
*rest
)
276 Well
... it turns out to
not work like that since of course a valid
277 RFC
4155 compliant parser
, like S
-nail
, takes care
for From_ lines only
278 after an empty line has been seen
, which cannot be detected that easily
280 ifdef HAVE_DEBUG
/* TODO assert legacy */
281 /* TODO if at all, this CAN only happen for SEND_DECRYPT, since all
282 * TODO other input situations handle RFC 4155 OR, if newly generated,
283 * TODO enforce quoted-printable if there is From_, as "required" by
284 * TODO RFC 5751. The SEND_DECRYPT case is not yet overhauled;
285 * TODO if it may happen in this path, we should just treat decryption
286 * TODO as we do for the other input paths; i.e., handle it in SSL!! */
287 if (action
== SEND_MBOX
|| action
== SEND_DECRYPT
)
288 assert(!is_head(buf
, len
, TRU1
));
290 if ((/*action == SEND_MBOX ||*/ action
== SEND_DECRYPT
) &&
291 is_head(buf
, len
, TRU1
)) {
297 flags
= ((int)action
& _TD_EOF
);
299 n
= mime_write(buf
, len
, fp
,
300 action
== SEND_MBOX
? CONV_NONE
: convert
,
301 flags
| ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
302 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
)
304 : (action
== SEND_TOSRCH
|| action
== SEND_TOPIPE
)
305 ? TD_ICONV
: (action
== SEND_SHOW
? TD_ISPR
: TD_NONE
)),
319 _send_onpipe(int signo
)
321 NYD_X
; /* Signal handler */
323 siglongjmp(_send_pipejmp
, 1);
326 static sigjmp_buf __sendp_actjmp
; /* TODO someday.. */
327 static int __sendp_sig
; /* TODO someday.. */
328 static sighandler_type __sendp_opipe
;
330 __sendp_onsig(int sig
) /* TODO someday, we won't need it no more */
332 NYD_X
; /* Signal handler */
334 siglongjmp(__sendp_actjmp
, 1);
338 sendpart(struct message
*zmp
, struct mimepart
*ip
, FILE * volatile obuf
,
339 struct ignoretab
*doign
, struct quoteflt
*qf
,
340 enum sendaction
volatile action
, ui64_t
* volatile stats
, int level
)
343 struct mime_handler mh
;
345 char *line
= NULL
, *cp
, *cp2
, *start
;
346 char const *tmpname
= NULL
;
347 size_t linesize
= 0, linelen
, cnt
;
348 int volatile term_infd
;
350 struct mimepart
*volatile np
;
351 FILE * volatile ibuf
= NULL
, * volatile pbuf
= obuf
,
352 * volatile qbuf
= obuf
, *origobuf
= obuf
;
353 enum conversion
volatile convert
;
354 sighandler_type
volatile oldpipe
= SIG_DFL
;
357 if (ip
->m_mimecontent
== MIME_PKCS7
&& ip
->m_multipart
&&
358 action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
364 if (!is_ign("status", 6, doign
))
366 if (!is_ign("x-status", 8, doign
))
371 if ((ibuf
= setinput(&mb
, (struct message
*)ip
, NEED_BODY
)) == NULL
) {
377 if (ip
->m_mimecontent
== MIME_DISCARD
)
380 if (!(ip
->m_flag
& MNOFROM
))
381 while (cnt
&& (c
= getc(ibuf
)) != EOF
) {
386 convert
= (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
387 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
388 action
== SEND_TOSRCH
)
389 ? CONV_FROMHDR
: CONV_NONE
;
391 /* Work the headers */
392 quoteflt_reset(qf
, obuf
);
403 while (fgetline(&line
, &linesize
, &cnt
, &linelen
, ibuf
, 0)) {
405 if (line
[0] == '\n') {
406 /* If line is blank, we've reached end of headers, so force out
407 * status: field and note that we are no longer in header fields */
409 statusput(zmp
, obuf
, qf
, stats
);
411 xstatusput(zmp
, obuf
, qf
, stats
);
412 if (doign
!= allignore
)
413 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
418 if ((hps
& HPS_IN_FIELD
) && blankchar(line
[0])) {
419 /* If this line is a continuation (SP / HT) of a previous header
420 * field, determine if the start of the line is a MIME encoded word */
421 if (hps
& HPS_ISENC_2
) {
422 for (cp
= line
; blankchar(*cp
); ++cp
)
424 if (cp
> line
&& linelen
- PTR2SIZE(cp
- line
) > 8 &&
425 cp
[0] == '=' && cp
[1] == '?')
429 /* Pick up the header field if we have one */
430 for (cp
= line
; (c
= *cp
& 0377) && c
!= ':' && !spacechar(c
); ++cp
)
433 while (spacechar(*cp
))
437 n_err(_("Malformed message: headers and body not separated "
438 "(with empty line)\n"));
439 /* Not a header line, force out status: This happens in uucp style
440 * mail where there are no headers at all */
441 if (level
== 0 /*&& lineno == 1*/) {
443 statusput(zmp
, obuf
, qf
, stats
);
445 xstatusput(zmp
, obuf
, qf
, stats
);
447 if (doign
!= allignore
)
448 _out("\n", 1, obuf
, CONV_NONE
,SEND_MBOX
, qf
, stats
, NULL
);
452 /* If it is an ignored field and we care about such things, skip it.
453 * Misuse dostat also for another bit xxx use a bitenum + for more */
454 if (ok_blook(keep_content_length
))
457 *cp2
= 0; /* temporarily null terminate */
458 if ((doign
&& is_ign(line
, PTR2SIZE(cp2
- line
), doign
)) ||
459 (action
== SEND_MBOX
&& !(dostat
& (1 << 2)) &&
460 (!asccasecmp(line
, "content-length") ||
461 !asccasecmp(line
, "lines"))))
463 else if (!asccasecmp(line
, "status")) {
464 /* If field is "status," go compute and print real Status: field */
466 statusput(zmp
, obuf
, qf
, stats
);
470 } else if (!asccasecmp(line
, "x-status")) {
471 /* If field is "status," go compute and print real Status: field */
473 xstatusput(zmp
, obuf
, qf
, stats
);
479 /* For colourization we need the complete line, so save it */
480 /* XXX This is all temporary (colour belongs into backend), so
481 * XXX use tmpname as a temporary storage in the meanwhile */
483 if (pstate
& PS_COLOUR_ACTIVE
)
484 tmpname
= savestrbuf(line
, PTR2SIZE(cp2
- line
));
492 /* Determine if the end of the line is a MIME encoded word */
493 /* TODO geeeh! all this lengthy stuff that follows is about is dealing
494 * TODO with header follow lines, and it should be up to the backend
495 * TODO what happens and what not, i.e., it doesn't matter wether it's
496 * TODO a MIME-encoded word or not, as long as a single separating space
497 * TODO remains in between lines (the MIME stuff will correctly remove
498 * TODO whitespace in between multiple adjacent encoded words) */
500 if (cnt
&& (c
= getc(ibuf
)) != EOF
) {
502 cp
= line
+ linelen
- 1;
503 if (linelen
> 0 && *cp
== '\n')
505 while (cp
>= line
&& whitechar(*cp
))
507 if (PTR2SIZE(cp
- line
> 8) && cp
[0] == '=' && cp
[-1] == '?')
513 if (!(hps
& HPS_IGNORE
)) {
514 size_t len
= linelen
;
516 if (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
517 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
518 action
== SEND_TOSRCH
) {
519 /* Strip blank characters if two MIME-encoded words follow on
520 * continuing lines */
521 if (hps
& HPS_ISENC_1
)
522 while (len
> 0 && blankchar(*start
)) {
526 if (hps
& HPS_ISENC_2
)
527 if (len
> 0 && start
[len
- 1] == '\n')
529 while (len
> 0 && blankchar(start
[len
- 1]))
534 bool_t colour_stripped
= FAL0
;
535 if (tmpname
!= NULL
) {
536 n_colour_put(obuf
, n_COLOUR_ID_VIEW_HEADER
, tmpname
);
537 if (len
> 0 && start
[len
- 1] == '\n') {
538 colour_stripped
= TRU1
;
543 _out(start
, len
, obuf
, convert
, action
, qf
, stats
, NULL
);
545 if (tmpname
!= NULL
) {
546 n_colour_reset(obuf
);
566 memset(&mh
, 0, sizeof mh
);
568 switch (ip
->m_mimecontent
) {
572 case SEND_TODISP_ALL
:
575 if (ok_blook(rfc822_body_from_
)) {
576 if (qf
->qf_pfix_len
> 0) {
577 size_t i
= fwrite(qf
->qf_pfix
, sizeof *qf
->qf_pfix
,
578 qf
->qf_pfix_len
, obuf
);
579 if (i
== qf
->qf_pfix_len
&& stats
!= NULL
)
582 put_from_(obuf
, ip
->m_multipart
, stats
);
590 if (ok_blook(rfc822_body_from_
))
591 put_from_(obuf
, ip
->m_multipart
, stats
);
601 case MIME_TEXT_PLAIN
:
604 case SEND_TODISP_ALL
:
607 switch (mime_type_handler(&mh
, ip
, action
)) {
609 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
611 /* We would print this as plain text, so better force going home */
622 if (action
!= SEND_DECRYPT
)
626 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&&
627 action
!= SEND_SHOW
&& ip
->m_multipart
!= NULL
)
633 case SEND_TODISP_ALL
:
636 switch (mime_type_handler(&mh
, ip
, action
)) {
638 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
640 /* We would print this as plain text, so better force going home */
643 /* FIXME WE NEED TO DO THAT IF WE ARE THE ONLY MAIL
644 * FIXME CONTENT !! */
649 if (level
== 0 && cnt
) {
650 char const *x
= _("[-- Binary content --]\n");
651 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
666 case MIME_ALTERNATIVE
:
667 if ((action
== SEND_TODISP
|| action
== SEND_QUOTE
) &&
668 !ok_blook(print_alternatives
)) {
669 /* XXX This (a) should not remain (b) should be own fun
670 * TODO (despite the fact that v15 will do this completely differently
671 * TODO by having an action-specific "manager" that will traverse the
672 * TODO parsed MIME tree and decide for each part wether it'll be
673 * TODO displayed or not *before* we walk the tree for doing action */
675 struct mpstack
*outer
;
677 } outermost
, * volatile curr
, * volatile mpsp
;
678 bool_t
volatile neednl
, hadpart
;
679 struct n_sigman smalter
;
681 (curr
= &outermost
)->outer
= NULL
;
683 neednl
= hadpart
= FAL0
;
685 n_SIGMAN_ENTER_SWITCH(&smalter
, n_SIGMAN_ALL
) {
693 for (np
= ip
->m_multipart
;;) {
695 for (; np
!= NULL
; np
= np
->m_nextpart
) {
696 if (action
!= SEND_QUOTE
&& np
->m_ct_type_plain
!= NULL
) {
698 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
699 _print_part_info(obuf
, np
, doign
, level
, qf
, stats
);
703 switch (np
->m_mimecontent
) {
704 case MIME_ALTERNATIVE
:
708 mpsp
= salloc(sizeof *mpsp
);
710 mpsp
->mp
= np
->m_multipart
;
719 switch (mime_type_handler(&mh
, np
, action
)) {
721 mh
.mh_flags
= MIME_HDL_NULL
;
722 continue; /* break; break; */
724 if (!ok_blook(mime_alternative_favour_rich
)) {/* TODO */
725 struct mimepart
*x
= np
;
727 while ((x
= x
->m_nextpart
) != NULL
) {
728 struct mime_handler mhx
;
730 if (x
->m_mimecontent
== MIME_TEXT_PLAIN
||
731 mime_type_handler(&mhx
, x
, action
) ==
736 continue; /* break; break; */
744 case MIME_TEXT_PLAIN
:
747 if (ok_blook(mime_alternative_favour_rich
)) { /* TODO */
748 struct mimepart
*x
= np
;
750 /* TODO twice TODO, we should dive into /related and
751 * TODO check wether that has rich parts! */
752 while ((x
= x
->m_nextpart
) != NULL
) {
753 struct mime_handler mhx
;
755 switch (mime_type_handler(&mhx
, x
, action
)) {
764 continue; /* break; break; */
768 if (action
== SEND_QUOTE
&& hadpart
) {
769 struct quoteflt
*dummy
= quoteflt_dummy();
770 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
772 quoteflt_flush(dummy
);
776 rv
= sendpart(zmp
, np
, obuf
, doign
, qf
, action
, stats
,
778 quoteflt_reset(qf
, origobuf
);
781 curr
= &outermost
; /* Cause overall loop termination */
790 np
= curr
->mp
->m_nextpart
;
793 n_sigman_leave(&smalter
, n_SIGMAN_VIPSIGS_NTTYOUT
);
802 case SEND_TODISP_ALL
:
810 if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
) &&
811 ip
->m_multipart
!= NULL
&&
812 ip
->m_multipart
->m_mimecontent
== MIME_DISCARD
&&
813 ip
->m_multipart
->m_nextpart
== NULL
) {
814 char const *x
= _("[Missing multipart boundary - use \"show\" "
815 "to display the raw message]\n");
816 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
);
819 for (np
= ip
->m_multipart
; np
!= NULL
; np
= np
->m_nextpart
) {
822 if (np
->m_mimecontent
== MIME_DISCARD
&& action
!= SEND_DECRYPT
)
828 if (np
->m_partstring
&& !strcmp(np
->m_partstring
, "1"))
831 /* TODO Always open multipart on /dev/null, it's a hack to be
832 * TODO able to dive into that structure, and still better
833 * TODO than asking the user for something stupid.
834 * TODO oh, wait, we did ask for a filename for this MIME mail,
835 * TODO and that outer container is useless anyway ;-P */
836 if (np
->m_multipart
!= NULL
) {
837 if ((obuf
= Fopen("/dev/null", "w")) == NULL
)
839 } else if ((obuf
= newfile(np
, &ispipe
)) == NULL
)
843 if (sigsetjmp(_send_pipejmp
, 1)) {
847 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
850 case SEND_TODISP_ALL
:
851 if (ip
->m_mimecontent
!= MIME_ALTERNATIVE
&&
852 ip
->m_mimecontent
!= MIME_RELATED
&&
853 ip
->m_mimecontent
!= MIME_DIGEST
&&
854 ip
->m_mimecontent
!= MIME_MULTI
)
856 _print_part_info(obuf
, np
, doign
, level
, qf
, stats
);
870 if ((action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
) &&
871 np
->m_multipart
== NULL
&& ip
->m_parent
!= NULL
) {
872 struct quoteflt
*dummy
= quoteflt_dummy();
873 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
875 quoteflt_flush(dummy
);
877 if (sendpart(zmp
, np
, obuf
, doign
, qf
, action
, stats
, level
+1) < 0)
879 quoteflt_reset(qf
, origobuf
);
881 if (action
== SEND_QUOTE
) {
882 if (ip
->m_mimecontent
!= MIME_RELATED
)
885 if (action
== SEND_TOFILE
&& obuf
!= origobuf
) {
890 safe_signal(SIGPIPE
, SIG_IGN
);
892 safe_signal(SIGPIPE
, oldpipe
);
905 /* Copy out message body */
906 if (doign
== allignore
&& level
== 0) /* skip final blank line */
908 switch (ip
->m_mime_enc
) {
915 convert
= CONV_FROMQP
;
918 switch (ip
->m_mimecontent
) {
920 case MIME_TEXT_PLAIN
:
922 convert
= CONV_FROMB64_T
;
925 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
928 convert
= CONV_FROMB64_T
;
931 convert
= CONV_FROMB64
;
941 if (action
== SEND_DECRYPT
|| action
== SEND_MBOX
||
942 action
== SEND_RFC822
|| action
== SEND_SHOW
)
945 if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
946 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
947 action
== SEND_TOSRCH
) &&
948 (ip
->m_mimecontent
== MIME_TEXT_PLAIN
||
949 ip
->m_mimecontent
== MIME_TEXT_HTML
||
950 ip
->m_mimecontent
== MIME_TEXT
||
951 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_TEXT
||
952 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
)) {
953 char const *tcs
= charset_get_lc();
955 if (iconvd
!= (iconv_t
)-1)
956 n_iconv_close(iconvd
);
957 /* TODO Since Base64 has an odd 4:3 relation in between input
958 * TODO and output an input line may end with a partial
959 * TODO multibyte character; this is no problem at all unless
960 * TODO we send to the display or whatever, i.e., ensure
961 * TODO makeprint() or something; to avoid this trap, *force*
962 * TODO iconv(), in which case this layer will handle leftovers
964 if (convert
== CONV_FROMB64_T
|| (asccasecmp(tcs
, ip
->m_charset
) &&
965 asccasecmp(charset_get_7bit(), ip
->m_charset
))) {
966 iconvd
= n_iconv_open(tcs
, ip
->m_charset
);
968 * TODO errors should DEFINETELY not be scrolled away!
969 * TODO what about an error buffer (think old shsp(1)),
970 * TODO re-dump errors since last snapshot when the
971 * TODO command loop enters again? i.e., at least print
972 * TODO "There were errors ?" before the next prompt,
973 * TODO so that the user can look at the error buffer?
975 if (iconvd
== (iconv_t
)-1 && errno
== EINVAL
) {
976 n_err(_("Cannot convert from %s to %s\n"), ip
->m_charset
, tcs
);
977 /*rv = 1; goto jleave;*/
983 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
989 term_infd
= COMMAND_FD_PASS
;
990 if (mh
.mh_flags
& (MIME_HDL_TMPF
| MIME_HDL_NEEDSTERM
)) {
993 of
= OF_RDWR
| OF_REGISTER
;
994 if (!(mh
.mh_flags
& MIME_HDL_TMPF
)) {
996 mh
.mh_flags
|= MIME_HDL_TMPF_FILL
;
998 } else if (mh
.mh_flags
& MIME_HDL_TMPF_UNLINK
)
999 of
|= OF_REGISTER_UNLINK
;
1001 if ((pbuf
= Ftmp((mh
.mh_flags
& MIME_HDL_TMPF
? &cp
: NULL
),
1002 (mh
.mh_flags
& MIME_HDL_TMPF_FILL
? "mimehdlfill" : "mimehdl"),
1006 if (mh
.mh_flags
& MIME_HDL_TMPF
) {
1007 tmpname
= savestr(cp
);
1011 if (mh
.mh_flags
& MIME_HDL_TMPF_FILL
) {
1013 term_infd
= fileno(pbuf
);
1019 pbuf
= _pipefile(&mh
, ip
, UNVOLATILE(&qbuf
), tmpname
, term_infd
);
1025 } else if ((mh
.mh_flags
& MIME_HDL_NEEDSTERM
) && pbuf
== (FILE*)-1) {
1030 action
= SEND_TOPIPE
;
1032 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
1033 if (sigsetjmp(_send_pipejmp
, 1))
1039 mh
.mh_flags
= MIME_HDL_NULL
;
1046 bool_t
volatile eof
;
1047 ui32_t save_qf_pfix_len
= qf
->qf_pfix_len
;
1048 ui64_t
*save_stats
= stats
;
1050 if (pbuf
!= origobuf
) {
1051 qf
->qf_pfix_len
= 0; /* XXX legacy (remove filter instead) */
1060 __sendp_opipe
= safe_signal(SIGPIPE
, &__sendp_onsig
);
1061 if (sigsetjmp(__sendp_actjmp
, 1)) {
1066 if (iconvd
!= (iconv_t
)-1)
1067 n_iconv_close(iconvd
);
1069 safe_signal(SIGPIPE
, __sendp_opipe
);
1070 n_raise(__sendp_sig
);
1074 quoteflt_reset(qf
, pbuf
);
1075 while (!eof
&& fgetline(&line
, &linesize
, &cnt
, &linelen
, ibuf
, 0)) {
1077 if (_out(line
, linelen
, pbuf
, convert
, action
, qf
, stats
, &rest
) < 0 ||
1079 rv
= -1; /* XXX Should bail away?! */
1083 if (!eof
&& rest
.l
!= 0) {
1091 if (mh
.mh_flags
& MIME_HDL_TMPF_FILL
) {
1092 mh
.mh_flags
&= ~MIME_HDL_TMPF_FILL
;
1094 really_rewind(pbuf
);
1095 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1096 goto jpipe_for_real
;
1100 safe_signal(SIGPIPE
, __sendp_opipe
);
1105 if (pbuf
!= origobuf
) {
1106 qf
->qf_pfix_len
= save_qf_pfix_len
;
1115 safe_signal(SIGPIPE
, SIG_IGN
);
1116 Pclose(pbuf
, !(mh
.mh_flags
& MIME_HDL_ASYNC
));
1117 safe_signal(SIGPIPE
, oldpipe
);
1118 if (qbuf
!= NULL
&& qbuf
!= obuf
)
1119 pipecpy(qbuf
, obuf
, origobuf
, qf
, stats
);
1122 if (iconvd
!= (iconv_t
)-1)
1123 n_iconv_close(iconvd
);
1131 newfile(struct mimepart
*ip
, bool_t
*ispipe
)
1141 if (f
!= NULL
&& f
!= (char*)-1) {
1144 makeprint(&in
, &out
);
1145 out
.l
= delctrl(out
.s
, out
.l
);
1146 f
= savestrbuf(out
.s
, out
.l
);
1150 if (options
& OPT_INTERACTIVE
) {
1152 struct n_string shou
, *shoup
;
1155 shoup
= n_string_creat_auto(&shou
);
1157 /* TODO Generic function which asks for filename.
1158 * TODO If the current part is the first textpart the target
1159 * TODO is implicit from outer `write' etc! */
1160 /* I18N: Filename input prompt with file type indication */
1161 str_concat_csvl(&prompt
, _("Enter filename for part "),
1162 (ip
->m_partstring
!= NULL
) ? ip
->m_partstring
: _("?"),
1163 _(" ("), ip
->m_ct_type_plain
, _("): "), NULL
);
1165 f2
= n_lex_input_cp_addhist(prompt
.s
, ((f
!= (char*)-1 && f
!= NULL
)
1166 ? n_shell_quote_cp(f
, FAL0
) : NULL
), TRU1
);
1170 if((n_shell_parse_token(shoup
, &in
, n_SHEXP_PARSE_TRUNC
|
1171 n_SHEXP_PARSE_TRIMSPACE
| n_SHEXP_PARSE_LOG
|
1172 n_SHEXP_PARSE_IGNORE_EMPTY
) &
1173 (n_SHEXP_STATE_OUTPUT
| n_SHEXP_STATE_ERR_MASK
)) !=
1174 n_SHEXP_STATE_OUTPUT
)
1178 f2
= n_string_cp(shoup
);
1180 if (f2
== NULL
|| *f2
== '\0') {
1181 if (options
& OPT_D_V
)
1182 n_err(_("... skipping this\n"));
1183 n_string_gut(shoup
);
1189 /* Pipes are expanded by the shell */
1191 else if ((f3
= fexpand(f2
, FEXP_LOCAL
| FEXP_NVAR
)) == NULL
)
1192 /* (Error message written by fexpand()) */
1197 n_string_gut(shoup
);
1199 if (f
== NULL
|| f
== (char*)-1) {
1205 fp
= Popen(f
+ 1, "w", ok_vlook(SHELL
), NULL
, 1);
1206 if (!(*ispipe
= (fp
!= NULL
)))
1209 if ((fp
= Fopen(f
, "w")) == NULL
)
1210 n_err(_("Cannot open \"%s\"\n"), f
);
1218 pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
, struct quoteflt
*qf
,
1221 char *line
= NULL
; /* TODO line pool */
1222 size_t linesize
= 0, linelen
, cnt
;
1228 cnt
= fsize(pipebuf
);
1231 quoteflt_reset(qf
, outbuf
);
1232 while (fgetline(&line
, &linesize
, &cnt
, &linelen
, pipebuf
, 0) != NULL
) {
1233 if ((sz
= quoteflt_push(qf
, line
, linelen
)) < 0)
1237 if ((sz
= quoteflt_flush(qf
)) > 0)
1242 if (all_sz
> 0 && outbuf
== origobuf
&& stats
!= NULL
)
1249 statusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1252 char statout
[3], *cp
= statout
;
1255 if (mp
->m_flag
& MREAD
)
1257 if (!(mp
->m_flag
& MNEW
))
1261 int i
= fprintf(obuf
, "%.*sStatus: %s\n", (int)qf
->qf_pfix_len
,
1262 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), statout
);
1263 if (i
> 0 && stats
!= NULL
)
1270 xstatusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1274 char *xp
= xstatout
;
1277 if (mp
->m_flag
& MFLAGGED
)
1279 if (mp
->m_flag
& MANSWERED
)
1281 if (mp
->m_flag
& MDRAFTED
)
1285 int i
= fprintf(obuf
, "%.*sX-Status: %s\n", (int)qf
->qf_pfix_len
,
1286 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), xstatout
);
1287 if (i
> 0 && stats
!= NULL
)
1294 put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
)
1296 char const *froma
, *date
, *nl
;
1300 if (ip
!= NULL
&& ip
->m_from
!= NULL
) {
1302 date
= fakedate(ip
->m_time
);
1306 date
= time_current
.tc_ctime
;
1310 n_COLOUR( n_colour_put(fp
, n_COLOUR_ID_VIEW_FROM_
, NULL
); )
1311 i
= fprintf(fp
, "From %s %s%s", froma
, date
, nl
);
1312 n_COLOUR( n_colour_reset(fp
); )
1313 if (i
> 0 && stats
!= NULL
)
1319 sendmp(struct message
*mp
, FILE *obuf
, struct ignoretab
*doign
,
1320 char const *prefix
, enum sendaction action
, ui64_t
*stats
)
1325 enum mime_parse_flags mpf
;
1326 struct mimepart
*ip
;
1330 if (mp
== dot
&& action
!= SEND_TOSRCH
)
1331 pstate
|= PS_DID_PRINT_DOT
;
1334 quoteflt_init(&qf
, prefix
);
1336 /* First line is the From_ line, so no headers there to worry about */
1337 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
)
1343 char const *cpre
= "", *csuf
= "";
1345 struct n_colour_pen
*cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_
,NULL
);
1346 struct str
const *sp
= n_colour_pen_to_str(cpen
);
1350 sp
= n_colour_reset_to_str();
1355 if (mp
->m_flag
& MNOFROM
) {
1356 if (doign
!= allignore
&& doign
!= fwdignore
&& action
!= SEND_RFC822
)
1357 sz
= fprintf(obuf
, "%s%.*sFrom %s %s%s\n",
1358 cpre
, (int)qf
.qf_pfix_len
,
1359 (qf
.qf_pfix_len
!= 0 ? qf
.qf_pfix
: ""), fakefrom(mp
),
1360 fakedate(mp
->m_time
), csuf
);
1361 } else if (doign
!= allignore
&& doign
!= fwdignore
&&
1362 action
!= SEND_RFC822
) {
1363 if (qf
.qf_pfix_len
> 0) {
1364 i
= fwrite(qf
.qf_pfix
, sizeof *qf
.qf_pfix
, qf
.qf_pfix_len
, obuf
);
1365 if (i
!= qf
.qf_pfix_len
)
1372 cpre
= (char const*)0x1;
1376 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1378 if (c
== '\n' && csuf
!= NULL
) {
1379 cpre
= (char const*)0x1;
1391 if (csuf
!= NULL
&& cpre
!= (char const*)0x1)
1395 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1402 if (sz
> 0 && stats
!= NULL
)
1405 mpf
= MIME_PARSE_NONE
;
1406 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
1407 mpf
|= MIME_PARSE_DECRYPT
| MIME_PARSE_PARTS
;
1408 if ((ip
= mime_parse_msg(mp
, mpf
)) == NULL
)
1411 rv
= sendpart(mp
, ip
, obuf
, doign
, &qf
, action
, stats
, 0);
1413 quoteflt_destroy(&qf
);