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 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
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 n_ignore
const *doitp
, int level
,
47 struct quoteflt
*qf
, ui64_t
*stats
);
49 /* Create a pipe; if mpp is not NULL, place some n_PIPEENV_* 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 n_INLINE 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
,
62 static void _send_onpipe(int signo
);
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 char **linedat
, size_t *linesize
,
69 ui64_t
*stats
, int level
);
71 /* Get a file for an attachment */
72 static FILE * newfile(struct mimepart
*ip
, bool_t
volatile *ispipe
);
74 static void pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
,
75 struct quoteflt
*qf
, ui64_t
*stats
);
77 /* Output a reasonable looking status field */
78 static void statusput(const struct message
*mp
, FILE *obuf
,
79 struct quoteflt
*qf
, ui64_t
*stats
);
80 static void xstatusput(const struct message
*mp
, FILE *obuf
,
81 struct quoteflt
*qf
, ui64_t
*stats
);
83 static void put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
);
86 _print_part_info(FILE *obuf
, struct mimepart
const *mpp
, /* TODO strtofmt.. */
87 struct n_ignore
const *doitp
, int level
, struct quoteflt
*qf
, ui64_t
*stats
)
91 bool_t want_ct
, needsep
;
92 struct str
const *cpre
, *csuf
;
98 if(n_COLOUR_IS_ACTIVE()){
99 struct n_colour_pen
*cpen
;
101 cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_PARTINFO
, NULL
);
102 if((cpre
= n_colour_pen_to_str(cpen
)) != NULL
)
103 csuf
= n_colour_reset_to_str();
107 /* Take care of "99.99", i.e., 5 */
108 if ((cp
= mpp
->m_partstring
) == NULL
|| cp
[0] == '\0')
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 */
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
);
126 if((cp
= mpp
->m_ct_type_usr_ovwr
) != NULL
){
127 _out("+", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
129 }else if((want_ct
= n_ignore_is_ign(doitp
,
130 "content-type", sizeof("content-type") -1)))
131 cp
= mpp
->m_ct_type_plain
;
133 (to
.l
= strlen(cp
)) > 30 && is_asccaseprefix("application/", cp
)) {
134 size_t const al
= sizeof("appl../") -1, fl
= sizeof("application/") -1;
135 size_t i
= to
.l
- fl
;
136 char *x
= salloc(al
+ i
+1);
138 memcpy(x
, "appl../", al
);
139 memcpy(x
+ al
, cp
+ fl
, i
+1);
144 _out(cp
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
148 if(mpp
->m_multipart
== NULL
/* TODO */ && (cp
= mpp
->m_ct_enc
) != NULL
&&
149 (!asccasecmp(cp
, "7bit") ||
150 n_ignore_is_ign(doitp
, "content-transfer-encoding",
151 sizeof("content-transfer-encoding") -1))){
153 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
154 if (to
.l
> 25 && !asccasecmp(cp
, "quoted-printable"))
156 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
160 if (want_ct
&& mpp
->m_multipart
== NULL
/* TODO */ &&
161 (cp
= mpp
->m_charset
) != NULL
) {
163 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
164 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
168 _out(&" --]"[needsep
], 4 - needsep
,
169 obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
171 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
172 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
175 if (mpp
->m_content_info
& CI_MIME_ERRORS
) {
177 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
179 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
181 ti
.l
= strlen(ti
.s
= n_UNCONST(_("Defective MIME structure")));
183 to
.l
= delctrl(to
.s
, to
.l
);
184 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
187 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
189 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
191 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
194 /* Content-Description */
195 if (n_ignore_is_ign(doitp
, "content-description", 19) &&
196 (cp
= mpp
->m_content_description
) != NULL
&& *cp
!= '\0') {
198 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
200 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
202 ti
.l
= strlen(ti
.s
= n_UNCONST(mpp
->m_content_description
));
203 mime_fromhdr(&ti
, &to
, TD_ISPR
| TD_ICONV
);
204 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
207 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
209 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
211 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
215 if (n_ignore_is_ign(doitp
, "content-disposition", 19) &&
216 mpp
->m_filename
!= NULL
&& *mpp
->m_filename
!= '\0') {
218 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
220 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
222 ti
.l
= strlen(ti
.s
= mpp
->m_filename
);
224 to
.l
= delctrl(to
.s
, to
.l
);
225 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
228 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
230 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
232 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
238 _pipefile(struct mime_handler
*mhp
, struct mimepart
const *mpp
, FILE **qbuf
,
239 char const *tmpname
, int term_infd
)
242 char const *env_addon
[9 +8/*v15*/], *cp
, *sh
;
249 if (mhp
->mh_flags
& MIME_HDL_ISQUOTE
) {
250 if ((*qbuf
= Ftmp(NULL
, "sendp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
252 n_perr(_("tmpfile"), 0);
257 if ((mhp
->mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
) {
258 union {int (*ptf
)(void); char const *sh
;} u
;
261 if (*qbuf
!= n_stdout
) /* xxx never? v15: it'll be a filter anyway */
265 if((rbuf
= Popen((char*)-1, "W", u
.sh
, NULL
, fileno(*qbuf
))) == NULL
)
273 if (mpp
== NULL
|| (cp
= mpp
->m_filename
) == NULL
)
275 env_addon
[i
++] = str_concat_csvl(&s
, n_PIPEENV_FILENAME
, "=", cp
, NULL
)->s
;
276 env_addon
[i
++] = str_concat_csvl(&s
, "NAIL_FILENAME", "=", cp
, NULL
)->s
;/*v15*/
278 /* MAILX_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
279 * TODO a file wherever he wants! *Do* create a zero-size temporary file
280 * TODO and give *that* path as MAILX_FILENAME_TEMPORARY, clean it up once
281 * TODO the pipe returns? Like this we *can* verify path/name issues! */
282 cp
= n_random_create_cp(n_MIN(NAME_MAX
/ 4, 16), NULL
);
283 env_addon
[i
++] = str_concat_csvl(&s
, n_PIPEENV_FILENAME_GENERATED
, "=", cp
,
285 env_addon
[i
++] = str_concat_csvl(&s
, "NAIL_FILENAME_GENERATED", "=", cp
,/*v15*/
288 /* MAILX_CONTENT{,_EVIDENCE} */
289 if (mpp
== NULL
|| (cp
= mpp
->m_ct_type_plain
) == NULL
)
291 env_addon
[i
++] = str_concat_csvl(&s
, n_PIPEENV_CONTENT
, "=", cp
, NULL
)->s
;
292 env_addon
[i
++] = str_concat_csvl(&s
, "NAIL_CONTENT", "=", cp
, NULL
)->s
;/*v15*/
294 if (mpp
!= NULL
&& mpp
->m_ct_type_usr_ovwr
!= NULL
)
295 cp
= mpp
->m_ct_type_usr_ovwr
;
296 env_addon
[i
++] = str_concat_csvl(&s
, n_PIPEENV_CONTENT_EVIDENCE
, "=", cp
,
298 env_addon
[i
++] = str_concat_csvl(&s
, "NAIL_CONTENT_EVIDENCE", "=", cp
,/* v15 */
301 /* message/external-body, access-type=url */
302 env_addon
[i
++] = str_concat_csvl(&s
, n_PIPEENV_EXTERNAL_BODY_URL
, "=",
303 ((cp
= mpp
->m_external_body_url
) != NULL
? cp
: n_empty
), NULL
)->s
;
305 /* MAILX_FILENAME_TEMPORARY? */
306 if (tmpname
!= NULL
) {
307 env_addon
[i
++] = str_concat_csvl(&s
,
308 n_PIPEENV_FILENAME_TEMPORARY
, "=", tmpname
, NULL
)->s
;
309 env_addon
[i
++] = str_concat_csvl(&s
,
310 "NAIL_FILENAME_TEMPORARY", "=", tmpname
, NULL
)->s
;/* v15 */
314 sh
= ok_vlook(SHELL
);
316 if (mhp
->mh_flags
& MIME_HDL_NEEDSTERM
) {
321 pid
= n_child_run(sh
, &nset
, term_infd
, n_CHILD_FD_PASS
, "-c",
322 mhp
->mh_shell_cmd
, NULL
, env_addon
, NULL
);
323 rbuf
= (pid
< 0) ? NULL
: (FILE*)-1;
325 rbuf
= Popen(mhp
->mh_shell_cmd
, "W", sh
, env_addon
,
326 (mhp
->mh_flags
& MIME_HDL_ASYNC
? -1 : fileno(*qbuf
)));
329 n_err(_("Cannot run MIME type handler: %s: %s\n"),
330 mhp
->mh_msg
, n_err_to_doc(n_err_no
));
333 if (*qbuf
!= n_stdout
)
343 _out(char const *buf
, size_t len
, FILE *fp
, enum conversion convert
, enum
344 sendaction action
, struct quoteflt
*qf
, ui64_t
*stats
, struct str
*outrest
,
351 /* TODO We should not need is_head() here, i think in v15 the actual Mailbox
352 * TODO subclass should detect such From_ cases and either reencode the part
353 * TODO in question, or perform From_ quoting as necessary!?!?!? How?!? */
357 if((action
== SEND_MBOX
|| action
== SEND_DECRYPT
) &&
358 (from_
= is_head(buf
, len
, TRU1
))){
359 if(from_
!= TRUM1
|| ok_blook(mbox_rfc4155
)){
366 flags
= ((int)action
& _TD_EOF
);
368 n
= mime_write(buf
, len
, fp
,
369 action
== SEND_MBOX
? CONV_NONE
: convert
,
370 flags
| ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
371 action
== SEND_TODISP_PARTS
||
372 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
)
374 : (action
== SEND_TOSRCH
|| action
== SEND_TOPIPE
||
375 action
== SEND_TOFILE
)
376 ? TD_ICONV
: (action
== SEND_SHOW
? TD_ISPR
: TD_NONE
)),
377 qf
, outrest
, inrest
);
390 _send_onpipe(int signo
)
392 NYD_X
; /* Signal handler */
394 siglongjmp(_send_pipejmp
, 1);
397 static sigjmp_buf __sendp_actjmp
; /* TODO someday.. */
398 static int __sendp_sig
; /* TODO someday.. */
399 static sighandler_type __sendp_opipe
;
401 __sendp_onsig(int sig
) /* TODO someday, we won't need it no more */
403 NYD_X
; /* Signal handler */
405 siglongjmp(__sendp_actjmp
, 1);
409 sendpart(struct message
*zmp
, struct mimepart
*ip
, FILE * volatile obuf
,
410 struct n_ignore
const *doitp
, struct quoteflt
*qf
,
411 enum sendaction
volatile action
,
412 char **linedat
, size_t *linesize
, ui64_t
* volatile stats
, int level
)
415 struct mime_handler mh
;
416 struct str outrest
, inrest
;
418 char const * volatile tmpname
= NULL
;
420 int volatile dostat
, term_infd
;
422 struct mimepart
* volatile np
;
423 FILE * volatile ibuf
= NULL
, * volatile pbuf
= obuf
,
424 * volatile qbuf
= obuf
, *origobuf
= obuf
;
425 enum conversion
volatile convert
;
426 sighandler_type
volatile oldpipe
= SIG_DFL
;
429 n_UNINIT(term_infd
, 0);
432 quoteflt_reset(qf
, obuf
);
434 #if 0 /* TODO PART_INFO should be displayed here!! search PART_INFO */
435 if(ip
->m_mimecontent
!= MIME_DISCARD
&& level
> 0)
436 _print_part_info(obuf
, ip
, doitp
, level
, qf
, stats
);
439 if (ip
->m_mimecontent
== MIME_PKCS7
) {
440 if (ip
->m_multipart
&&
441 action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
446 if (level
== 0 && action
!= SEND_TODISP_PARTS
) {
448 if (!n_ignore_is_ign(doitp
, "status", 6))
450 if (!n_ignore_is_ign(doitp
, "x-status", 8))
456 if ((ibuf
= setinput(&mb
, (struct message
*)ip
, NEED_BODY
)) == NULL
) {
461 if(action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
462 action
== SEND_TODISP_PARTS
||
463 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
464 action
== SEND_TOSRCH
)
469 if (ip
->m_mimecontent
== MIME_DISCARD
)
472 if (!(ip
->m_flag
& MNOFROM
))
473 while (cnt
&& (c
= getc(ibuf
)) != EOF
) {
478 convert
= (dostat
& 4) ? CONV_FROMHDR
: CONV_NONE
;
480 /* Work the headers */
482 struct n_string hl
, *hlp
;
484 bool_t hstop
/*see below, hany*/;
486 hlp
= n_string_creat_auto(&hl
); /* TODO pool [or, v15: filter!] */
487 /* Reserve three lines, still not enough for references and DKIM etc. */
488 hlp
= n_string_reserve(hlp
, n_MAX(MIME_LINELEN
, MIME_LINELEN_RFC2047
) * 3);
490 for(hstop
= /*see below hany =*/ FAL0
; !hstop
;){
494 if(fgetline(linedat
, linesize
, &cnt
, &linelen
, ibuf
, 0) == NULL
)
497 if (linelen
== 0 || (cp
= *linedat
)[0] == '\n')
498 /* If line is blank, we've reached end of headers */
500 if(cp
[linelen
- 1] == '\n'){
501 cp
[--linelen
] = '\0';
506 /* Are we in a header? */
509 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
515 /* Pick up the header field if we have one */
516 while((c
= *cp
) != ':' && !spacechar(c
) && c
!= '\0')
519 if(!spacechar(c
) || c
== '\0')
524 /* That won't work with MIME when saving etc., before v15 */
526 /* XXX This disturbs, and may happen multiple times, and we
527 * XXX cannot heal it for multipart except for display <v15 */
528 n_err(_("Malformed message: headers and body not separated "
529 "(with empty line)\n"));
532 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
540 hlp
= n_string_push_buf(hlp
, cp
, (ui32_t
)linelen
);
541 hlp
= n_string_push_c(hlp
, '\n');
543 bool_t lblank
, isblank
;
545 for(lblank
= FAL0
, lcnt
= 0; lcnt
< linelen
; ++cp
, ++lcnt
){
549 if(!(isblank
= blankchar(c8
)) || !lblank
){
550 if((lblank
= isblank
))
552 hlp
= n_string_push_c(hlp
, c8
);
560 /* If it is an ignored header, skip it */
561 *(cp
= memchr(hlp
->s_dat
, ':', hlp
->s_len
)) = '\0';
565 i
= PTR2SIZE(cp
- hlp
->s_dat
);
566 if((doitp
!= NULL
&& n_ignore_is_ign(doitp
, hlp
->s_dat
, i
)) ||
567 !asccasecmp(hlp
->s_dat
, "status") ||
568 !asccasecmp(hlp
->s_dat
, "x-status") ||
569 (action
== SEND_MBOX
&&
570 (!asccasecmp(hlp
->s_dat
, "content-length") ||
571 !asccasecmp(hlp
->s_dat
, "lines")) &&
572 !ok_blook(keep_content_length
)))
578 if(n_COLOUR_IS_ACTIVE())
579 n_colour_put(n_COLOUR_ID_VIEW_HEADER
, hlp
->s_dat
);
582 _out(hlp
->s_dat
, hlp
->s_len
, obuf
, convert
, action
, qf
, stats
, NULL
,NULL
);
584 if(n_COLOUR_IS_ACTIVE())
589 /*see below hany = TRU1;*/
592 hlp
= n_string_trunc(hlp
, 0);
598 /* We've reached end of headers, so eventually force out status: field and
599 * note that we are no longer in header fields */
601 statusput(zmp
, obuf
, qf
, stats
);
602 /*see below hany = TRU1;*/
605 xstatusput(zmp
, obuf
, qf
, stats
);
606 /*see below hany = TRU1;*/
608 if(/* TODO PART_INFO hany && */ doitp
!= n_IGNORE_ALL
)
609 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
620 memset(&mh
, 0, sizeof mh
);
622 switch (ip
->m_mimecontent
) {
625 case SEND_TODISP_PARTS
:
628 case SEND_TODISP_ALL
:
631 if (ok_blook(rfc822_body_from_
)) {
632 if (qf
->qf_pfix_len
> 0) {
633 size_t i
= fwrite(qf
->qf_pfix
, sizeof *qf
->qf_pfix
,
634 qf
->qf_pfix_len
, obuf
);
635 if (i
== qf
->qf_pfix_len
&& stats
!= NULL
)
638 put_from_(obuf
, ip
->m_multipart
, stats
);
646 put_from_(obuf
, ip
->m_multipart
, stats
);
656 case MIME_TEXT_PLAIN
:
659 case SEND_TODISP_ALL
:
660 case SEND_TODISP_PARTS
:
663 switch (n_mimetype_handler(&mh
, ip
, action
)) {
665 if(action
!= SEND_TODISP_PARTS
)
668 case MIME_HDL_MSG
:/* TODO these should be part of partinfo! */
670 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
,
671 qf
, stats
, NULL
, NULL
);
672 /* We would print this as plain text, so better force going home */
675 if(action
== SEND_TODISP_PARTS
&&
676 (mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
))
681 if(action
== SEND_TODISP_PARTS
)
693 if (action
!= SEND_DECRYPT
)
697 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&&
698 action
!= SEND_SHOW
&& ip
->m_multipart
!= NULL
)
704 case SEND_TODISP_ALL
:
705 case SEND_TODISP_PARTS
:
708 switch (n_mimetype_handler(&mh
, ip
, action
)) {
711 if (action
!= SEND_TODISP
&& action
!= SEND_TODISP_ALL
&&
715 case MIME_HDL_MSG
:/* TODO these should be part of partinfo! */
717 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
,
718 qf
, stats
, NULL
, NULL
);
719 /* We would print this as plain text, so better force going home */
722 if(action
== SEND_TODISP_PARTS
){
723 if(mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
)
726 _print_part_info(obuf
, ip
, doitp
, level
, qf
, stats
);
727 if(!getapproval(_("Run MIME handler for this part?"), FAL0
))
734 if(action
== SEND_TODISP_PARTS
)
749 case MIME_ALTERNATIVE
:
750 if ((action
== SEND_TODISP
|| action
== SEND_QUOTE
) &&
751 !ok_blook(print_alternatives
)) {
752 /* XXX This (a) should not remain (b) should be own fun
753 * TODO (despite the fact that v15 will do this completely differently
754 * TODO by having an action-specific "manager" that will traverse the
755 * TODO parsed MIME tree and decide for each part whether it'll be
756 * TODO displayed or not *before* we walk the tree for doing action */
758 struct mpstack
*outer
;
760 } outermost
, * volatile curr
, * volatile mpsp
;
761 bool_t
volatile neednl
, hadpart
;
762 struct n_sigman smalter
;
764 (curr
= &outermost
)->outer
= NULL
;
766 neednl
= hadpart
= FAL0
;
768 n_SIGMAN_ENTER_SWITCH(&smalter
, n_SIGMAN_ALL
) {
776 for (np
= ip
->m_multipart
;;) {
778 for (; np
!= NULL
; np
= np
->m_nextpart
) {
779 if (action
!= SEND_QUOTE
&& np
->m_ct_type_plain
!= NULL
) {
781 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
783 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
787 switch (np
->m_mimecontent
) {
788 case MIME_ALTERNATIVE
:
794 mpsp
= salloc(sizeof *mpsp
);
796 mpsp
->mp
= np
->m_multipart
;
805 switch (n_mimetype_handler(&mh
, np
, action
)) {
807 mh
.mh_flags
= MIME_HDL_NULL
;
808 continue; /* break; break; */
810 if(!(mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
)){
811 mh
.mh_flags
= MIME_HDL_NULL
;
812 continue; /* break; break; */
816 if (!ok_blook(mime_alternative_favour_rich
)) {/* TODO */
817 struct mimepart
*x
= np
;
819 while ((x
= x
->m_nextpart
) != NULL
) {
820 struct mime_handler mhx
;
822 if (x
->m_mimecontent
== MIME_TEXT_PLAIN
||
823 n_mimetype_handler(&mhx
, x
, action
) ==
828 continue; /* break; break; */
836 case MIME_TEXT_PLAIN
:
839 if (ok_blook(mime_alternative_favour_rich
)) { /* TODO */
840 struct mimepart
*x
= np
;
842 /* TODO twice TODO, we should dive into /related and
843 * TODO check whether that has rich parts! */
844 while ((x
= x
->m_nextpart
) != NULL
) {
845 struct mime_handler mhx
;
847 switch (n_mimetype_handler(&mhx
, x
, action
)) {
849 if(!(mhx
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
))
860 continue; /* break; break; */
864 if (action
== SEND_QUOTE
&& hadpart
) {
865 struct quoteflt
*dummy
= quoteflt_dummy();
866 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
868 quoteflt_flush(dummy
);
872 rv
= sendpart(zmp
, np
, obuf
, doitp
, qf
, action
,
873 linedat
, linesize
, stats
, level
+ 1);
874 quoteflt_reset(qf
, origobuf
);
877 curr
= &outermost
; /* Cause overall loop termination */
886 np
= curr
->mp
->m_nextpart
;
889 n_sigman_leave(&smalter
, n_SIGMAN_VIPSIGS_NTTYOUT
);
900 case SEND_TODISP_ALL
:
901 case SEND_TODISP_PARTS
:
909 if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
) &&
910 ip
->m_multipart
!= NULL
&&
911 ip
->m_multipart
->m_mimecontent
== MIME_DISCARD
&&
912 ip
->m_multipart
->m_nextpart
== NULL
) {
913 char const *x
= _("[Missing multipart boundary - use `show' "
914 "to display the raw message]\n");
915 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
919 for (np
= ip
->m_multipart
; np
!= NULL
; np
= np
->m_nextpart
) {
920 bool_t
volatile ispipe
;
922 if (np
->m_mimecontent
== MIME_DISCARD
&& action
!= SEND_DECRYPT
)
928 if (np
->m_partstring
&&
929 np
->m_partstring
[0] == '1' && np
->m_partstring
[1] == '\0')
932 /* TODO Always open multipart on /dev/null, it's a hack to be
933 * TODO able to dive into that structure, and still better
934 * TODO than asking the user for something stupid.
935 * TODO oh, wait, we did ask for a filename for this MIME mail,
936 * TODO and that outer container is useless anyway ;-P */
937 if (np
->m_multipart
!= NULL
&& np
->m_mimecontent
!= MIME_822
) {
938 if ((obuf
= Fopen(n_path_devnull
, "w")) == NULL
)
940 } else if ((obuf
= newfile(np
, &ispipe
)) == NULL
)
944 if (sigsetjmp(_send_pipejmp
, 1)) {
948 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
951 case SEND_TODISP_ALL
:
952 if (ip
->m_mimecontent
!= MIME_ALTERNATIVE
&&
953 ip
->m_mimecontent
!= MIME_RELATED
&&
954 ip
->m_mimecontent
!= MIME_DIGEST
&&
955 ip
->m_mimecontent
!= MIME_SIGNED
&&
956 ip
->m_mimecontent
!= MIME_ENCRYPTED
&&
957 ip
->m_mimecontent
!= MIME_MULTI
)
959 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
961 case SEND_TODISP_PARTS
:
974 if ((action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
) &&
975 np
->m_multipart
== NULL
&& ip
->m_parent
!= NULL
) {
976 struct quoteflt
*dummy
= quoteflt_dummy();
977 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
979 quoteflt_flush(dummy
);
981 if (sendpart(zmp
, np
, obuf
, doitp
, qf
, action
, linedat
, linesize
,
984 quoteflt_reset(qf
, origobuf
);
986 if (action
== SEND_QUOTE
) {
987 if (ip
->m_mimecontent
!= MIME_RELATED
)
990 if (action
== SEND_TOFILE
&& obuf
!= origobuf
) {
995 safe_signal(SIGPIPE
, SIG_IGN
);
997 safe_signal(SIGPIPE
, oldpipe
);
1010 /* Copy out message body */
1011 if (doitp
== n_IGNORE_ALL
&& level
== 0) /* skip final blank line */
1013 switch (ip
->m_mime_enc
) {
1017 convert
= CONV_NONE
;
1020 convert
= CONV_FROMQP
;
1023 switch (ip
->m_mimecontent
) {
1025 case MIME_TEXT_PLAIN
:
1026 case MIME_TEXT_HTML
:
1027 convert
= CONV_FROMB64_T
;
1030 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
1033 convert
= CONV_FROMB64_T
;
1036 convert
= CONV_FROMB64
;
1043 convert
= CONV_NONE
;
1046 /* TODO Unless we have filters, ensure iconvd==-1 so that mime.c:fwrite_td()
1047 * TODO cannot mess things up misusing outrest as line buffer */
1049 if (iconvd
!= (iconv_t
)-1) {
1050 n_iconv_close(iconvd
);
1051 iconvd
= (iconv_t
)-1;
1055 if (action
== SEND_DECRYPT
|| action
== SEND_MBOX
||
1056 action
== SEND_RFC822
|| action
== SEND_SHOW
)
1057 convert
= CONV_NONE
;
1059 else if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
1060 action
== SEND_TODISP_PARTS
||
1061 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
1062 action
== SEND_TOSRCH
|| action
== SEND_TOFILE
) &&
1063 (ip
->m_mimecontent
== MIME_TEXT_PLAIN
||
1064 ip
->m_mimecontent
== MIME_TEXT_HTML
||
1065 ip
->m_mimecontent
== MIME_TEXT
||
1066 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_TEXT
||
1067 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
)) {
1070 tcs
= ok_vlook(ttycharset
);
1071 if (asccasecmp(tcs
, ip
->m_charset
) &&
1072 asccasecmp(ok_vlook(charset_7bit
), ip
->m_charset
)) {
1073 iconvd
= n_iconv_open(tcs
, ip
->m_charset
);
1074 if (iconvd
== (iconv_t
)-1 && n_err_no
== n_ERR_INVAL
) {
1075 n_err(_("Cannot convert from %s to %s\n"), ip
->m_charset
, tcs
);
1076 /*rv = 1; goto jleave;*/
1082 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
1084 if(!(mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
) &&
1085 action
!= SEND_TODISP_PARTS
)
1092 term_infd
= n_CHILD_FD_PASS
;
1093 if (mh
.mh_flags
& (MIME_HDL_TMPF
| MIME_HDL_NEEDSTERM
)) {
1096 of
= OF_RDWR
| OF_REGISTER
;
1097 if (!(mh
.mh_flags
& MIME_HDL_TMPF
)) {
1099 mh
.mh_flags
|= MIME_HDL_TMPF_FILL
;
1101 } else if (mh
.mh_flags
& MIME_HDL_TMPF_UNLINK
)
1102 of
|= OF_REGISTER_UNLINK
;
1104 if ((pbuf
= Ftmp((mh
.mh_flags
& MIME_HDL_TMPF
? &cp
: NULL
),
1105 (mh
.mh_flags
& MIME_HDL_TMPF_FILL
? "mimehdlfill" : "mimehdl"),
1109 if (mh
.mh_flags
& MIME_HDL_TMPF
) {
1110 tmpname
= savestr(cp
);
1114 if (mh
.mh_flags
& MIME_HDL_TMPF_FILL
) {
1116 term_infd
= fileno(pbuf
);
1122 pbuf
= _pipefile(&mh
, ip
, n_UNVOLATILE(&qbuf
), tmpname
, term_infd
);
1128 } else if ((mh
.mh_flags
& MIME_HDL_NEEDSTERM
) && pbuf
== (FILE*)-1) {
1133 action
= SEND_TOPIPE
;
1135 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
1136 if (sigsetjmp(_send_pipejmp
, 1))
1143 mh
.mh_flags
= MIME_HDL_NULL
;
1150 bool_t
volatile eof
;
1151 ui32_t save_qf_pfix_len
= qf
->qf_pfix_len
;
1152 ui64_t
*save_stats
= stats
;
1154 if (pbuf
!= origobuf
) {
1155 qf
->qf_pfix_len
= 0; /* XXX legacy (remove filter instead) */
1159 outrest
.s
= inrest
.s
= NULL
;
1160 outrest
.l
= inrest
.l
= 0;
1164 __sendp_opipe
= safe_signal(SIGPIPE
, &__sendp_onsig
);
1165 if (sigsetjmp(__sendp_actjmp
, 1)) {
1166 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;/* (but protected by outer sigman) */
1167 if (outrest
.s
!= NULL
)
1169 if (inrest
.s
!= NULL
)
1172 if (iconvd
!= (iconv_t
)-1)
1173 n_iconv_close(iconvd
);
1175 safe_signal(SIGPIPE
, __sendp_opipe
);
1176 n_raise(__sendp_sig
);
1180 quoteflt_reset(qf
, pbuf
);
1181 if((dostat
& 4) && pbuf
== origobuf
) /* TODO */
1182 n_pstate
|= n_PS_BASE64_STRIP_CR
;
1183 while (!eof
&& fgetline(linedat
, linesize
, &cnt
, &linelen
, ibuf
, 0)) {
1185 if (_out(*linedat
, linelen
, pbuf
, convert
, action
, qf
, stats
, &outrest
,
1186 (action
& _TD_EOF
? NULL
: &inrest
)) < 0 || ferror(pbuf
)) {
1187 rv
= -1; /* XXX Should bail away?! */
1191 if(eof
<= FAL0
&& rv
>= 0 && (outrest
.l
!= 0 || inrest
.l
!= 0)){
1193 if(eof
|| inrest
.l
== 0)
1195 eof
= eof
? TRU1
: TRUM1
;
1198 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;
1201 /* TODO HACK: when sending to the display we yet get fooled if a message
1202 * TODO doesn't end in a newline, because of our input/output 1:1.
1203 * TODO This should be handled automatically by a display filter, then */
1204 if(rv
>= 0 && !qf
->qf_nl_last
&&
1205 (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
))
1206 rv
= quoteflt_push(qf
, "\n", 1);
1210 if (rv
>= 0 && (mh
.mh_flags
& MIME_HDL_TMPF_FILL
)) {
1211 mh
.mh_flags
&= ~MIME_HDL_TMPF_FILL
;
1213 really_rewind(pbuf
);
1214 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1215 goto jpipe_for_real
;
1219 safe_signal(SIGPIPE
, __sendp_opipe
);
1221 if (outrest
.s
!= NULL
)
1223 if (inrest
.s
!= NULL
)
1226 if (pbuf
!= origobuf
) {
1227 qf
->qf_pfix_len
= save_qf_pfix_len
;
1234 safe_signal(SIGPIPE
, SIG_IGN
);
1235 Pclose(pbuf
, !(mh
.mh_flags
& MIME_HDL_ASYNC
));
1236 safe_signal(SIGPIPE
, oldpipe
);
1237 if (rv
>= 0 && qbuf
!= NULL
&& qbuf
!= obuf
)
1238 pipecpy(qbuf
, obuf
, origobuf
, qf
, stats
);
1241 if (iconvd
!= (iconv_t
)-1)
1242 n_iconv_close(iconvd
);
1250 newfile(struct mimepart
*ip
, bool_t
volatile *ispipe
)
1260 if (f
!= NULL
&& f
!= (char*)-1) {
1263 makeprint(&in
, &out
);
1264 out
.l
= delctrl(out
.s
, out
.l
);
1265 f
= savestrbuf(out
.s
, out
.l
);
1269 /* In interactive mode, let user perform all kind of expansions as desired,
1270 * and offer |SHELL-SPEC pipe targets, too */
1271 if (n_psonce
& n_PSO_INTERACTIVE
) {
1273 struct n_string shou
, *shoup
;
1276 shoup
= n_string_creat_auto(&shou
);
1278 /* TODO Generic function which asks for filename.
1279 * TODO If the current part is the first textpart the target
1280 * TODO is implicit from outer `write' etc! */
1281 /* I18N: Filename input prompt with file type indication */
1282 str_concat_csvl(&prompt
, _("Enter filename for part "),
1283 (ip
->m_partstring
!= NULL
? ip
->m_partstring
: n_qm
),
1284 " (", ip
->m_ct_type_plain
, "): ", NULL
);
1286 f2
= n_go_input_cp(n_GO_INPUT_CTX_DEFAULT
| n_GO_INPUT_HIST_ADD
,
1287 prompt
.s
, ((f
!= (char*)-1 && f
!= NULL
)
1288 ? n_shexp_quote_cp(f
, FAL0
) : NULL
));
1290 in
.s
= n_UNCONST(f2
);
1292 if((n_shexp_parse_token((n_SHEXP_PARSE_TRUNC
|
1293 n_SHEXP_PARSE_TRIM_SPACE
| n_SHEXP_PARSE_TRIM_IFSSPACE
|
1294 n_SHEXP_PARSE_LOG
| n_SHEXP_PARSE_IGNORE_EMPTY
),
1296 ) & (n_SHEXP_STATE_STOP
|
1297 n_SHEXP_STATE_OUTPUT
| n_SHEXP_STATE_ERR_MASK
)
1298 ) != (n_SHEXP_STATE_STOP
| n_SHEXP_STATE_OUTPUT
))
1300 f2
= n_string_cp(shoup
);
1302 if (f2
== NULL
|| *f2
== '\0') {
1303 if (n_poption
& n_PO_D_V
)
1304 n_err(_("... skipping this\n"));
1305 n_string_gut(shoup
);
1311 /* Pipes are expanded by the shell */
1313 else if ((f3
= fexpand(f2
, FEXP_LOCAL
| FEXP_NVAR
)) == NULL
)
1314 /* (Error message written by fexpand()) */
1319 n_string_gut(shoup
);
1322 if (f
== NULL
|| f
== (char*)-1 || *f
== '\0')
1324 else if (n_psonce
& n_PSO_INTERACTIVE
) {
1326 fp
= Popen(&f
[1], "w", ok_vlook(SHELL
), NULL
, 1);
1327 if (!(*ispipe
= (fp
!= NULL
)))
1329 } else if ((fp
= Fopen(f
, "w")) == NULL
)
1330 n_err(_("Cannot open %s\n"), n_shexp_quote_cp(f
, FAL0
));
1332 /* Be very picky in non-interactive mode: actively disallow pipes,
1333 * prevent directory separators, and any filename member that would
1334 * become expanded by the shell if the name would be echo(1)ed */
1335 if(n_anyof_cp("/" n_SHEXP_MAGIC_PATH_CHARS
, f
)){
1338 for(out
.s
= salloc((strlen(f
) * 3) +1), out
.l
= 0; (c
= *f
++) != '\0';)
1339 if(strchr("/" n_SHEXP_MAGIC_PATH_CHARS
, c
)){
1340 out
.s
[out
.l
++] = '%';
1341 n_c_to_hex_base16(&out
.s
[out
.l
], c
);
1345 out
.s
[out
.l
] = '\0';
1349 /* Avoid overwriting of existing files */
1350 while((fp
= Fopen(f
, "wx")) == NULL
){
1353 if((e
= n_err_no
) != n_ERR_EXIST
){
1354 n_err(_("Cannot open %s: %s\n"),
1355 n_shexp_quote_cp(f
, FAL0
), n_err_to_doc(e
));
1359 if(ip
->m_partstring
!= NULL
)
1360 f
= savecatsep(f
, '#', ip
->m_partstring
);
1362 f
= savecat(f
, "#.");
1371 pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
, struct quoteflt
*qf
,
1374 char *line
= NULL
; /* TODO line pool */
1375 size_t linesize
= 0, linelen
, cnt
;
1381 cnt
= (size_t)fsize(pipebuf
);
1384 quoteflt_reset(qf
, outbuf
);
1385 while (fgetline(&line
, &linesize
, &cnt
, &linelen
, pipebuf
, 0) != NULL
) {
1386 if ((sz
= quoteflt_push(qf
, line
, linelen
)) < 0)
1390 if ((sz
= quoteflt_flush(qf
)) > 0)
1395 if (all_sz
> 0 && outbuf
== origobuf
&& stats
!= NULL
)
1402 statusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1405 char statout
[3], *cp
= statout
;
1408 if (mp
->m_flag
& MREAD
)
1410 if (!(mp
->m_flag
& MNEW
))
1414 int i
= fprintf(obuf
, "%.*sStatus: %s\n", (int)qf
->qf_pfix_len
,
1415 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), statout
);
1416 if (i
> 0 && stats
!= NULL
)
1423 xstatusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1427 char *xp
= xstatout
;
1430 if (mp
->m_flag
& MFLAGGED
)
1432 if (mp
->m_flag
& MANSWERED
)
1434 if (mp
->m_flag
& MDRAFTED
)
1438 int i
= fprintf(obuf
, "%.*sX-Status: %s\n", (int)qf
->qf_pfix_len
,
1439 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), xstatout
);
1440 if (i
> 0 && stats
!= NULL
)
1447 put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
)
1449 char const *froma
, *date
, *nl
;
1453 if (ip
!= NULL
&& ip
->m_from
!= NULL
) {
1455 date
= n_time_ctime(ip
->m_time
, NULL
);
1458 froma
= ok_vlook(LOGNAME
);
1459 date
= time_current
.tc_ctime
;
1464 if(n_COLOUR_IS_ACTIVE())
1465 n_colour_put(n_COLOUR_ID_VIEW_FROM_
, NULL
);
1467 i
= fprintf(fp
, "From %s %s%s", froma
, date
, nl
);
1469 if(n_COLOUR_IS_ACTIVE())
1472 if (i
> 0 && stats
!= NULL
)
1478 sendmp(struct message
*mp
, FILE *obuf
, struct n_ignore
const *doitp
,
1479 char const *prefix
, enum sendaction action
, ui64_t
*stats
)
1481 struct n_sigman linedat_protect
;
1484 enum mime_parse_flags mpf
;
1485 struct mimepart
*ip
;
1486 size_t linesize
, cnt
, sz
, i
;
1491 time_current_update(&time_current
, TRU1
);
1495 quoteflt_init(&qf
, prefix
);
1497 n_SIGMAN_ENTER_SWITCH(&linedat_protect
, n_SIGMAN_ALL
){
1504 if (mp
== dot
&& action
!= SEND_TOSRCH
)
1505 n_pstate
|= n_PS_DID_PRINT_DOT
;
1509 /* First line is the From_ line, so no headers there to worry about */
1510 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
)
1517 char const *cpre
= n_empty
, *csuf
= n_empty
;
1520 if(n_COLOUR_IS_ACTIVE()){
1521 struct n_colour_pen
*cpen
;
1522 struct str
const *sp
;
1524 cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_
,NULL
);
1525 if((sp
= n_colour_pen_to_str(cpen
)) != NULL
){
1527 sp
= n_colour_reset_to_str();
1534 nozap
= (doitp
!= n_IGNORE_ALL
&& doitp
!= n_IGNORE_FWD
&&
1535 action
!= SEND_RFC822
&&
1536 !n_ignore_is_ign(doitp
, "from_", sizeof("from_") -1));
1537 if (mp
->m_flag
& MNOFROM
) {
1539 sz
= fprintf(obuf
, "%s%.*sFrom %s %s%s\n",
1540 cpre
, (int)qf
.qf_pfix_len
,
1541 (qf
.qf_pfix_len
!= 0 ? qf
.qf_pfix
: n_empty
), fakefrom(mp
),
1542 n_time_ctime(mp
->m_time
, NULL
), csuf
);
1544 if (qf
.qf_pfix_len
> 0) {
1545 i
= fwrite(qf
.qf_pfix
, sizeof *qf
.qf_pfix
, qf
.qf_pfix_len
, obuf
);
1546 if (i
!= qf
.qf_pfix_len
)
1553 cpre
= (char const*)0x1;
1557 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1559 if(c
== '\n' && *csuf
!= '\0'){
1560 cpre
= (char const*)0x1;
1572 if(*csuf
!= '\0' && cpre
!= (char const*)0x1 && *cpre
!= '\0')
1576 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1583 if (sz
> 0 && stats
!= NULL
)
1586 mpf
= MIME_PARSE_NONE
;
1587 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
1588 mpf
|= MIME_PARSE_PARTS
| MIME_PARSE_DECRYPT
;
1589 if(action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
1590 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
)
1591 mpf
|= MIME_PARSE_FOR_USER_CONTEXT
;
1592 if ((ip
= mime_parse_msg(mp
, mpf
)) == NULL
)
1595 rv
= sendpart(mp
, ip
, obuf
, doitp
, &qf
, action
, &linedat
, &linesize
,
1598 n_sigman_cleanup_ping(&linedat_protect
);
1600 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;
1601 quoteflt_destroy(&qf
);
1605 n_sigman_leave(&linedat_protect
, n_SIGMAN_VIPSIGS_NTTYOUT
);