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 - 2017 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 SINLINE ssize_t
_out(char const *buf
, size_t len
, FILE *fp
,
57 enum conversion convert
, enum sendaction action
,
58 struct quoteflt
*qf
, ui64_t
*stats
, struct str
*outrest
,
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
) {
150 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
151 if (to
.l
> 25 && !asccasecmp(cp
, "quoted-printable"))
153 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
157 if (want_ct
&& mpp
->m_multipart
== NULL
/* TODO */ &&
158 (cp
= mpp
->m_charset
) != NULL
) {
160 _out(", ", 2, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
161 _out(cp
, strlen(cp
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
164 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
166 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
167 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
170 if (mpp
->m_content_info
& CI_MIME_ERRORS
) {
172 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
174 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
176 ti
.l
= strlen(ti
.s
= n_UNCONST(_("Defective MIME structure")));
178 to
.l
= delctrl(to
.s
, to
.l
);
179 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
182 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
184 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
186 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
189 /* Content-Description */
190 if (n_ignore_is_ign(doitp
, "content-description", 19) &&
191 (cp
= mpp
->m_content_description
) != NULL
&& *cp
!= '\0') {
193 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
195 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
197 ti
.l
= strlen(ti
.s
= n_UNCONST(mpp
->m_content_description
));
198 mime_fromhdr(&ti
, &to
, TD_ISPR
| TD_ICONV
);
199 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
202 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
204 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
206 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
210 if (n_ignore_is_ign(doitp
, "content-disposition", 19) &&
211 mpp
->m_filename
!= NULL
&& *mpp
->m_filename
!= '\0') {
213 _out(cpre
->s
, cpre
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
215 _out("[-- ", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
217 ti
.l
= strlen(ti
.s
= mpp
->m_filename
);
219 to
.l
= delctrl(to
.s
, to
.l
);
220 _out(to
.s
, to
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
223 _out(" --]", 4, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
225 _out(csuf
->s
, csuf
->l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
227 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
, NULL
);
233 _pipefile(struct mime_handler
*mhp
, struct mimepart
const *mpp
, FILE **qbuf
,
234 char const *tmpname
, int term_infd
)
237 char const *env_addon
[8 +8/*v15*/], *cp
, *sh
;
243 if (mhp
->mh_flags
& MIME_HDL_ISQUOTE
) {
244 if ((*qbuf
= Ftmp(NULL
, "sendp", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) ==
246 n_perr(_("tmpfile"), 0);
251 if ((mhp
->mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
) {
252 union {int (*ptf
)(void); char const *sh
;} u
;
255 if (*qbuf
!= n_stdout
) /* xxx never? v15: it'll be a filter anyway */
259 if((rbuf
= Popen((char*)-1, "W", u
.sh
, NULL
, fileno(*qbuf
))) == NULL
)
265 if (mpp
== NULL
|| (cp
= mpp
->m_filename
) == NULL
)
267 env_addon
[0] = str_concat_csvl(&s
, n_PIPEENV_FILENAME
, "=", cp
, NULL
)->s
;
268 env_addon
[1] = str_concat_csvl(&s
, "NAIL_FILENAME", "=", cp
, NULL
)->s
;/* v15 */
270 /* MAILX_FILENAME_GENERATED *//* TODO pathconf NAME_MAX; but user can create
271 * TODO a file wherever he wants! *Do* create a zero-size temporary file
272 * TODO and give *that* path as MAILX_FILENAME_TEMPORARY, clean it up once
273 * TODO the pipe returns? Like this we *can* verify path/name issues! */
274 cp
= n_random_create_cp(n_MIN(NAME_MAX
/ 4, 16), NULL
);
275 env_addon
[2] = str_concat_csvl(&s
, n_PIPEENV_FILENAME_GENERATED
, "=", cp
,
277 env_addon
[3] = str_concat_csvl(&s
, "NAIL_FILENAME_GENERATED", "=", cp
,/* v15 */
280 /* MAILX_CONTENT{,_EVIDENCE} */
281 if (mpp
== NULL
|| (cp
= mpp
->m_ct_type_plain
) == NULL
)
283 env_addon
[4] = str_concat_csvl(&s
, n_PIPEENV_CONTENT
, "=", cp
, NULL
)->s
;
284 env_addon
[5] = str_concat_csvl(&s
, "NAIL_CONTENT", "=", cp
, NULL
)->s
;/* v15 */
286 if (mpp
!= NULL
&& mpp
->m_ct_type_usr_ovwr
!= NULL
)
287 cp
= mpp
->m_ct_type_usr_ovwr
;
288 env_addon
[6] = str_concat_csvl(&s
, n_PIPEENV_CONTENT_EVIDENCE
, "=", cp
,
290 env_addon
[7] = str_concat_csvl(&s
, "NAIL_CONTENT_EVIDENCE", "=", cp
,/* v15 */
295 /* MAILX_FILENAME_TEMPORARY? */
296 if (tmpname
!= NULL
) {
297 env_addon
[8] = str_concat_csvl(&s
,
298 n_PIPEENV_FILENAME_TEMPORARY
, "=", tmpname
, NULL
)->s
;
299 env_addon
[9] = str_concat_csvl(&s
,
300 "NAIL_FILENAME_TEMPORARY", "=", tmpname
, NULL
)->s
;/* v15 */
301 env_addon
[10] = NULL
;
304 sh
= ok_vlook(SHELL
);
306 if (mhp
->mh_flags
& MIME_HDL_NEEDSTERM
) {
311 pid
= n_child_run(sh
, &nset
, term_infd
, n_CHILD_FD_PASS
, "-c",
312 mhp
->mh_shell_cmd
, NULL
, env_addon
, NULL
);
313 rbuf
= (pid
< 0) ? NULL
: (FILE*)-1;
315 rbuf
= Popen(mhp
->mh_shell_cmd
, "W", sh
, env_addon
,
316 (mhp
->mh_flags
& MIME_HDL_ASYNC
? -1 : fileno(*qbuf
)));
319 n_err(_("Cannot run MIME type handler: %s: %s\n"),
320 mhp
->mh_msg
, n_err_to_doc(n_err_no
));
323 if (*qbuf
!= n_stdout
)
333 _out(char const *buf
, size_t len
, FILE *fp
, enum conversion convert
, enum
334 sendaction action
, struct quoteflt
*qf
, ui64_t
*stats
, struct str
*outrest
,
341 /* TODO We should not need is_head() here, i think in v15 the actual Mailbox
342 * TODO subclass should detect such From_ cases and either reencode the part
343 * TODO in question, or perform From_ quoting as necessary!?!?!? How?!? */
347 if((action
== SEND_MBOX
|| action
== SEND_DECRYPT
) &&
348 (from_
= is_head(buf
, len
, TRU1
))){
349 if(from_
!= TRUM1
|| ok_blook(mbox_rfc4155
)){
356 flags
= ((int)action
& _TD_EOF
);
358 n
= mime_write(buf
, len
, fp
,
359 action
== SEND_MBOX
? CONV_NONE
: convert
,
360 flags
| ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
361 action
== SEND_TODISP_PARTS
||
362 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
)
364 : (action
== SEND_TOSRCH
|| action
== SEND_TOPIPE
||
365 action
== SEND_TOFILE
)
366 ? TD_ICONV
: (action
== SEND_SHOW
? TD_ISPR
: TD_NONE
)),
367 qf
, outrest
, inrest
);
380 _send_onpipe(int signo
)
382 NYD_X
; /* Signal handler */
384 siglongjmp(_send_pipejmp
, 1);
387 static sigjmp_buf __sendp_actjmp
; /* TODO someday.. */
388 static int __sendp_sig
; /* TODO someday.. */
389 static sighandler_type __sendp_opipe
;
391 __sendp_onsig(int sig
) /* TODO someday, we won't need it no more */
393 NYD_X
; /* Signal handler */
395 siglongjmp(__sendp_actjmp
, 1);
399 sendpart(struct message
*zmp
, struct mimepart
*ip
, FILE * volatile obuf
,
400 struct n_ignore
const *doitp
, struct quoteflt
*qf
,
401 enum sendaction
volatile action
,
402 char **linedat
, size_t *linesize
, ui64_t
* volatile stats
, int level
)
405 struct mime_handler mh
;
406 struct str outrest
, inrest
;
408 char const * volatile tmpname
= NULL
;
410 int volatile term_infd
;
412 struct mimepart
*volatile np
;
413 FILE * volatile ibuf
= NULL
, * volatile pbuf
= obuf
,
414 * volatile qbuf
= obuf
, *origobuf
= obuf
;
415 enum conversion
volatile convert
;
416 sighandler_type
volatile oldpipe
= SIG_DFL
;
419 n_UNINIT(term_infd
, 0);
422 quoteflt_reset(qf
, obuf
);
424 #if 0 /* TODO PART_INFO should be displayed here!! search PART_INFO */
425 if(ip
->m_mimecontent
!= MIME_DISCARD
&& level
> 0)
426 _print_part_info(obuf
, ip
, doitp
, level
, qf
, stats
);
429 if (ip
->m_mimecontent
== MIME_PKCS7
) {
430 if (ip
->m_multipart
&&
431 action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
436 if (level
== 0 && action
!= SEND_TODISP_PARTS
) {
438 if (!n_ignore_is_ign(doitp
, "status", 6))
440 if (!n_ignore_is_ign(doitp
, "x-status", 8))
446 if ((ibuf
= setinput(&mb
, (struct message
*)ip
, NEED_BODY
)) == NULL
) {
451 if(action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
452 action
== SEND_TODISP_PARTS
||
453 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
454 action
== SEND_TOSRCH
)
459 if (ip
->m_mimecontent
== MIME_DISCARD
)
462 if (!(ip
->m_flag
& MNOFROM
))
463 while (cnt
&& (c
= getc(ibuf
)) != EOF
) {
468 convert
= (dostat
& 4) ? CONV_FROMHDR
: CONV_NONE
;
470 /* Work the headers */
472 struct n_string hl
, *hlp
;
476 hlp
= n_string_creat_auto(&hl
); /* TODO pool [or, v15: filter!] */
477 /* Reserve three lines, still not enough for references and DKIM etc. */
478 hlp
= n_string_reserve(hlp
, n_MAX(MIME_LINELEN
, MIME_LINELEN_RFC2047
) * 3);
480 for(hstop
= hany
= FAL0
; !hstop
;){
484 if(fgetline(linedat
, linesize
, &cnt
, &linelen
, ibuf
, 0) == NULL
)
487 if (linelen
== 0 || (cp
= *linedat
)[0] == '\n')
488 /* If line is blank, we've reached end of headers */
490 if(cp
[linelen
- 1] == '\n'){
491 cp
[--linelen
] = '\0';
496 /* Are we in a header? */
499 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
505 /* Pick up the header field if we have one */
506 while((c
= *cp
) != ':' && !spacechar(c
) && c
!= '\0')
509 if(!spacechar(c
) || c
== '\0')
514 /* That won't work with MIME when saving etc., before v15 */
516 /* XXX This disturbs, and may happen multiple times, and we
517 * XXX cannot heal it for multipart except for display <v15 */
518 n_err(_("Malformed message: headers and body not separated "
519 "(with empty line)\n"));
522 fseek(ibuf
, -(off_t
)(lcnt
- cnt
), SEEK_CUR
);
530 hlp
= n_string_push_buf(hlp
, cp
, (ui32_t
)linelen
);
531 hlp
= n_string_push_c(hlp
, '\n');
533 bool_t lblank
, isblank
;
535 for(lblank
= FAL0
, lcnt
= 0; lcnt
< linelen
; ++cp
, ++lcnt
){
539 if(!(isblank
= blankchar(c8
)) || !lblank
){
540 if((lblank
= isblank
))
542 hlp
= n_string_push_c(hlp
, c8
);
550 /* If it is an ignored header, skip it */
551 *(cp
= memchr(hlp
->s_dat
, ':', hlp
->s_len
)) = '\0';
555 i
= PTR2SIZE(cp
- hlp
->s_dat
);
556 if((doitp
!= NULL
&& n_ignore_is_ign(doitp
, hlp
->s_dat
, i
)) ||
557 !asccasecmp(hlp
->s_dat
, "status") ||
558 !asccasecmp(hlp
->s_dat
, "x-status") ||
559 (action
== SEND_MBOX
&&
560 (!asccasecmp(hlp
->s_dat
, "content-length") ||
561 !asccasecmp(hlp
->s_dat
, "lines")) &&
562 !ok_blook(keep_content_length
)))
568 if(n_COLOUR_IS_ACTIVE())
569 n_colour_put(n_COLOUR_ID_VIEW_HEADER
, hlp
->s_dat
);
572 _out(hlp
->s_dat
, hlp
->s_len
, obuf
, convert
, action
, qf
, stats
, NULL
,NULL
);
574 if(n_COLOUR_IS_ACTIVE())
582 hlp
= n_string_trunc(hlp
, 0);
588 /* We've reached end of headers, so eventually force out status: field and
589 * note that we are no longer in header fields */
591 statusput(zmp
, obuf
, qf
, stats
);
595 xstatusput(zmp
, obuf
, qf
, stats
);
598 if(/* TODO PART_INFO hany && */ doitp
!= n_IGNORE_ALL
)
599 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
, NULL
,NULL
);
610 memset(&mh
, 0, sizeof mh
);
612 switch (ip
->m_mimecontent
) {
615 case SEND_TODISP_PARTS
:
618 case SEND_TODISP_ALL
:
621 if (ok_blook(rfc822_body_from_
)) {
622 if (qf
->qf_pfix_len
> 0) {
623 size_t i
= fwrite(qf
->qf_pfix
, sizeof *qf
->qf_pfix
,
624 qf
->qf_pfix_len
, obuf
);
625 if (i
== qf
->qf_pfix_len
&& stats
!= NULL
)
628 put_from_(obuf
, ip
->m_multipart
, stats
);
636 if (ok_blook(rfc822_body_from_
))
637 put_from_(obuf
, ip
->m_multipart
, stats
);
647 case MIME_TEXT_PLAIN
:
650 case SEND_TODISP_ALL
:
651 case SEND_TODISP_PARTS
:
654 switch (n_mimetype_handler(&mh
, ip
, action
)) {
656 if(action
!= SEND_TODISP_PARTS
)
659 case MIME_HDL_MSG
:/* TODO these should be part of partinfo! */
660 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
662 /* We would print this as plain text, so better force going home */
665 if(action
== SEND_TODISP_PARTS
&&
666 (mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
))
671 if(action
== SEND_TODISP_PARTS
)
683 if (action
!= SEND_DECRYPT
)
687 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&&
688 action
!= SEND_SHOW
&& ip
->m_multipart
!= NULL
)
694 case SEND_TODISP_ALL
:
695 case SEND_TODISP_PARTS
:
698 switch (n_mimetype_handler(&mh
, ip
, action
)) {
701 if (action
!= SEND_TODISP_ALL
&& (level
!= 0 || cnt
))
704 case MIME_HDL_MSG
:/* TODO these should be part of partinfo! */
705 _out(mh
.mh_msg
.s
, mh
.mh_msg
.l
, obuf
, CONV_NONE
, SEND_MBOX
, qf
,
707 /* We would print this as plain text, so better force going home */
710 if(action
== SEND_TODISP_PARTS
){
711 if(mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
)
714 _print_part_info(obuf
, ip
, doitp
, level
, qf
, stats
);
715 if(!getapproval(_("Run MIME handler for this part?"), FAL0
))
722 if(action
== SEND_TODISP_PARTS
)
737 case MIME_ALTERNATIVE
:
738 if ((action
== SEND_TODISP
|| action
== SEND_QUOTE
) &&
739 !ok_blook(print_alternatives
)) {
740 /* XXX This (a) should not remain (b) should be own fun
741 * TODO (despite the fact that v15 will do this completely differently
742 * TODO by having an action-specific "manager" that will traverse the
743 * TODO parsed MIME tree and decide for each part whether it'll be
744 * TODO displayed or not *before* we walk the tree for doing action */
746 struct mpstack
*outer
;
748 } outermost
, * volatile curr
, * volatile mpsp
;
749 bool_t
volatile neednl
, hadpart
;
750 struct n_sigman smalter
;
752 (curr
= &outermost
)->outer
= NULL
;
754 neednl
= hadpart
= FAL0
;
756 n_SIGMAN_ENTER_SWITCH(&smalter
, n_SIGMAN_ALL
) {
764 for (np
= ip
->m_multipart
;;) {
766 for (; np
!= NULL
; np
= np
->m_nextpart
) {
767 if (action
!= SEND_QUOTE
&& np
->m_ct_type_plain
!= NULL
) {
769 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
771 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
775 switch (np
->m_mimecontent
) {
776 case MIME_ALTERNATIVE
:
782 mpsp
= salloc(sizeof *mpsp
);
784 mpsp
->mp
= np
->m_multipart
;
793 switch (n_mimetype_handler(&mh
, np
, action
)) {
795 mh
.mh_flags
= MIME_HDL_NULL
;
796 continue; /* break; break; */
798 if (!ok_blook(mime_alternative_favour_rich
)) {/* TODO */
799 struct mimepart
*x
= np
;
801 while ((x
= x
->m_nextpart
) != NULL
) {
802 struct mime_handler mhx
;
804 if (x
->m_mimecontent
== MIME_TEXT_PLAIN
||
805 n_mimetype_handler(&mhx
, x
, action
) ==
810 continue; /* break; break; */
818 case MIME_TEXT_PLAIN
:
821 if (ok_blook(mime_alternative_favour_rich
)) { /* TODO */
822 struct mimepart
*x
= np
;
824 /* TODO twice TODO, we should dive into /related and
825 * TODO check whether that has rich parts! */
826 while ((x
= x
->m_nextpart
) != NULL
) {
827 struct mime_handler mhx
;
829 switch (n_mimetype_handler(&mhx
, x
, action
)) {
838 continue; /* break; break; */
842 if (action
== SEND_QUOTE
&& hadpart
) {
843 struct quoteflt
*dummy
= quoteflt_dummy();
844 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
846 quoteflt_flush(dummy
);
850 rv
= sendpart(zmp
, np
, obuf
, doitp
, qf
, action
,
851 linedat
, linesize
, stats
, level
+ 1);
852 quoteflt_reset(qf
, origobuf
);
855 curr
= &outermost
; /* Cause overall loop termination */
864 np
= curr
->mp
->m_nextpart
;
867 n_sigman_leave(&smalter
, n_SIGMAN_VIPSIGS_NTTYOUT
);
878 case SEND_TODISP_ALL
:
879 case SEND_TODISP_PARTS
:
887 if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
) &&
888 ip
->m_multipart
!= NULL
&&
889 ip
->m_multipart
->m_mimecontent
== MIME_DISCARD
&&
890 ip
->m_multipart
->m_nextpart
== NULL
) {
891 char const *x
= _("[Missing multipart boundary - use `show' "
892 "to display the raw message]\n");
893 _out(x
, strlen(x
), obuf
, CONV_NONE
, SEND_MBOX
, qf
, stats
,
897 for (np
= ip
->m_multipart
; np
!= NULL
; np
= np
->m_nextpart
) {
898 bool_t
volatile ispipe
;
900 if (np
->m_mimecontent
== MIME_DISCARD
&& action
!= SEND_DECRYPT
)
906 if (np
->m_partstring
&&
907 np
->m_partstring
[0] == '1' && np
->m_partstring
[1] == '\0')
910 /* TODO Always open multipart on /dev/null, it's a hack to be
911 * TODO able to dive into that structure, and still better
912 * TODO than asking the user for something stupid.
913 * TODO oh, wait, we did ask for a filename for this MIME mail,
914 * TODO and that outer container is useless anyway ;-P */
915 if (np
->m_multipart
!= NULL
) {
916 if ((obuf
= Fopen(n_path_devnull
, "w")) == NULL
)
918 } else if ((obuf
= newfile(np
, &ispipe
)) == NULL
)
922 if (sigsetjmp(_send_pipejmp
, 1)) {
926 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
929 case SEND_TODISP_ALL
:
930 if (ip
->m_mimecontent
!= MIME_ALTERNATIVE
&&
931 ip
->m_mimecontent
!= MIME_RELATED
&&
932 ip
->m_mimecontent
!= MIME_DIGEST
&&
933 ip
->m_mimecontent
!= MIME_SIGNED
&&
934 ip
->m_mimecontent
!= MIME_ENCRYPTED
&&
935 ip
->m_mimecontent
!= MIME_MULTI
)
937 _print_part_info(obuf
, np
, doitp
, level
, qf
, stats
);
939 case SEND_TODISP_PARTS
:
952 if ((action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
) &&
953 np
->m_multipart
== NULL
&& ip
->m_parent
!= NULL
) {
954 struct quoteflt
*dummy
= quoteflt_dummy();
955 _out("\n", 1, obuf
, CONV_NONE
, SEND_MBOX
, dummy
, stats
,
957 quoteflt_flush(dummy
);
959 if (sendpart(zmp
, np
, obuf
, doitp
, qf
, action
, linedat
, linesize
,
962 quoteflt_reset(qf
, origobuf
);
964 if (action
== SEND_QUOTE
) {
965 if (ip
->m_mimecontent
!= MIME_RELATED
)
968 if (action
== SEND_TOFILE
&& obuf
!= origobuf
) {
973 safe_signal(SIGPIPE
, SIG_IGN
);
975 safe_signal(SIGPIPE
, oldpipe
);
988 /* Copy out message body */
989 if (doitp
== n_IGNORE_ALL
&& level
== 0) /* skip final blank line */
991 switch (ip
->m_mime_enc
) {
998 convert
= CONV_FROMQP
;
1001 switch (ip
->m_mimecontent
) {
1003 case MIME_TEXT_PLAIN
:
1004 case MIME_TEXT_HTML
:
1005 convert
= CONV_FROMB64_T
;
1008 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
1011 convert
= CONV_FROMB64_T
;
1014 convert
= CONV_FROMB64
;
1021 convert
= CONV_NONE
;
1024 /* TODO Unless we have filters, ensure iconvd==-1 so that mime.c:fwrite_td()
1025 * TODO cannot mess things up misusing outrest as line buffer */
1027 if (iconvd
!= (iconv_t
)-1) {
1028 n_iconv_close(iconvd
);
1029 iconvd
= (iconv_t
)-1;
1033 if (action
== SEND_DECRYPT
|| action
== SEND_MBOX
||
1034 action
== SEND_RFC822
|| action
== SEND_SHOW
)
1035 convert
= CONV_NONE
;
1037 else if ((action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
||
1038 action
== SEND_TODISP_PARTS
||
1039 action
== SEND_QUOTE
|| action
== SEND_QUOTE_ALL
||
1040 action
== SEND_TOSRCH
|| action
== SEND_TOFILE
) &&
1041 (ip
->m_mimecontent
== MIME_TEXT_PLAIN
||
1042 ip
->m_mimecontent
== MIME_TEXT_HTML
||
1043 ip
->m_mimecontent
== MIME_TEXT
||
1044 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_TEXT
||
1045 (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) == MIME_HDL_PTF
)) {
1048 tcs
= ok_vlook(ttycharset
);
1049 if (asccasecmp(tcs
, ip
->m_charset
) &&
1050 asccasecmp(ok_vlook(charset_7bit
), ip
->m_charset
)) {
1051 iconvd
= n_iconv_open(tcs
, ip
->m_charset
);
1052 if (iconvd
== (iconv_t
)-1 && n_err_no
== n_ERR_INVAL
) {
1053 n_err(_("Cannot convert from %s to %s\n"), ip
->m_charset
, tcs
);
1054 /*rv = 1; goto jleave;*/
1060 switch (mh
.mh_flags
& MIME_HDL_TYPE_MASK
) {
1062 if(!(mh
.mh_flags
& MIME_HDL_COPIOUSOUTPUT
) &&
1063 action
!= SEND_TODISP_PARTS
)
1070 term_infd
= n_CHILD_FD_PASS
;
1071 if (mh
.mh_flags
& (MIME_HDL_TMPF
| MIME_HDL_NEEDSTERM
)) {
1074 of
= OF_RDWR
| OF_REGISTER
;
1075 if (!(mh
.mh_flags
& MIME_HDL_TMPF
)) {
1077 mh
.mh_flags
|= MIME_HDL_TMPF_FILL
;
1079 } else if (mh
.mh_flags
& MIME_HDL_TMPF_UNLINK
)
1080 of
|= OF_REGISTER_UNLINK
;
1082 if ((pbuf
= Ftmp((mh
.mh_flags
& MIME_HDL_TMPF
? &cp
: NULL
),
1083 (mh
.mh_flags
& MIME_HDL_TMPF_FILL
? "mimehdlfill" : "mimehdl"),
1087 if (mh
.mh_flags
& MIME_HDL_TMPF
) {
1088 tmpname
= savestr(cp
);
1092 if (mh
.mh_flags
& MIME_HDL_TMPF_FILL
) {
1094 term_infd
= fileno(pbuf
);
1100 pbuf
= _pipefile(&mh
, ip
, n_UNVOLATILE(&qbuf
), tmpname
, term_infd
);
1106 } else if ((mh
.mh_flags
& MIME_HDL_NEEDSTERM
) && pbuf
== (FILE*)-1) {
1111 action
= SEND_TOPIPE
;
1113 oldpipe
= safe_signal(SIGPIPE
, &_send_onpipe
);
1114 if (sigsetjmp(_send_pipejmp
, 1))
1121 mh
.mh_flags
= MIME_HDL_NULL
;
1128 bool_t
volatile eof
;
1129 ui32_t save_qf_pfix_len
= qf
->qf_pfix_len
;
1130 ui64_t
*save_stats
= stats
;
1132 if (pbuf
!= origobuf
) {
1133 qf
->qf_pfix_len
= 0; /* XXX legacy (remove filter instead) */
1137 outrest
.s
= inrest
.s
= NULL
;
1138 outrest
.l
= inrest
.l
= 0;
1142 __sendp_opipe
= safe_signal(SIGPIPE
, &__sendp_onsig
);
1143 if (sigsetjmp(__sendp_actjmp
, 1)) {
1144 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;/* (but protected by outer sigman) */
1145 if (outrest
.s
!= NULL
)
1147 if (inrest
.s
!= NULL
)
1150 if (iconvd
!= (iconv_t
)-1)
1151 n_iconv_close(iconvd
);
1153 safe_signal(SIGPIPE
, __sendp_opipe
);
1154 n_raise(__sendp_sig
);
1158 quoteflt_reset(qf
, pbuf
);
1160 n_pstate
|= n_PS_BASE64_STRIP_CR
;
1161 while (!eof
&& fgetline(linedat
, linesize
, &cnt
, &linelen
, ibuf
, 0)) {
1163 if (_out(*linedat
, linelen
, pbuf
, convert
, action
, qf
, stats
, &outrest
,
1164 (action
& _TD_EOF
? NULL
: &inrest
)) < 0 || ferror(pbuf
)) {
1165 rv
= -1; /* XXX Should bail away?! */
1169 if(eof
<= FAL0
&& rv
>= 0 && (outrest
.l
!= 0 || inrest
.l
!= 0)){
1171 if(eof
|| inrest
.l
== 0)
1173 eof
= eof
? TRU1
: TRUM1
;
1176 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;
1179 /* TODO HACK: when sending to the display we yet get fooled if a message
1180 * TODO doesn't end in a newline, because of our input/output 1:1.
1181 * TODO This should be handled automatically by a display filter, then */
1182 if(rv
>= 0 && !qf
->qf_nl_last
&&
1183 (action
== SEND_TODISP
|| action
== SEND_TODISP_ALL
))
1184 rv
= quoteflt_push(qf
, "\n", 1);
1188 if (rv
>= 0 && (mh
.mh_flags
& MIME_HDL_TMPF_FILL
)) {
1189 mh
.mh_flags
&= ~MIME_HDL_TMPF_FILL
;
1191 really_rewind(pbuf
);
1192 /* Don't Fclose() the Ftmp() thing due to OF_REGISTER_UNLINK++ */
1193 goto jpipe_for_real
;
1197 safe_signal(SIGPIPE
, __sendp_opipe
);
1199 if (outrest
.s
!= NULL
)
1201 if (inrest
.s
!= NULL
)
1204 if (pbuf
!= origobuf
) {
1205 qf
->qf_pfix_len
= save_qf_pfix_len
;
1212 safe_signal(SIGPIPE
, SIG_IGN
);
1213 Pclose(pbuf
, !(mh
.mh_flags
& MIME_HDL_ASYNC
));
1214 safe_signal(SIGPIPE
, oldpipe
);
1215 if (rv
>= 0 && qbuf
!= NULL
&& qbuf
!= obuf
)
1216 pipecpy(qbuf
, obuf
, origobuf
, qf
, stats
);
1219 if (iconvd
!= (iconv_t
)-1)
1220 n_iconv_close(iconvd
);
1228 newfile(struct mimepart
*ip
, bool_t
volatile *ispipe
)
1238 if (f
!= NULL
&& f
!= (char*)-1) {
1241 makeprint(&in
, &out
);
1242 out
.l
= delctrl(out
.s
, out
.l
);
1243 f
= savestrbuf(out
.s
, out
.l
);
1247 /* In interactive mode, let user perform all kind of expansions as desired,
1248 * and offer |SHELL-SPEC pipe targets, too */
1249 if (n_psonce
& n_PSO_INTERACTIVE
) {
1251 struct n_string shou
, *shoup
;
1254 shoup
= n_string_creat_auto(&shou
);
1256 /* TODO Generic function which asks for filename.
1257 * TODO If the current part is the first textpart the target
1258 * TODO is implicit from outer `write' etc! */
1259 /* I18N: Filename input prompt with file type indication */
1260 str_concat_csvl(&prompt
, _("Enter filename for part "),
1261 (ip
->m_partstring
!= NULL
? ip
->m_partstring
: n_qm
),
1262 " (", ip
->m_ct_type_plain
, "): ", NULL
);
1264 f2
= n_go_input_cp(n_GO_INPUT_CTX_DEFAULT
| n_GO_INPUT_HIST_ADD
,
1265 prompt
.s
, ((f
!= (char*)-1 && f
!= NULL
)
1266 ? n_shexp_quote_cp(f
, FAL0
) : NULL
));
1268 in
.s
= n_UNCONST(f2
);
1270 if((n_shexp_parse_token((n_SHEXP_PARSE_TRUNC
|
1271 n_SHEXP_PARSE_TRIM_SPACE
| n_SHEXP_PARSE_TRIM_IFSSPACE
|
1272 n_SHEXP_PARSE_LOG
| n_SHEXP_PARSE_IGNORE_EMPTY
),
1274 ) & (n_SHEXP_STATE_STOP
|
1275 n_SHEXP_STATE_OUTPUT
| n_SHEXP_STATE_ERR_MASK
)
1276 ) != (n_SHEXP_STATE_STOP
| n_SHEXP_STATE_OUTPUT
))
1278 f2
= n_string_cp(shoup
);
1280 if (f2
== NULL
|| *f2
== '\0') {
1281 if (n_poption
& n_PO_D_V
)
1282 n_err(_("... skipping this\n"));
1283 n_string_gut(shoup
);
1289 /* Pipes are expanded by the shell */
1291 else if ((f3
= fexpand(f2
, FEXP_LOCAL
| FEXP_NVAR
)) == NULL
)
1292 /* (Error message written by fexpand()) */
1297 n_string_gut(shoup
);
1300 if (f
== NULL
|| f
== (char*)-1 || *f
== '\0')
1302 else if (n_psonce
& n_PSO_INTERACTIVE
) {
1304 fp
= Popen(&f
[1], "w", ok_vlook(SHELL
), NULL
, 1);
1305 if (!(*ispipe
= (fp
!= NULL
)))
1307 } else if ((fp
= Fopen(f
, "w")) == NULL
)
1308 n_err(_("Cannot open %s\n"), n_shexp_quote_cp(f
, FAL0
));
1310 /* Be very picky in non-interactive mode: actively disallow pipes,
1311 * prevent directory separators, and any filename member that would
1312 * become expanded by the shell if the name would be echo(1)ed */
1313 if(anyof(f
, "/" n_SHEXP_MAGIC_PATH_CHARS
)){
1316 for(out
.s
= salloc((strlen(f
) * 3) +1), out
.l
= 0; (c
= *f
++) != '\0';)
1317 if(strchr("/" n_SHEXP_MAGIC_PATH_CHARS
, c
)){
1318 out
.s
[out
.l
++] = '%';
1319 n_c_to_hex_base16(&out
.s
[out
.l
], c
);
1323 out
.s
[out
.l
] = '\0';
1327 /* Avoid overwriting of existing files */
1328 while((fp
= Fopen(f
, "wx")) == NULL
){
1331 if((e
= n_err_no
) != n_ERR_EXIST
){
1332 n_err(_("Cannot open %s: %s\n"),
1333 n_shexp_quote_cp(f
, FAL0
), n_err_to_doc(e
));
1337 if(ip
->m_partstring
!= NULL
)
1338 f
= savecatsep(f
, '#', ip
->m_partstring
);
1340 f
= savecat(f
, "#.");
1349 pipecpy(FILE *pipebuf
, FILE *outbuf
, FILE *origobuf
, struct quoteflt
*qf
,
1352 char *line
= NULL
; /* TODO line pool */
1353 size_t linesize
= 0, linelen
, cnt
;
1359 cnt
= (size_t)fsize(pipebuf
);
1362 quoteflt_reset(qf
, outbuf
);
1363 while (fgetline(&line
, &linesize
, &cnt
, &linelen
, pipebuf
, 0) != NULL
) {
1364 if ((sz
= quoteflt_push(qf
, line
, linelen
)) < 0)
1368 if ((sz
= quoteflt_flush(qf
)) > 0)
1373 if (all_sz
> 0 && outbuf
== origobuf
&& stats
!= NULL
)
1380 statusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1383 char statout
[3], *cp
= statout
;
1386 if (mp
->m_flag
& MREAD
)
1388 if (!(mp
->m_flag
& MNEW
))
1392 int i
= fprintf(obuf
, "%.*sStatus: %s\n", (int)qf
->qf_pfix_len
,
1393 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), statout
);
1394 if (i
> 0 && stats
!= NULL
)
1401 xstatusput(const struct message
*mp
, FILE *obuf
, struct quoteflt
*qf
,
1405 char *xp
= xstatout
;
1408 if (mp
->m_flag
& MFLAGGED
)
1410 if (mp
->m_flag
& MANSWERED
)
1412 if (mp
->m_flag
& MDRAFTED
)
1416 int i
= fprintf(obuf
, "%.*sX-Status: %s\n", (int)qf
->qf_pfix_len
,
1417 (qf
->qf_pfix_len
> 0 ? qf
->qf_pfix
: 0), xstatout
);
1418 if (i
> 0 && stats
!= NULL
)
1425 put_from_(FILE *fp
, struct mimepart
*ip
, ui64_t
*stats
)
1427 char const *froma
, *date
, *nl
;
1431 if (ip
!= NULL
&& ip
->m_from
!= NULL
) {
1433 date
= fakedate(ip
->m_time
);
1436 froma
= ok_vlook(LOGNAME
);
1437 date
= time_current
.tc_ctime
;
1442 if(n_COLOUR_IS_ACTIVE())
1443 n_colour_put(n_COLOUR_ID_VIEW_FROM_
, NULL
);
1445 i
= fprintf(fp
, "From %s %s%s", froma
, date
, nl
);
1447 if(n_COLOUR_IS_ACTIVE())
1450 if (i
> 0 && stats
!= NULL
)
1456 sendmp(struct message
*mp
, FILE *obuf
, struct n_ignore
const *doitp
,
1457 char const *prefix
, enum sendaction action
, ui64_t
*stats
)
1459 struct n_sigman linedat_protect
;
1462 enum mime_parse_flags mpf
;
1463 struct mimepart
*ip
;
1464 size_t linesize
, cnt
, sz
, i
;
1469 time_current_update(&time_current
, TRU1
);
1473 quoteflt_init(&qf
, prefix
);
1475 n_SIGMAN_ENTER_SWITCH(&linedat_protect
, n_SIGMAN_ALL
){
1482 if (mp
== dot
&& action
!= SEND_TOSRCH
)
1483 n_pstate
|= n_PS_DID_PRINT_DOT
;
1487 /* First line is the From_ line, so no headers there to worry about */
1488 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
)
1495 char const *cpre
= n_empty
, *csuf
= n_empty
;
1498 if(n_COLOUR_IS_ACTIVE()){
1499 struct n_colour_pen
*cpen
;
1500 struct str
const *sp
;
1502 cpen
= n_colour_pen_create(n_COLOUR_ID_VIEW_FROM_
,NULL
);
1503 if((sp
= n_colour_pen_to_str(cpen
)) != NULL
){
1505 sp
= n_colour_reset_to_str();
1512 nozap
= (doitp
!= n_IGNORE_ALL
&& doitp
!= n_IGNORE_FWD
&&
1513 action
!= SEND_RFC822
&&
1514 !n_ignore_is_ign(doitp
, "from_", sizeof("from_") -1));
1515 if (mp
->m_flag
& MNOFROM
) {
1517 sz
= fprintf(obuf
, "%s%.*sFrom %s %s%s\n",
1518 cpre
, (int)qf
.qf_pfix_len
,
1519 (qf
.qf_pfix_len
!= 0 ? qf
.qf_pfix
: n_empty
), fakefrom(mp
),
1520 fakedate(mp
->m_time
), csuf
);
1522 if (qf
.qf_pfix_len
> 0) {
1523 i
= fwrite(qf
.qf_pfix
, sizeof *qf
.qf_pfix
, qf
.qf_pfix_len
, obuf
);
1524 if (i
!= qf
.qf_pfix_len
)
1531 cpre
= (char const*)0x1;
1535 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1537 if(c
== '\n' && *csuf
!= '\0'){
1538 cpre
= (char const*)0x1;
1550 if(*csuf
!= '\0' && cpre
!= (char const*)0x1 && *cpre
!= '\0')
1554 while (cnt
> 0 && (c
= getc(ibuf
)) != EOF
) {
1561 if (sz
> 0 && stats
!= NULL
)
1564 mpf
= MIME_PARSE_NONE
;
1565 if (action
!= SEND_MBOX
&& action
!= SEND_RFC822
&& action
!= SEND_SHOW
)
1566 mpf
|= MIME_PARSE_PARTS
| MIME_PARSE_DECRYPT
;
1567 if ((ip
= mime_parse_msg(mp
, mpf
)) == NULL
)
1570 rv
= sendpart(mp
, ip
, obuf
, doitp
, &qf
, action
, &linedat
, &linesize
,
1573 n_sigman_cleanup_ping(&linedat_protect
);
1575 n_pstate
&= ~n_PS_BASE64_STRIP_CR
;
1576 quoteflt_destroy(&qf
);
1580 n_sigman_leave(&linedat_protect
, n_SIGMAN_VIPSIGS_NTTYOUT
);