THANKS: Salvatore Bonaccorso
[s-mailx.git] / sendout.c
blobf7f09ba241dc77e4a148a5cb33bd60009ab6ec01
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 /* Write an attachment to the file buffer, converting to MIME */
71 static int _attach_file(struct attachment *ap, FILE *fo);
72 static int __attach_file(struct attachment *ap, FILE *fo);
74 /* There are non-local receivers, collect credentials etc. */
75 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
76 bool_t signing_caps);
78 /* Put the signature file at fo. TODO layer rewrite: *integrate in body*!! */
79 static int put_signature(FILE *fo, int convert);
81 /* Attach a message to the file buffer */
82 static int attach_message(struct attachment *ap, FILE *fo);
84 /* Generate the body of a MIME multipart message */
85 static int make_multipart(struct header *hp, int convert, FILE *fi,
86 FILE *fo, char const *contenttype, char const *charset);
88 /* Prepend a header in front of the collected stuff and return the new file */
89 static FILE * infix(struct header *hp, FILE *fi);
91 /* Dump many many headers to fo; gen_message says wether this will generate the
92 * final message to be send TODO puthead() must be rewritten ASAP! */
93 static int _puthead(bool_t gen_message, struct header *hp, FILE *fo,
94 enum gfield w, enum sendaction action,
95 enum conversion convert, char const *contenttype,
96 char const *charset);
98 /* Check wether Disposition-Notification-To: is desired */
99 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
100 FILE *fo);
102 /* Send mail to a bunch of user names. The interface is through mail() */
103 static int sendmail_internal(void *v, int recipient_record);
105 /* Deal with file and pipe addressees */
106 static struct name * _outof(struct name *names, FILE *fo, bool_t *senderror);
108 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
109 static bool_t mightrecord(FILE *fp, struct name *to);
111 static int __savemail(char const *name, FILE *fp);
113 /* */
114 static bool_t _transfer(struct sendbundle *sbp);
116 static bool_t __mta_start(struct sendbundle *sbp);
117 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
118 static void __mta_debug(struct sendbundle *sbp, char const *mta,
119 char const **args);
121 /* Create a Message-Id: header field. Use either host name or from address */
122 static char * _message_id(struct header *hp);
124 /* Format the given header line to not exceed 72 characters */
125 static int fmt(char const *str, struct name *np, FILE *fo,
126 enum fmt_flags ff);
128 /* Rewrite a message for resending, adding the Resent-Headers */
129 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
130 struct name *to, int add_resent);
132 static enum okay
133 _putname(char const *line, enum gfield w, enum sendaction action,
134 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
135 enum gfield addflags)
137 struct name *np;
138 enum okay rv = STOP;
139 NYD_ENTER;
141 np = lextract(line, GEXTRA | GFULL | addflags);
142 if (xp != NULL)
143 *xp = np;
144 if (np == NULL)
146 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
147 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
148 rv = OKAY;
149 else if (gotcha != NULL)
150 ++(*gotcha);
151 NYD_LEAVE;
152 return rv;
155 static int
156 _put_ct(FILE *fo, char const *contenttype, char const *charset)
158 int rv, i;
159 NYD2_ENTER;
161 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
162 goto jerr;
164 if (charset == NULL)
165 goto jend;
167 if (putc(';', fo) == EOF)
168 goto jerr;
169 ++rv;
171 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
172 if (putc('\n', fo) == EOF)
173 goto jerr;
174 ++rv;
177 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
178 goto jerr;
179 rv += i;
181 jend:
182 if (putc('\n', fo) == EOF)
183 goto jerr;
184 ++rv;
185 jleave:
186 NYD2_LEAVE;
187 return rv;
188 jerr:
189 rv = -1;
190 goto jleave;
193 SINLINE int
194 _put_cte(FILE *fo, enum conversion conv)
196 int rv;
197 NYD2_ENTER;
199 /* RFC 2045, 6.1.:
200 * This is the default value -- that is,
201 * "Content-Transfer-Encoding: 7BIT" is assumed if the
202 * Content-Transfer-Encoding header field is not present.
204 rv = (conv == CONV_7BIT) ? 0
205 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
206 mime_enc_from_conversion(conv));
207 NYD2_LEAVE;
208 return rv;
211 static int
212 _put_cd(FILE *fo, char const *cd, char const *filename)
214 struct str f;
215 si8_t mpc;
216 int rv;
217 NYD2_ENTER;
219 f.s = NULL;
221 /* xxx Ugly with the trailing space in case of wrap! */
222 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
223 goto jerr;
225 if (!(mpc = mime_param_create(&f, "filename", filename)))
226 goto jerr;
227 /* Always fold if result contains newlines */
228 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
229 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
230 goto jerr;
231 rv += 2;
233 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
234 goto jerr;
235 rv += (int)++f.l;
237 jleave:
238 NYD2_LEAVE;
239 return rv;
240 jerr:
241 rv = -1;
242 goto jleave;
246 static int
247 _attach_file(struct attachment *ap, FILE *fo)
249 /* TODO of course, the MIME classification needs to performed once
250 * TODO only, not for each and every charset anew ... ;-// */
251 char *charset_iter_orig[2];
252 long offs;
253 int err = 0;
254 NYD_ENTER;
256 /* Is this already in target charset? Simply copy over */
257 if (ap->a_conv == AC_TMPFILE) {
258 err = __attach_file(ap, fo);
259 Fclose(ap->a_tmpf);
260 DBG( ap->a_tmpf = NULL; )
261 goto jleave;
264 /* If we don't apply charset conversion at all (fixed input=ouput charset)
265 * we also simply copy over, since it's the users desire */
266 if (ap->a_conv == AC_FIX_INCS) {
267 ap->a_charset = ap->a_input_charset;
268 err = __attach_file(ap, fo);
269 goto jleave;
272 /* Otherwise we need to iterate over all possible output charsets */
273 if ((offs = ftell(fo)) == -1) {
274 err = EIO;
275 goto jleave;
277 charset_iter_recurse(charset_iter_orig);
278 for (charset_iter_reset(NULL);; charset_iter_next()) {
279 if (!charset_iter_is_valid()) {
280 err = EILSEQ;
281 break;
283 err = __attach_file(ap, fo);
284 if (err == 0 || (err != EILSEQ && err != EINVAL))
285 break;
286 clearerr(fo);
287 if (fseek(fo, offs, SEEK_SET) == -1) {
288 err = EIO;
289 break;
291 if (ap->a_conv != AC_DEFAULT) {
292 err = EILSEQ;
293 break;
295 ap->a_charset = NULL;
297 charset_iter_restore(charset_iter_orig);
298 jleave:
299 NYD_LEAVE;
300 return err;
303 static int
304 __attach_file(struct attachment *ap, FILE *fo) /* XXX linelength */
306 int err = 0, do_iconv;
307 FILE *fi;
308 char const *charset;
309 enum conversion convert;
310 char *buf;
311 size_t bufsize, lncnt, inlen;
312 NYD_ENTER;
314 /* Either charset-converted temporary file, or plain path */
315 if (ap->a_conv == AC_TMPFILE) {
316 fi = ap->a_tmpf;
317 assert(ftell(fi) == 0);
318 } else if ((fi = Fopen(ap->a_name, "r")) == NULL) {
319 err = errno;
320 n_err(_("\"%s\": %s\n"), ap->a_name, strerror(errno));
321 goto jleave;
324 /* MIME part header for attachment */
325 { char const *bn = ap->a_name, *ct;
327 if ((ct = strrchr(bn, '/')) != NULL)
328 bn = ++ct;
329 ct = ap->a_content_type;
330 charset = ap->a_charset;
331 convert = mime_type_file_classify(fi, (char const**)&ct,
332 &charset, &do_iconv);
333 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
334 ap->a_conv == AC_TMPFILE)
335 do_iconv = 0;
337 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
338 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
339 _put_cd(fo, ap->a_content_disposition, bn) < 0)
340 goto jerr_header;
342 if ((bn = ap->a_content_id) != NULL &&
343 fprintf(fo, "Content-ID: %s\n", bn) == -1)
344 goto jerr_header;
346 if ((bn = ap->a_content_description) != NULL &&
347 fprintf(fo, "Content-Description: %s\n", bn) == -1) /* TODO MIME! */
348 goto jerr_header;
350 if (putc('\n', fo) == EOF) {
351 jerr_header:
352 err = errno;
353 goto jerr_fclose;
357 #ifdef HAVE_ICONV
358 if (iconvd != (iconv_t)-1)
359 n_iconv_close(iconvd);
360 if (do_iconv) {
361 char const *tcs = charset_get_lc();
362 if (asccasecmp(charset, tcs) &&
363 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
364 (err = errno) != 0) {
365 if (err == EINVAL)
366 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
367 else
368 n_err(_("iconv_open: %s\n"), strerror(err));
369 goto jerr_fclose;
372 #endif
374 bufsize = SEND_LINESIZE;
375 buf = smalloc(bufsize);
376 if (convert == CONV_TOQP
377 #ifdef HAVE_ICONV
378 || iconvd != (iconv_t)-1
379 #endif
381 lncnt = fsize(fi);
382 for (;;) {
383 if (convert == CONV_TOQP
384 #ifdef HAVE_ICONV
385 || iconvd != (iconv_t)-1
386 #endif
388 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
389 break;
390 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
391 break;
392 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
393 err = errno;
394 goto jerr;
397 if (ferror(fi))
398 err = EDOM;
399 jerr:
400 free(buf);
401 jerr_fclose:
402 if (ap->a_conv != AC_TMPFILE)
403 Fclose(fi);
404 jleave:
405 NYD_LEAVE;
406 return err;
409 static bool_t
410 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
412 bool_t v15, rv = FAL0;
413 char *shost, *from;
414 #ifdef HAVE_SMTP
415 char *smtp;
416 #endif
417 NYD_ENTER;
419 v15 = ok_blook(v15_compat);
420 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
421 from = ((signing_caps || !v15 || shost == NULL)
422 ? skin(myorigin(sbp->sb_hp)) : NULL);
424 if (signing_caps) {
425 if (from == NULL) {
426 #ifdef HAVE_SSL
427 n_err(_("No *from* address for signing specified\n"));
428 goto jleave;
429 #endif
430 } else
431 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
434 #ifdef HAVE_SMTP
435 if ((smtp = ok_vlook(smtp)) == NULL) {
436 rv = TRU1;
437 goto jleave;
440 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
441 goto jleave;
443 if (v15) {
444 if (shost == NULL) {
445 if (from == NULL)
446 goto jenofrom;
447 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
448 } else
449 __sendout_ident = sbp->sb_url.url_u_h.s;
450 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
451 goto jleave;
452 } else {
453 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
454 n_err(_("New-style URL used without *v15-compat* being set\n"));
455 goto jleave;
457 /* TODO part of the entire myorigin() disaster, get rid of this! */
458 if (from == NULL) {
459 jenofrom:
460 n_err(_("Your configuration requires a *from* address, "
461 "but none was given\n"));
462 goto jleave;
464 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
465 goto jleave;
466 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
469 rv = TRU1;
470 #endif /* HAVE_SMTP */
471 #if defined HAVE_SSL || defined HAVE_SMTP
472 jleave:
473 #endif
474 NYD_LEAVE;
475 return rv;
478 static int
479 put_signature(FILE *fo, int convert)
481 char buf[SEND_LINESIZE], *sig, c = '\n';
482 FILE *fsig;
483 size_t sz;
484 int rv;
485 NYD_ENTER;
487 if ((sig = ok_vlook(signature)) == NULL || *sig == '\0') {
488 rv = 0;
489 goto jleave;
491 rv = -1;
493 if ((sig = file_expand(sig)) == NULL)
494 goto jleave;
496 if ((fsig = Fopen(sig, "r")) == NULL) {
497 n_perr(sig, 0);
498 goto jleave;
500 while ((sz = fread(buf, sizeof *buf, SEND_LINESIZE, fsig)) != 0) {
501 c = buf[sz - 1];
502 if (xmime_write(buf, sz, fo, convert, TD_NONE) < 0)
503 goto jerr;
505 if (ferror(fsig)) {
506 jerr:
507 n_perr(sig, 0);
508 Fclose(fsig);
509 goto jleave;
511 Fclose(fsig);
512 if (c != '\n')
513 putc('\n', fo);
515 rv = 0;
516 jleave:
517 NYD_LEAVE;
518 return rv;
521 static int
522 attach_message(struct attachment *ap, FILE *fo)
524 struct message *mp;
525 char const *ccp;
526 int rv;
527 NYD_ENTER;
529 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
530 "Content-Disposition: inline\n", _sendout_boundary);
531 if ((ccp = ap->a_content_description) != NULL)
532 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
533 putc('\n', fo);
535 mp = message + ap->a_msgno - 1;
536 touch(mp);
537 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
538 NYD_LEAVE;
539 return rv;
542 static int
543 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
544 char const *contenttype, char const *charset)
546 struct attachment *att;
547 int rv = -1;
548 NYD_ENTER;
550 fputs("This is a multi-part message in MIME format.\n", fo);
551 if (fsize(fi) != 0) {
552 char *buf;
553 size_t sz, bufsize, cnt;
555 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
556 _put_ct(fo, contenttype, charset) < 0 ||
557 _put_cte(fo, convert) < 0 ||
558 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
559 goto jleave;
561 buf = smalloc(bufsize = SEND_LINESIZE);
562 if (convert == CONV_TOQP
563 #ifdef HAVE_ICONV
564 || iconvd != (iconv_t)-1
565 #endif
567 fflush(fi);
568 cnt = fsize(fi);
570 for (;;) {
571 if (convert == CONV_TOQP
572 #ifdef HAVE_ICONV
573 || iconvd != (iconv_t)-1
574 #endif
576 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
577 break;
578 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
579 break;
581 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
582 free(buf);
583 goto jleave;
586 free(buf);
588 if (ferror(fi))
589 goto jleave;
590 if (charset != NULL)
591 put_signature(fo, convert);
594 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
595 if (att->a_msgno) {
596 if (attach_message(att, fo) != 0)
597 goto jleave;
598 } else if (_attach_file(att, fo) != 0)
599 goto jleave;
602 /* the final boundary with two attached dashes */
603 fprintf(fo, "\n--%s--\n", _sendout_boundary);
604 rv = 0;
605 jleave:
606 NYD_LEAVE;
607 return rv;
610 static FILE *
611 infix(struct header *hp, FILE *fi) /* TODO check */
613 FILE *nfo, *nfi = NULL;
614 char *tempMail;
615 char const *contenttype, *charset = NULL;
616 enum conversion convert;
617 int do_iconv = 0, err;
618 #ifdef HAVE_ICONV
619 char const *tcs, *convhdr = NULL;
620 #endif
621 NYD_ENTER;
623 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER,
624 0600)) == NULL) {
625 n_perr(_("temporary mail file"), 0);
626 goto jleave;
628 if ((nfi = Fopen(tempMail, "r")) == NULL) {
629 n_perr(tempMail, 0);
630 Fclose(nfo);
632 Ftmp_release(&tempMail);
633 if (nfi == NULL)
634 goto jleave;
636 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
638 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
639 convert = mime_type_file_classify(fi, &contenttype, &charset, &do_iconv);
641 #ifdef HAVE_ICONV
642 tcs = charset_get_lc();
643 if ((convhdr = need_hdrconv(hp, GTO | GSUBJECT | GCC | GBCC | GIDENT))) {
644 if (iconvd != (iconv_t)-1) /* XXX */
645 n_iconv_close(iconvd);
646 if (asccasecmp(convhdr, tcs) != 0 &&
647 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
648 (err = errno) != 0)
649 goto jiconv_err;
651 #endif
652 if (_puthead(TRU1, hp, nfo,
653 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
654 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
655 goto jerr;
656 #ifdef HAVE_ICONV
657 if (iconvd != (iconv_t)-1)
658 n_iconv_close(iconvd);
659 #endif
661 #ifdef HAVE_ICONV
662 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_file_classify*/
663 if (asccasecmp(charset, tcs) != 0 &&
664 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
665 (err = errno) != 0) {
666 jiconv_err:
667 if (err == EINVAL)
668 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
669 else
670 n_perr("iconv_open", 0);
671 goto jerr;
674 #endif
676 if (hp->h_attach != NULL) {
677 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
678 goto jerr;
679 } else {
680 size_t sz, bufsize, cnt;
681 char *buf;
683 if (convert == CONV_TOQP
684 #ifdef HAVE_ICONV
685 || iconvd != (iconv_t)-1
686 #endif
688 fflush(fi);
689 cnt = fsize(fi);
691 buf = smalloc(bufsize = SEND_LINESIZE);
692 for (err = 0;;) {
693 if (convert == CONV_TOQP
694 #ifdef HAVE_ICONV
695 || iconvd != (iconv_t)-1
696 #endif
698 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
699 break;
700 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
701 break;
702 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
703 err = 1;
704 break;
707 free(buf);
709 if (err || ferror(fi)) {
710 jerr:
711 Fclose(nfo);
712 Fclose(nfi);
713 #ifdef HAVE_ICONV
714 if (iconvd != (iconv_t)-1)
715 n_iconv_close(iconvd);
716 #endif
717 nfi = NULL;
718 goto jleave;
720 if (charset != NULL)
721 put_signature(nfo, convert); /* XXX if (text/) !! */
724 #ifdef HAVE_ICONV
725 if (iconvd != (iconv_t)-1)
726 n_iconv_close(iconvd);
727 #endif
729 fflush(nfo);
730 if ((err = ferror(nfo)))
731 n_perr(_("temporary mail file"), 0);
732 Fclose(nfo);
733 if (!err) {
734 fflush_rewind(nfi);
735 Fclose(fi);
736 } else {
737 Fclose(nfi);
738 nfi = NULL;
740 jleave:
741 NYD_LEAVE;
742 return nfi;
745 static int
746 _puthead(bool_t gen_message, struct header *hp, FILE *fo, enum gfield w,
747 enum sendaction action, enum conversion convert, char const *contenttype,
748 char const *charset)
750 #define FMT_CC_AND_BCC() \
751 do {\
752 if (hp->h_cc != NULL && (w & GCC)) {\
753 if (fmt("Cc:", hp->h_cc, fo, ff))\
754 goto jleave;\
755 ++gotcha;\
757 if (hp->h_bcc != NULL && (w & GBCC)) {\
758 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
759 goto jleave;\
760 ++gotcha;\
762 } while (0)
764 char const *addr;
765 size_t gotcha, l;
766 struct name *np, *fromasender = NULL;
767 int stealthmua, rv = 1;
768 bool_t nodisp;
769 enum fmt_flags ff;
770 NYD_ENTER;
772 if ((addr = ok_vlook(stealthmua)) != NULL)
773 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
774 else
775 stealthmua = 0;
776 gotcha = 0;
777 nodisp = (action != SEND_TODISP);
778 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
780 if (w & GDATE)
781 mkdate(fo, "Date"), ++gotcha;
782 if (w & GIDENT) {
783 struct name *fromf = NULL, *senderf = NULL;
785 /* If -t parsed or composed From: then take it. With -t we otherwise
786 * want -r to be honoured in favour of *from* in order to have
787 * a behaviour that is compatible with what users would expect from e.g.
788 * postfix(1) */
789 if ((fromf = hp->h_from) != NULL ||
790 ((pstate & PS_t_FLAG) && (fromf = option_r_arg) != NULL)) {
791 if (fmt("From:", fromf, fo, ff))
792 goto jleave;
793 ++gotcha;
794 } else if ((addr = myaddrs(hp)) != NULL) {
795 if (_putname(addr, w, action, &gotcha, "From:", fo, &fromf,
796 GFULLEXTRA))
797 goto jleave;
798 ++gotcha;
800 hp->h_from = fromf;
802 if ((senderf = hp->h_sender) != NULL) {
803 if (fmt("Sender:", senderf, fo, ff))
804 goto jleave;
805 ++gotcha;
806 } else if ((addr = ok_vlook(sender)) != NULL) {
807 if (_putname(addr, w, action, &gotcha, "Sender:", fo, &senderf,
808 GFULLEXTRA))
809 goto jleave;
810 ++gotcha;
812 hp->h_sender = senderf;
814 if ((fromasender = UNCONST(check_from_and_sender(fromf,senderf))) == NULL)
815 goto jleave;
816 /* Note that fromasender is (NULL,) 0x1 or real sender here */
818 if (((addr = hp->h_organization) != NULL ||
819 (addr = ok_vlook(ORGANIZATION)) != NULL) &&
820 (l = strlen(addr)) > 0) {
821 fwrite("Organization: ", sizeof(char), 14, fo);
822 if (xmime_write(addr, l, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
823 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
824 goto jleave;
825 ++gotcha;
826 putc('\n', fo);
830 if (hp->h_to != NULL && w & GTO) {
831 if (fmt("To:", hp->h_to, fo, ff))
832 goto jleave;
833 ++gotcha;
836 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
837 FMT_CC_AND_BCC();
839 if (hp->h_subject != NULL && (w & GSUBJECT)) {
840 char *sub = subject_re_trim(hp->h_subject);
841 size_t sublen = strlen(sub);
843 fwrite("Subject: ", sizeof(char), 9, fo);
844 /* Trimmed something, (re-)add Re: */
845 if (sub != hp->h_subject) {
846 fwrite("Re: ", sizeof(char), 4, fo); /* RFC mandates english "Re: " */
847 if (sublen > 0 &&
848 xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
849 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
850 goto jleave;
852 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
853 else if (*sub != '\0') {
854 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
855 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
856 goto jleave;
858 ++gotcha;
859 putc('\n', fo);
862 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
863 FMT_CC_AND_BCC();
865 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
866 fputs(addr, fo);
867 putc('\n', fo);
868 ++gotcha;
871 if ((np = hp->h_ref) != NULL && (w & GREF)) {
872 if (fmt("References:", np, fo, 0))
873 goto jleave;
874 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
875 while (np->n_flink != NULL)
876 np = np->n_flink;
877 if (!is_addr_invalid(np, /* TODO check that on parser side! */
878 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
879 fprintf(fo, "In-Reply-To: <%s>\n", np->n_name);/*TODO RFC 5322 3.6.4*/
880 ++gotcha;
881 } else {
882 n_err(_("Invalid address in mail header: \"%s\"\n"), np->n_name);
883 goto jleave;
887 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
888 fprintf(fo, "In-Reply-To: <%s>\n", np->n_name);/*TODO RFC 5322 3.6.4*/
889 ++gotcha;
892 if (w & GIDENT) {
893 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
894 * the list first.. TODO it is a terrible codebase.. */
895 if ((np = hp->h_replyto) != NULL)
896 np = namelist_dup(np, np->n_type);
897 else if ((addr = ok_vlook(replyto)) != NULL)
898 np = lextract(addr, GEXTRA | GFULL);
899 if (np != NULL &&
900 (np = elide(
901 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
902 NULL))) != NULL) {
903 if (fmt("Reply-To:", np, fo, ff))
904 goto jleave;
905 ++gotcha;
909 if ((w & GIDENT) && gen_message) {
910 /* Mail-Followup-To: TODO factor out this huge block of code */
911 /* Place ourselfs in there if any non-subscribed list is an addressee */
912 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
913 ok_blook(followup_to)) {
914 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
916 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
917 struct name *mft, *x;
919 /* But for that, we have to remove all incarnations of ourselfs first.
920 * TODO It is total crap that we have delete_alternates(), is_myname()
921 * TODO or whatever; these work only with variables, not with data
922 * TODO that is _currently_ in some header fields!!! v15.0: complete
923 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
924 * TODO then this should be a really cheap thing in here... */
925 np = elide(delete_alternates(cat(
926 namelist_dup(hp->h_to, GEXTRA | GFULL),
927 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
928 addr = hp->h_list_post;
930 for (mft = NULL; (x = np) != NULL;) {
931 si8_t ml;
932 np = np->n_flink;
934 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
935 addr != NULL && !asccasecmp(addr, x->n_name))
936 ml = MLIST_KNOWN;
938 /* Any non-subscribed list? Add ourselves */
939 switch (ml) {
940 case MLIST_KNOWN:
941 f |= HF_MFT_SENDER;
942 /* FALLTHRU */
943 case MLIST_SUBSCRIBED:
944 f |= _ANYLIST;
945 goto j_mft_add;
946 case MLIST_OTHER:
947 if (!(f & HF_LIST_REPLY)) {
948 j_mft_add:
949 if (!is_addr_invalid(x,
950 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
951 x->n_flink = mft;
952 mft = x;
953 } /* XXX write some warning? if verbose?? */
954 continue;
956 /* And if this is a reply that honoured a MFT: header then we'll
957 * also add all members of the original MFT: that are still
958 * addressed by us, regardless of all other circumstances */
959 else if (f & _HADMFT) {
960 struct name *ox;
961 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
962 if (!asccasecmp(ox->n_name, x->n_name))
963 goto j_mft_add;
965 break;
969 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
970 if (((f & HF_MFT_SENDER) ||
971 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
972 (np = fromasender) != NULL && np != (struct name*)0x1) {
973 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
974 np->n_flink = mft;
975 mft = np;
978 if (fmt("Mail-Followup-To:", mft, fo, ff))
979 goto jleave;
980 ++gotcha;
984 if (!_check_dispo_notif(fromasender, hp, fo))
985 goto jleave;
988 if ((w & GUA) && stealthmua == 0)
989 fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)), ++gotcha;
991 /* We don't need MIME unless.. we need MIME?! */
992 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
993 hp->h_attach != NULL || convert != CONV_7BIT ||
994 asccasecmp(charset, "US-ASCII"))) {
995 ++gotcha;
996 fputs("MIME-Version: 1.0\n", fo);
997 if (hp->h_attach != NULL) {
998 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
999 fprintf(fo, "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
1000 _sendout_boundary);
1001 } else {
1002 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
1003 goto jleave;
1007 if (gotcha && (w & GNL))
1008 putc('\n', fo);
1009 rv = 0;
1010 jleave:
1011 NYD_LEAVE;
1012 return rv;
1013 #undef FMT_CC_AND_BCC
1016 static bool_t
1017 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
1019 char const *from;
1020 bool_t rv = TRU1;
1021 NYD_ENTER;
1023 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
1024 * TODO not yet checked */
1025 if (!ok_blook(disposition_notification_send))
1026 goto jleave;
1028 if (mdn != NULL && mdn != (struct name*)0x1)
1029 from = mdn->n_name;
1030 else if ((from = myorigin(hp)) == NULL) {
1031 if (options & OPT_D_V)
1032 n_err(_("*disposition-notification-send*: no *from* set\n"));
1033 goto jleave;
1036 if (fmt("Disposition-Notification-To:", nalloc(UNCONST(from), 0), fo, 0))
1037 rv = FAL0;
1038 jleave:
1039 NYD_LEAVE;
1040 return rv;
1043 static int
1044 sendmail_internal(void *v, int recipient_record)
1046 struct header head;
1047 char *str = v;
1048 int rv;
1049 NYD_ENTER;
1051 memset(&head, 0, sizeof head);
1052 head.h_to = lextract(str, GTO | GFULL);
1053 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
1054 NYD_LEAVE;
1055 return (rv == 0);
1058 static struct name *
1059 _outof(struct name *names, FILE *fo, bool_t *senderror)
1061 ui32_t pipecnt, xcnt, i;
1062 int *fda;
1063 char const *sh;
1064 struct name *np;
1065 FILE *fin = NULL, *fout;
1066 NYD_ENTER;
1068 /* Look through all recipients and do a quick return if no file or pipe
1069 * addressee is found */
1070 fda = NULL; /* Silence cc */
1071 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
1072 if (np->n_type & GDEL)
1073 continue;
1074 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
1075 case NAME_ADDRSPEC_ISFILE:
1076 ++xcnt;
1077 break;
1078 case NAME_ADDRSPEC_ISPIPE:
1079 ++pipecnt;
1080 break;
1083 if (pipecnt == 0 && xcnt == 0)
1084 goto jleave;
1086 /* Otherwise create an array of file descriptors for each found pipe
1087 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
1088 * each pipe subprocess needs its very own file descriptor, and we need
1089 * to deal with that.
1090 * To make our life a bit easier let's just use the auto-reclaimed
1091 * string storage */
1092 if (pipecnt == 0 || (options & OPT_DEBUG)) {
1093 pipecnt = 0;
1094 fda = NULL;
1095 sh = NULL;
1096 } else {
1097 fda = salloc(sizeof(int) * pipecnt);
1098 for (i = 0; i < pipecnt; ++i)
1099 fda[i] = -1;
1100 if ((sh = ok_vlook(SHELL)) == NULL)
1101 sh = XSHELL;
1104 for (np = names; np != NULL; np = np->n_flink) {
1105 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
1106 continue;
1108 /* In days of old we removed the entry from the the list; now for sake of
1109 * header expansion we leave it in and mark it as deleted */
1110 np->n_type |= GDEL;
1112 if (options & OPT_DEBUG) {
1113 n_err(_(">>> Would write message via \"%s\"\n"), np->n_name);
1114 continue;
1116 if (options & OPT_VERBVERB)
1117 n_err(_(">>> Writing message via \"%s\"\n"), np->n_name);
1119 /* See if we have copied the complete message out yet. If not, do so */
1120 if (image < 0) {
1121 int c;
1122 char *tempEdit;
1124 if ((fout = Ftmp(&tempEdit, "outof",
1125 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER, 0600)) == NULL) {
1126 n_perr(_("Creation of temporary image"), 0);
1127 *senderror = TRU1;
1128 goto jcant;
1130 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
1131 _CLOEXEC_SET(image);
1132 for (i = 0; i < pipecnt; ++i) {
1133 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
1134 if (fd < 0) {
1135 close(image);
1136 image = -1;
1137 pipecnt = i;
1138 break;
1140 fda[i] = fd;
1141 _CLOEXEC_SET(fd);
1144 Ftmp_release(&tempEdit);
1146 if (image < 0) {
1147 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
1148 *senderror = TRU1;
1149 Fclose(fout);
1150 goto jcant;
1153 fprintf(fout, "From %s %s", myname, time_current.tc_ctime);
1154 c = EOF;
1155 while (i = c, (c = getc(fo)) != EOF)
1156 putc(c, fout);
1157 rewind(fo);
1158 if ((int)i != '\n')
1159 putc('\n', fout);
1160 putc('\n', fout);
1161 fflush(fout);
1162 if (ferror(fout)) {
1163 n_perr(_("Finalizing write of temporary image"), 0);
1164 Fclose(fout);
1165 goto jcantfout;
1167 Fclose(fout);
1169 /* If we have to serve file addressees, open reader */
1170 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
1171 n_perr(_("Failed to open a temporary image duplicate"), 0);
1172 jcantfout:
1173 *senderror = TRU1;
1174 close(image);
1175 image = -1;
1176 goto jcant;
1179 /* From now on use xcnt as a counter for pipecnt */
1180 xcnt = 0;
1183 /* Now either copy "image" to the desired file or give it as the standard
1184 * input to the desired program as appropriate */
1185 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
1186 int pid;
1187 sigset_t nset;
1189 sigemptyset(&nset);
1190 sigaddset(&nset, SIGHUP);
1191 sigaddset(&nset, SIGINT);
1192 sigaddset(&nset, SIGQUIT);
1193 pid = start_command(sh, &nset, fda[xcnt++], -1, "-c",
1194 np->n_name + 1, NULL, NULL);
1195 if (pid < 0) {
1196 n_err(_("Piping message to \"%s\" failed\n"), np->n_name);
1197 *senderror = TRU1;
1198 goto jcant;
1200 free_child(pid);
1201 } else {
1202 int c;
1203 char *fname = file_expand(np->n_name);
1205 if (fname == NULL) {
1206 *senderror = TRU1;
1207 goto jcant;
1210 if ((fout = Zopen(fname, "a")) == NULL) {
1211 n_err(_("Writing message to \"%s\" failed: %s\n"),
1212 fname, strerror(errno));
1213 *senderror = TRU1;
1214 goto jcant;
1216 rewind(fin);
1217 while ((c = getc(fin)) != EOF)
1218 putc(c, fout);
1219 if (ferror(fout)) {
1220 n_err(_("Writing message to \"%s\" failed: %s\n"),
1221 fname, _("write error"));
1222 *senderror = TRU1;
1224 Fclose(fout);
1227 jcant:
1228 if (image < 0)
1229 goto jdelall;
1232 jleave:
1233 if (fin != NULL)
1234 Fclose(fin);
1235 for (i = 0; i < pipecnt; ++i)
1236 close(fda[i]);
1237 if (image >= 0) {
1238 close(image);
1239 image = -1;
1241 NYD_LEAVE;
1242 return names;
1244 jdelall:
1245 while (np != NULL) {
1246 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
1247 np->n_type |= GDEL;
1248 np = np->n_flink;
1250 goto jleave;
1253 static bool_t
1254 mightrecord(FILE *fp, struct name *to)
1256 char *cp, *cq;
1257 char const *ep;
1258 bool_t rv = TRU1;
1259 NYD_ENTER;
1261 if (options & OPT_DEBUG)
1262 cp = NULL;
1263 else if (to != NULL) {
1264 cp = savestr(skinned_name(to));
1265 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
1267 *cq = '\0';
1268 } else
1269 cp = ok_vlook(record);
1271 if (cp != NULL) {
1272 if ((ep = expand(cp)) == NULL) {
1273 ep = "NULL";
1274 goto jbail;
1277 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
1278 which_protocol(ep) == PROTO_FILE) {
1279 size_t i = strlen(cp);
1280 cq = salloc(i + 1 +1);
1281 cq[0] = '+';
1282 memcpy(cq + 1, cp, i +1);
1283 cp = cq;
1284 if ((ep = file_expand(cp)) == NULL) {
1285 ep = "NULL";
1286 goto jbail;
1290 if (__savemail(ep, fp) != 0) {
1291 jbail:
1292 n_err(_("Failed to save message in \"%s\" - message not sent\n"), ep);
1293 exit_status |= EXIT_ERR;
1294 savedeadletter(fp, 1);
1295 rv = FAL0;
1298 NYD_LEAVE;
1299 return rv;
1302 static int
1303 __savemail(char const *name, FILE *fp)
1305 FILE *fo;
1306 char *buf;
1307 size_t bufsize, buflen, cnt;
1308 int prependnl = 0, rv = -1;
1309 bool_t emptyline;
1310 NYD_ENTER;
1312 buf = smalloc(bufsize = LINESIZE);
1314 if ((fo = Zopen(name, "a+")) == NULL) {
1315 if ((fo = Zopen(name, "wx")) == NULL) {
1316 n_perr(name, 0);
1317 goto jleave;
1319 } else {
1320 if (fseek(fo, -2L, SEEK_END) == 0) {
1321 switch (fread(buf, sizeof *buf, 2, fo)) {
1322 case 2:
1323 if (buf[1] != '\n') {
1324 prependnl = 1;
1325 break;
1327 /* FALLTHRU */
1328 case 1:
1329 if (buf[0] != '\n')
1330 prependnl = 1;
1331 break;
1332 default:
1333 if (ferror(fo)) {
1334 n_perr(name, 0);
1335 goto jleave;
1338 if (prependnl) {
1339 putc('\n', fo);
1341 fflush(fo);
1345 fprintf(fo, "From %s %s", myname, time_current.tc_ctime);
1346 fflush_rewind(fp);
1347 cnt = fsize(fp);
1348 buflen = 0;
1349 emptyline = FAL0;
1350 while (fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL) {
1351 #ifdef HAVE_DEBUG /* TODO assert legacy */
1352 assert(!is_head(buf, buflen, TRU1));
1353 UNUSED(emptyline);
1354 #else
1355 if (emptyline && is_head(buf, buflen, TRU1))
1356 putc('>', fo);
1357 #endif
1358 emptyline = (buflen > 0 && *buf == '\n');
1359 fwrite(buf, sizeof *buf, buflen, fo);
1361 if (buflen && *(buf + buflen - 1) != '\n')
1362 putc('\n', fo);
1363 putc('\n', fo);
1364 fflush(fo);
1366 rv = 0;
1367 if (ferror(fo)) {
1368 n_perr(name, 0);
1369 rv = -1;
1371 if (Fclose(fo) != 0)
1372 rv = -1;
1373 fflush_rewind(fp);
1374 jleave:
1375 free(buf);
1376 NYD_LEAVE;
1377 return rv;
1380 static bool_t
1381 _transfer(struct sendbundle *sbp)
1383 struct name *np;
1384 ui32_t cnt;
1385 bool_t rv = TRU1;
1386 NYD_ENTER;
1388 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1389 char const k[] = "smime-encrypt-";
1390 size_t nl = strlen(np->n_name);
1391 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1392 memcpy(vs, k, sizeof(k) -1);
1393 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1395 if ((cp = vok_vlook(vs)) != NULL) {
1396 #ifdef HAVE_SSL
1397 FILE *ef;
1399 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1400 FILE *fisave = sbp->sb_input;
1401 struct name *nsave = sbp->sb_to;
1403 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1404 sbp->sb_input = ef;
1405 if (!__mta_start(sbp))
1406 rv = FAL0;
1407 sbp->sb_to = nsave;
1408 sbp->sb_input = fisave;
1410 Fclose(ef);
1411 } else {
1412 #else
1413 n_err(_("No SSL support compiled in\n"));
1414 rv = FAL0;
1415 #endif
1416 n_err(_("Message not sent to \"%s\"\n"), np->n_name);
1417 _sendout_error = TRU1;
1418 #ifdef HAVE_SSL
1420 #endif
1421 rewind(sbp->sb_input);
1423 if (np->n_flink != NULL)
1424 np->n_flink->n_blink = np->n_blink;
1425 if (np->n_blink != NULL)
1426 np->n_blink->n_flink = np->n_flink;
1427 if (np == sbp->sb_to)
1428 sbp->sb_to = np->n_flink;
1429 np = np->n_flink;
1430 } else {
1431 ++cnt;
1432 np = np->n_flink;
1434 ac_free(vs);
1437 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1438 rv = FAL0;
1439 NYD_LEAVE;
1440 return rv;
1443 static bool_t
1444 __mta_start(struct sendbundle *sbp)
1446 char const **args = NULL, *mta, *smtp;
1447 pid_t pid;
1448 sigset_t nset;
1449 bool_t rv = FAL0;
1450 NYD_ENTER;
1452 if ((smtp = ok_vlook(smtp)) == NULL) {
1453 if ((mta = ok_vlook(sendmail)) != NULL) {
1454 if ((mta = file_expand(mta)) == NULL)
1455 goto jstop;
1456 } else
1457 mta = SENDMAIL;
1459 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1460 if (options & OPT_DEBUG) {
1461 __mta_debug(sbp, mta, args);
1462 rv = TRU1;
1463 goto jleave;
1465 } else {
1466 UNINIT(mta, NULL); /* Silence cc */
1467 #ifndef HAVE_SMTP
1468 n_err(_("No SMTP support compiled in\n"));
1469 goto jstop;
1470 #else
1471 if (options & OPT_DEBUG) {
1472 (void)smtp_mta(sbp);
1473 rv = TRU1;
1474 goto jleave;
1476 #endif
1479 /* Fork, set up the temporary mail file as standard input for "mail", and
1480 * exec with the user list we generated far above */
1481 if ((pid = fork_child()) == -1) {
1482 n_perr("fork", 0);
1483 jstop:
1484 savedeadletter(sbp->sb_input, 0);
1485 _sendout_error = TRU1;
1486 goto jleave;
1488 if (pid == 0) {
1489 sigemptyset(&nset);
1490 sigaddset(&nset, SIGHUP);
1491 sigaddset(&nset, SIGINT);
1492 sigaddset(&nset, SIGQUIT);
1493 sigaddset(&nset, SIGTSTP);
1494 sigaddset(&nset, SIGTTIN);
1495 sigaddset(&nset, SIGTTOU);
1496 freopen("/dev/null", "r", stdin);
1497 #ifdef HAVE_SMTP
1498 if (smtp != NULL) {
1499 prepare_child(&nset, 0, 1);
1500 if (smtp_mta(sbp))
1501 _exit(EXIT_OK);
1502 } else
1503 #endif
1505 int e;
1507 prepare_child(&nset, fileno(sbp->sb_input), -1);
1508 /* If *record* is set then savemail() will move the file position;
1509 * it'll call rewind(), but that may optimize away the systemcall if
1510 * possible, and since dup2() shares the position with the original FD
1511 * the MTA may end up reading nothing */
1512 lseek(0, 0, SEEK_SET);
1513 execv(mta, UNCONST(args));
1514 e = errno;
1515 smtp = (e != ENOENT) ? strerror(e)
1516 : _("executable not found (adjust *sendmail* variable)");
1517 n_err(_("Cannot start \"%s\": %s\n"), mta, smtp);
1519 savedeadletter(sbp->sb_input, 1);
1520 n_err(_("... message not sent\n"));
1521 _exit(EXIT_ERR);
1524 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1525 if (wait_child(pid, NULL))
1526 rv = TRU1;
1527 else
1528 _sendout_error = TRU1;
1529 } else {
1530 rv = TRU1;
1531 free_child(pid);
1533 jleave:
1534 NYD_LEAVE;
1535 return rv;
1538 static char const **
1539 __mta_prepare_args(struct name *to, struct header *hp)
1541 size_t vas_count, i, j;
1542 char **vas, *cp;
1543 char const **args;
1544 bool_t snda;
1545 NYD_ENTER;
1547 if ((cp = ok_vlook(sendmail_arguments)) == NULL) {
1548 vas_count = 0;
1549 vas = NULL;
1550 } else {
1551 /* Don't assume anything on the content but do allocate exactly j slots */
1552 j = strlen(cp);
1553 vas = ac_alloc(sizeof(*vas) * j);
1554 vas_count = (size_t)getrawlist(cp, j, vas, (int)j, FAL0);
1557 i = 4 + smopts_count + vas_count + 4 + 1 + count(to) + 1;
1558 args = salloc(i * sizeof(char*));
1560 if ((args[0] = ok_vlook(sendmail_progname)) == NULL || *args[0] == '\0')
1561 args[0] = SENDMAIL_PROGNAME;
1563 if ((snda = ok_blook(sendmail_no_default_arguments)))
1564 i = 1;
1565 else {
1566 args[1] = "-i";
1567 i = 2;
1568 if (ok_blook(metoo))
1569 args[i++] = "-m";
1570 if (options & OPT_VERB)
1571 args[i++] = "-v";
1574 for (j = 0; j < smopts_count; ++j, ++i)
1575 args[i] = smopts[j];
1577 for (j = 0; j < vas_count; ++j, ++i)
1578 args[i] = vas[j];
1580 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1581 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1582 * The interdependency with -t has been resolved in _puthead() */
1583 if (!snda && (options & OPT_r_FLAG)) {
1584 struct name const *np;
1586 if (hp != NULL && (np = hp->h_from) != NULL) {
1587 /* However, what wasn't resolved there was the case that the message
1588 * specified multiple From: addresses and a Sender: */
1589 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1590 np = hp->h_sender;
1592 if (np->n_fullextra != NULL) {
1593 args[i++] = "-F";
1594 args[i++] = np->n_fullextra;
1596 cp = np->n_name;
1597 } else {
1598 assert(option_r_arg == NULL);
1599 cp = skin(myorigin(NULL));
1602 if (cp != NULL) {
1603 args[i++] = "-f";
1604 args[i++] = cp;
1608 /* Terminate option list to avoid false interpretation of system-wide
1609 * aliases that start with hyphen */
1610 args[i++] = "--";
1612 /* Receivers follow */
1613 for (; to != NULL; to = to->n_flink)
1614 if (!(to->n_type & GDEL))
1615 args[i++] = to->n_name;
1616 args[i] = NULL;
1618 if (vas != NULL)
1619 ac_free(vas);
1620 NYD_LEAVE;
1621 return args;
1624 static void
1625 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1627 size_t cnt, bufsize;
1628 char *buf;
1629 NYD_ENTER;
1631 n_err(_(">>> MTA: \"%s\", arguments:"), mta);
1632 for (; *args != NULL; ++args)
1633 n_err(" \"%s\"", *args);
1634 n_err("\n");
1636 fflush_rewind(sbp->sb_input);
1638 cnt = fsize(sbp->sb_input);
1639 buf = NULL;
1640 bufsize = 0;
1641 while (fgetline(&buf, &bufsize, &cnt, NULL, sbp->sb_input, 1) != NULL)
1642 n_err(">>> %s", buf);
1643 if (buf != NULL)
1644 free(buf);
1645 NYD_LEAVE;
1648 static char *
1649 _message_id(struct header *hp)
1651 char *rv = NULL, sep;
1652 char const *h;
1653 size_t rl, i;
1654 struct tm *tmp;
1655 NYD_ENTER;
1657 if (hp != NULL && hp->h_message_id != NULL) {
1658 i = strlen(hp->h_message_id->n_name);
1659 rl = sizeof("Message-ID: <>") -1;
1660 rv = salloc(rl + i +1);
1661 memcpy(rv, "Message-ID: <", --rl);
1662 memcpy(rv + rl, hp->h_message_id->n_name, i);
1663 rl += i;
1664 rv[rl++] = '>';
1665 rv[rl] = '\0';
1666 goto jleave;
1669 if (ok_blook(message_id_disable))
1670 goto jleave;
1672 sep = '%';
1673 rl = 9;
1674 if ((h = __sendout_ident) != NULL)
1675 goto jgen;
1676 if (ok_vlook(hostname) != NULL) {
1677 h = nodename(1);
1678 sep = '@';
1679 rl = 15;
1680 goto jgen;
1682 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1683 goto jgen;
1684 /* Up to MTA */
1685 goto jleave;
1687 jgen:
1688 tmp = &time_current.tc_gm;
1689 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1690 rl + strlen(h);
1691 rv = salloc(i +1);
1692 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1693 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1694 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1695 getrandstring(rl), sep, h);
1696 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1697 jleave:
1698 NYD_LEAVE;
1699 return rv;
1702 static int
1703 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1705 enum {
1706 m_INIT = 1<<0,
1707 m_COMMA = 1<<1,
1708 m_NOPF = 1<<2,
1709 m_NONAME = 1<<3,
1710 m_CSEEN = 1<<4
1711 } m = (ff & GCOMMA) ? m_COMMA : 0;
1712 ssize_t col, len;
1713 int rv = 1;
1714 NYD_ENTER;
1716 col = strlen(str);
1717 if (col) {
1718 fwrite(str, sizeof *str, col, fo);
1719 #undef _X
1720 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1721 if (ff & GFILES) {
1723 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1724 _X("references:") || _X("disposition-notification-to:"))
1725 m |= m_NOPF | m_NONAME;
1726 else if (ok_blook(add_file_recipients)) {
1728 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1729 m |= m_NOPF;
1730 #undef _X
1733 for (; np != NULL; np = np->n_flink) {
1734 if (is_addr_invalid(np,
1735 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1736 continue;
1737 /* File and pipe addresses only printed with set *add-file-recipients* */
1738 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1739 continue;
1741 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1742 if (putc(',', fo) == EOF)
1743 goto jleave;
1744 m |= m_CSEEN;
1745 ++col;
1748 len = strlen(np->n_fullname);
1749 if (np->n_flags & GREF)
1750 len += 2;
1751 ++col; /* The separating space */
1752 if ((m & m_INIT) && /*col > 1 &&*/ UICMP(z, col + len, >, 72)) {
1753 if (fputs("\n ", fo) == EOF)
1754 goto jleave;
1755 col = 1;
1756 m &= ~m_CSEEN;
1757 } else
1758 putc(' ', fo);
1759 m = (m & ~m_CSEEN) | m_INIT;
1762 char *hb = np->n_fullname;
1763 /* GREF needs to be placed in angle brackets, but which are missing */
1764 if (np->n_type & GREF) {
1765 hb = ac_alloc(len + 2 +1);
1766 hb[0] = '<';
1767 hb[len + 1] = '>';
1768 hb[len + 2] = '\0';
1769 memcpy(hb + 1, np->n_fullname, len);
1770 len += 2;
1772 len = xmime_write(hb, len, fo,
1773 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1774 if (np->n_type & GREF)
1775 ac_free(hb);
1777 if (len < 0)
1778 goto jleave;
1779 col += len;
1782 if (putc('\n', fo) != EOF)
1783 rv = 0;
1784 jleave:
1785 NYD_LEAVE;
1786 return rv;
1789 static int
1790 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1791 int add_resent)
1793 size_t cnt, c, bufsize = 0;
1794 char *buf = NULL;
1795 char const *cp;
1796 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1797 int rv = 1;
1798 NYD_ENTER;
1800 cnt = mp->m_size;
1802 /* Write the Resent-Fields */
1803 if (add_resent) {
1804 fputs("Resent-", fo);
1805 mkdate(fo, "Date");
1806 if ((cp = myaddrs(NULL)) != NULL) {
1807 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1808 &fromfield, 0))
1809 goto jleave;
1811 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1812 if ((cp = ok_vlook(sender)) != NULL) {
1813 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1814 &senderfield, 0))
1815 goto jleave;
1817 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1818 goto jleave;
1819 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1820 (cp = _message_id(NULL)) != NULL)
1821 fprintf(fo, "Resent-%s\n", cp);
1824 if ((mdn = UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1825 goto jleave;
1826 if (!_check_dispo_notif(mdn, NULL, fo))
1827 goto jleave;
1829 /* Write the original headers */
1830 while (cnt > 0) {
1831 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1832 break;
1833 /* XXX more checks: The From_ line may be seen when resending */
1834 /* During headers is_head() is actually overkill, so ^From_ is sufficient
1835 * && !is_head(buf, c, TRU1) */
1836 if (ascncasecmp("status:", buf, 7) && strncmp("From ", buf, 5) &&
1837 ascncasecmp("disposition-notification-to:", buf, 28))
1838 fwrite(buf, sizeof *buf, c, fo);
1839 if (cnt > 0 && *buf == '\n')
1840 break;
1843 /* Write the message body */
1844 while (cnt > 0) {
1845 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1846 break;
1847 if (cnt == 0 && *buf == '\n')
1848 break;
1849 fwrite(buf, sizeof *buf, c, fo);
1851 if (buf != NULL)
1852 free(buf);
1853 if (ferror(fo)) {
1854 n_perr(_("temporary mail file"), 0);
1855 goto jleave;
1857 rv = 0;
1858 jleave:
1859 NYD_LEAVE;
1860 return rv;
1863 FL int
1864 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1865 struct attachment *attach, char *quotefile, int recipient_record)
1867 struct header head;
1868 struct str in, out;
1869 NYD_ENTER;
1871 memset(&head, 0, sizeof head);
1873 /* The given subject may be in RFC1522 format. */
1874 if (subject != NULL) {
1875 in.s = subject;
1876 in.l = strlen(subject);
1877 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1878 head.h_subject = out.s;
1880 head.h_to = to;
1881 head.h_cc = cc;
1882 head.h_bcc = bcc;
1883 head.h_attach = attach;
1885 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1887 if (subject != NULL)
1888 free(out.s);
1889 NYD_LEAVE;
1890 return 0;
1893 FL int
1894 c_sendmail(void *v)
1896 int rv;
1897 NYD_ENTER;
1899 rv = sendmail_internal(v, 0);
1900 NYD_LEAVE;
1901 return rv;
1904 FL int
1905 c_Sendmail(void *v)
1907 int rv;
1908 NYD_ENTER;
1910 rv = sendmail_internal(v, 1);
1911 NYD_LEAVE;
1912 return rv;
1915 FL enum okay
1916 mail1(struct header *hp, int printheaders, struct message *quote,
1917 char *quotefile, int recipient_record, int doprefix)
1919 struct sendbundle sb;
1920 struct name *to;
1921 FILE *mtf, *nmtf;
1922 char const *cp;
1923 bool_t dosign;
1924 enum okay rv = STOP;
1925 NYD_ENTER;
1927 _sendout_error = FAL0;
1928 __sendout_ident = NULL;
1930 /* Update some globals we likely need first */
1931 time_current_update(&time_current, TRU1);
1933 /* */
1934 if ((cp = ok_vlook(autocc)) != NULL && *cp != '\0')
1935 hp->h_cc = cat(hp->h_cc, checkaddrs(lextract(cp, GCC | GFULL),
1936 EACM_NORMAL, &_sendout_error));
1937 if ((cp = ok_vlook(autobcc)) != NULL && *cp != '\0')
1938 hp->h_bcc = cat(hp->h_bcc, checkaddrs(lextract(cp, GBCC | GFULL),
1939 EACM_NORMAL, &_sendout_error));
1941 if (_sendout_error < 0) {
1942 n_err(_("Some addressees in *autocc* or *autobcc* were "
1943 "classified as \"hard error\"\n"));
1944 goto j_leave;
1947 /* Collect user's mail from standard input. Get the result as mtf */
1948 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1949 if (mtf == NULL)
1950 goto j_leave;
1952 dosign = TRUM1;
1954 if (options & OPT_INTERACTIVE) {
1955 bool_t eot = TRU1;
1957 if ((eot = (ok_blook(bsdcompat) || ok_blook(askatend)))) {
1958 if (hp->h_cc == NULL && ok_blook(askcc))
1959 eot = FAL0, grab_headers(hp, GCC, 1);
1960 if (hp->h_bcc == NULL && ok_blook(askbcc))
1961 eot = FAL0, grab_headers(hp, GBCC, 1);
1964 if (hp->h_attach == NULL && ok_blook(askattach))
1965 eot = FAL0, edit_attachments(&hp->h_attach);
1967 if (ok_blook(asksign))
1968 eot = FAL0, dosign = getapproval(_("Sign this message (y/n)? "), TRU1);
1970 if (eot) {
1971 printf(_("EOT\n"));
1972 fflush(stdout);
1976 if (fsize(mtf) == 0) {
1977 if (options & OPT_E_FLAG)
1978 goto jleave;
1979 if (hp->h_subject == NULL)
1980 printf(_("No message, no subject; hope that's ok\n"));
1981 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1982 printf(_("Null message body; hope that's ok\n"));
1985 if (dosign == TRUM1)
1986 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1987 #ifndef HAVE_SSL
1988 if (dosign) {
1989 n_err(_("No SSL support compiled in\n"));
1990 goto jleave;
1992 #endif
1994 /* XXX Update time_current again; once collect() offers editing of more
1995 * XXX headers, including Date:, this must only happen if Date: is the
1996 * XXX same that it was before collect() (e.g., postponing etc.).
1997 * XXX But *do* update otherwise because the mail seems to be backdated
1998 * XXX if the user edited some time, which looks odd and it happened
1999 * XXX to me that i got mis-dated response mails due to that... */
2000 time_current_update(&time_current, TRU1);
2002 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
2003 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
2004 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
2005 * TODO header fields ONCE, call that ONCE after user editing etc. has
2006 * TODO completed (one edit cycle) */
2008 /* Take the user names from the combined to and cc lists and do all the
2009 * alias processing. The POSIX standard says:
2010 * The names shall be substituted when alias is used as a recipient
2011 * address specified by the user in an outgoing message (that is,
2012 * other recipients addressed indirectly through the reply command
2013 * shall not be substituted in this manner).
2014 * S-nail thus violates POSIX, as has been pointed out correctly by
2015 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
2016 * disputable anyway. Go for user friendliness */
2018 to = namelist_vaporise_head(hp,
2019 (EACM_NORMAL |
2020 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2021 TRU1, &_sendout_error);
2022 if (to == NULL) {
2023 n_err(_("No recipients specified\n"));
2024 goto jfail_dead;
2026 if (_sendout_error < 0) {
2027 n_err(_("Some addressees were classified as \"hard error\"\n"));
2028 goto jfail_dead;
2031 /* */
2032 memset(&sb, 0, sizeof sb);
2033 sb.sb_hp = hp;
2034 sb.sb_to = to;
2035 sb.sb_input = mtf;
2036 if ((dosign || count_nonlocal(to) > 0) &&
2037 !_sendbundle_setup_creds(&sb, (dosign > 0)))
2038 /* TODO saving $DEAD and recovering etc is not yet well defined */
2039 goto jfail_dead;
2041 /* 'Bit ugly kind of control flow until we find a charset that does it */
2042 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
2043 int err;
2045 if (!charset_iter_is_valid())
2047 else if ((nmtf = infix(hp, mtf)) != NULL)
2048 break;
2049 else if ((err = errno) == EILSEQ || err == EINVAL) {
2050 rewind(mtf);
2051 continue;
2054 n_perr(_("Failed to create encoded message"), 0);
2055 goto jfail_dead;
2057 mtf = nmtf;
2059 /* */
2060 #ifdef HAVE_SSL
2061 if (dosign) {
2062 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
2063 goto jfail_dead;
2064 Fclose(mtf);
2065 mtf = nmtf;
2067 #endif
2069 /* TODO truly - i still don't get what follows: (1) we deliver file
2070 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
2071 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
2073 /* Deliver pipe and file addressees */
2074 to = _outof(to, mtf, &_sendout_error);
2075 if (_sendout_error)
2076 savedeadletter(mtf, FAL0);
2078 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
2080 { ui32_t cnt = count(to);
2081 if ((!recipient_record || cnt > 0) &&
2082 !mightrecord(mtf, (recipient_record ? to : NULL)))
2083 goto jleave;
2084 if (cnt > 0) {
2085 sb.sb_hp = hp;
2086 sb.sb_to = to;
2087 sb.sb_input = mtf;
2088 if (_transfer(&sb))
2089 rv = OKAY;
2090 } else if (!_sendout_error)
2091 rv = OKAY;
2093 jleave:
2094 Fclose(mtf);
2095 j_leave:
2096 if (_sendout_error)
2097 exit_status |= EXIT_SEND_ERROR;
2098 NYD_LEAVE;
2099 return rv;
2101 jfail_dead:
2102 _sendout_error = TRU1;
2103 savedeadletter(mtf, TRU1);
2104 n_err(_("... message not sent\n"));
2105 goto jleave;
2108 FL int
2109 mkdate(FILE *fo, char const *field)
2111 struct tm tmpgm, *tmptr;
2112 int tzdiff, tzdiff_hour, tzdiff_min, rv;
2113 NYD_ENTER;
2115 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
2116 tzdiff = time_current.tc_time - mktime(&tmpgm);
2117 tzdiff_hour = (int)(tzdiff / 60);
2118 tzdiff_min = tzdiff_hour % 60;
2119 tzdiff_hour /= 60;
2120 tmptr = &time_current.tc_local;
2121 if (tmptr->tm_isdst > 0)
2122 ++tzdiff_hour;
2123 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
2124 field,
2125 weekday_names[tmptr->tm_wday],
2126 tmptr->tm_mday, month_names[tmptr->tm_mon],
2127 tmptr->tm_year + 1900, tmptr->tm_hour,
2128 tmptr->tm_min, tmptr->tm_sec,
2129 tzdiff_hour * 100 + tzdiff_min);
2130 NYD_LEAVE;
2131 return rv;
2134 FL int
2135 puthead(struct header *hp, FILE *fo, enum gfield w, enum sendaction action,
2136 enum conversion convert, char const *contenttype, char const *charset)
2138 int rv;
2139 NYD_ENTER;
2141 rv = _puthead(FAL0, hp, fo, w, action, convert, contenttype, charset);
2142 NYD_LEAVE;
2143 return rv;
2146 FL enum okay
2147 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2149 struct sendbundle sb;
2150 FILE *ibuf, *nfo, *nfi;
2151 char *tempMail;
2152 enum okay rv = STOP;
2153 NYD_ENTER;
2155 _sendout_error = FAL0;
2156 __sendout_ident = NULL;
2158 /* Update some globals we likely need first */
2159 time_current_update(&time_current, TRU1);
2161 if ((to = checkaddrs(to,
2162 (EACM_NORMAL |
2163 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2164 &_sendout_error)) == NULL)
2165 goto jleave;
2166 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2167 if (_sendout_error < 0)
2168 n_err(_("Some addressees were classified as \"hard error\"\n"));
2170 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER,
2171 0600)) == NULL) {
2172 _sendout_error = TRU1;
2173 n_perr(_("temporary mail file"), 0);
2174 goto jleave;
2176 if ((nfi = Fopen(tempMail, "r")) == NULL)
2177 n_perr(tempMail, 0);
2178 Ftmp_release(&tempMail);
2179 if (nfi == NULL)
2180 goto jerr_o;
2182 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2183 goto jerr_io;
2185 memset(&sb, 0, sizeof sb);
2186 sb.sb_to = to;
2187 sb.sb_input = nfi;
2188 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2189 /* ..wait until we can write DEAD */
2190 _sendout_error = -1;
2192 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2193 jfail_dead:
2194 savedeadletter(nfi, TRU1);
2195 n_err(_("... message not sent\n"));
2196 jerr_io:
2197 Fclose(nfi);
2198 jerr_o:
2199 Fclose(nfo);
2200 _sendout_error = TRU1;
2201 goto jleave;
2204 if (_sendout_error < 0)
2205 goto jfail_dead;
2207 Fclose(nfo);
2208 rewind(nfi);
2210 to = _outof(to, nfi, &_sendout_error);
2212 if (_sendout_error)
2213 savedeadletter(nfi, FAL0);
2215 if (count(to = elide(to)) != 0) {
2216 if (!ok_blook(record_resent) || mightrecord(nfi, NULL)) {
2217 sb.sb_to = to;
2218 /*sb.sb_input = nfi;*/
2219 if (_transfer(&sb))
2220 rv = OKAY;
2222 } else if (!_sendout_error)
2223 rv = OKAY;
2225 Fclose(nfi);
2226 jleave:
2227 if (_sendout_error)
2228 exit_status |= EXIT_SEND_ERROR;
2229 NYD_LEAVE;
2230 return rv;
2233 #undef SEND_LINESIZE
2235 /* s-it-mode */