Rudely fix the RFC 5322 dot-atom, the "Dr. Problem" (Dr. Werner Fink)
[s-mailx.git] / sendout.c
blobb0ee42d5c31b358481b4d93c24cd6fad8f523e2c
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Message sending lifecycle, header composing, etc.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
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 n_CTA(!(_FMT_GMASK & FMT_DOMIME),
53 "Code-required condition not satisfied but actual bit carrier value");
55 static char const *__sendout_ident; /* TODO temporary hack; rewrite puthead() */
56 static char * _sendout_boundary;
57 static si8_t _sendout_error;
59 /* */
60 static enum okay _putname(char const *line, enum gfield w,
61 enum sendaction action, size_t *gotcha,
62 char const *prefix, FILE *fo, struct name **xp,
63 enum gfield addflags);
65 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
66 * headers, respectively */
67 static int _put_ct(FILE *fo, char const *contenttype,
68 char const *charset);
69 SINLINE int _put_cte(FILE *fo, enum conversion conv);
70 static int _put_cd(FILE *fo, char const *cd, char const *filename);
72 /* Put all entries of the given header list */
73 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
74 bool_t nodisp);
76 /* Write an attachment to the file buffer, converting to MIME */
77 static int _attach_file(struct attachment *ap, FILE *fo);
78 static int __attach_file(struct attachment *ap, FILE *fo);
80 /* There are non-local receivers, collect credentials etc. */
81 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
82 bool_t signing_caps);
84 /* Attach a message to the file buffer */
85 static int attach_message(struct attachment *ap, FILE *fo);
87 /* Generate the body of a MIME multipart message */
88 static int make_multipart(struct header *hp, int convert, FILE *fi,
89 FILE *fo, char const *contenttype, char const *charset);
91 /* Prepend a header in front of the collected stuff and return the new file */
92 static FILE * infix(struct header *hp, FILE *fi);
94 /* Check whether Disposition-Notification-To: is desired */
95 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
96 FILE *fo);
98 /* Send mail to a bunch of user names. The interface is through mail() */
99 static int sendmail_internal(void *v, int recipient_record);
101 /* Deal with file and pipe addressees */
102 static struct name * _outof(struct name *names, FILE *fo, bool_t *senderror);
104 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
105 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
107 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
109 /* */
110 static bool_t _transfer(struct sendbundle *sbp);
112 static bool_t __mta_start(struct sendbundle *sbp);
113 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
114 static void __mta_debug(struct sendbundle *sbp, char const *mta,
115 char const **args);
117 /* Create a Message-ID: header field. Use either host name or from address */
118 static char * _message_id(struct header *hp);
120 /* Format the given header line to not exceed 72 characters */
121 static int fmt(char const *str, struct name *np, FILE *fo,
122 enum fmt_flags ff);
124 /* Rewrite a message for resending, adding the Resent-Headers */
125 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
126 struct name *to, int add_resent);
128 static enum okay
129 _putname(char const *line, enum gfield w, enum sendaction action,
130 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
131 enum gfield addflags)
133 struct name *np;
134 enum okay rv = STOP;
135 NYD_ENTER;
137 np = lextract(line, GEXTRA | GFULL | addflags);
138 if (xp != NULL)
139 *xp = np;
140 if (np == NULL)
142 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
143 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
144 rv = OKAY;
145 else if (gotcha != NULL)
146 ++(*gotcha);
147 NYD_LEAVE;
148 return rv;
151 static int
152 _put_ct(FILE *fo, char const *contenttype, char const *charset)
154 int rv, i;
155 NYD2_ENTER;
157 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
158 goto jerr;
160 if (charset == NULL)
161 goto jend;
163 if (putc(';', fo) == EOF)
164 goto jerr;
165 ++rv;
167 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
168 if (putc('\n', fo) == EOF)
169 goto jerr;
170 ++rv;
173 /* C99 */{
174 size_t l = strlen(charset);
175 char *lcs = salloc(l +1);
177 for(l = 0; *charset != '\0'; ++l, ++charset)
178 lcs[l] = lowerconv(*charset);
179 lcs[l] = '\0';
180 charset = lcs;
182 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
183 goto jerr;
184 rv += i;
186 jend:
187 if (putc('\n', fo) == EOF)
188 goto jerr;
189 ++rv;
190 jleave:
191 NYD2_LEAVE;
192 return rv;
193 jerr:
194 rv = -1;
195 goto jleave;
198 SINLINE int
199 _put_cte(FILE *fo, enum conversion conv)
201 int rv;
202 NYD2_ENTER;
204 /* RFC 2045, 6.1.:
205 * This is the default value -- that is,
206 * "Content-Transfer-Encoding: 7BIT" is assumed if the
207 * Content-Transfer-Encoding header field is not present.
209 rv = (conv == CONV_7BIT) ? 0
210 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
211 mime_enc_from_conversion(conv));
212 NYD2_LEAVE;
213 return rv;
216 static int
217 _put_cd(FILE *fo, char const *cd, char const *filename)
219 struct str f;
220 si8_t mpc;
221 int rv;
222 NYD2_ENTER;
224 f.s = NULL;
226 /* xxx Ugly with the trailing space in case of wrap! */
227 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
228 goto jerr;
230 if (!(mpc = mime_param_create(&f, "filename", filename)))
231 goto jerr;
232 /* Always fold if result contains newlines */
233 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
234 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
235 goto jerr;
236 rv += 2;
238 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
239 goto jerr;
240 rv += (int)++f.l;
242 jleave:
243 NYD2_LEAVE;
244 return rv;
245 jerr:
246 rv = -1;
247 goto jleave;
251 static bool_t
252 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
253 bool_t rv;
254 NYD2_ENTER;
256 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
257 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
258 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
259 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
260 (!nodisp ? CONV_NONE : CONV_TOHDR),
261 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
262 putc('\n', fo) == EOF){
263 rv = FAL0;
264 break;
266 NYD_LEAVE;
267 return rv;
270 static int
271 _attach_file(struct attachment *ap, FILE *fo)
273 /* TODO of course, the MIME classification needs to performed once
274 * TODO only, not for each and every charset anew ... ;-// */
275 char *charset_iter_orig[2];
276 long offs;
277 int err = 0;
278 NYD_ENTER;
280 /* Is this already in target charset? Simply copy over */
281 if (ap->a_conv == AC_TMPFILE) {
282 err = __attach_file(ap, fo);
283 Fclose(ap->a_tmpf);
284 DBG( ap->a_tmpf = NULL; )
285 goto jleave;
288 /* If we don't apply charset conversion at all (fixed input=ouput charset)
289 * we also simply copy over, since it's the users desire */
290 if (ap->a_conv == AC_FIX_INCS) {
291 ap->a_charset = ap->a_input_charset;
292 err = __attach_file(ap, fo);
293 goto jleave;
294 } else
295 assert(ap->a_input_charset != NULL);
297 /* Otherwise we need to iterate over all possible output charsets */
298 if ((offs = ftell(fo)) == -1) {
299 err = EIO;
300 goto jleave;
302 charset_iter_recurse(charset_iter_orig);
303 for (charset_iter_reset(NULL);; charset_iter_next()) {
304 if (!charset_iter_is_valid()) {
305 err = EILSEQ;
306 break;
308 err = __attach_file(ap, fo);
309 if (err == 0 || (err != EILSEQ && err != EINVAL))
310 break;
311 clearerr(fo);
312 if (fseek(fo, offs, SEEK_SET) == -1) {
313 err = EIO;
314 break;
316 if (ap->a_conv != AC_DEFAULT) {
317 err = EILSEQ;
318 break;
320 ap->a_charset = NULL;
322 charset_iter_restore(charset_iter_orig);
323 jleave:
324 NYD_LEAVE;
325 return err;
328 static int
329 __attach_file(struct attachment *ap, FILE *fo) /* XXX linelength */
331 int err = 0, do_iconv;
332 FILE *fi;
333 char const *charset;
334 enum conversion convert;
335 char *buf;
336 size_t bufsize, lncnt, inlen;
337 NYD_ENTER;
339 /* Either charset-converted temporary file, or plain path */
340 if (ap->a_conv == AC_TMPFILE) {
341 fi = ap->a_tmpf;
342 assert(ftell(fi) == 0);
343 } else if ((fi = Fopen(ap->a_path, "r")) == NULL) {
344 err = errno;
345 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0), strerror(err));
346 goto jleave;
349 /* MIME part header for attachment */
350 { char const *ct, *cp;
352 ct = ap->a_content_type;
353 charset = ap->a_charset;
354 convert = mime_type_classify_file(fi, (char const**)&ct,
355 &charset, &do_iconv);
356 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
357 ap->a_conv == AC_TMPFILE)
358 do_iconv = 0;
360 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
361 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
362 _put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
363 goto jerr_header;
365 if ((cp = ap->a_content_id) != NULL &&
366 (fputs("Content-ID: ", fo) == EOF ||
367 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
368 ) < 0 || putc('\n', fo) == EOF))
369 goto jerr_header;
371 if ((cp = ap->a_content_description) != NULL &&
372 (fputs("Content-Description: ", fo) == EOF ||
373 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
374 ) < 0 || putc('\n', fo) == EOF))
375 goto jerr_header;
377 if (putc('\n', fo) == EOF) {
378 jerr_header:
379 err = errno;
380 goto jerr_fclose;
384 #ifdef HAVE_ICONV
385 if (iconvd != (iconv_t)-1)
386 n_iconv_close(iconvd);
387 if (do_iconv) {
388 if (asccasecmp(charset, ap->a_input_charset) &&
389 (iconvd = n_iconv_open(charset, ap->a_input_charset)
390 ) == (iconv_t)-1 && (err = errno) != 0) {
391 if (err == EINVAL)
392 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
393 charset);
394 else
395 n_err(_("iconv_open: %s\n"), strerror(err));
396 goto jerr_fclose;
399 #endif
401 bufsize = SEND_LINESIZE;
402 buf = smalloc(bufsize);
403 if (convert == CONV_TOQP
404 #ifdef HAVE_ICONV
405 || iconvd != (iconv_t)-1
406 #endif
408 lncnt = fsize(fi);
409 for (;;) {
410 if (convert == CONV_TOQP
411 #ifdef HAVE_ICONV
412 || iconvd != (iconv_t)-1
413 #endif
415 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
416 break;
417 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
418 break;
419 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
420 err = errno;
421 goto jerr;
424 if (ferror(fi))
425 err = EDOM;
426 jerr:
427 free(buf);
428 jerr_fclose:
429 if (ap->a_conv != AC_TMPFILE)
430 Fclose(fi);
431 jleave:
432 NYD_LEAVE;
433 return err;
436 static bool_t
437 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
439 bool_t v15, rv = FAL0;
440 char *shost, *from;
441 #ifdef HAVE_SMTP
442 char const *smtp;
443 #endif
444 NYD_ENTER;
446 v15 = ok_blook(v15_compat);
447 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
448 from = ((signing_caps || !v15 || shost == NULL)
449 ? skin(myorigin(sbp->sb_hp)) : NULL);
451 if (signing_caps) {
452 if (from == NULL) {
453 #ifdef HAVE_SSL
454 n_err(_("No *from* address for signing specified\n"));
455 goto jleave;
456 #endif
457 } else
458 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
461 #ifdef HAVE_SMTP
462 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
463 char const *proto;
465 /* *smtp* OBSOLETE message in mta_start() */
466 if ((smtp = ok_vlook(mta)) == NULL ||
467 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
468 rv = TRU1;
469 goto jleave;
473 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
474 goto jleave;
476 if (v15) {
477 if (shost == NULL) {
478 if (from == NULL)
479 goto jenofrom;
480 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
481 } else
482 __sendout_ident = sbp->sb_url.url_u_h.s;
483 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
484 goto jleave;
485 } else {
486 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
487 n_err(_("New-style URL used without *v15-compat* being set\n"));
488 goto jleave;
490 /* TODO part of the entire myorigin() disaster, get rid of this! */
491 if (from == NULL) {
492 jenofrom:
493 n_err(_("Your configuration requires a *from* address, "
494 "but none was given\n"));
495 goto jleave;
497 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
498 goto jleave;
499 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
502 rv = TRU1;
503 #endif /* HAVE_SMTP */
504 #if defined HAVE_SSL || defined HAVE_SMTP
505 jleave:
506 #endif
507 NYD_LEAVE;
508 return rv;
511 static int
512 attach_message(struct attachment *ap, FILE *fo)
514 struct message *mp;
515 char const *ccp;
516 int rv;
517 NYD_ENTER;
519 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
520 "Content-Disposition: inline\n", _sendout_boundary);
521 if ((ccp = ap->a_content_description) != NULL)
522 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
523 putc('\n', fo);
525 mp = message + ap->a_msgno - 1;
526 touch(mp);
527 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
528 NYD_LEAVE;
529 return rv;
532 static int
533 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
534 char const *contenttype, char const *charset)
536 struct attachment *att;
537 int rv = -1;
538 NYD_ENTER;
540 fputs("This is a multi-part message in MIME format.\n", fo);
541 if (fsize(fi) != 0) {
542 char *buf;
543 size_t sz, bufsize, cnt;
545 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
546 _put_ct(fo, contenttype, charset) < 0 ||
547 _put_cte(fo, convert) < 0 ||
548 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
549 goto jleave;
551 buf = smalloc(bufsize = SEND_LINESIZE);
552 if (convert == CONV_TOQP
553 #ifdef HAVE_ICONV
554 || iconvd != (iconv_t)-1
555 #endif
557 fflush(fi);
558 cnt = fsize(fi);
560 for (;;) {
561 if (convert == CONV_TOQP
562 #ifdef HAVE_ICONV
563 || iconvd != (iconv_t)-1
564 #endif
566 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
567 break;
568 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
569 break;
571 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
572 free(buf);
573 goto jleave;
576 free(buf);
578 if (ferror(fi))
579 goto jleave;
582 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
583 if (att->a_msgno) {
584 if (attach_message(att, fo) != 0)
585 goto jleave;
586 } else if (_attach_file(att, fo) != 0)
587 goto jleave;
590 /* the final boundary with two attached dashes */
591 fprintf(fo, "\n--%s--\n", _sendout_boundary);
592 rv = 0;
593 jleave:
594 NYD_LEAVE;
595 return rv;
598 static FILE *
599 infix(struct header *hp, FILE *fi) /* TODO check */
601 FILE *nfo, *nfi = NULL;
602 char *tempMail;
603 char const *contenttype, *charset = NULL;
604 enum conversion convert;
605 int do_iconv = 0, err;
606 #ifdef HAVE_ICONV
607 char const *tcs, *convhdr = NULL;
608 #endif
609 NYD_ENTER;
611 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
612 == NULL) {
613 n_perr(_("temporary mail file"), 0);
614 goto jleave;
616 if ((nfi = Fopen(tempMail, "r")) == NULL) {
617 n_perr(tempMail, 0);
618 Fclose(nfo);
620 Ftmp_release(&tempMail);
621 if (nfi == NULL)
622 goto jleave;
624 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
626 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
627 if((options & OPT_Mm_FLAG) && option_Mm_arg != NULL)
628 contenttype = option_Mm_arg;
629 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
631 #ifdef HAVE_ICONV
632 tcs = ok_vlook(ttycharset);
633 if ((convhdr = need_hdrconv(hp))) {
634 if (iconvd != (iconv_t)-1) /* XXX */
635 n_iconv_close(iconvd);
636 if (asccasecmp(convhdr, tcs) != 0 &&
637 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
638 (err = errno) != 0)
639 goto jiconv_err;
641 #endif
642 if (puthead(FAL0, hp, nfo,
643 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
644 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
645 goto jerr;
646 #ifdef HAVE_ICONV
647 if (iconvd != (iconv_t)-1)
648 n_iconv_close(iconvd);
649 #endif
651 #ifdef HAVE_ICONV
652 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
653 if (asccasecmp(charset, tcs) != 0 &&
654 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
655 (err = errno) != 0) {
656 jiconv_err:
657 if (err == EINVAL)
658 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
659 else
660 n_perr("iconv_open", 0);
661 goto jerr;
664 #endif
666 if (hp->h_attach != NULL) {
667 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
668 goto jerr;
669 } else {
670 size_t sz, bufsize, cnt;
671 char *buf;
673 if (convert == CONV_TOQP
674 #ifdef HAVE_ICONV
675 || iconvd != (iconv_t)-1
676 #endif
678 fflush(fi);
679 cnt = fsize(fi);
681 buf = smalloc(bufsize = SEND_LINESIZE);
682 for (err = 0;;) {
683 if (convert == CONV_TOQP
684 #ifdef HAVE_ICONV
685 || iconvd != (iconv_t)-1
686 #endif
688 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
689 break;
690 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
691 break;
692 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
693 err = 1;
694 break;
697 free(buf);
699 if (err || ferror(fi)) {
700 jerr:
701 Fclose(nfo);
702 Fclose(nfi);
703 #ifdef HAVE_ICONV
704 if (iconvd != (iconv_t)-1)
705 n_iconv_close(iconvd);
706 #endif
707 nfi = NULL;
708 goto jleave;
712 #ifdef HAVE_ICONV
713 if (iconvd != (iconv_t)-1)
714 n_iconv_close(iconvd);
715 #endif
717 fflush(nfo);
718 if ((err = ferror(nfo)))
719 n_perr(_("temporary mail file"), 0);
720 Fclose(nfo);
721 if (!err) {
722 fflush_rewind(nfi);
723 Fclose(fi);
724 } else {
725 Fclose(nfi);
726 nfi = NULL;
728 jleave:
729 NYD_LEAVE;
730 return nfi;
733 static bool_t
734 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
736 char const *from;
737 bool_t rv = TRU1;
738 NYD_ENTER;
740 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
741 * TODO not yet checked */
742 if (!ok_blook(disposition_notification_send))
743 goto jleave;
745 if (mdn != NULL && mdn != (struct name*)0x1)
746 from = mdn->n_name;
747 else if ((from = myorigin(hp)) == NULL) {
748 if (options & OPT_D_V)
749 n_err(_("*disposition-notification-send*: no *from* set\n"));
750 goto jleave;
753 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
754 rv = FAL0;
755 jleave:
756 NYD_LEAVE;
757 return rv;
760 static int
761 sendmail_internal(void *v, int recipient_record)
763 struct header head;
764 char *str = v;
765 int rv;
766 NYD_ENTER;
768 memset(&head, 0, sizeof head);
769 head.h_to = lextract(str, GTO | GFULL);
770 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
771 NYD_LEAVE;
772 return (rv == 0);
775 static struct name *
776 _outof(struct name *names, FILE *fo, bool_t *senderror)
778 ui32_t pipecnt, xcnt, i;
779 int *fda;
780 char const *sh;
781 struct name *np;
782 FILE *fin = NULL, *fout;
783 NYD_ENTER;
785 /* Look through all recipients and do a quick return if no file or pipe
786 * addressee is found */
787 fda = NULL; /* Silence cc */
788 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
789 if (np->n_type & GDEL)
790 continue;
791 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
792 case NAME_ADDRSPEC_ISFILE:
793 ++xcnt;
794 break;
795 case NAME_ADDRSPEC_ISPIPE:
796 ++pipecnt;
797 break;
800 if (pipecnt == 0 && xcnt == 0)
801 goto jleave;
803 /* Otherwise create an array of file descriptors for each found pipe
804 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
805 * each pipe subprocess needs its very own file descriptor, and we need
806 * to deal with that.
807 * To make our life a bit easier let's just use the auto-reclaimed
808 * string storage */
809 if (pipecnt == 0 || (options & OPT_DEBUG)) {
810 pipecnt = 0;
811 fda = NULL;
812 sh = NULL;
813 } else {
814 fda = salloc(sizeof(int) * pipecnt);
815 for (i = 0; i < pipecnt; ++i)
816 fda[i] = -1;
817 sh = ok_vlook(SHELL);
820 for (np = names; np != NULL; np = np->n_flink) {
821 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
822 continue;
824 /* In days of old we removed the entry from the the list; now for sake of
825 * header expansion we leave it in and mark it as deleted */
826 np->n_type |= GDEL;
828 if(options & OPT_D_VV)
829 n_err(_(">>> Writing message via %s\n"),
830 n_shexp_quote_cp(np->n_name, FAL0));
831 /* We _do_ write to STDOUT, anyway! */
832 if((options & OPT_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
833 np->n_name[0] != '-' || np->n_name[1] != '\0'))
834 continue;
836 /* See if we have copied the complete message out yet. If not, do so */
837 if (image < 0) {
838 int c;
839 char *tempEdit;
841 if ((fout = Ftmp(&tempEdit, "outof",
842 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
843 n_perr(_("Creation of temporary image"), 0);
844 *senderror = TRU1;
845 goto jcant;
847 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
848 _CLOEXEC_SET(image);
849 for (i = 0; i < pipecnt; ++i) {
850 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
851 if (fd < 0) {
852 close(image);
853 image = -1;
854 pipecnt = i;
855 break;
857 fda[i] = fd;
858 _CLOEXEC_SET(fd);
861 Ftmp_release(&tempEdit);
863 if (image < 0) {
864 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
865 *senderror = TRU1;
866 Fclose(fout);
867 goto jcant;
870 fprintf(fout, "From %s %s", myname, time_current.tc_ctime);
871 c = EOF;
872 while (i = c, (c = getc(fo)) != EOF)
873 putc(c, fout);
874 rewind(fo);
875 if ((int)i != '\n')
876 putc('\n', fout);
877 putc('\n', fout);
878 fflush(fout);
879 if (ferror(fout)) {
880 n_perr(_("Finalizing write of temporary image"), 0);
881 Fclose(fout);
882 goto jcantfout;
884 Fclose(fout);
886 /* If we have to serve file addressees, open reader */
887 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
888 n_perr(_("Failed to open a temporary image duplicate"), 0);
889 jcantfout:
890 *senderror = TRU1;
891 close(image);
892 image = -1;
893 goto jcant;
896 /* From now on use xcnt as a counter for pipecnt */
897 xcnt = 0;
900 /* Now either copy "image" to the desired file or give it as the standard
901 * input to the desired program as appropriate */
902 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
903 int pid;
904 sigset_t nset;
906 sigemptyset(&nset);
907 sigaddset(&nset, SIGHUP);
908 sigaddset(&nset, SIGINT);
909 sigaddset(&nset, SIGQUIT);
910 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
911 np->n_name + 1, NULL, NULL);
912 if (pid < 0) {
913 n_err(_("Piping message to %s failed\n"),
914 n_shexp_quote_cp(np->n_name, FAL0));
915 *senderror = TRU1;
916 goto jcant;
918 free_child(pid);
919 } else {
920 int c;
921 char const *fname, *fnameq;
923 if ((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
924 *senderror = TRU1;
925 goto jcant;
927 fnameq = n_shexp_quote_cp(fname, FAL0);
929 if(fname[0] == '-' && fname[1] == '\0')
930 fout = stdout;
931 else if ((fout = Zopen(fname, "a")) == NULL) {
932 n_err(_("Writing message to %s failed: %s\n"),
933 fnameq, strerror(errno));
934 *senderror = TRU1;
935 goto jcant;
937 rewind(fin);
938 while ((c = getc(fin)) != EOF)
939 putc(c, fout);
940 if (ferror(fout)) {
941 n_err(_("Writing message to %s failed: %s\n"),
942 fnameq, _("write error"));
943 *senderror = TRU1;
945 if(fout != stdout)
946 Fclose(fout);
949 jcant:
950 if (image < 0)
951 goto jdelall;
954 jleave:
955 if (fin != NULL)
956 Fclose(fin);
957 for (i = 0; i < pipecnt; ++i)
958 close(fda[i]);
959 if (image >= 0) {
960 close(image);
961 image = -1;
963 NYD_LEAVE;
964 return names;
966 jdelall:
967 while (np != NULL) {
968 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
969 np->n_type |= GDEL;
970 np = np->n_flink;
972 goto jleave;
975 static bool_t
976 mightrecord(FILE *fp, struct name *to, bool_t resend)
978 char *cp, *cq;
979 char const *ep;
980 bool_t rv = TRU1;
981 NYD_ENTER;
983 if (options & OPT_DEBUG)
984 cp = NULL;
985 else if (to != NULL) {
986 cp = savestr(skinned_name(to));
987 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
989 *cq = '\0';
990 } else
991 cp = ok_vlook(record);
993 if (cp != NULL) {
994 if ((ep = expand(cp)) == NULL) {
995 ep = "NULL";
996 goto jbail;
999 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
1000 which_protocol(ep) == PROTO_FILE) {
1001 size_t i = strlen(cp);
1002 cq = salloc(i + 1 +1);
1003 cq[0] = '+';
1004 memcpy(cq + 1, cp, i +1);
1005 cp = cq;
1006 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
1007 ep = "NULL";
1008 goto jbail;
1012 if (!a_sendout__savemail(ep, fp, resend)) {
1013 jbail:
1014 n_err(_("Failed to save message in %s - message not sent\n"),
1015 n_shexp_quote_cp(ep, FAL0));
1016 exit_status |= EXIT_ERR;
1017 savedeadletter(fp, 1);
1018 rv = FAL0;
1021 NYD_LEAVE;
1022 return rv;
1025 static bool_t
1026 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1027 FILE *fo;
1028 size_t bufsize, buflen, cnt;
1029 bool_t rv, emptyline;
1030 char *buf;
1031 NYD_ENTER;
1033 buf = smalloc(bufsize = LINESIZE);
1034 rv = emptyline = FAL0;
1036 if((fo = Zopen(name, "a+")) == NULL){
1037 if((fo = Zopen(name, "wx")) == NULL){
1038 n_perr(name, 0);
1039 goto j_leave;
1041 emptyline = TRU1;
1044 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1045 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1047 rv = TRU1;
1049 if(!emptyline){
1050 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1051 switch(fread(buf, sizeof *buf, 2, fo)){
1052 case 2:
1053 if(buf[1] != '\n')
1054 emptyline = TRU1;
1055 break;
1056 case 1:
1057 if(buf[0] != '\n')
1058 emptyline = TRU1;
1059 break;
1060 default:
1061 if(ferror(fo)){
1062 n_perr(name, 0);
1063 rv = FAL0;
1064 goto jleave;
1067 if(emptyline){
1068 putc('\n', fo);
1069 fflush(fo);
1074 fflush_rewind(fp);
1076 fprintf(fo, "From %s %s", myname, time_current.tc_ctime);
1077 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1078 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1079 /* Only if we are resending it can happen that we have to quote From_
1080 * lines here; we don't generate messages which are ambiguous ourselves */
1081 if(resend){
1082 if(emptyline && is_head(buf, buflen, FAL0))
1083 putc('>', fo);
1084 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1086 emptyline = (buflen > 0 && *buf == '\n');
1087 fwrite(buf, sizeof *buf, buflen, fo);
1089 if(buflen > 0 && buf[buflen - 1] != '\n')
1090 putc('\n', fo);
1091 putc('\n', fo);
1092 fflush(fo);
1093 if(ferror(fo)){
1094 n_perr(name, 0);
1095 rv = FAL0;
1098 jleave:
1099 really_rewind(fp);
1100 if(Fclose(fo) != 0)
1101 rv = FAL0;
1102 j_leave:
1103 free(buf);
1104 NYD_LEAVE;
1105 return rv;
1108 static bool_t
1109 _transfer(struct sendbundle *sbp)
1111 struct name *np;
1112 ui32_t cnt;
1113 bool_t rv = TRU1;
1114 NYD_ENTER;
1116 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1117 char const k[] = "smime-encrypt-";
1118 size_t nl = strlen(np->n_name);
1119 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1120 memcpy(vs, k, sizeof(k) -1);
1121 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1123 if ((cp = vok_vlook(vs)) != NULL) {
1124 #ifdef HAVE_SSL
1125 FILE *ef;
1127 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1128 FILE *fisave = sbp->sb_input;
1129 struct name *nsave = sbp->sb_to;
1131 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1132 sbp->sb_input = ef;
1133 if (!__mta_start(sbp))
1134 rv = FAL0;
1135 sbp->sb_to = nsave;
1136 sbp->sb_input = fisave;
1138 Fclose(ef);
1139 } else {
1140 #else
1141 n_err(_("No SSL support compiled in\n"));
1142 rv = FAL0;
1143 #endif
1144 n_err(_("Message not sent to: %s\n"), np->n_name);
1145 _sendout_error = TRU1;
1146 #ifdef HAVE_SSL
1148 #endif
1149 rewind(sbp->sb_input);
1151 if (np->n_flink != NULL)
1152 np->n_flink->n_blink = np->n_blink;
1153 if (np->n_blink != NULL)
1154 np->n_blink->n_flink = np->n_flink;
1155 if (np == sbp->sb_to)
1156 sbp->sb_to = np->n_flink;
1157 np = np->n_flink;
1158 } else {
1159 ++cnt;
1160 np = np->n_flink;
1162 ac_free(vs);
1165 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1166 rv = FAL0;
1167 NYD_LEAVE;
1168 return rv;
1171 static bool_t
1172 __mta_start(struct sendbundle *sbp)
1174 pid_t pid;
1175 sigset_t nset;
1176 char const **args, *mta;
1177 bool_t rv;
1178 NYD_ENTER;
1180 if((mta = ok_vlook(smtp)) != NULL){
1181 OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1182 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1183 * that *smtp* is misused with file:// or so */
1184 if(n_servbyname(mta, NULL) == NULL)
1185 mta = savecat("smtp://", mta);
1186 rv = TRU1;
1187 }else{
1188 char const *proto;
1190 if((proto = ok_vlook(sendmail)) != NULL)
1191 OBSOLETE(_("please use *mta* instead of *sendmail*"));
1192 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1193 if(proto == NULL){
1194 mta = VAL_MTA;
1195 rv = FAL0;
1196 }else
1197 rv = TRU1;
1199 /* TODO for now this is pretty hacky: in v15 we should simply create
1200 * TODO an URL object; i.e., be able to do so, and it does it right
1201 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1202 else if((proto = n_servbyname(mta, NULL)) != NULL){
1203 if(*proto == '\0'){
1204 mta += sizeof("file://") -1;
1205 rv = FAL0;
1206 }else
1207 rv = TRU1;
1208 }else
1209 rv = FAL0;
1212 if(!rv){
1213 char const *mta_base;
1215 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1216 n_err(_("*mta* variable expansion failure: %s\n"),
1217 n_shexp_quote_cp(mta_base, FAL0));
1218 goto jstop;
1221 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1222 if (options & OPT_DEBUG) {
1223 __mta_debug(sbp, mta, args);
1224 rv = TRU1;
1225 goto jleave;
1227 } else {
1228 n_UNINIT(args, NULL);
1229 #ifndef HAVE_SMTP
1230 n_err(_("No SMTP support compiled in\n"));
1231 goto jstop;
1232 #else
1233 if (options & OPT_DEBUG) {
1234 (void)smtp_mta(sbp);
1235 rv = TRU1;
1236 goto jleave;
1238 #endif
1241 /* Fork, set up the temporary mail file as standard input for "mail", and
1242 * exec with the user list we generated far above */
1243 if ((pid = fork_child()) == -1) {
1244 n_perr("fork", 0);
1245 jstop:
1246 savedeadletter(sbp->sb_input, 0);
1247 _sendout_error = TRU1;
1248 goto jleave;
1250 if (pid == 0) {
1251 sigemptyset(&nset);
1252 sigaddset(&nset, SIGHUP);
1253 sigaddset(&nset, SIGINT);
1254 sigaddset(&nset, SIGQUIT);
1255 sigaddset(&nset, SIGTSTP);
1256 sigaddset(&nset, SIGTTIN);
1257 sigaddset(&nset, SIGTTOU);
1258 freopen("/dev/null", "r", stdin);
1259 #ifdef HAVE_SMTP
1260 if (rv) {
1261 prepare_child(&nset, 0, 1);
1262 if (smtp_mta(sbp))
1263 _exit(EXIT_OK);
1264 } else
1265 #endif
1267 char const *ecp;
1268 int e;
1270 prepare_child(&nset, fileno(sbp->sb_input), -1);
1271 execv(mta, n_UNCONST(args));
1272 e = errno;
1273 ecp = (e != ENOENT) ? strerror(e)
1274 : _("executable not found (adjust *mta* variable)");
1275 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1277 savedeadletter(sbp->sb_input, 1);
1278 n_err(_("... message not sent\n"));
1279 _exit(EXIT_ERR);
1282 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1283 if (!(rv = wait_child(pid, NULL)))
1284 _sendout_error = TRU1;
1285 } else {
1286 free_child(pid);
1287 rv = TRU1;
1289 jleave:
1290 NYD_LEAVE;
1291 return rv;
1294 static char const **
1295 __mta_prepare_args(struct name *to, struct header *hp)
1297 size_t vas_cnt, i, j;
1298 char **vas;
1299 char const **args, *cp, *cp_v15compat;
1300 bool_t snda;
1301 NYD_ENTER;
1303 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1304 OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1305 if((cp = ok_vlook(mta_arguments)) == NULL)
1306 cp = cp_v15compat;
1307 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1308 vas_cnt = 0;
1309 vas = NULL;
1310 } else {
1311 /* Don't assume anything on the content but do allocate exactly j slots;
1312 * like this getrawlist will never overflow (and return -1) */
1313 j = strlen(cp);
1314 vas = n_lofi_alloc(sizeof(*vas) * j);
1315 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1318 i = 4 + smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1319 args = salloc(i * sizeof(char*));
1321 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1322 OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1323 if((cp = ok_vlook(mta_argv0)) == NULL)
1324 cp = cp_v15compat;
1325 if(cp == NULL)
1326 cp = VAL_MTA_ARGV0;
1327 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1329 if ((snda = ok_blook(sendmail_no_default_arguments)))
1330 OBSOLETE(_("please use *mta-no-default-arguments*, "
1331 "not *sendmail-no-default-arguments*"));
1332 snda |= ok_blook(mta_no_default_arguments);
1333 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1334 i = 1;
1335 else {
1336 args[1] = "-i";
1337 i = 2;
1338 if (ok_blook(metoo))
1339 args[i++] = "-m";
1340 if (options & OPT_VERB)
1341 args[i++] = "-v";
1344 for (j = 0; j < smopts_cnt; ++j, ++i)
1345 args[i] = smopts[j];
1347 for (j = 0; j < vas_cnt; ++j, ++i)
1348 args[i] = vas[j];
1350 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1351 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1352 * The interdependency with -t has been resolved in puthead() */
1353 if (!snda && ((options & OPT_r_FLAG) || ok_blook(r_option_implicit))) {
1354 struct name const *np;
1356 if (hp != NULL && (np = hp->h_from) != NULL) {
1357 /* However, what wasn't resolved there was the case that the message
1358 * specified multiple From: addresses and a Sender: */
1359 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1360 np = hp->h_sender;
1362 if (np->n_fullextra != NULL) {
1363 args[i++] = "-F";
1364 args[i++] = np->n_fullextra;
1366 cp = np->n_name;
1367 } else {
1368 assert(option_r_arg == NULL);
1369 cp = skin(myorigin(NULL));
1372 if (cp != NULL) {
1373 args[i++] = "-f";
1374 args[i++] = cp;
1378 /* Terminate option list to avoid false interpretation of system-wide
1379 * aliases that start with hyphen */
1380 if (!snda)
1381 args[i++] = "--";
1383 /* Receivers follow */
1384 for (; to != NULL; to = to->n_flink)
1385 if (!(to->n_type & GDEL))
1386 args[i++] = to->n_name;
1387 args[i] = NULL;
1389 if(vas != NULL)
1390 n_lofi_free(vas);
1391 NYD_LEAVE;
1392 return args;
1395 static void
1396 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1398 size_t cnt, bufsize, llen;
1399 char *buf;
1400 NYD_ENTER;
1402 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1403 for (; *args != NULL; ++args)
1404 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1405 n_err("\n");
1407 fflush_rewind(sbp->sb_input);
1409 cnt = fsize(sbp->sb_input);
1410 buf = NULL;
1411 bufsize = 0;
1412 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1413 buf[--llen] = '\0';
1414 n_err(">>> %s\n", buf);
1416 if (buf != NULL)
1417 free(buf);
1418 NYD_LEAVE;
1421 static char *
1422 _message_id(struct header *hp)
1424 char *rv = NULL, sep;
1425 char const *h;
1426 size_t rl, i;
1427 struct tm *tmp;
1428 NYD_ENTER;
1430 if (hp != NULL && hp->h_message_id != NULL) {
1431 i = strlen(hp->h_message_id->n_name);
1432 rl = sizeof("Message-ID: <>") -1;
1433 rv = salloc(rl + i +1);
1434 memcpy(rv, "Message-ID: <", --rl);
1435 memcpy(rv + rl, hp->h_message_id->n_name, i);
1436 rl += i;
1437 rv[rl++] = '>';
1438 rv[rl] = '\0';
1439 goto jleave;
1442 if (ok_blook(message_id_disable))
1443 goto jleave;
1445 sep = '%';
1446 rl = 9;
1447 if ((h = __sendout_ident) != NULL)
1448 goto jgen;
1449 if (ok_vlook(hostname) != NULL) {
1450 h = nodename(1);
1451 sep = '@';
1452 rl = 15;
1453 goto jgen;
1455 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1456 goto jgen;
1457 /* Up to MTA */
1458 goto jleave;
1460 jgen:
1461 tmp = &time_current.tc_gm;
1462 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1463 rl + strlen(h);
1464 rv = salloc(i +1);
1465 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1466 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1467 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1468 getrandstring(rl), sep, h);
1469 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1470 jleave:
1471 NYD_LEAVE;
1472 return rv;
1475 static int
1476 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1478 enum {
1479 m_INIT = 1<<0,
1480 m_COMMA = 1<<1,
1481 m_NOPF = 1<<2,
1482 m_NONAME = 1<<3,
1483 m_CSEEN = 1<<4
1484 } m = (ff & GCOMMA) ? m_COMMA : 0;
1485 ssize_t col, len;
1486 int rv = 1;
1487 NYD_ENTER;
1489 col = strlen(str);
1490 if (col) {
1491 fwrite(str, sizeof *str, col, fo);
1492 #undef _X
1493 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1494 if (ff & GFILES) {
1496 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1497 _X("references:") || _X("disposition-notification-to:"))
1498 m |= m_NOPF | m_NONAME;
1499 else if (ok_blook(add_file_recipients)) {
1501 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1502 m |= m_NOPF;
1503 #undef _X
1506 for (; np != NULL; np = np->n_flink) {
1507 if (is_addr_invalid(np,
1508 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1509 continue;
1510 /* File and pipe addresses only printed with set *add-file-recipients* */
1511 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1512 continue;
1514 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1515 if (putc(',', fo) == EOF)
1516 goto jleave;
1517 m |= m_CSEEN;
1518 ++col;
1521 len = strlen(np->n_fullname);
1522 if (np->n_flags & GREF)
1523 len += 2;
1524 ++col; /* The separating space */
1525 if ((m & m_INIT) && /*col > 1 &&*/ UICMP(z, col + len, >, 72)) {
1526 if (fputs("\n ", fo) == EOF)
1527 goto jleave;
1528 col = 1;
1529 m &= ~m_CSEEN;
1530 } else
1531 putc(' ', fo);
1532 m = (m & ~m_CSEEN) | m_INIT;
1535 char *hb = np->n_fullname;
1536 /* GREF needs to be placed in angle brackets, but which are missing */
1537 if (np->n_type & GREF) {
1538 hb = ac_alloc(len + 2 +1);
1539 hb[0] = '<';
1540 hb[len + 1] = '>';
1541 hb[len + 2] = '\0';
1542 memcpy(hb + 1, np->n_fullname, len);
1543 len += 2;
1545 len = xmime_write(hb, len, fo,
1546 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1547 if (np->n_type & GREF)
1548 ac_free(hb);
1550 if (len < 0)
1551 goto jleave;
1552 col += len;
1555 if (putc('\n', fo) != EOF)
1556 rv = 0;
1557 jleave:
1558 NYD_LEAVE;
1559 return rv;
1562 static int
1563 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1564 int add_resent)
1566 size_t cnt, c, bufsize = 0;
1567 char *buf = NULL;
1568 char const *cp;
1569 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1570 int rv = 1;
1571 NYD_ENTER;
1573 cnt = mp->m_size;
1575 /* Write the Resent-Fields */
1576 if (add_resent) {
1577 fputs("Resent-", fo);
1578 mkdate(fo, "Date");
1579 if ((cp = myaddrs(NULL)) != NULL) {
1580 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1581 &fromfield, 0))
1582 goto jleave;
1584 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1585 if ((cp = ok_vlook(sender)) != NULL) {
1586 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1587 &senderfield, 0))
1588 goto jleave;
1590 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1591 goto jleave;
1592 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1593 (cp = _message_id(NULL)) != NULL)
1594 fprintf(fo, "Resent-%s\n", cp);
1597 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1598 goto jleave;
1599 if (!_check_dispo_notif(mdn, NULL, fo))
1600 goto jleave;
1602 /* Write the original headers */
1603 while (cnt > 0) {
1604 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1605 break;
1606 if (ascncasecmp("status:", buf, 7) &&
1607 ascncasecmp("disposition-notification-to:", buf, 28) &&
1608 !is_head(buf, c, FAL0))
1609 fwrite(buf, sizeof *buf, c, fo);
1610 if (cnt > 0 && *buf == '\n')
1611 break;
1614 /* Write the message body */
1615 while (cnt > 0) {
1616 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1617 break;
1618 if (cnt == 0 && *buf == '\n')
1619 break;
1620 fwrite(buf, sizeof *buf, c, fo);
1622 if (buf != NULL)
1623 free(buf);
1624 if (ferror(fo)) {
1625 n_perr(_("temporary mail file"), 0);
1626 goto jleave;
1628 rv = 0;
1629 jleave:
1630 NYD_LEAVE;
1631 return rv;
1634 FL int
1635 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1636 struct attachment *attach, char *quotefile, int recipient_record)
1638 struct header head;
1639 struct str in, out;
1640 NYD_ENTER;
1642 memset(&head, 0, sizeof head);
1644 /* The given subject may be in RFC1522 format. */
1645 if (subject != NULL) {
1646 in.s = subject;
1647 in.l = strlen(subject);
1648 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1649 head.h_subject = out.s;
1651 head.h_to = to;
1652 head.h_cc = cc;
1653 head.h_bcc = bcc;
1654 head.h_attach = attach;
1656 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1658 if (subject != NULL)
1659 free(out.s);
1660 NYD_LEAVE;
1661 return 0;
1664 FL int
1665 c_sendmail(void *v)
1667 int rv;
1668 NYD_ENTER;
1670 rv = sendmail_internal(v, 0);
1671 NYD_LEAVE;
1672 return rv;
1675 FL int
1676 c_Sendmail(void *v)
1678 int rv;
1679 NYD_ENTER;
1681 rv = sendmail_internal(v, 1);
1682 NYD_LEAVE;
1683 return rv;
1686 FL enum okay
1687 mail1(struct header *hp, int printheaders, struct message *quote,
1688 char *quotefile, int recipient_record, int doprefix)
1690 struct sendbundle sb;
1691 struct name *to;
1692 FILE *mtf, *nmtf;
1693 bool_t dosign;
1694 enum okay rv = STOP;
1695 NYD_ENTER;
1697 _sendout_error = FAL0;
1698 __sendout_ident = NULL;
1700 /* Update some globals we likely need first */
1701 time_current_update(&time_current, TRU1);
1703 /* Collect user's mail from standard input. Get the result as mtf */
1704 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1705 if (mtf == NULL)
1706 goto j_leave;
1708 dosign = TRUM1;
1710 /* */
1711 if (options & OPT_INTERACTIVE) {
1712 if (ok_blook(asksign))
1713 dosign = getapproval(_("Sign this message"), TRU1);
1716 if (fsize(mtf) == 0) {
1717 if (options & OPT_E_FLAG)
1718 goto jleave;
1719 if (hp->h_subject == NULL)
1720 printf(_("No message, no subject; hope that's ok\n"));
1721 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1722 printf(_("Null message body; hope that's ok\n"));
1725 if (dosign == TRUM1)
1726 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1727 #ifndef HAVE_SSL
1728 if (dosign) {
1729 n_err(_("No SSL support compiled in\n"));
1730 goto jleave;
1732 #endif
1734 /* XXX Update time_current again; once collect() offers editing of more
1735 * XXX headers, including Date:, this must only happen if Date: is the
1736 * XXX same that it was before collect() (e.g., postponing etc.).
1737 * XXX But *do* update otherwise because the mail seems to be backdated
1738 * XXX if the user edited some time, which looks odd and it happened
1739 * XXX to me that i got mis-dated response mails due to that... */
1740 time_current_update(&time_current, TRU1);
1742 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1743 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1744 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1745 * TODO header fields ONCE, call that ONCE after user editing etc. has
1746 * TODO completed (one edit cycle) */
1748 /* Take the user names from the combined to and cc lists and do all the
1749 * alias processing. The POSIX standard says:
1750 * The names shall be substituted when alias is used as a recipient
1751 * address specified by the user in an outgoing message (that is,
1752 * other recipients addressed indirectly through the reply command
1753 * shall not be substituted in this manner).
1754 * S-nail thus violates POSIX, as has been pointed out correctly by
1755 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1756 * disputable anyway. Go for user friendliness */
1758 to = namelist_vaporise_head(hp,
1759 (EACM_NORMAL |
1760 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1761 TRU1, &_sendout_error);
1762 if (to == NULL) {
1763 n_err(_("No recipients specified\n"));
1764 goto jfail_dead;
1766 if (_sendout_error < 0) {
1767 n_err(_("Some addressees were classified as \"hard error\"\n"));
1768 goto jfail_dead;
1771 /* */
1772 memset(&sb, 0, sizeof sb);
1773 sb.sb_hp = hp;
1774 sb.sb_to = to;
1775 sb.sb_input = mtf;
1776 if ((dosign || count_nonlocal(to) > 0) &&
1777 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1778 /* TODO saving $DEAD and recovering etc is not yet well defined */
1779 goto jfail_dead;
1781 /* 'Bit ugly kind of control flow until we find a charset that does it */
1782 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1783 int err;
1785 if (!charset_iter_is_valid())
1787 else if ((nmtf = infix(hp, mtf)) != NULL)
1788 break;
1789 else if ((err = errno) == EILSEQ || err == EINVAL) {
1790 rewind(mtf);
1791 continue;
1794 n_perr(_("Failed to create encoded message"), 0);
1795 goto jfail_dead;
1797 mtf = nmtf;
1799 /* */
1800 #ifdef HAVE_SSL
1801 if (dosign) {
1802 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1803 goto jfail_dead;
1804 Fclose(mtf);
1805 mtf = nmtf;
1807 #endif
1809 /* TODO truly - i still don't get what follows: (1) we deliver file
1810 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1811 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1813 /* Deliver pipe and file addressees */
1814 to = _outof(to, mtf, &_sendout_error);
1815 if (_sendout_error)
1816 savedeadletter(mtf, FAL0);
1818 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1820 { ui32_t cnt = count(to);
1821 if ((!recipient_record || cnt > 0) &&
1822 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1823 goto jleave;
1824 if (cnt > 0) {
1825 sb.sb_hp = hp;
1826 sb.sb_to = to;
1827 sb.sb_input = mtf;
1828 if (_transfer(&sb))
1829 rv = OKAY;
1830 } else if (!_sendout_error)
1831 rv = OKAY;
1833 jleave:
1834 Fclose(mtf);
1835 j_leave:
1836 if (_sendout_error)
1837 exit_status |= EXIT_SEND_ERROR;
1838 NYD_LEAVE;
1839 return rv;
1841 jfail_dead:
1842 _sendout_error = TRU1;
1843 savedeadletter(mtf, TRU1);
1844 n_err(_("... message not sent\n"));
1845 goto jleave;
1848 FL int
1849 mkdate(FILE *fo, char const *field)
1851 struct tm tmpgm, *tmptr;
1852 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1853 NYD_ENTER;
1855 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1856 tzdiff = time_current.tc_time - mktime(&tmpgm);
1857 tzdiff_hour = (int)(tzdiff / 60);
1858 tzdiff_min = tzdiff_hour % 60;
1859 tzdiff_hour /= 60;
1860 tmptr = &time_current.tc_local;
1861 if (tmptr->tm_isdst > 0)
1862 ++tzdiff_hour;
1863 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1864 field,
1865 weekday_names[tmptr->tm_wday],
1866 tmptr->tm_mday, month_names[tmptr->tm_mon],
1867 tmptr->tm_year + 1900, tmptr->tm_hour,
1868 tmptr->tm_min, tmptr->tm_sec,
1869 tzdiff_hour * 100 + tzdiff_min);
1870 NYD_LEAVE;
1871 return rv;
1874 FL int
1875 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1876 enum sendaction action, enum conversion convert, char const *contenttype,
1877 char const *charset)
1879 #define FMT_CC_AND_BCC() \
1880 do {\
1881 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1882 if (fmt("Cc:", hp->h_cc, fo, ff))\
1883 goto jleave;\
1884 ++gotcha;\
1886 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1887 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1888 goto jleave;\
1889 ++gotcha;\
1891 } while (0)
1893 char const *addr;
1894 size_t gotcha;
1895 struct name *np, *fromasender = NULL;
1896 int stealthmua, rv = 1;
1897 bool_t nodisp;
1898 enum fmt_flags ff;
1899 NYD_ENTER;
1901 if ((addr = ok_vlook(stealthmua)) != NULL)
1902 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1903 else
1904 stealthmua = 0;
1905 gotcha = 0;
1906 nodisp = (action != SEND_TODISP);
1907 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1909 if (w & GDATE)
1910 mkdate(fo, "Date"), ++gotcha;
1911 if (w & GIDENT) {
1912 if (hp->h_from == NULL || hp->h_sender == NULL)
1913 setup_from_and_sender(hp);
1915 if (hp->h_from != NULL) {
1916 if (fmt("From:", hp->h_from, fo, ff))
1917 goto jleave;
1918 ++gotcha;
1921 if (hp->h_sender != NULL) {
1922 if (fmt("Sender:", hp->h_sender, fo, ff))
1923 goto jleave;
1924 ++gotcha;
1927 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1928 if (fromasender == NULL)
1929 goto jleave;
1930 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1933 #if 1
1934 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1935 if (fmt("To:", hp->h_to, fo, ff))
1936 goto jleave;
1937 ++gotcha;
1939 #else
1940 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1941 * TODO given that we cannot handle group addresses. Ridiculous */
1942 if (w & GTO) {
1943 struct name *xto;
1945 if ((xto = hp->h_to) != NULL) {
1946 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1948 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1949 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1950 goto jto_fmt;
1951 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1952 goto jleave;
1953 ++gotcha;
1954 } else if (nosend_msg == TRUM1) {
1955 jto_fmt:
1956 if (fmt("To:", hp->h_to, fo, ff))
1957 goto jleave;
1958 ++gotcha;
1961 #endif
1963 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1964 FMT_CC_AND_BCC();
1966 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1967 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1968 goto jleave;
1969 if (hp->h_subject != NULL) {
1970 char *sub = subject_re_trim(hp->h_subject);
1971 size_t sublen = strlen(sub);
1973 /* Trimmed something, (re-)add Re: */
1974 if (sub != hp->h_subject) {
1975 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
1976 goto jleave;
1977 if (sublen > 0 &&
1978 xmime_write(sub, sublen, fo,
1979 (!nodisp ? CONV_NONE : CONV_TOHDR),
1980 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1981 goto jleave;
1983 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
1984 else if (*sub != '\0') {
1985 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
1986 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1987 goto jleave;
1990 ++gotcha;
1991 putc('\n', fo);
1994 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
1995 FMT_CC_AND_BCC();
1997 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
1998 if (fputs(addr, fo) == EOF || putc('\n', fo) == EOF)
1999 goto jleave;
2000 ++gotcha;
2003 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2004 if (fmt("References:", np, fo, 0))
2005 goto jleave;
2006 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2007 while (np->n_flink != NULL)
2008 np = np->n_flink;
2009 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2010 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2011 if (fprintf(fo,
2012 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2013 goto jleave;
2014 ++gotcha;
2015 } else {
2016 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2017 goto jleave;
2021 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2022 if (fprintf(fo,
2023 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2024 goto jleave;
2025 ++gotcha;
2028 if (w & GIDENT) {
2029 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2030 * the list first.. TODO it is a terrible codebase.. */
2031 if ((np = hp->h_replyto) != NULL)
2032 np = namelist_dup(np, np->n_type);
2033 else if ((addr = ok_vlook(replyto)) != NULL)
2034 np = lextract(addr, GEXTRA | GFULL);
2035 if (np != NULL &&
2036 (np = elide(
2037 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2038 NULL))) != NULL) {
2039 if (fmt("Reply-To:", np, fo, ff))
2040 goto jleave;
2041 ++gotcha;
2045 if ((w & GIDENT) && !nosend_msg) {
2046 /* Mail-Followup-To: TODO factor out this huge block of code */
2047 /* Place ourselfs in there if any non-subscribed list is an addressee */
2048 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2049 ok_blook(followup_to)) {
2050 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2052 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2053 struct name *mft, *x;
2055 /* But for that, we have to remove all incarnations of ourselfs first.
2056 * TODO It is total crap that we have delete_alternates(), is_myname()
2057 * TODO or whatever; these work only with variables, not with data
2058 * TODO that is _currently_ in some header fields!!! v15.0: complete
2059 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2060 * TODO then this should be a really cheap thing in here... */
2061 np = elide(delete_alternates(cat(
2062 namelist_dup(hp->h_to, GEXTRA | GFULL),
2063 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2064 addr = hp->h_list_post;
2066 for (mft = NULL; (x = np) != NULL;) {
2067 si8_t ml;
2068 np = np->n_flink;
2070 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2071 addr != NULL && !asccasecmp(addr, x->n_name))
2072 ml = MLIST_KNOWN;
2074 /* Any non-subscribed list? Add ourselves */
2075 switch (ml) {
2076 case MLIST_KNOWN:
2077 f |= HF_MFT_SENDER;
2078 /* FALLTHRU */
2079 case MLIST_SUBSCRIBED:
2080 f |= _ANYLIST;
2081 goto j_mft_add;
2082 case MLIST_OTHER:
2083 if (!(f & HF_LIST_REPLY)) {
2084 j_mft_add:
2085 if (!is_addr_invalid(x,
2086 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2087 x->n_flink = mft;
2088 mft = x;
2089 } /* XXX write some warning? if verbose?? */
2090 continue;
2092 /* And if this is a reply that honoured a MFT: header then we'll
2093 * also add all members of the original MFT: that are still
2094 * addressed by us, regardless of all other circumstances */
2095 else if (f & _HADMFT) {
2096 struct name *ox;
2097 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2098 if (!asccasecmp(ox->n_name, x->n_name))
2099 goto j_mft_add;
2101 break;
2105 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2106 if (((f & HF_MFT_SENDER) ||
2107 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2108 (np = fromasender) != NULL && np != (struct name*)0x1) {
2109 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2110 np->n_flink = mft;
2111 mft = np;
2114 if (fmt("Mail-Followup-To:", mft, fo, ff))
2115 goto jleave;
2116 ++gotcha;
2120 if (!_check_dispo_notif(fromasender, hp, fo))
2121 goto jleave;
2124 if ((w & GUA) && stealthmua == 0) {
2125 if (fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)) < 0)
2126 goto jleave;
2127 ++gotcha;
2130 /* The user may have placed headers when editing */
2131 if(1){
2132 struct n_header_field *hfp;
2134 if((hfp = hp->h_user_headers) != NULL){
2135 if(!_sendout_header_list(fo, hfp, nodisp))
2136 goto jleave;
2137 ++gotcha;
2141 /* Custom headers, as via *customhdr* */
2142 if(!nosend_msg){
2143 struct n_header_field *hfp;
2145 /* With iconv support we likely have a cached result */
2146 if((hfp = hp->h_custom_headers) == NULL)
2147 hp->h_custom_headers = hfp = n_customhdr_query();
2148 if(hfp != NULL){
2149 if(!_sendout_header_list(fo, hfp, nodisp))
2150 goto jleave;
2151 ++gotcha;
2155 /* We don't need MIME unless.. we need MIME?! */
2156 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
2157 hp->h_attach != NULL ||
2158 ((options & OPT_Mm_FLAG) && option_Mm_arg != NULL) ||
2159 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2160 ++gotcha;
2161 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2162 goto jleave;
2163 if (hp->h_attach != NULL) {
2164 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2165 if (fprintf(fo,
2166 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2167 _sendout_boundary) < 0)
2168 goto jleave;
2169 } else {
2170 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2171 goto jleave;
2175 if (gotcha && (w & GNL))
2176 if (putc('\n', fo) == EOF)
2177 goto jleave;
2178 rv = 0;
2179 jleave:
2180 NYD_LEAVE;
2181 return rv;
2182 #undef FMT_CC_AND_BCC
2185 FL enum okay
2186 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2188 struct sendbundle sb;
2189 FILE *ibuf, *nfo, *nfi;
2190 char *tempMail;
2191 enum okay rv = STOP;
2192 NYD_ENTER;
2194 _sendout_error = FAL0;
2195 __sendout_ident = NULL;
2197 /* Update some globals we likely need first */
2198 time_current_update(&time_current, TRU1);
2200 if ((to = checkaddrs(to,
2201 (EACM_NORMAL |
2202 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2203 &_sendout_error)) == NULL)
2204 goto jleave;
2205 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2206 if (_sendout_error < 0)
2207 n_err(_("Some addressees were classified as \"hard error\"\n"));
2209 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2210 == NULL) {
2211 _sendout_error = TRU1;
2212 n_perr(_("temporary mail file"), 0);
2213 goto jleave;
2215 if ((nfi = Fopen(tempMail, "r")) == NULL)
2216 n_perr(tempMail, 0);
2217 Ftmp_release(&tempMail);
2218 if (nfi == NULL)
2219 goto jerr_o;
2221 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2222 goto jerr_io;
2224 memset(&sb, 0, sizeof sb);
2225 sb.sb_to = to;
2226 sb.sb_input = nfi;
2227 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2228 /* ..wait until we can write DEAD */
2229 _sendout_error = -1;
2231 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2232 jfail_dead:
2233 savedeadletter(nfi, TRU1);
2234 n_err(_("... message not sent\n"));
2235 jerr_io:
2236 Fclose(nfi);
2237 jerr_o:
2238 Fclose(nfo);
2239 _sendout_error = TRU1;
2240 goto jleave;
2243 if (_sendout_error < 0)
2244 goto jfail_dead;
2246 Fclose(nfo);
2247 rewind(nfi);
2249 to = _outof(to, nfi, &_sendout_error);
2251 if (_sendout_error)
2252 savedeadletter(nfi, FAL0);
2254 if (count(to = elide(to)) != 0) {
2255 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2256 sb.sb_to = to;
2257 /*sb.sb_input = nfi;*/
2258 if (_transfer(&sb))
2259 rv = OKAY;
2261 } else if (!_sendout_error)
2262 rv = OKAY;
2264 Fclose(nfi);
2265 jleave:
2266 if (_sendout_error)
2267 exit_status |= EXIT_SEND_ERROR;
2268 NYD_LEAVE;
2269 return rv;
2272 FL void
2273 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2274 struct n_string line;
2275 int c;
2276 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2277 ul_i bytes, lines;
2278 FILE *dbuf;
2279 char const *cp, *cpq;
2280 NYD_ENTER;
2282 if(!ok_blook(save))
2283 goto jleave;
2285 if(fflush_rewind_first){
2286 fflush(fp);
2287 rewind(fp);
2289 if(fsize(fp) == 0)
2290 goto jleave;
2292 cp = n_getdeadletter();
2293 cpq = n_shexp_quote_cp(cp, FAL0);
2295 if(options & OPT_DEBUG){
2296 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2297 goto jleave;
2300 if((dbuf = Fopen(cp, "w")) == NULL){
2301 n_perr(_("Cannot save to $DEAD"), 0);
2302 goto jleave;
2304 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2306 printf("%s ", cpq);
2307 fflush(stdout);
2309 /* TODO savedeadletter() non-conforming: should check whether we have any
2310 * TODO headers, if not we need to place "something", anything will do.
2311 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2312 * TODO I/O error handling missing. Yuck! */
2313 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2314 bytes = (ul_i)fprintf(dbuf, "From %s %s", myname, time_current.tc_ctime);
2315 lines = 1;
2316 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2317 n_string_trunc(&line, 0);
2318 while((c = getc(fp)) != EOF && c != '\n')
2319 n_string_push_c(&line, c);
2321 /* TODO It may be that we have only some plain text. It may be that we
2322 * TODO have a complete MIME encoded message. We don't know, and we
2323 * TODO have no usable mechanism to dig it!! tWe need v15! */
2324 if(!(flags & a_INIT)){
2325 size_t i;
2327 /* Throw away leading empty lines! */
2328 if(line.s_len == 0)
2329 continue;
2330 for(i = 0; i < line.s_len; ++i){
2331 if(fieldnamechar(line.s_dat[i]))
2332 continue;
2333 if(line.s_dat[i] == ':'){
2334 flags |= a_INIT;
2335 break;
2336 }else{
2337 /* We have no headers, this is already a body line! */
2338 flags |= a_INIT | a_BODY;
2339 break;
2342 /* Well, i had to check whether the RFC allows this. Assume we've
2343 * passed the headers, too, then! */
2344 if(i == line.s_len)
2345 flags |= a_INIT | a_BODY;
2347 if(flags & a_BODY){
2348 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2349 n_string_unshift_c(&line, '>');
2351 if(line.s_len == 0)
2352 flags |= a_BODY | a_NL;
2353 else
2354 flags &= ~a_NL;
2356 n_string_push_c(&line, '\n');
2357 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2359 if(!(flags & a_NL)){
2360 putc('\n', dbuf);
2361 ++bytes;
2362 ++lines;
2364 n_string_gut(&line);
2366 Fclose(dbuf);
2367 printf("%lu/%lu\n", lines, bytes);
2368 fflush(stdout);
2370 rewind(fp);
2371 jleave:
2372 NYD_LEAVE;
2375 #undef SEND_LINESIZE
2377 /* s-it-mode */