sendout.c:__savemail(): try to file_lock() *record*
[s-mailx.git] / sendout.c
blobb01c71fe04a9326a2e3d31575259304c2e5fcab6
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Mail to others.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE sendout
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
42 #undef SEND_LINESIZE
43 #define SEND_LINESIZE \
44 ((1024 / B64_ENCODE_INPUT_PER_LINE) * B64_ENCODE_INPUT_PER_LINE)
46 enum fmt_flags {
47 FMT_DOMIME = 1<<0,
48 FMT_COMMA = GCOMMA,
49 FMT_FILES = GFILES,
50 _FMT_GMASK = FMT_COMMA | FMT_FILES
52 CTA(!(_FMT_GMASK & FMT_DOMIME));
54 static char const *__sendout_ident; /* TODO temporary hack; rewrite puthead() */
55 static char * _sendout_boundary;
56 static si8_t _sendout_error;
58 static enum okay _putname(char const *line, enum gfield w,
59 enum sendaction action, size_t *gotcha,
60 char const *prefix, FILE *fo, struct name **xp,
61 enum gfield addflags);
63 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
64 * headers, respectively */
65 static int _put_ct(FILE *fo, char const *contenttype,
66 char const *charset);
67 SINLINE int _put_cte(FILE *fo, enum conversion conv);
68 static int _put_cd(FILE *fo, char const *cd, char const *filename);
70 /* Put all entries of the given header list */
71 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
72 bool_t nodisp);
74 /* Write an attachment to the file buffer, converting to MIME */
75 static int _attach_file(struct attachment *ap, FILE *fo);
76 static int __attach_file(struct attachment *ap, FILE *fo);
78 /* There are non-local receivers, collect credentials etc. */
79 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
80 bool_t signing_caps);
82 /* Attach a message to the file buffer */
83 static int attach_message(struct attachment *ap, FILE *fo);
85 /* Generate the body of a MIME multipart message */
86 static int make_multipart(struct header *hp, int convert, FILE *fi,
87 FILE *fo, char const *contenttype, char const *charset);
89 /* Prepend a header in front of the collected stuff and return the new file */
90 static FILE * infix(struct header *hp, FILE *fi);
92 /* Check wether Disposition-Notification-To: is desired */
93 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
94 FILE *fo);
96 /* Send mail to a bunch of user names. The interface is through mail() */
97 static int sendmail_internal(void *v, int recipient_record);
99 /* Deal with file and pipe addressees */
100 static struct name * _outof(struct name *names, FILE *fo, bool_t *senderror);
102 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
103 static bool_t mightrecord(FILE *fp, struct name *to);
105 static int __savemail(char const *name, FILE *fp);
107 /* */
108 static bool_t _transfer(struct sendbundle *sbp);
110 static bool_t __mta_start(struct sendbundle *sbp);
111 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
112 static void __mta_debug(struct sendbundle *sbp, char const *mta,
113 char const **args);
115 /* Create a Message-ID: header field. Use either host name or from address */
116 static char * _message_id(struct header *hp);
118 /* Format the given header line to not exceed 72 characters */
119 static int fmt(char const *str, struct name *np, FILE *fo,
120 enum fmt_flags ff);
122 /* Rewrite a message for resending, adding the Resent-Headers */
123 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
124 struct name *to, int add_resent);
126 static enum okay
127 _putname(char const *line, enum gfield w, enum sendaction action,
128 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
129 enum gfield addflags)
131 struct name *np;
132 enum okay rv = STOP;
133 NYD_ENTER;
135 np = lextract(line, GEXTRA | GFULL | addflags);
136 if (xp != NULL)
137 *xp = np;
138 if (np == NULL)
140 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
141 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
142 rv = OKAY;
143 else if (gotcha != NULL)
144 ++(*gotcha);
145 NYD_LEAVE;
146 return rv;
149 static int
150 _put_ct(FILE *fo, char const *contenttype, char const *charset)
152 int rv, i;
153 NYD2_ENTER;
155 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
156 goto jerr;
158 if (charset == NULL)
159 goto jend;
161 if (putc(';', fo) == EOF)
162 goto jerr;
163 ++rv;
165 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
166 if (putc('\n', fo) == EOF)
167 goto jerr;
168 ++rv;
171 /* C99 */{
172 size_t l = strlen(charset);
173 char *lcs = salloc(l +1);
175 for(l = 0; *charset != '\0'; ++l, ++charset)
176 lcs[l] = lowerconv(*charset);
177 lcs[l] = '\0';
178 charset = lcs;
180 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
181 goto jerr;
182 rv += i;
184 jend:
185 if (putc('\n', fo) == EOF)
186 goto jerr;
187 ++rv;
188 jleave:
189 NYD2_LEAVE;
190 return rv;
191 jerr:
192 rv = -1;
193 goto jleave;
196 SINLINE int
197 _put_cte(FILE *fo, enum conversion conv)
199 int rv;
200 NYD2_ENTER;
202 /* RFC 2045, 6.1.:
203 * This is the default value -- that is,
204 * "Content-Transfer-Encoding: 7BIT" is assumed if the
205 * Content-Transfer-Encoding header field is not present.
207 rv = (conv == CONV_7BIT) ? 0
208 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
209 mime_enc_from_conversion(conv));
210 NYD2_LEAVE;
211 return rv;
214 static int
215 _put_cd(FILE *fo, char const *cd, char const *filename)
217 struct str f;
218 si8_t mpc;
219 int rv;
220 NYD2_ENTER;
222 f.s = NULL;
224 /* xxx Ugly with the trailing space in case of wrap! */
225 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
226 goto jerr;
228 if (!(mpc = mime_param_create(&f, "filename", filename)))
229 goto jerr;
230 /* Always fold if result contains newlines */
231 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
232 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
233 goto jerr;
234 rv += 2;
236 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
237 goto jerr;
238 rv += (int)++f.l;
240 jleave:
241 NYD2_LEAVE;
242 return rv;
243 jerr:
244 rv = -1;
245 goto jleave;
249 static bool_t
250 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
251 bool_t rv;
252 NYD2_ENTER;
254 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
255 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
256 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
257 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
258 (!nodisp ? CONV_NONE : CONV_TOHDR),
259 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
260 putc('\n', fo) == EOF){
261 rv = FAL0;
262 break;
264 NYD_LEAVE;
265 return rv;
268 static int
269 _attach_file(struct attachment *ap, FILE *fo)
271 /* TODO of course, the MIME classification needs to performed once
272 * TODO only, not for each and every charset anew ... ;-// */
273 char *charset_iter_orig[2];
274 long offs;
275 int err = 0;
276 NYD_ENTER;
278 /* Is this already in target charset? Simply copy over */
279 if (ap->a_conv == AC_TMPFILE) {
280 err = __attach_file(ap, fo);
281 Fclose(ap->a_tmpf);
282 DBG( ap->a_tmpf = NULL; )
283 goto jleave;
286 /* If we don't apply charset conversion at all (fixed input=ouput charset)
287 * we also simply copy over, since it's the users desire */
288 if (ap->a_conv == AC_FIX_INCS) {
289 ap->a_charset = ap->a_input_charset;
290 err = __attach_file(ap, fo);
291 goto jleave;
294 /* Otherwise we need to iterate over all possible output charsets */
295 if ((offs = ftell(fo)) == -1) {
296 err = EIO;
297 goto jleave;
299 charset_iter_recurse(charset_iter_orig);
300 for (charset_iter_reset(NULL);; charset_iter_next()) {
301 if (!charset_iter_is_valid()) {
302 err = EILSEQ;
303 break;
305 err = __attach_file(ap, fo);
306 if (err == 0 || (err != EILSEQ && err != EINVAL))
307 break;
308 clearerr(fo);
309 if (fseek(fo, offs, SEEK_SET) == -1) {
310 err = EIO;
311 break;
313 if (ap->a_conv != AC_DEFAULT) {
314 err = EILSEQ;
315 break;
317 ap->a_charset = NULL;
319 charset_iter_restore(charset_iter_orig);
320 jleave:
321 NYD_LEAVE;
322 return err;
325 static int
326 __attach_file(struct attachment *ap, FILE *fo) /* XXX linelength */
328 int err = 0, do_iconv;
329 FILE *fi;
330 char const *charset;
331 enum conversion convert;
332 char *buf;
333 size_t bufsize, lncnt, inlen;
334 NYD_ENTER;
336 /* Either charset-converted temporary file, or plain path */
337 if (ap->a_conv == AC_TMPFILE) {
338 fi = ap->a_tmpf;
339 assert(ftell(fi) == 0);
340 } else if ((fi = Fopen(ap->a_name, "r")) == NULL) {
341 err = errno;
342 n_err(_("\"%s\": %s\n"), ap->a_name, strerror(errno));
343 goto jleave;
346 /* MIME part header for attachment */
347 { char const *bn = ap->a_name, *ct;
349 if ((ct = strrchr(bn, '/')) != NULL)
350 bn = ++ct;
351 ct = ap->a_content_type;
352 charset = ap->a_charset;
353 convert = mime_type_classify_file(fi, (char const**)&ct,
354 &charset, &do_iconv);
355 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
356 ap->a_conv == AC_TMPFILE)
357 do_iconv = 0;
359 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
360 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
361 _put_cd(fo, ap->a_content_disposition, bn) < 0)
362 goto jerr_header;
364 if ((bn = ap->a_content_id) != NULL &&
365 fprintf(fo, "Content-ID: %s\n", bn) == -1)
366 goto jerr_header;
368 if ((bn = ap->a_content_description) != NULL &&
369 fprintf(fo, "Content-Description: %s\n", bn) == -1) /* TODO MIME! */
370 goto jerr_header;
372 if (putc('\n', fo) == EOF) {
373 jerr_header:
374 err = errno;
375 goto jerr_fclose;
379 #ifdef HAVE_ICONV
380 if (iconvd != (iconv_t)-1)
381 n_iconv_close(iconvd);
382 if (do_iconv) {
383 char const *tcs = charset_get_lc();
384 if (asccasecmp(charset, tcs) &&
385 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
386 (err = errno) != 0) {
387 if (err == EINVAL)
388 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
389 else
390 n_err(_("iconv_open: %s\n"), strerror(err));
391 goto jerr_fclose;
394 #endif
396 bufsize = SEND_LINESIZE;
397 buf = smalloc(bufsize);
398 if (convert == CONV_TOQP
399 #ifdef HAVE_ICONV
400 || iconvd != (iconv_t)-1
401 #endif
403 lncnt = fsize(fi);
404 for (;;) {
405 if (convert == CONV_TOQP
406 #ifdef HAVE_ICONV
407 || iconvd != (iconv_t)-1
408 #endif
410 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
411 break;
412 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
413 break;
414 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
415 err = errno;
416 goto jerr;
419 if (ferror(fi))
420 err = EDOM;
421 jerr:
422 free(buf);
423 jerr_fclose:
424 if (ap->a_conv != AC_TMPFILE)
425 Fclose(fi);
426 jleave:
427 NYD_LEAVE;
428 return err;
431 static bool_t
432 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
434 bool_t v15, rv = FAL0;
435 char *shost, *from;
436 #ifdef HAVE_SMTP
437 char *smtp;
438 #endif
439 NYD_ENTER;
441 v15 = ok_blook(v15_compat);
442 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
443 from = ((signing_caps || !v15 || shost == NULL)
444 ? skin(myorigin(sbp->sb_hp)) : NULL);
446 if (signing_caps) {
447 if (from == NULL) {
448 #ifdef HAVE_SSL
449 n_err(_("No *from* address for signing specified\n"));
450 goto jleave;
451 #endif
452 } else
453 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
456 #ifdef HAVE_SMTP
457 if ((smtp = ok_vlook(smtp)) == NULL) {
458 rv = TRU1;
459 goto jleave;
462 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
463 goto jleave;
465 if (v15) {
466 if (shost == NULL) {
467 if (from == NULL)
468 goto jenofrom;
469 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
470 } else
471 __sendout_ident = sbp->sb_url.url_u_h.s;
472 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
473 goto jleave;
474 } else {
475 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
476 n_err(_("New-style URL used without *v15-compat* being set\n"));
477 goto jleave;
479 /* TODO part of the entire myorigin() disaster, get rid of this! */
480 if (from == NULL) {
481 jenofrom:
482 n_err(_("Your configuration requires a *from* address, "
483 "but none was given\n"));
484 goto jleave;
486 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
487 goto jleave;
488 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
491 rv = TRU1;
492 #endif /* HAVE_SMTP */
493 #if defined HAVE_SSL || defined HAVE_SMTP
494 jleave:
495 #endif
496 NYD_LEAVE;
497 return rv;
500 static int
501 attach_message(struct attachment *ap, FILE *fo)
503 struct message *mp;
504 char const *ccp;
505 int rv;
506 NYD_ENTER;
508 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
509 "Content-Disposition: inline\n", _sendout_boundary);
510 if ((ccp = ap->a_content_description) != NULL)
511 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
512 putc('\n', fo);
514 mp = message + ap->a_msgno - 1;
515 touch(mp);
516 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
517 NYD_LEAVE;
518 return rv;
521 static int
522 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
523 char const *contenttype, char const *charset)
525 struct attachment *att;
526 int rv = -1;
527 NYD_ENTER;
529 fputs("This is a multi-part message in MIME format.\n", fo);
530 if (fsize(fi) != 0) {
531 char *buf;
532 size_t sz, bufsize, cnt;
534 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
535 _put_ct(fo, contenttype, charset) < 0 ||
536 _put_cte(fo, convert) < 0 ||
537 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
538 goto jleave;
540 buf = smalloc(bufsize = SEND_LINESIZE);
541 if (convert == CONV_TOQP
542 #ifdef HAVE_ICONV
543 || iconvd != (iconv_t)-1
544 #endif
546 fflush(fi);
547 cnt = fsize(fi);
549 for (;;) {
550 if (convert == CONV_TOQP
551 #ifdef HAVE_ICONV
552 || iconvd != (iconv_t)-1
553 #endif
555 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
556 break;
557 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
558 break;
560 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
561 free(buf);
562 goto jleave;
565 free(buf);
567 if (ferror(fi))
568 goto jleave;
571 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
572 if (att->a_msgno) {
573 if (attach_message(att, fo) != 0)
574 goto jleave;
575 } else if (_attach_file(att, fo) != 0)
576 goto jleave;
579 /* the final boundary with two attached dashes */
580 fprintf(fo, "\n--%s--\n", _sendout_boundary);
581 rv = 0;
582 jleave:
583 NYD_LEAVE;
584 return rv;
587 static FILE *
588 infix(struct header *hp, FILE *fi) /* TODO check */
590 FILE *nfo, *nfi = NULL;
591 char *tempMail;
592 char const *contenttype, *charset = NULL;
593 enum conversion convert;
594 int do_iconv = 0, err;
595 #ifdef HAVE_ICONV
596 char const *tcs, *convhdr = NULL;
597 #endif
598 NYD_ENTER;
600 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
601 == NULL) {
602 n_perr(_("temporary mail file"), 0);
603 goto jleave;
605 if ((nfi = Fopen(tempMail, "r")) == NULL) {
606 n_perr(tempMail, 0);
607 Fclose(nfo);
609 Ftmp_release(&tempMail);
610 if (nfi == NULL)
611 goto jleave;
613 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
615 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
616 if((options & OPT_Mm_FLAG) && option_Mm_arg != NULL)
617 contenttype = option_Mm_arg;
618 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
620 #ifdef HAVE_ICONV
621 tcs = charset_get_lc();
622 if ((convhdr = need_hdrconv(hp))) {
623 if (iconvd != (iconv_t)-1) /* XXX */
624 n_iconv_close(iconvd);
625 if (asccasecmp(convhdr, tcs) != 0 &&
626 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
627 (err = errno) != 0)
628 goto jiconv_err;
630 #endif
631 if (puthead(FAL0, hp, nfo,
632 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
633 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
634 goto jerr;
635 #ifdef HAVE_ICONV
636 if (iconvd != (iconv_t)-1)
637 n_iconv_close(iconvd);
638 #endif
640 #ifdef HAVE_ICONV
641 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
642 if (asccasecmp(charset, tcs) != 0 &&
643 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
644 (err = errno) != 0) {
645 jiconv_err:
646 if (err == EINVAL)
647 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
648 else
649 n_perr("iconv_open", 0);
650 goto jerr;
653 #endif
655 if (hp->h_attach != NULL) {
656 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
657 goto jerr;
658 } else {
659 size_t sz, bufsize, cnt;
660 char *buf;
662 if (convert == CONV_TOQP
663 #ifdef HAVE_ICONV
664 || iconvd != (iconv_t)-1
665 #endif
667 fflush(fi);
668 cnt = fsize(fi);
670 buf = smalloc(bufsize = SEND_LINESIZE);
671 for (err = 0;;) {
672 if (convert == CONV_TOQP
673 #ifdef HAVE_ICONV
674 || iconvd != (iconv_t)-1
675 #endif
677 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
678 break;
679 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
680 break;
681 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
682 err = 1;
683 break;
686 free(buf);
688 if (err || ferror(fi)) {
689 jerr:
690 Fclose(nfo);
691 Fclose(nfi);
692 #ifdef HAVE_ICONV
693 if (iconvd != (iconv_t)-1)
694 n_iconv_close(iconvd);
695 #endif
696 nfi = NULL;
697 goto jleave;
701 #ifdef HAVE_ICONV
702 if (iconvd != (iconv_t)-1)
703 n_iconv_close(iconvd);
704 #endif
706 fflush(nfo);
707 if ((err = ferror(nfo)))
708 n_perr(_("temporary mail file"), 0);
709 Fclose(nfo);
710 if (!err) {
711 fflush_rewind(nfi);
712 Fclose(fi);
713 } else {
714 Fclose(nfi);
715 nfi = NULL;
717 jleave:
718 NYD_LEAVE;
719 return nfi;
722 static bool_t
723 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
725 char const *from;
726 bool_t rv = TRU1;
727 NYD_ENTER;
729 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
730 * TODO not yet checked */
731 if (!ok_blook(disposition_notification_send))
732 goto jleave;
734 if (mdn != NULL && mdn != (struct name*)0x1)
735 from = mdn->n_name;
736 else if ((from = myorigin(hp)) == NULL) {
737 if (options & OPT_D_V)
738 n_err(_("*disposition-notification-send*: no *from* set\n"));
739 goto jleave;
742 if (fmt("Disposition-Notification-To:", nalloc(UNCONST(from), 0), fo, 0))
743 rv = FAL0;
744 jleave:
745 NYD_LEAVE;
746 return rv;
749 static int
750 sendmail_internal(void *v, int recipient_record)
752 struct header head;
753 char *str = v;
754 int rv;
755 NYD_ENTER;
757 memset(&head, 0, sizeof head);
758 head.h_to = lextract(str, GTO | GFULL);
759 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
760 NYD_LEAVE;
761 return (rv == 0);
764 static struct name *
765 _outof(struct name *names, FILE *fo, bool_t *senderror)
767 ui32_t pipecnt, xcnt, i;
768 int *fda;
769 char const *sh;
770 struct name *np;
771 FILE *fin = NULL, *fout;
772 NYD_ENTER;
774 /* Look through all recipients and do a quick return if no file or pipe
775 * addressee is found */
776 fda = NULL; /* Silence cc */
777 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
778 if (np->n_type & GDEL)
779 continue;
780 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
781 case NAME_ADDRSPEC_ISFILE:
782 ++xcnt;
783 break;
784 case NAME_ADDRSPEC_ISPIPE:
785 ++pipecnt;
786 break;
789 if (pipecnt == 0 && xcnt == 0)
790 goto jleave;
792 /* Otherwise create an array of file descriptors for each found pipe
793 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
794 * each pipe subprocess needs its very own file descriptor, and we need
795 * to deal with that.
796 * To make our life a bit easier let's just use the auto-reclaimed
797 * string storage */
798 if (pipecnt == 0 || (options & OPT_DEBUG)) {
799 pipecnt = 0;
800 fda = NULL;
801 sh = NULL;
802 } else {
803 fda = salloc(sizeof(int) * pipecnt);
804 for (i = 0; i < pipecnt; ++i)
805 fda[i] = -1;
806 sh = ok_vlook(SHELL);
809 for (np = names; np != NULL; np = np->n_flink) {
810 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
811 continue;
813 /* In days of old we removed the entry from the the list; now for sake of
814 * header expansion we leave it in and mark it as deleted */
815 np->n_type |= GDEL;
817 if (options & OPT_DEBUG) {
818 n_err(_(">>> Would write message via \"%s\"\n"), np->n_name);
819 continue;
821 if (options & OPT_VERBVERB)
822 n_err(_(">>> Writing message via \"%s\"\n"), np->n_name);
824 /* See if we have copied the complete message out yet. If not, do so */
825 if (image < 0) {
826 int c;
827 char *tempEdit;
829 if ((fout = Ftmp(&tempEdit, "outof",
830 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
831 n_perr(_("Creation of temporary image"), 0);
832 *senderror = TRU1;
833 goto jcant;
835 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
836 _CLOEXEC_SET(image);
837 for (i = 0; i < pipecnt; ++i) {
838 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
839 if (fd < 0) {
840 close(image);
841 image = -1;
842 pipecnt = i;
843 break;
845 fda[i] = fd;
846 _CLOEXEC_SET(fd);
849 Ftmp_release(&tempEdit);
851 if (image < 0) {
852 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
853 *senderror = TRU1;
854 Fclose(fout);
855 goto jcant;
858 fprintf(fout, "From %s %s", myname, time_current.tc_ctime);
859 c = EOF;
860 while (i = c, (c = getc(fo)) != EOF)
861 putc(c, fout);
862 rewind(fo);
863 if ((int)i != '\n')
864 putc('\n', fout);
865 putc('\n', fout);
866 fflush(fout);
867 if (ferror(fout)) {
868 n_perr(_("Finalizing write of temporary image"), 0);
869 Fclose(fout);
870 goto jcantfout;
872 Fclose(fout);
874 /* If we have to serve file addressees, open reader */
875 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
876 n_perr(_("Failed to open a temporary image duplicate"), 0);
877 jcantfout:
878 *senderror = TRU1;
879 close(image);
880 image = -1;
881 goto jcant;
884 /* From now on use xcnt as a counter for pipecnt */
885 xcnt = 0;
888 /* Now either copy "image" to the desired file or give it as the standard
889 * input to the desired program as appropriate */
890 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
891 int pid;
892 sigset_t nset;
894 sigemptyset(&nset);
895 sigaddset(&nset, SIGHUP);
896 sigaddset(&nset, SIGINT);
897 sigaddset(&nset, SIGQUIT);
898 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
899 np->n_name + 1, NULL, NULL);
900 if (pid < 0) {
901 n_err(_("Piping message to \"%s\" failed\n"), np->n_name);
902 *senderror = TRU1;
903 goto jcant;
905 free_child(pid);
906 } else {
907 int c;
908 char *fname = file_expand(np->n_name);
910 if (fname == NULL) {
911 *senderror = TRU1;
912 goto jcant;
915 if ((fout = Zopen(fname, "a")) == NULL) {
916 n_err(_("Writing message to \"%s\" failed: %s\n"),
917 fname, strerror(errno));
918 *senderror = TRU1;
919 goto jcant;
921 rewind(fin);
922 while ((c = getc(fin)) != EOF)
923 putc(c, fout);
924 if (ferror(fout)) {
925 n_err(_("Writing message to \"%s\" failed: %s\n"),
926 fname, _("write error"));
927 *senderror = TRU1;
929 Fclose(fout);
932 jcant:
933 if (image < 0)
934 goto jdelall;
937 jleave:
938 if (fin != NULL)
939 Fclose(fin);
940 for (i = 0; i < pipecnt; ++i)
941 close(fda[i]);
942 if (image >= 0) {
943 close(image);
944 image = -1;
946 NYD_LEAVE;
947 return names;
949 jdelall:
950 while (np != NULL) {
951 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
952 np->n_type |= GDEL;
953 np = np->n_flink;
955 goto jleave;
958 static bool_t
959 mightrecord(FILE *fp, struct name *to)
961 char *cp, *cq;
962 char const *ep;
963 bool_t rv = TRU1;
964 NYD_ENTER;
966 if (options & OPT_DEBUG)
967 cp = NULL;
968 else if (to != NULL) {
969 cp = savestr(skinned_name(to));
970 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
972 *cq = '\0';
973 } else
974 cp = ok_vlook(record);
976 if (cp != NULL) {
977 if ((ep = expand(cp)) == NULL) {
978 ep = "NULL";
979 goto jbail;
982 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
983 which_protocol(ep) == PROTO_FILE) {
984 size_t i = strlen(cp);
985 cq = salloc(i + 1 +1);
986 cq[0] = '+';
987 memcpy(cq + 1, cp, i +1);
988 cp = cq;
989 if ((ep = file_expand(cp)) == NULL) {
990 ep = "NULL";
991 goto jbail;
995 if (__savemail(ep, fp) != 0) {
996 jbail:
997 n_err(_("Failed to save message in \"%s\" - message not sent\n"), ep);
998 exit_status |= EXIT_ERR;
999 savedeadletter(fp, 1);
1000 rv = FAL0;
1003 NYD_LEAVE;
1004 return rv;
1007 static int
1008 __savemail(char const *name, FILE *fp)
1010 FILE *fo;
1011 char *buf;
1012 size_t bufsize, buflen, cnt;
1013 int prependnl = 0, rv = -1;
1014 bool_t emptyline;
1015 NYD_ENTER;
1017 buf = smalloc(bufsize = LINESIZE);
1019 if ((fo = Zopen(name, "a+")) == NULL) {
1020 if ((fo = Zopen(name, "wx")) == NULL) {
1021 n_perr(name, 0);
1022 goto jleave;
1024 emptyline = TRU1;
1025 } else
1026 emptyline = FAL0;
1028 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1029 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1031 if (!emptyline) {
1032 if (fseek(fo, -2L, SEEK_END) == 0) {
1033 switch (fread(buf, sizeof *buf, 2, fo)) {
1034 case 2:
1035 if (buf[1] != '\n') {
1036 prependnl = 1;
1037 break;
1039 /* FALLTHRU */
1040 case 1:
1041 if (buf[0] != '\n')
1042 prependnl = 1;
1043 break;
1044 default:
1045 if (ferror(fo)) {
1046 n_perr(name, 0);
1047 goto jleave;
1050 if (prependnl) {
1051 putc('\n', fo);
1053 fflush(fo);
1057 fprintf(fo, "From %s %s", myname, time_current.tc_ctime);
1058 fflush_rewind(fp);
1059 cnt = fsize(fp);
1060 buflen = 0;
1061 emptyline = FAL0;
1062 while (fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL) {
1063 #ifdef HAVE_DEBUG /* TODO assert legacy */
1064 assert(!is_head(buf, buflen, TRU1));
1065 UNUSED(emptyline);
1066 #else
1067 if (emptyline && is_head(buf, buflen, TRU1))
1068 putc('>', fo);
1069 #endif
1070 emptyline = (buflen > 0 && *buf == '\n');
1071 fwrite(buf, sizeof *buf, buflen, fo);
1073 if (buflen && *(buf + buflen - 1) != '\n')
1074 putc('\n', fo);
1075 putc('\n', fo);
1076 fflush(fo);
1078 rv = 0;
1079 if (ferror(fo)) {
1080 n_perr(name, 0);
1081 rv = -1;
1083 if (Fclose(fo) != 0)
1084 rv = -1;
1085 fflush_rewind(fp);
1086 jleave:
1087 free(buf);
1088 NYD_LEAVE;
1089 return rv;
1092 static bool_t
1093 _transfer(struct sendbundle *sbp)
1095 struct name *np;
1096 ui32_t cnt;
1097 bool_t rv = TRU1;
1098 NYD_ENTER;
1100 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1101 char const k[] = "smime-encrypt-";
1102 size_t nl = strlen(np->n_name);
1103 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1104 memcpy(vs, k, sizeof(k) -1);
1105 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1107 if ((cp = vok_vlook(vs)) != NULL) {
1108 #ifdef HAVE_SSL
1109 FILE *ef;
1111 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1112 FILE *fisave = sbp->sb_input;
1113 struct name *nsave = sbp->sb_to;
1115 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1116 sbp->sb_input = ef;
1117 if (!__mta_start(sbp))
1118 rv = FAL0;
1119 sbp->sb_to = nsave;
1120 sbp->sb_input = fisave;
1122 Fclose(ef);
1123 } else {
1124 #else
1125 n_err(_("No SSL support compiled in\n"));
1126 rv = FAL0;
1127 #endif
1128 n_err(_("Message not sent to \"%s\"\n"), np->n_name);
1129 _sendout_error = TRU1;
1130 #ifdef HAVE_SSL
1132 #endif
1133 rewind(sbp->sb_input);
1135 if (np->n_flink != NULL)
1136 np->n_flink->n_blink = np->n_blink;
1137 if (np->n_blink != NULL)
1138 np->n_blink->n_flink = np->n_flink;
1139 if (np == sbp->sb_to)
1140 sbp->sb_to = np->n_flink;
1141 np = np->n_flink;
1142 } else {
1143 ++cnt;
1144 np = np->n_flink;
1146 ac_free(vs);
1149 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1150 rv = FAL0;
1151 NYD_LEAVE;
1152 return rv;
1155 static bool_t
1156 __mta_start(struct sendbundle *sbp)
1158 char const **args = NULL, *mta, *smtp;
1159 pid_t pid;
1160 sigset_t nset;
1161 bool_t rv = FAL0;
1162 NYD_ENTER;
1164 if ((smtp = ok_vlook(smtp)) == NULL) {
1165 char const *mta_base;
1167 if((mta = file_expand(mta_base = ok_vlook(sendmail))) == NULL){
1168 n_err(_("*sendmail* variable expansion failure: \"%s\""), mta_base);
1169 goto jstop;
1172 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1173 if (options & OPT_DEBUG) {
1174 __mta_debug(sbp, mta, args);
1175 rv = TRU1;
1176 goto jleave;
1178 } else {
1179 UNINIT(mta, NULL); /* Silence cc */
1180 #ifndef HAVE_SMTP
1181 n_err(_("No SMTP support compiled in\n"));
1182 goto jstop;
1183 #else
1184 if (options & OPT_DEBUG) {
1185 (void)smtp_mta(sbp);
1186 rv = TRU1;
1187 goto jleave;
1189 #endif
1192 /* Fork, set up the temporary mail file as standard input for "mail", and
1193 * exec with the user list we generated far above */
1194 if ((pid = fork_child()) == -1) {
1195 n_perr("fork", 0);
1196 jstop:
1197 savedeadletter(sbp->sb_input, 0);
1198 _sendout_error = TRU1;
1199 goto jleave;
1201 if (pid == 0) {
1202 sigemptyset(&nset);
1203 sigaddset(&nset, SIGHUP);
1204 sigaddset(&nset, SIGINT);
1205 sigaddset(&nset, SIGQUIT);
1206 sigaddset(&nset, SIGTSTP);
1207 sigaddset(&nset, SIGTTIN);
1208 sigaddset(&nset, SIGTTOU);
1209 freopen("/dev/null", "r", stdin);
1210 #ifdef HAVE_SMTP
1211 if (smtp != NULL) {
1212 prepare_child(&nset, 0, 1);
1213 if (smtp_mta(sbp))
1214 _exit(EXIT_OK);
1215 } else
1216 #endif
1218 int e;
1220 prepare_child(&nset, fileno(sbp->sb_input), -1);
1221 /* If *record* is set then savemail() will move the file position;
1222 * it'll call rewind(), but that may optimize away the systemcall if
1223 * possible, and since dup2() shares the position with the original FD
1224 * the MTA may end up reading nothing */
1225 lseek(0, 0, SEEK_SET);
1226 execv(mta, UNCONST(args));
1227 e = errno;
1228 smtp = (e != ENOENT) ? strerror(e)
1229 : _("executable not found (adjust *sendmail* variable)");
1230 n_err(_("Cannot start \"%s\": %s\n"), mta, smtp);
1232 savedeadletter(sbp->sb_input, 1);
1233 n_err(_("... message not sent\n"));
1234 _exit(EXIT_ERR);
1237 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1238 if (wait_child(pid, NULL))
1239 rv = TRU1;
1240 else
1241 _sendout_error = TRU1;
1242 } else {
1243 rv = TRU1;
1244 free_child(pid);
1246 jleave:
1247 NYD_LEAVE;
1248 return rv;
1251 static char const **
1252 __mta_prepare_args(struct name *to, struct header *hp)
1254 size_t vas_cnt, i, j;
1255 char **vas, *cp;
1256 char const **args;
1257 bool_t snda;
1258 NYD_ENTER;
1260 if ((cp = ok_vlook(sendmail_arguments)) == NULL) {
1261 vas_cnt = 0;
1262 vas = NULL;
1263 } else {
1264 /* Don't assume anything on the content but do allocate exactly j slots;
1265 * like this getrawlist will never overflow (and return -1) */
1266 j = strlen(cp);
1267 vas = ac_alloc(sizeof(*vas) * j);
1268 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1271 i = 4 + smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1272 args = salloc(i * sizeof(char*));
1274 args[0] = ok_vlook(sendmail_progname);
1276 if ((snda = ok_blook(sendmail_no_default_arguments)))
1277 i = 1;
1278 else {
1279 args[1] = "-i";
1280 i = 2;
1281 if (ok_blook(metoo))
1282 args[i++] = "-m";
1283 if (options & OPT_VERB)
1284 args[i++] = "-v";
1287 for (j = 0; j < smopts_cnt; ++j, ++i)
1288 args[i] = smopts[j];
1290 for (j = 0; j < vas_cnt; ++j, ++i)
1291 args[i] = vas[j];
1293 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1294 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1295 * The interdependency with -t has been resolved in puthead() */
1296 if (!snda && (options & OPT_r_FLAG)) {
1297 struct name const *np;
1299 if (hp != NULL && (np = hp->h_from) != NULL) {
1300 /* However, what wasn't resolved there was the case that the message
1301 * specified multiple From: addresses and a Sender: */
1302 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1303 np = hp->h_sender;
1305 if (np->n_fullextra != NULL) {
1306 args[i++] = "-F";
1307 args[i++] = np->n_fullextra;
1309 cp = np->n_name;
1310 } else {
1311 assert(option_r_arg == NULL);
1312 cp = skin(myorigin(NULL));
1315 if (cp != NULL) {
1316 args[i++] = "-f";
1317 args[i++] = cp;
1321 /* Terminate option list to avoid false interpretation of system-wide
1322 * aliases that start with hyphen */
1323 if (!snda)
1324 args[i++] = "--";
1326 /* Receivers follow */
1327 for (; to != NULL; to = to->n_flink)
1328 if (!(to->n_type & GDEL))
1329 args[i++] = to->n_name;
1330 args[i] = NULL;
1332 if (vas != NULL)
1333 ac_free(vas);
1334 NYD_LEAVE;
1335 return args;
1338 static void
1339 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1341 size_t cnt, bufsize, llen;
1342 char *buf;
1343 NYD_ENTER;
1345 n_err(_(">>> MTA: \"%s\", arguments:"), mta);
1346 for (; *args != NULL; ++args)
1347 n_err(" \"%s\"", *args);
1348 n_err("\n");
1350 fflush_rewind(sbp->sb_input);
1352 cnt = fsize(sbp->sb_input);
1353 buf = NULL;
1354 bufsize = 0;
1355 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1356 buf[--llen] = '\0';
1357 n_err(">>> %s\n", buf);
1359 if (buf != NULL)
1360 free(buf);
1361 NYD_LEAVE;
1364 static char *
1365 _message_id(struct header *hp)
1367 char *rv = NULL, sep;
1368 char const *h;
1369 size_t rl, i;
1370 struct tm *tmp;
1371 NYD_ENTER;
1373 if (hp != NULL && hp->h_message_id != NULL) {
1374 i = strlen(hp->h_message_id->n_name);
1375 rl = sizeof("Message-ID: <>") -1;
1376 rv = salloc(rl + i +1);
1377 memcpy(rv, "Message-ID: <", --rl);
1378 memcpy(rv + rl, hp->h_message_id->n_name, i);
1379 rl += i;
1380 rv[rl++] = '>';
1381 rv[rl] = '\0';
1382 goto jleave;
1385 if (ok_blook(message_id_disable))
1386 goto jleave;
1388 sep = '%';
1389 rl = 9;
1390 if ((h = __sendout_ident) != NULL)
1391 goto jgen;
1392 if (ok_vlook(hostname) != NULL) {
1393 h = nodename(1);
1394 sep = '@';
1395 rl = 15;
1396 goto jgen;
1398 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1399 goto jgen;
1400 /* Up to MTA */
1401 goto jleave;
1403 jgen:
1404 tmp = &time_current.tc_gm;
1405 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1406 rl + strlen(h);
1407 rv = salloc(i +1);
1408 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1409 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1410 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1411 getrandstring(rl), sep, h);
1412 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1413 jleave:
1414 NYD_LEAVE;
1415 return rv;
1418 static int
1419 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1421 enum {
1422 m_INIT = 1<<0,
1423 m_COMMA = 1<<1,
1424 m_NOPF = 1<<2,
1425 m_NONAME = 1<<3,
1426 m_CSEEN = 1<<4
1427 } m = (ff & GCOMMA) ? m_COMMA : 0;
1428 ssize_t col, len;
1429 int rv = 1;
1430 NYD_ENTER;
1432 col = strlen(str);
1433 if (col) {
1434 fwrite(str, sizeof *str, col, fo);
1435 #undef _X
1436 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1437 if (ff & GFILES) {
1439 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1440 _X("references:") || _X("disposition-notification-to:"))
1441 m |= m_NOPF | m_NONAME;
1442 else if (ok_blook(add_file_recipients)) {
1444 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1445 m |= m_NOPF;
1446 #undef _X
1449 for (; np != NULL; np = np->n_flink) {
1450 if (is_addr_invalid(np,
1451 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1452 continue;
1453 /* File and pipe addresses only printed with set *add-file-recipients* */
1454 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1455 continue;
1457 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1458 if (putc(',', fo) == EOF)
1459 goto jleave;
1460 m |= m_CSEEN;
1461 ++col;
1464 len = strlen(np->n_fullname);
1465 if (np->n_flags & GREF)
1466 len += 2;
1467 ++col; /* The separating space */
1468 if ((m & m_INIT) && /*col > 1 &&*/ UICMP(z, col + len, >, 72)) {
1469 if (fputs("\n ", fo) == EOF)
1470 goto jleave;
1471 col = 1;
1472 m &= ~m_CSEEN;
1473 } else
1474 putc(' ', fo);
1475 m = (m & ~m_CSEEN) | m_INIT;
1478 char *hb = np->n_fullname;
1479 /* GREF needs to be placed in angle brackets, but which are missing */
1480 if (np->n_type & GREF) {
1481 hb = ac_alloc(len + 2 +1);
1482 hb[0] = '<';
1483 hb[len + 1] = '>';
1484 hb[len + 2] = '\0';
1485 memcpy(hb + 1, np->n_fullname, len);
1486 len += 2;
1488 len = xmime_write(hb, len, fo,
1489 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1490 if (np->n_type & GREF)
1491 ac_free(hb);
1493 if (len < 0)
1494 goto jleave;
1495 col += len;
1498 if (putc('\n', fo) != EOF)
1499 rv = 0;
1500 jleave:
1501 NYD_LEAVE;
1502 return rv;
1505 static int
1506 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1507 int add_resent)
1509 size_t cnt, c, bufsize = 0;
1510 char *buf = NULL;
1511 char const *cp;
1512 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1513 int rv = 1;
1514 NYD_ENTER;
1516 cnt = mp->m_size;
1518 /* Write the Resent-Fields */
1519 if (add_resent) {
1520 fputs("Resent-", fo);
1521 mkdate(fo, "Date");
1522 if ((cp = myaddrs(NULL)) != NULL) {
1523 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1524 &fromfield, 0))
1525 goto jleave;
1527 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1528 if ((cp = ok_vlook(sender)) != NULL) {
1529 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1530 &senderfield, 0))
1531 goto jleave;
1533 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1534 goto jleave;
1535 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1536 (cp = _message_id(NULL)) != NULL)
1537 fprintf(fo, "Resent-%s\n", cp);
1540 if ((mdn = UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1541 goto jleave;
1542 if (!_check_dispo_notif(mdn, NULL, fo))
1543 goto jleave;
1545 /* Write the original headers */
1546 while (cnt > 0) {
1547 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1548 break;
1549 /* XXX more checks: The From_ line may be seen when resending */
1550 /* During headers is_head() is actually overkill, so ^From_ is sufficient
1551 * && !is_head(buf, c, TRU1) */
1552 if (ascncasecmp("status:", buf, 7) && strncmp("From ", buf, 5) &&
1553 ascncasecmp("disposition-notification-to:", buf, 28))
1554 fwrite(buf, sizeof *buf, c, fo);
1555 if (cnt > 0 && *buf == '\n')
1556 break;
1559 /* Write the message body */
1560 while (cnt > 0) {
1561 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1562 break;
1563 if (cnt == 0 && *buf == '\n')
1564 break;
1565 fwrite(buf, sizeof *buf, c, fo);
1567 if (buf != NULL)
1568 free(buf);
1569 if (ferror(fo)) {
1570 n_perr(_("temporary mail file"), 0);
1571 goto jleave;
1573 rv = 0;
1574 jleave:
1575 NYD_LEAVE;
1576 return rv;
1579 FL int
1580 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1581 struct attachment *attach, char *quotefile, int recipient_record)
1583 struct header head;
1584 struct str in, out;
1585 NYD_ENTER;
1587 memset(&head, 0, sizeof head);
1589 /* The given subject may be in RFC1522 format. */
1590 if (subject != NULL) {
1591 in.s = subject;
1592 in.l = strlen(subject);
1593 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1594 head.h_subject = out.s;
1596 head.h_to = to;
1597 head.h_cc = cc;
1598 head.h_bcc = bcc;
1599 head.h_attach = attach;
1601 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1603 if (subject != NULL)
1604 free(out.s);
1605 NYD_LEAVE;
1606 return 0;
1609 FL int
1610 c_sendmail(void *v)
1612 int rv;
1613 NYD_ENTER;
1615 rv = sendmail_internal(v, 0);
1616 NYD_LEAVE;
1617 return rv;
1620 FL int
1621 c_Sendmail(void *v)
1623 int rv;
1624 NYD_ENTER;
1626 rv = sendmail_internal(v, 1);
1627 NYD_LEAVE;
1628 return rv;
1631 FL enum okay
1632 mail1(struct header *hp, int printheaders, struct message *quote,
1633 char *quotefile, int recipient_record, int doprefix)
1635 struct sendbundle sb;
1636 struct name *to;
1637 FILE *mtf, *nmtf;
1638 bool_t dosign;
1639 enum okay rv = STOP;
1640 NYD_ENTER;
1642 _sendout_error = FAL0;
1643 __sendout_ident = NULL;
1645 /* Update some globals we likely need first */
1646 time_current_update(&time_current, TRU1);
1648 /* Collect user's mail from standard input. Get the result as mtf */
1649 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1650 if (mtf == NULL)
1651 goto j_leave;
1653 dosign = TRUM1;
1655 /* */
1656 if (options & OPT_INTERACTIVE) {
1657 if (ok_blook(asksign))
1658 dosign = getapproval(_("Sign this message"), TRU1);
1661 if (fsize(mtf) == 0) {
1662 if (options & OPT_E_FLAG)
1663 goto jleave;
1664 if (hp->h_subject == NULL)
1665 printf(_("No message, no subject; hope that's ok\n"));
1666 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1667 printf(_("Null message body; hope that's ok\n"));
1670 if (dosign == TRUM1)
1671 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1672 #ifndef HAVE_SSL
1673 if (dosign) {
1674 n_err(_("No SSL support compiled in\n"));
1675 goto jleave;
1677 #endif
1679 /* XXX Update time_current again; once collect() offers editing of more
1680 * XXX headers, including Date:, this must only happen if Date: is the
1681 * XXX same that it was before collect() (e.g., postponing etc.).
1682 * XXX But *do* update otherwise because the mail seems to be backdated
1683 * XXX if the user edited some time, which looks odd and it happened
1684 * XXX to me that i got mis-dated response mails due to that... */
1685 time_current_update(&time_current, TRU1);
1687 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1688 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1689 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1690 * TODO header fields ONCE, call that ONCE after user editing etc. has
1691 * TODO completed (one edit cycle) */
1693 /* Take the user names from the combined to and cc lists and do all the
1694 * alias processing. The POSIX standard says:
1695 * The names shall be substituted when alias is used as a recipient
1696 * address specified by the user in an outgoing message (that is,
1697 * other recipients addressed indirectly through the reply command
1698 * shall not be substituted in this manner).
1699 * S-nail thus violates POSIX, as has been pointed out correctly by
1700 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1701 * disputable anyway. Go for user friendliness */
1703 to = namelist_vaporise_head(hp,
1704 (EACM_NORMAL |
1705 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1706 TRU1, &_sendout_error);
1707 if (to == NULL) {
1708 n_err(_("No recipients specified\n"));
1709 goto jfail_dead;
1711 if (_sendout_error < 0) {
1712 n_err(_("Some addressees were classified as \"hard error\"\n"));
1713 goto jfail_dead;
1716 /* */
1717 memset(&sb, 0, sizeof sb);
1718 sb.sb_hp = hp;
1719 sb.sb_to = to;
1720 sb.sb_input = mtf;
1721 if ((dosign || count_nonlocal(to) > 0) &&
1722 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1723 /* TODO saving $DEAD and recovering etc is not yet well defined */
1724 goto jfail_dead;
1726 /* 'Bit ugly kind of control flow until we find a charset that does it */
1727 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1728 int err;
1730 if (!charset_iter_is_valid())
1732 else if ((nmtf = infix(hp, mtf)) != NULL)
1733 break;
1734 else if ((err = errno) == EILSEQ || err == EINVAL) {
1735 rewind(mtf);
1736 continue;
1739 n_perr(_("Failed to create encoded message"), 0);
1740 goto jfail_dead;
1742 mtf = nmtf;
1744 /* */
1745 #ifdef HAVE_SSL
1746 if (dosign) {
1747 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1748 goto jfail_dead;
1749 Fclose(mtf);
1750 mtf = nmtf;
1752 #endif
1754 /* TODO truly - i still don't get what follows: (1) we deliver file
1755 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1756 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1758 /* Deliver pipe and file addressees */
1759 to = _outof(to, mtf, &_sendout_error);
1760 if (_sendout_error)
1761 savedeadletter(mtf, FAL0);
1763 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1765 { ui32_t cnt = count(to);
1766 if ((!recipient_record || cnt > 0) &&
1767 !mightrecord(mtf, (recipient_record ? to : NULL)))
1768 goto jleave;
1769 if (cnt > 0) {
1770 sb.sb_hp = hp;
1771 sb.sb_to = to;
1772 sb.sb_input = mtf;
1773 if (_transfer(&sb))
1774 rv = OKAY;
1775 } else if (!_sendout_error)
1776 rv = OKAY;
1778 jleave:
1779 Fclose(mtf);
1780 j_leave:
1781 if (_sendout_error)
1782 exit_status |= EXIT_SEND_ERROR;
1783 NYD_LEAVE;
1784 return rv;
1786 jfail_dead:
1787 _sendout_error = TRU1;
1788 savedeadletter(mtf, TRU1);
1789 n_err(_("... message not sent\n"));
1790 goto jleave;
1793 FL int
1794 mkdate(FILE *fo, char const *field)
1796 struct tm tmpgm, *tmptr;
1797 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1798 NYD_ENTER;
1800 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1801 tzdiff = time_current.tc_time - mktime(&tmpgm);
1802 tzdiff_hour = (int)(tzdiff / 60);
1803 tzdiff_min = tzdiff_hour % 60;
1804 tzdiff_hour /= 60;
1805 tmptr = &time_current.tc_local;
1806 if (tmptr->tm_isdst > 0)
1807 ++tzdiff_hour;
1808 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1809 field,
1810 weekday_names[tmptr->tm_wday],
1811 tmptr->tm_mday, month_names[tmptr->tm_mon],
1812 tmptr->tm_year + 1900, tmptr->tm_hour,
1813 tmptr->tm_min, tmptr->tm_sec,
1814 tzdiff_hour * 100 + tzdiff_min);
1815 NYD_LEAVE;
1816 return rv;
1819 FL int
1820 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1821 enum sendaction action, enum conversion convert, char const *contenttype,
1822 char const *charset)
1824 #define FMT_CC_AND_BCC() \
1825 do {\
1826 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1827 if (fmt("Cc:", hp->h_cc, fo, ff))\
1828 goto jleave;\
1829 ++gotcha;\
1831 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1832 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1833 goto jleave;\
1834 ++gotcha;\
1836 } while (0)
1838 char const *addr;
1839 size_t gotcha;
1840 struct name *np, *fromasender = NULL;
1841 int stealthmua, rv = 1;
1842 bool_t nodisp;
1843 enum fmt_flags ff;
1844 NYD_ENTER;
1846 if ((addr = ok_vlook(stealthmua)) != NULL)
1847 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1848 else
1849 stealthmua = 0;
1850 gotcha = 0;
1851 nodisp = (action != SEND_TODISP);
1852 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1854 if (w & GDATE)
1855 mkdate(fo, "Date"), ++gotcha;
1856 if (w & GIDENT) {
1857 if (hp->h_from == NULL || hp->h_sender == NULL)
1858 setup_from_and_sender(hp);
1860 if (hp->h_from != NULL) {
1861 if (fmt("From:", hp->h_from, fo, ff))
1862 goto jleave;
1863 ++gotcha;
1866 if (hp->h_sender != NULL) {
1867 if (fmt("Sender:", hp->h_sender, fo, ff))
1868 goto jleave;
1869 ++gotcha;
1872 fromasender = UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1873 if (fromasender == NULL)
1874 goto jleave;
1875 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1878 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1879 if (fmt("To:", hp->h_to, fo, ff))
1880 goto jleave;
1881 ++gotcha;
1884 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1885 FMT_CC_AND_BCC();
1887 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1888 fwrite("Subject: ", sizeof(char), 9, fo);
1889 if (hp->h_subject != NULL) {
1890 char *sub = subject_re_trim(hp->h_subject);
1891 size_t sublen = strlen(sub);
1893 /* Trimmed something, (re-)add Re: */
1894 if (sub != hp->h_subject) {
1895 fwrite("Re: ", sizeof(char), 4, fo); /* RFC mandates eng. "Re: " */
1896 if (sublen > 0 &&
1897 xmime_write(sub, sublen, fo,
1898 (!nodisp ? CONV_NONE : CONV_TOHDR),
1899 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1900 goto jleave;
1902 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
1903 else if (*sub != '\0') {
1904 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
1905 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1906 goto jleave;
1909 ++gotcha;
1910 putc('\n', fo);
1913 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
1914 FMT_CC_AND_BCC();
1916 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
1917 fputs(addr, fo);
1918 putc('\n', fo);
1919 ++gotcha;
1922 if ((np = hp->h_ref) != NULL && (w & GREF)) {
1923 if (fmt("References:", np, fo, 0))
1924 goto jleave;
1925 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
1926 while (np->n_flink != NULL)
1927 np = np->n_flink;
1928 if (!is_addr_invalid(np, /* TODO check that on parser side! */
1929 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
1930 fprintf(fo, "In-Reply-To: <%s>\n",np->n_name);/*TODO RFC5322 3.6.4*/
1931 ++gotcha;
1932 } else {
1933 n_err(_("Invalid address in mail header: \"%s\"\n"), np->n_name);
1934 goto jleave;
1938 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
1939 fprintf(fo, "In-Reply-To: <%s>\n", np->n_name);/*TODO RFC 5322 3.6.4*/
1940 ++gotcha;
1943 if (w & GIDENT) {
1944 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
1945 * the list first.. TODO it is a terrible codebase.. */
1946 if ((np = hp->h_replyto) != NULL)
1947 np = namelist_dup(np, np->n_type);
1948 else if ((addr = ok_vlook(replyto)) != NULL)
1949 np = lextract(addr, GEXTRA | GFULL);
1950 if (np != NULL &&
1951 (np = elide(
1952 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
1953 NULL))) != NULL) {
1954 if (fmt("Reply-To:", np, fo, ff))
1955 goto jleave;
1956 ++gotcha;
1960 if ((w & GIDENT) && !nosend_msg) {
1961 /* Mail-Followup-To: TODO factor out this huge block of code */
1962 /* Place ourselfs in there if any non-subscribed list is an addressee */
1963 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
1964 ok_blook(followup_to)) {
1965 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
1967 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
1968 struct name *mft, *x;
1970 /* But for that, we have to remove all incarnations of ourselfs first.
1971 * TODO It is total crap that we have delete_alternates(), is_myname()
1972 * TODO or whatever; these work only with variables, not with data
1973 * TODO that is _currently_ in some header fields!!! v15.0: complete
1974 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
1975 * TODO then this should be a really cheap thing in here... */
1976 np = elide(delete_alternates(cat(
1977 namelist_dup(hp->h_to, GEXTRA | GFULL),
1978 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
1979 addr = hp->h_list_post;
1981 for (mft = NULL; (x = np) != NULL;) {
1982 si8_t ml;
1983 np = np->n_flink;
1985 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
1986 addr != NULL && !asccasecmp(addr, x->n_name))
1987 ml = MLIST_KNOWN;
1989 /* Any non-subscribed list? Add ourselves */
1990 switch (ml) {
1991 case MLIST_KNOWN:
1992 f |= HF_MFT_SENDER;
1993 /* FALLTHRU */
1994 case MLIST_SUBSCRIBED:
1995 f |= _ANYLIST;
1996 goto j_mft_add;
1997 case MLIST_OTHER:
1998 if (!(f & HF_LIST_REPLY)) {
1999 j_mft_add:
2000 if (!is_addr_invalid(x,
2001 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2002 x->n_flink = mft;
2003 mft = x;
2004 } /* XXX write some warning? if verbose?? */
2005 continue;
2007 /* And if this is a reply that honoured a MFT: header then we'll
2008 * also add all members of the original MFT: that are still
2009 * addressed by us, regardless of all other circumstances */
2010 else if (f & _HADMFT) {
2011 struct name *ox;
2012 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2013 if (!asccasecmp(ox->n_name, x->n_name))
2014 goto j_mft_add;
2016 break;
2020 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2021 if (((f & HF_MFT_SENDER) ||
2022 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2023 (np = fromasender) != NULL && np != (struct name*)0x1) {
2024 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2025 np->n_flink = mft;
2026 mft = np;
2029 if (fmt("Mail-Followup-To:", mft, fo, ff))
2030 goto jleave;
2031 ++gotcha;
2035 if (!_check_dispo_notif(fromasender, hp, fo))
2036 goto jleave;
2039 if ((w & GUA) && stealthmua == 0)
2040 fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)), ++gotcha;
2042 /* The user may have placed headers when editing */
2043 if(1){
2044 struct n_header_field *hfp;
2046 if((hfp = hp->h_user_headers) != NULL){
2047 if(!_sendout_header_list(fo, hfp, nodisp))
2048 goto jleave;
2049 ++gotcha;
2053 /* Custom headers, as via `customhdr' */
2054 if(!nosend_msg){
2055 struct n_header_field *hfp;
2057 /* With iconv support we likely have a cached result */
2058 if((hfp = hp->h_custom_headers) == NULL)
2059 hp->h_custom_headers = hfp = n_customhdr_query();
2060 if(hfp != NULL){
2061 if(!_sendout_header_list(fo, hfp, nodisp))
2062 goto jleave;
2063 ++gotcha;
2067 /* We don't need MIME unless.. we need MIME?! */
2068 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
2069 hp->h_attach != NULL ||
2070 ((options & OPT_Mm_FLAG) && option_Mm_arg != NULL) ||
2071 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2072 ++gotcha;
2073 fputs("MIME-Version: 1.0\n", fo);
2074 if (hp->h_attach != NULL) {
2075 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2076 fprintf(fo, "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2077 _sendout_boundary);
2078 } else {
2079 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2080 goto jleave;
2084 if (gotcha && (w & GNL))
2085 putc('\n', fo);
2086 rv = 0;
2087 jleave:
2088 NYD_LEAVE;
2089 return rv;
2090 #undef FMT_CC_AND_BCC
2093 FL enum okay
2094 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2096 struct sendbundle sb;
2097 FILE *ibuf, *nfo, *nfi;
2098 char *tempMail;
2099 enum okay rv = STOP;
2100 NYD_ENTER;
2102 _sendout_error = FAL0;
2103 __sendout_ident = NULL;
2105 /* Update some globals we likely need first */
2106 time_current_update(&time_current, TRU1);
2108 if ((to = checkaddrs(to,
2109 (EACM_NORMAL |
2110 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2111 &_sendout_error)) == NULL)
2112 goto jleave;
2113 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2114 if (_sendout_error < 0)
2115 n_err(_("Some addressees were classified as \"hard error\"\n"));
2117 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2118 == NULL) {
2119 _sendout_error = TRU1;
2120 n_perr(_("temporary mail file"), 0);
2121 goto jleave;
2123 if ((nfi = Fopen(tempMail, "r")) == NULL)
2124 n_perr(tempMail, 0);
2125 Ftmp_release(&tempMail);
2126 if (nfi == NULL)
2127 goto jerr_o;
2129 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2130 goto jerr_io;
2132 memset(&sb, 0, sizeof sb);
2133 sb.sb_to = to;
2134 sb.sb_input = nfi;
2135 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2136 /* ..wait until we can write DEAD */
2137 _sendout_error = -1;
2139 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2140 jfail_dead:
2141 savedeadletter(nfi, TRU1);
2142 n_err(_("... message not sent\n"));
2143 jerr_io:
2144 Fclose(nfi);
2145 jerr_o:
2146 Fclose(nfo);
2147 _sendout_error = TRU1;
2148 goto jleave;
2151 if (_sendout_error < 0)
2152 goto jfail_dead;
2154 Fclose(nfo);
2155 rewind(nfi);
2157 to = _outof(to, nfi, &_sendout_error);
2159 if (_sendout_error)
2160 savedeadletter(nfi, FAL0);
2162 if (count(to = elide(to)) != 0) {
2163 if (!ok_blook(record_resent) || mightrecord(nfi, NULL)) {
2164 sb.sb_to = to;
2165 /*sb.sb_input = nfi;*/
2166 if (_transfer(&sb))
2167 rv = OKAY;
2169 } else if (!_sendout_error)
2170 rv = OKAY;
2172 Fclose(nfi);
2173 jleave:
2174 if (_sendout_error)
2175 exit_status |= EXIT_SEND_ERROR;
2176 NYD_LEAVE;
2177 return rv;
2180 #undef SEND_LINESIZE
2182 /* s-it-mode */