Show the Content-Description:, as applicable
[s-mailx.git] / sendout.c
blobb8bf0c3dce5cf13f5fe52b2edd80c6481a2c4f43
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;
296 /* Otherwise we need to iterate over all possible output charsets */
297 if ((offs = ftell(fo)) == -1) {
298 err = EIO;
299 goto jleave;
301 charset_iter_recurse(charset_iter_orig);
302 for (charset_iter_reset(NULL);; charset_iter_next()) {
303 if (!charset_iter_is_valid()) {
304 err = EILSEQ;
305 break;
307 err = __attach_file(ap, fo);
308 if (err == 0 || (err != EILSEQ && err != EINVAL))
309 break;
310 clearerr(fo);
311 if (fseek(fo, offs, SEEK_SET) == -1) {
312 err = EIO;
313 break;
315 if (ap->a_conv != AC_DEFAULT) {
316 err = EILSEQ;
317 break;
319 ap->a_charset = NULL;
321 charset_iter_restore(charset_iter_orig);
322 jleave:
323 NYD_LEAVE;
324 return err;
327 static int
328 __attach_file(struct attachment *ap, FILE *fo) /* XXX linelength */
330 int err = 0, do_iconv;
331 FILE *fi;
332 char const *charset;
333 enum conversion convert;
334 char *buf;
335 size_t bufsize, lncnt, inlen;
336 NYD_ENTER;
338 /* Either charset-converted temporary file, or plain path */
339 if (ap->a_conv == AC_TMPFILE) {
340 fi = ap->a_tmpf;
341 assert(ftell(fi) == 0);
342 } else if ((fi = Fopen(ap->a_name, "r")) == NULL) {
343 err = errno;
344 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_name, FAL0), strerror(err));
345 goto jleave;
348 /* MIME part header for attachment */
349 { char const *bn = ap->a_name, *ct;
351 if ((ct = strrchr(bn, '/')) != NULL)
352 bn = ++ct;
353 ct = ap->a_content_type;
354 charset = ap->a_charset;
355 convert = mime_type_classify_file(fi, (char const**)&ct,
356 &charset, &do_iconv);
357 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
358 ap->a_conv == AC_TMPFILE)
359 do_iconv = 0;
361 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
362 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
363 _put_cd(fo, ap->a_content_disposition, bn) < 0)
364 goto jerr_header;
366 if ((bn = ap->a_content_id) != NULL &&
367 fputs("Content-ID: ", fo) == EOF ||
368 xmime_write(bn, strlen(bn), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
369 ) < 0 || putc('\n', fo) == EOF)
370 goto jerr_header;
372 if ((bn = ap->a_content_description) != NULL &&
373 fputs("Content-Description: ", fo) == EOF ||
374 xmime_write(bn, strlen(bn), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
375 ) < 0 || putc('\n', fo) == EOF)
376 goto jerr_header;
378 if (putc('\n', fo) == EOF) {
379 jerr_header:
380 err = errno;
381 goto jerr_fclose;
385 #ifdef HAVE_ICONV
386 if (iconvd != (iconv_t)-1)
387 n_iconv_close(iconvd);
388 if (do_iconv) {
389 char const *tcs = charset_get_lc();
390 if (asccasecmp(charset, tcs) &&
391 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
392 (err = errno) != 0) {
393 if (err == EINVAL)
394 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
395 else
396 n_err(_("iconv_open: %s\n"), strerror(err));
397 goto jerr_fclose;
400 #endif
402 bufsize = SEND_LINESIZE;
403 buf = smalloc(bufsize);
404 if (convert == CONV_TOQP
405 #ifdef HAVE_ICONV
406 || iconvd != (iconv_t)-1
407 #endif
409 lncnt = fsize(fi);
410 for (;;) {
411 if (convert == CONV_TOQP
412 #ifdef HAVE_ICONV
413 || iconvd != (iconv_t)-1
414 #endif
416 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
417 break;
418 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
419 break;
420 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
421 err = errno;
422 goto jerr;
425 if (ferror(fi))
426 err = EDOM;
427 jerr:
428 free(buf);
429 jerr_fclose:
430 if (ap->a_conv != AC_TMPFILE)
431 Fclose(fi);
432 jleave:
433 NYD_LEAVE;
434 return err;
437 static bool_t
438 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
440 bool_t v15, rv = FAL0;
441 char *shost, *from;
442 #ifdef HAVE_SMTP
443 char const *smtp;
444 #endif
445 NYD_ENTER;
447 v15 = ok_blook(v15_compat);
448 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
449 from = ((signing_caps || !v15 || shost == NULL)
450 ? skin(myorigin(sbp->sb_hp)) : NULL);
452 if (signing_caps) {
453 if (from == NULL) {
454 #ifdef HAVE_SSL
455 n_err(_("No *from* address for signing specified\n"));
456 goto jleave;
457 #endif
458 } else
459 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
462 #ifdef HAVE_SMTP
463 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
464 char const *proto;
466 /* *smtp* OBSOLETE message in mta_start() */
467 if ((smtp = ok_vlook(mta)) == NULL ||
468 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
469 rv = TRU1;
470 goto jleave;
474 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
475 goto jleave;
477 if (v15) {
478 if (shost == NULL) {
479 if (from == NULL)
480 goto jenofrom;
481 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
482 } else
483 __sendout_ident = sbp->sb_url.url_u_h.s;
484 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
485 goto jleave;
486 } else {
487 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
488 n_err(_("New-style URL used without *v15-compat* being set\n"));
489 goto jleave;
491 /* TODO part of the entire myorigin() disaster, get rid of this! */
492 if (from == NULL) {
493 jenofrom:
494 n_err(_("Your configuration requires a *from* address, "
495 "but none was given\n"));
496 goto jleave;
498 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
499 goto jleave;
500 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
503 rv = TRU1;
504 #endif /* HAVE_SMTP */
505 #if defined HAVE_SSL || defined HAVE_SMTP
506 jleave:
507 #endif
508 NYD_LEAVE;
509 return rv;
512 static int
513 attach_message(struct attachment *ap, FILE *fo)
515 struct message *mp;
516 char const *ccp;
517 int rv;
518 NYD_ENTER;
520 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
521 "Content-Disposition: inline\n", _sendout_boundary);
522 if ((ccp = ap->a_content_description) != NULL)
523 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
524 putc('\n', fo);
526 mp = message + ap->a_msgno - 1;
527 touch(mp);
528 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
529 NYD_LEAVE;
530 return rv;
533 static int
534 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
535 char const *contenttype, char const *charset)
537 struct attachment *att;
538 int rv = -1;
539 NYD_ENTER;
541 fputs("This is a multi-part message in MIME format.\n", fo);
542 if (fsize(fi) != 0) {
543 char *buf;
544 size_t sz, bufsize, cnt;
546 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
547 _put_ct(fo, contenttype, charset) < 0 ||
548 _put_cte(fo, convert) < 0 ||
549 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
550 goto jleave;
552 buf = smalloc(bufsize = SEND_LINESIZE);
553 if (convert == CONV_TOQP
554 #ifdef HAVE_ICONV
555 || iconvd != (iconv_t)-1
556 #endif
558 fflush(fi);
559 cnt = fsize(fi);
561 for (;;) {
562 if (convert == CONV_TOQP
563 #ifdef HAVE_ICONV
564 || iconvd != (iconv_t)-1
565 #endif
567 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
568 break;
569 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
570 break;
572 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
573 free(buf);
574 goto jleave;
577 free(buf);
579 if (ferror(fi))
580 goto jleave;
583 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
584 if (att->a_msgno) {
585 if (attach_message(att, fo) != 0)
586 goto jleave;
587 } else if (_attach_file(att, fo) != 0)
588 goto jleave;
591 /* the final boundary with two attached dashes */
592 fprintf(fo, "\n--%s--\n", _sendout_boundary);
593 rv = 0;
594 jleave:
595 NYD_LEAVE;
596 return rv;
599 static FILE *
600 infix(struct header *hp, FILE *fi) /* TODO check */
602 FILE *nfo, *nfi = NULL;
603 char *tempMail;
604 char const *contenttype, *charset = NULL;
605 enum conversion convert;
606 int do_iconv = 0, err;
607 #ifdef HAVE_ICONV
608 char const *tcs, *convhdr = NULL;
609 #endif
610 NYD_ENTER;
612 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
613 == NULL) {
614 n_perr(_("temporary mail file"), 0);
615 goto jleave;
617 if ((nfi = Fopen(tempMail, "r")) == NULL) {
618 n_perr(tempMail, 0);
619 Fclose(nfo);
621 Ftmp_release(&tempMail);
622 if (nfi == NULL)
623 goto jleave;
625 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
627 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
628 if((options & OPT_Mm_FLAG) && option_Mm_arg != NULL)
629 contenttype = option_Mm_arg;
630 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
632 #ifdef HAVE_ICONV
633 tcs = charset_get_lc();
634 if ((convhdr = need_hdrconv(hp))) {
635 if (iconvd != (iconv_t)-1) /* XXX */
636 n_iconv_close(iconvd);
637 if (asccasecmp(convhdr, tcs) != 0 &&
638 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
639 (err = errno) != 0)
640 goto jiconv_err;
642 #endif
643 if (puthead(FAL0, hp, nfo,
644 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
645 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
646 goto jerr;
647 #ifdef HAVE_ICONV
648 if (iconvd != (iconv_t)-1)
649 n_iconv_close(iconvd);
650 #endif
652 #ifdef HAVE_ICONV
653 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
654 if (asccasecmp(charset, tcs) != 0 &&
655 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
656 (err = errno) != 0) {
657 jiconv_err:
658 if (err == EINVAL)
659 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
660 else
661 n_perr("iconv_open", 0);
662 goto jerr;
665 #endif
667 if (hp->h_attach != NULL) {
668 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
669 goto jerr;
670 } else {
671 size_t sz, bufsize, cnt;
672 char *buf;
674 if (convert == CONV_TOQP
675 #ifdef HAVE_ICONV
676 || iconvd != (iconv_t)-1
677 #endif
679 fflush(fi);
680 cnt = fsize(fi);
682 buf = smalloc(bufsize = SEND_LINESIZE);
683 for (err = 0;;) {
684 if (convert == CONV_TOQP
685 #ifdef HAVE_ICONV
686 || iconvd != (iconv_t)-1
687 #endif
689 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
690 break;
691 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
692 break;
693 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
694 err = 1;
695 break;
698 free(buf);
700 if (err || ferror(fi)) {
701 jerr:
702 Fclose(nfo);
703 Fclose(nfi);
704 #ifdef HAVE_ICONV
705 if (iconvd != (iconv_t)-1)
706 n_iconv_close(iconvd);
707 #endif
708 nfi = NULL;
709 goto jleave;
713 #ifdef HAVE_ICONV
714 if (iconvd != (iconv_t)-1)
715 n_iconv_close(iconvd);
716 #endif
718 fflush(nfo);
719 if ((err = ferror(nfo)))
720 n_perr(_("temporary mail file"), 0);
721 Fclose(nfo);
722 if (!err) {
723 fflush_rewind(nfi);
724 Fclose(fi);
725 } else {
726 Fclose(nfi);
727 nfi = NULL;
729 jleave:
730 NYD_LEAVE;
731 return nfi;
734 static bool_t
735 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
737 char const *from;
738 bool_t rv = TRU1;
739 NYD_ENTER;
741 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
742 * TODO not yet checked */
743 if (!ok_blook(disposition_notification_send))
744 goto jleave;
746 if (mdn != NULL && mdn != (struct name*)0x1)
747 from = mdn->n_name;
748 else if ((from = myorigin(hp)) == NULL) {
749 if (options & OPT_D_V)
750 n_err(_("*disposition-notification-send*: no *from* set\n"));
751 goto jleave;
754 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
755 rv = FAL0;
756 jleave:
757 NYD_LEAVE;
758 return rv;
761 static int
762 sendmail_internal(void *v, int recipient_record)
764 struct header head;
765 char *str = v;
766 int rv;
767 NYD_ENTER;
769 memset(&head, 0, sizeof head);
770 head.h_to = lextract(str, GTO | GFULL);
771 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
772 NYD_LEAVE;
773 return (rv == 0);
776 static struct name *
777 _outof(struct name *names, FILE *fo, bool_t *senderror)
779 ui32_t pipecnt, xcnt, i;
780 int *fda;
781 char const *sh;
782 struct name *np;
783 FILE *fin = NULL, *fout;
784 NYD_ENTER;
786 /* Look through all recipients and do a quick return if no file or pipe
787 * addressee is found */
788 fda = NULL; /* Silence cc */
789 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
790 if (np->n_type & GDEL)
791 continue;
792 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
793 case NAME_ADDRSPEC_ISFILE:
794 ++xcnt;
795 break;
796 case NAME_ADDRSPEC_ISPIPE:
797 ++pipecnt;
798 break;
801 if (pipecnt == 0 && xcnt == 0)
802 goto jleave;
804 /* Otherwise create an array of file descriptors for each found pipe
805 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
806 * each pipe subprocess needs its very own file descriptor, and we need
807 * to deal with that.
808 * To make our life a bit easier let's just use the auto-reclaimed
809 * string storage */
810 if (pipecnt == 0 || (options & OPT_DEBUG)) {
811 pipecnt = 0;
812 fda = NULL;
813 sh = NULL;
814 } else {
815 fda = salloc(sizeof(int) * pipecnt);
816 for (i = 0; i < pipecnt; ++i)
817 fda[i] = -1;
818 sh = ok_vlook(SHELL);
821 for (np = names; np != NULL; np = np->n_flink) {
822 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
823 continue;
825 /* In days of old we removed the entry from the the list; now for sake of
826 * header expansion we leave it in and mark it as deleted */
827 np->n_type |= GDEL;
829 if(options & OPT_D_VV)
830 n_err(_(">>> Writing message via %s\n"),
831 n_shexp_quote_cp(np->n_name, FAL0));
832 /* We _do_ write to STDOUT, anyway! */
833 if((options & OPT_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
834 np->n_name[0] != '-' || np->n_name[1] != '\0'))
835 continue;
837 /* See if we have copied the complete message out yet. If not, do so */
838 if (image < 0) {
839 int c;
840 char *tempEdit;
842 if ((fout = Ftmp(&tempEdit, "outof",
843 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
844 n_perr(_("Creation of temporary image"), 0);
845 *senderror = TRU1;
846 goto jcant;
848 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
849 _CLOEXEC_SET(image);
850 for (i = 0; i < pipecnt; ++i) {
851 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
852 if (fd < 0) {
853 close(image);
854 image = -1;
855 pipecnt = i;
856 break;
858 fda[i] = fd;
859 _CLOEXEC_SET(fd);
862 Ftmp_release(&tempEdit);
864 if (image < 0) {
865 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
866 *senderror = TRU1;
867 Fclose(fout);
868 goto jcant;
871 fprintf(fout, "From %s %s", myname, time_current.tc_ctime);
872 c = EOF;
873 while (i = c, (c = getc(fo)) != EOF)
874 putc(c, fout);
875 rewind(fo);
876 if ((int)i != '\n')
877 putc('\n', fout);
878 putc('\n', fout);
879 fflush(fout);
880 if (ferror(fout)) {
881 n_perr(_("Finalizing write of temporary image"), 0);
882 Fclose(fout);
883 goto jcantfout;
885 Fclose(fout);
887 /* If we have to serve file addressees, open reader */
888 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
889 n_perr(_("Failed to open a temporary image duplicate"), 0);
890 jcantfout:
891 *senderror = TRU1;
892 close(image);
893 image = -1;
894 goto jcant;
897 /* From now on use xcnt as a counter for pipecnt */
898 xcnt = 0;
901 /* Now either copy "image" to the desired file or give it as the standard
902 * input to the desired program as appropriate */
903 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
904 int pid;
905 sigset_t nset;
907 sigemptyset(&nset);
908 sigaddset(&nset, SIGHUP);
909 sigaddset(&nset, SIGINT);
910 sigaddset(&nset, SIGQUIT);
911 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
912 np->n_name + 1, NULL, NULL);
913 if (pid < 0) {
914 n_err(_("Piping message to %s failed\n"),
915 n_shexp_quote_cp(np->n_name, FAL0));
916 *senderror = TRU1;
917 goto jcant;
919 free_child(pid);
920 } else {
921 int c;
922 char const *fname, *fnameq;
924 if ((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
925 *senderror = TRU1;
926 goto jcant;
928 fnameq = n_shexp_quote_cp(fname, FAL0);
930 if(fname[0] == '-' && fname[1] == '\0')
931 fout = stdout;
932 else if ((fout = Zopen(fname, "a")) == NULL) {
933 n_err(_("Writing message to %s failed: %s\n"),
934 fnameq, strerror(errno));
935 *senderror = TRU1;
936 goto jcant;
938 rewind(fin);
939 while ((c = getc(fin)) != EOF)
940 putc(c, fout);
941 if (ferror(fout)) {
942 n_err(_("Writing message to %s failed: %s\n"),
943 fnameq, _("write error"));
944 *senderror = TRU1;
946 if(fout != stdout)
947 Fclose(fout);
950 jcant:
951 if (image < 0)
952 goto jdelall;
955 jleave:
956 if (fin != NULL)
957 Fclose(fin);
958 for (i = 0; i < pipecnt; ++i)
959 close(fda[i]);
960 if (image >= 0) {
961 close(image);
962 image = -1;
964 NYD_LEAVE;
965 return names;
967 jdelall:
968 while (np != NULL) {
969 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
970 np->n_type |= GDEL;
971 np = np->n_flink;
973 goto jleave;
976 static bool_t
977 mightrecord(FILE *fp, struct name *to, bool_t resend)
979 char *cp, *cq;
980 char const *ep;
981 bool_t rv = TRU1;
982 NYD_ENTER;
984 if (options & OPT_DEBUG)
985 cp = NULL;
986 else if (to != NULL) {
987 cp = savestr(skinned_name(to));
988 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
990 *cq = '\0';
991 } else
992 cp = ok_vlook(record);
994 if (cp != NULL) {
995 if ((ep = expand(cp)) == NULL) {
996 ep = "NULL";
997 goto jbail;
1000 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
1001 which_protocol(ep) == PROTO_FILE) {
1002 size_t i = strlen(cp);
1003 cq = salloc(i + 1 +1);
1004 cq[0] = '+';
1005 memcpy(cq + 1, cp, i +1);
1006 cp = cq;
1007 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
1008 ep = "NULL";
1009 goto jbail;
1013 if (!a_sendout__savemail(ep, fp, resend)) {
1014 jbail:
1015 n_err(_("Failed to save message in %s - message not sent\n"),
1016 n_shexp_quote_cp(ep, FAL0));
1017 exit_status |= EXIT_ERR;
1018 savedeadletter(fp, 1);
1019 rv = FAL0;
1022 NYD_LEAVE;
1023 return rv;
1026 static bool_t
1027 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1028 FILE *fo;
1029 size_t bufsize, buflen, cnt;
1030 bool_t rv, emptyline;
1031 char *buf;
1032 NYD_ENTER;
1034 buf = smalloc(bufsize = LINESIZE);
1035 rv = emptyline = FAL0;
1037 if((fo = Zopen(name, "a+")) == NULL){
1038 if((fo = Zopen(name, "wx")) == NULL){
1039 n_perr(name, 0);
1040 goto j_leave;
1042 emptyline = TRU1;
1045 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1046 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1048 rv = TRU1;
1050 if(!emptyline){
1051 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1052 switch(fread(buf, sizeof *buf, 2, fo)){
1053 case 2:
1054 if(buf[1] != '\n')
1055 emptyline = TRU1;
1056 break;
1057 case 1:
1058 if(buf[0] != '\n')
1059 emptyline = TRU1;
1060 break;
1061 default:
1062 if(ferror(fo)){
1063 n_perr(name, 0);
1064 rv = FAL0;
1065 goto jleave;
1068 if(emptyline){
1069 putc('\n', fo);
1070 fflush(fo);
1075 fflush_rewind(fp);
1077 fprintf(fo, "From %s %s", myname, time_current.tc_ctime);
1078 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1079 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1080 /* Only if we are resending it can happen that we have to quote From_
1081 * lines here; we don't generate messages which are ambiguous ourselves */
1082 if(resend){
1083 if(emptyline && is_head(buf, buflen, FAL0))
1084 putc('>', fo);
1085 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1087 emptyline = (buflen > 0 && *buf == '\n');
1088 fwrite(buf, sizeof *buf, buflen, fo);
1090 if(buflen > 0 && buf[buflen - 1] != '\n')
1091 putc('\n', fo);
1092 putc('\n', fo);
1093 fflush(fo);
1094 if(ferror(fo)){
1095 n_perr(name, 0);
1096 rv = FAL0;
1099 jleave:
1100 really_rewind(fp);
1101 if(Fclose(fo) != 0)
1102 rv = FAL0;
1103 j_leave:
1104 free(buf);
1105 NYD_LEAVE;
1106 return rv;
1109 static bool_t
1110 _transfer(struct sendbundle *sbp)
1112 struct name *np;
1113 ui32_t cnt;
1114 bool_t rv = TRU1;
1115 NYD_ENTER;
1117 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1118 char const k[] = "smime-encrypt-";
1119 size_t nl = strlen(np->n_name);
1120 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1121 memcpy(vs, k, sizeof(k) -1);
1122 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1124 if ((cp = vok_vlook(vs)) != NULL) {
1125 #ifdef HAVE_SSL
1126 FILE *ef;
1128 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1129 FILE *fisave = sbp->sb_input;
1130 struct name *nsave = sbp->sb_to;
1132 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1133 sbp->sb_input = ef;
1134 if (!__mta_start(sbp))
1135 rv = FAL0;
1136 sbp->sb_to = nsave;
1137 sbp->sb_input = fisave;
1139 Fclose(ef);
1140 } else {
1141 #else
1142 n_err(_("No SSL support compiled in\n"));
1143 rv = FAL0;
1144 #endif
1145 n_err(_("Message not sent to: %s\n"), np->n_name);
1146 _sendout_error = TRU1;
1147 #ifdef HAVE_SSL
1149 #endif
1150 rewind(sbp->sb_input);
1152 if (np->n_flink != NULL)
1153 np->n_flink->n_blink = np->n_blink;
1154 if (np->n_blink != NULL)
1155 np->n_blink->n_flink = np->n_flink;
1156 if (np == sbp->sb_to)
1157 sbp->sb_to = np->n_flink;
1158 np = np->n_flink;
1159 } else {
1160 ++cnt;
1161 np = np->n_flink;
1163 ac_free(vs);
1166 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1167 rv = FAL0;
1168 NYD_LEAVE;
1169 return rv;
1172 static bool_t
1173 __mta_start(struct sendbundle *sbp)
1175 pid_t pid;
1176 sigset_t nset;
1177 char const **args, *mta;
1178 bool_t rv;
1179 NYD_ENTER;
1181 if((mta = ok_vlook(smtp)) != NULL){
1182 OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1183 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1184 * that *smtp* is misused with file:// or so */
1185 if(n_servbyname(mta, NULL) == NULL)
1186 mta = savecat("smtp://", mta);
1187 rv = TRU1;
1188 }else{
1189 char const *proto;
1191 if((proto = ok_vlook(sendmail)) != NULL)
1192 OBSOLETE(_("please use *mta* instead of *sendmail*"));
1193 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1194 if(proto == NULL){
1195 mta = VAL_MTA;
1196 rv = FAL0;
1197 }else
1198 rv = TRU1;
1200 /* TODO for now this is pretty hacky: in v15 we should simply create
1201 * TODO an URL object; i.e., be able to do so, and it does it right
1202 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1203 else if((proto = n_servbyname(mta, NULL)) != NULL){
1204 if(*proto == '\0'){
1205 mta += sizeof("file://") -1;
1206 rv = FAL0;
1207 }else
1208 rv = TRU1;
1209 }else
1210 rv = FAL0;
1213 if(!rv){
1214 char const *mta_base;
1216 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1217 n_err(_("*mta* variable expansion failure: %s\n"),
1218 n_shexp_quote_cp(mta_base, FAL0));
1219 goto jstop;
1222 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1223 if (options & OPT_DEBUG) {
1224 __mta_debug(sbp, mta, args);
1225 rv = TRU1;
1226 goto jleave;
1228 } else {
1229 n_UNINIT(args, NULL);
1230 #ifndef HAVE_SMTP
1231 n_err(_("No SMTP support compiled in\n"));
1232 goto jstop;
1233 #else
1234 if (options & OPT_DEBUG) {
1235 (void)smtp_mta(sbp);
1236 rv = TRU1;
1237 goto jleave;
1239 #endif
1242 /* Fork, set up the temporary mail file as standard input for "mail", and
1243 * exec with the user list we generated far above */
1244 if ((pid = fork_child()) == -1) {
1245 n_perr("fork", 0);
1246 jstop:
1247 savedeadletter(sbp->sb_input, 0);
1248 _sendout_error = TRU1;
1249 goto jleave;
1251 if (pid == 0) {
1252 sigemptyset(&nset);
1253 sigaddset(&nset, SIGHUP);
1254 sigaddset(&nset, SIGINT);
1255 sigaddset(&nset, SIGQUIT);
1256 sigaddset(&nset, SIGTSTP);
1257 sigaddset(&nset, SIGTTIN);
1258 sigaddset(&nset, SIGTTOU);
1259 freopen("/dev/null", "r", stdin);
1260 #ifdef HAVE_SMTP
1261 if (rv) {
1262 prepare_child(&nset, 0, 1);
1263 if (smtp_mta(sbp))
1264 _exit(EXIT_OK);
1265 } else
1266 #endif
1268 char const *ecp;
1269 int e;
1271 prepare_child(&nset, fileno(sbp->sb_input), -1);
1272 execv(mta, n_UNCONST(args));
1273 e = errno;
1274 ecp = (e != ENOENT) ? strerror(e)
1275 : _("executable not found (adjust *mta* variable)");
1276 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1278 savedeadletter(sbp->sb_input, 1);
1279 n_err(_("... message not sent\n"));
1280 _exit(EXIT_ERR);
1283 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1284 if (!(rv = wait_child(pid, NULL)))
1285 _sendout_error = TRU1;
1286 } else {
1287 free_child(pid);
1288 rv = TRU1;
1290 jleave:
1291 NYD_LEAVE;
1292 return rv;
1295 static char const **
1296 __mta_prepare_args(struct name *to, struct header *hp)
1298 size_t vas_cnt, i, j;
1299 char **vas;
1300 char const **args, *cp, *cp_v15compat;
1301 bool_t snda;
1302 NYD_ENTER;
1304 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1305 OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1306 if((cp = ok_vlook(mta_arguments)) == NULL)
1307 cp = cp_v15compat;
1308 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1309 vas_cnt = 0;
1310 vas = NULL;
1311 } else {
1312 /* Don't assume anything on the content but do allocate exactly j slots;
1313 * like this getrawlist will never overflow (and return -1) */
1314 j = strlen(cp);
1315 vas = n_lofi_alloc(sizeof(*vas) * j);
1316 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1319 i = 4 + smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1320 args = salloc(i * sizeof(char*));
1322 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1323 OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1324 if((cp = ok_vlook(mta_argv0)) == NULL)
1325 cp = cp_v15compat;
1326 if(cp == NULL)
1327 cp = VAL_MTA_ARGV0;
1328 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1330 if ((snda = ok_blook(sendmail_no_default_arguments)))
1331 OBSOLETE(_("please use *mta-no-default-arguments*, "
1332 "not *sendmail-no-default-arguments*"));
1333 snda |= ok_blook(mta_no_default_arguments);
1334 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1335 i = 1;
1336 else {
1337 args[1] = "-i";
1338 i = 2;
1339 if (ok_blook(metoo))
1340 args[i++] = "-m";
1341 if (options & OPT_VERB)
1342 args[i++] = "-v";
1345 for (j = 0; j < smopts_cnt; ++j, ++i)
1346 args[i] = smopts[j];
1348 for (j = 0; j < vas_cnt; ++j, ++i)
1349 args[i] = vas[j];
1351 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1352 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1353 * The interdependency with -t has been resolved in puthead() */
1354 if (!snda && ((options & OPT_r_FLAG) || ok_blook(r_option_implicit))) {
1355 struct name const *np;
1357 if (hp != NULL && (np = hp->h_from) != NULL) {
1358 /* However, what wasn't resolved there was the case that the message
1359 * specified multiple From: addresses and a Sender: */
1360 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1361 np = hp->h_sender;
1363 if (np->n_fullextra != NULL) {
1364 args[i++] = "-F";
1365 args[i++] = np->n_fullextra;
1367 cp = np->n_name;
1368 } else {
1369 assert(option_r_arg == NULL);
1370 cp = skin(myorigin(NULL));
1373 if (cp != NULL) {
1374 args[i++] = "-f";
1375 args[i++] = cp;
1379 /* Terminate option list to avoid false interpretation of system-wide
1380 * aliases that start with hyphen */
1381 if (!snda)
1382 args[i++] = "--";
1384 /* Receivers follow */
1385 for (; to != NULL; to = to->n_flink)
1386 if (!(to->n_type & GDEL))
1387 args[i++] = to->n_name;
1388 args[i] = NULL;
1390 if(vas != NULL)
1391 n_lofi_free(vas);
1392 NYD_LEAVE;
1393 return args;
1396 static void
1397 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1399 size_t cnt, bufsize, llen;
1400 char *buf;
1401 NYD_ENTER;
1403 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1404 for (; *args != NULL; ++args)
1405 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1406 n_err("\n");
1408 fflush_rewind(sbp->sb_input);
1410 cnt = fsize(sbp->sb_input);
1411 buf = NULL;
1412 bufsize = 0;
1413 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1414 buf[--llen] = '\0';
1415 n_err(">>> %s\n", buf);
1417 if (buf != NULL)
1418 free(buf);
1419 NYD_LEAVE;
1422 static char *
1423 _message_id(struct header *hp)
1425 char *rv = NULL, sep;
1426 char const *h;
1427 size_t rl, i;
1428 struct tm *tmp;
1429 NYD_ENTER;
1431 if (hp != NULL && hp->h_message_id != NULL) {
1432 i = strlen(hp->h_message_id->n_name);
1433 rl = sizeof("Message-ID: <>") -1;
1434 rv = salloc(rl + i +1);
1435 memcpy(rv, "Message-ID: <", --rl);
1436 memcpy(rv + rl, hp->h_message_id->n_name, i);
1437 rl += i;
1438 rv[rl++] = '>';
1439 rv[rl] = '\0';
1440 goto jleave;
1443 if (ok_blook(message_id_disable))
1444 goto jleave;
1446 sep = '%';
1447 rl = 9;
1448 if ((h = __sendout_ident) != NULL)
1449 goto jgen;
1450 if (ok_vlook(hostname) != NULL) {
1451 h = nodename(1);
1452 sep = '@';
1453 rl = 15;
1454 goto jgen;
1456 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1457 goto jgen;
1458 /* Up to MTA */
1459 goto jleave;
1461 jgen:
1462 tmp = &time_current.tc_gm;
1463 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1464 rl + strlen(h);
1465 rv = salloc(i +1);
1466 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1467 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1468 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1469 getrandstring(rl), sep, h);
1470 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1471 jleave:
1472 NYD_LEAVE;
1473 return rv;
1476 static int
1477 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1479 enum {
1480 m_INIT = 1<<0,
1481 m_COMMA = 1<<1,
1482 m_NOPF = 1<<2,
1483 m_NONAME = 1<<3,
1484 m_CSEEN = 1<<4
1485 } m = (ff & GCOMMA) ? m_COMMA : 0;
1486 ssize_t col, len;
1487 int rv = 1;
1488 NYD_ENTER;
1490 col = strlen(str);
1491 if (col) {
1492 fwrite(str, sizeof *str, col, fo);
1493 #undef _X
1494 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1495 if (ff & GFILES) {
1497 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1498 _X("references:") || _X("disposition-notification-to:"))
1499 m |= m_NOPF | m_NONAME;
1500 else if (ok_blook(add_file_recipients)) {
1502 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1503 m |= m_NOPF;
1504 #undef _X
1507 for (; np != NULL; np = np->n_flink) {
1508 if (is_addr_invalid(np,
1509 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1510 continue;
1511 /* File and pipe addresses only printed with set *add-file-recipients* */
1512 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1513 continue;
1515 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1516 if (putc(',', fo) == EOF)
1517 goto jleave;
1518 m |= m_CSEEN;
1519 ++col;
1522 len = strlen(np->n_fullname);
1523 if (np->n_flags & GREF)
1524 len += 2;
1525 ++col; /* The separating space */
1526 if ((m & m_INIT) && /*col > 1 &&*/ UICMP(z, col + len, >, 72)) {
1527 if (fputs("\n ", fo) == EOF)
1528 goto jleave;
1529 col = 1;
1530 m &= ~m_CSEEN;
1531 } else
1532 putc(' ', fo);
1533 m = (m & ~m_CSEEN) | m_INIT;
1536 char *hb = np->n_fullname;
1537 /* GREF needs to be placed in angle brackets, but which are missing */
1538 if (np->n_type & GREF) {
1539 hb = ac_alloc(len + 2 +1);
1540 hb[0] = '<';
1541 hb[len + 1] = '>';
1542 hb[len + 2] = '\0';
1543 memcpy(hb + 1, np->n_fullname, len);
1544 len += 2;
1546 len = xmime_write(hb, len, fo,
1547 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1548 if (np->n_type & GREF)
1549 ac_free(hb);
1551 if (len < 0)
1552 goto jleave;
1553 col += len;
1556 if (putc('\n', fo) != EOF)
1557 rv = 0;
1558 jleave:
1559 NYD_LEAVE;
1560 return rv;
1563 static int
1564 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1565 int add_resent)
1567 size_t cnt, c, bufsize = 0;
1568 char *buf = NULL;
1569 char const *cp;
1570 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1571 int rv = 1;
1572 NYD_ENTER;
1574 cnt = mp->m_size;
1576 /* Write the Resent-Fields */
1577 if (add_resent) {
1578 fputs("Resent-", fo);
1579 mkdate(fo, "Date");
1580 if ((cp = myaddrs(NULL)) != NULL) {
1581 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1582 &fromfield, 0))
1583 goto jleave;
1585 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1586 if ((cp = ok_vlook(sender)) != NULL) {
1587 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1588 &senderfield, 0))
1589 goto jleave;
1591 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1592 goto jleave;
1593 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1594 (cp = _message_id(NULL)) != NULL)
1595 fprintf(fo, "Resent-%s\n", cp);
1598 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1599 goto jleave;
1600 if (!_check_dispo_notif(mdn, NULL, fo))
1601 goto jleave;
1603 /* Write the original headers */
1604 while (cnt > 0) {
1605 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1606 break;
1607 if (ascncasecmp("status:", buf, 7) &&
1608 ascncasecmp("disposition-notification-to:", buf, 28) &&
1609 !is_head(buf, c, FAL0))
1610 fwrite(buf, sizeof *buf, c, fo);
1611 if (cnt > 0 && *buf == '\n')
1612 break;
1615 /* Write the message body */
1616 while (cnt > 0) {
1617 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1618 break;
1619 if (cnt == 0 && *buf == '\n')
1620 break;
1621 fwrite(buf, sizeof *buf, c, fo);
1623 if (buf != NULL)
1624 free(buf);
1625 if (ferror(fo)) {
1626 n_perr(_("temporary mail file"), 0);
1627 goto jleave;
1629 rv = 0;
1630 jleave:
1631 NYD_LEAVE;
1632 return rv;
1635 FL int
1636 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1637 struct attachment *attach, char *quotefile, int recipient_record)
1639 struct header head;
1640 struct str in, out;
1641 NYD_ENTER;
1643 memset(&head, 0, sizeof head);
1645 /* The given subject may be in RFC1522 format. */
1646 if (subject != NULL) {
1647 in.s = subject;
1648 in.l = strlen(subject);
1649 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1650 head.h_subject = out.s;
1652 head.h_to = to;
1653 head.h_cc = cc;
1654 head.h_bcc = bcc;
1655 head.h_attach = attach;
1657 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1659 if (subject != NULL)
1660 free(out.s);
1661 NYD_LEAVE;
1662 return 0;
1665 FL int
1666 c_sendmail(void *v)
1668 int rv;
1669 NYD_ENTER;
1671 rv = sendmail_internal(v, 0);
1672 NYD_LEAVE;
1673 return rv;
1676 FL int
1677 c_Sendmail(void *v)
1679 int rv;
1680 NYD_ENTER;
1682 rv = sendmail_internal(v, 1);
1683 NYD_LEAVE;
1684 return rv;
1687 FL enum okay
1688 mail1(struct header *hp, int printheaders, struct message *quote,
1689 char *quotefile, int recipient_record, int doprefix)
1691 struct sendbundle sb;
1692 struct name *to;
1693 FILE *mtf, *nmtf;
1694 bool_t dosign;
1695 enum okay rv = STOP;
1696 NYD_ENTER;
1698 _sendout_error = FAL0;
1699 __sendout_ident = NULL;
1701 /* Update some globals we likely need first */
1702 time_current_update(&time_current, TRU1);
1704 /* Collect user's mail from standard input. Get the result as mtf */
1705 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1706 if (mtf == NULL)
1707 goto j_leave;
1709 dosign = TRUM1;
1711 /* */
1712 if (options & OPT_INTERACTIVE) {
1713 if (ok_blook(asksign))
1714 dosign = getapproval(_("Sign this message"), TRU1);
1717 if (fsize(mtf) == 0) {
1718 if (options & OPT_E_FLAG)
1719 goto jleave;
1720 if (hp->h_subject == NULL)
1721 printf(_("No message, no subject; hope that's ok\n"));
1722 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1723 printf(_("Null message body; hope that's ok\n"));
1726 if (dosign == TRUM1)
1727 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1728 #ifndef HAVE_SSL
1729 if (dosign) {
1730 n_err(_("No SSL support compiled in\n"));
1731 goto jleave;
1733 #endif
1735 /* XXX Update time_current again; once collect() offers editing of more
1736 * XXX headers, including Date:, this must only happen if Date: is the
1737 * XXX same that it was before collect() (e.g., postponing etc.).
1738 * XXX But *do* update otherwise because the mail seems to be backdated
1739 * XXX if the user edited some time, which looks odd and it happened
1740 * XXX to me that i got mis-dated response mails due to that... */
1741 time_current_update(&time_current, TRU1);
1743 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1744 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1745 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1746 * TODO header fields ONCE, call that ONCE after user editing etc. has
1747 * TODO completed (one edit cycle) */
1749 /* Take the user names from the combined to and cc lists and do all the
1750 * alias processing. The POSIX standard says:
1751 * The names shall be substituted when alias is used as a recipient
1752 * address specified by the user in an outgoing message (that is,
1753 * other recipients addressed indirectly through the reply command
1754 * shall not be substituted in this manner).
1755 * S-nail thus violates POSIX, as has been pointed out correctly by
1756 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1757 * disputable anyway. Go for user friendliness */
1759 to = namelist_vaporise_head(hp,
1760 (EACM_NORMAL |
1761 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1762 TRU1, &_sendout_error);
1763 if (to == NULL) {
1764 n_err(_("No recipients specified\n"));
1765 goto jfail_dead;
1767 if (_sendout_error < 0) {
1768 n_err(_("Some addressees were classified as \"hard error\"\n"));
1769 goto jfail_dead;
1772 /* */
1773 memset(&sb, 0, sizeof sb);
1774 sb.sb_hp = hp;
1775 sb.sb_to = to;
1776 sb.sb_input = mtf;
1777 if ((dosign || count_nonlocal(to) > 0) &&
1778 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1779 /* TODO saving $DEAD and recovering etc is not yet well defined */
1780 goto jfail_dead;
1782 /* 'Bit ugly kind of control flow until we find a charset that does it */
1783 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1784 int err;
1786 if (!charset_iter_is_valid())
1788 else if ((nmtf = infix(hp, mtf)) != NULL)
1789 break;
1790 else if ((err = errno) == EILSEQ || err == EINVAL) {
1791 rewind(mtf);
1792 continue;
1795 n_perr(_("Failed to create encoded message"), 0);
1796 goto jfail_dead;
1798 mtf = nmtf;
1800 /* */
1801 #ifdef HAVE_SSL
1802 if (dosign) {
1803 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1804 goto jfail_dead;
1805 Fclose(mtf);
1806 mtf = nmtf;
1808 #endif
1810 /* TODO truly - i still don't get what follows: (1) we deliver file
1811 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1812 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1814 /* Deliver pipe and file addressees */
1815 to = _outof(to, mtf, &_sendout_error);
1816 if (_sendout_error)
1817 savedeadletter(mtf, FAL0);
1819 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1821 { ui32_t cnt = count(to);
1822 if ((!recipient_record || cnt > 0) &&
1823 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1824 goto jleave;
1825 if (cnt > 0) {
1826 sb.sb_hp = hp;
1827 sb.sb_to = to;
1828 sb.sb_input = mtf;
1829 if (_transfer(&sb))
1830 rv = OKAY;
1831 } else if (!_sendout_error)
1832 rv = OKAY;
1834 jleave:
1835 Fclose(mtf);
1836 j_leave:
1837 if (_sendout_error)
1838 exit_status |= EXIT_SEND_ERROR;
1839 NYD_LEAVE;
1840 return rv;
1842 jfail_dead:
1843 _sendout_error = TRU1;
1844 savedeadletter(mtf, TRU1);
1845 n_err(_("... message not sent\n"));
1846 goto jleave;
1849 FL int
1850 mkdate(FILE *fo, char const *field)
1852 struct tm tmpgm, *tmptr;
1853 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1854 NYD_ENTER;
1856 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1857 tzdiff = time_current.tc_time - mktime(&tmpgm);
1858 tzdiff_hour = (int)(tzdiff / 60);
1859 tzdiff_min = tzdiff_hour % 60;
1860 tzdiff_hour /= 60;
1861 tmptr = &time_current.tc_local;
1862 if (tmptr->tm_isdst > 0)
1863 ++tzdiff_hour;
1864 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1865 field,
1866 weekday_names[tmptr->tm_wday],
1867 tmptr->tm_mday, month_names[tmptr->tm_mon],
1868 tmptr->tm_year + 1900, tmptr->tm_hour,
1869 tmptr->tm_min, tmptr->tm_sec,
1870 tzdiff_hour * 100 + tzdiff_min);
1871 NYD_LEAVE;
1872 return rv;
1875 FL int
1876 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1877 enum sendaction action, enum conversion convert, char const *contenttype,
1878 char const *charset)
1880 #define FMT_CC_AND_BCC() \
1881 do {\
1882 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1883 if (fmt("Cc:", hp->h_cc, fo, ff))\
1884 goto jleave;\
1885 ++gotcha;\
1887 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1888 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1889 goto jleave;\
1890 ++gotcha;\
1892 } while (0)
1894 char const *addr;
1895 size_t gotcha;
1896 struct name *np, *fromasender = NULL;
1897 int stealthmua, rv = 1;
1898 bool_t nodisp;
1899 enum fmt_flags ff;
1900 NYD_ENTER;
1902 if ((addr = ok_vlook(stealthmua)) != NULL)
1903 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1904 else
1905 stealthmua = 0;
1906 gotcha = 0;
1907 nodisp = (action != SEND_TODISP);
1908 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1910 if (w & GDATE)
1911 mkdate(fo, "Date"), ++gotcha;
1912 if (w & GIDENT) {
1913 if (hp->h_from == NULL || hp->h_sender == NULL)
1914 setup_from_and_sender(hp);
1916 if (hp->h_from != NULL) {
1917 if (fmt("From:", hp->h_from, fo, ff))
1918 goto jleave;
1919 ++gotcha;
1922 if (hp->h_sender != NULL) {
1923 if (fmt("Sender:", hp->h_sender, fo, ff))
1924 goto jleave;
1925 ++gotcha;
1928 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1929 if (fromasender == NULL)
1930 goto jleave;
1931 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1934 #if 1
1935 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1936 if (fmt("To:", hp->h_to, fo, ff))
1937 goto jleave;
1938 ++gotcha;
1940 #else
1941 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1942 * TODO given that we cannot handle group addresses. Ridiculous */
1943 if (w & GTO) {
1944 struct name *xto;
1946 if ((xto = hp->h_to) != NULL) {
1947 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1949 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1950 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1951 goto jto_fmt;
1952 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1953 goto jleave;
1954 ++gotcha;
1955 } else if (nosend_msg == TRUM1) {
1956 jto_fmt:
1957 if (fmt("To:", hp->h_to, fo, ff))
1958 goto jleave;
1959 ++gotcha;
1962 #endif
1964 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1965 FMT_CC_AND_BCC();
1967 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1968 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1969 goto jleave;
1970 if (hp->h_subject != NULL) {
1971 char *sub = subject_re_trim(hp->h_subject);
1972 size_t sublen = strlen(sub);
1974 /* Trimmed something, (re-)add Re: */
1975 if (sub != hp->h_subject) {
1976 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
1977 goto jleave;
1978 if (sublen > 0 &&
1979 xmime_write(sub, sublen, fo,
1980 (!nodisp ? CONV_NONE : CONV_TOHDR),
1981 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1982 goto jleave;
1984 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
1985 else if (*sub != '\0') {
1986 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
1987 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1988 goto jleave;
1991 ++gotcha;
1992 putc('\n', fo);
1995 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
1996 FMT_CC_AND_BCC();
1998 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
1999 if (fputs(addr, fo) == EOF || putc('\n', fo) == EOF)
2000 goto jleave;
2001 ++gotcha;
2004 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2005 if (fmt("References:", np, fo, 0))
2006 goto jleave;
2007 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2008 while (np->n_flink != NULL)
2009 np = np->n_flink;
2010 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2011 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2012 if (fprintf(fo,
2013 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2014 goto jleave;
2015 ++gotcha;
2016 } else {
2017 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2018 goto jleave;
2022 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2023 if (fprintf(fo,
2024 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2025 goto jleave;
2026 ++gotcha;
2029 if (w & GIDENT) {
2030 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2031 * the list first.. TODO it is a terrible codebase.. */
2032 if ((np = hp->h_replyto) != NULL)
2033 np = namelist_dup(np, np->n_type);
2034 else if ((addr = ok_vlook(replyto)) != NULL)
2035 np = lextract(addr, GEXTRA | GFULL);
2036 if (np != NULL &&
2037 (np = elide(
2038 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2039 NULL))) != NULL) {
2040 if (fmt("Reply-To:", np, fo, ff))
2041 goto jleave;
2042 ++gotcha;
2046 if ((w & GIDENT) && !nosend_msg) {
2047 /* Mail-Followup-To: TODO factor out this huge block of code */
2048 /* Place ourselfs in there if any non-subscribed list is an addressee */
2049 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2050 ok_blook(followup_to)) {
2051 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2053 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2054 struct name *mft, *x;
2056 /* But for that, we have to remove all incarnations of ourselfs first.
2057 * TODO It is total crap that we have delete_alternates(), is_myname()
2058 * TODO or whatever; these work only with variables, not with data
2059 * TODO that is _currently_ in some header fields!!! v15.0: complete
2060 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2061 * TODO then this should be a really cheap thing in here... */
2062 np = elide(delete_alternates(cat(
2063 namelist_dup(hp->h_to, GEXTRA | GFULL),
2064 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2065 addr = hp->h_list_post;
2067 for (mft = NULL; (x = np) != NULL;) {
2068 si8_t ml;
2069 np = np->n_flink;
2071 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2072 addr != NULL && !asccasecmp(addr, x->n_name))
2073 ml = MLIST_KNOWN;
2075 /* Any non-subscribed list? Add ourselves */
2076 switch (ml) {
2077 case MLIST_KNOWN:
2078 f |= HF_MFT_SENDER;
2079 /* FALLTHRU */
2080 case MLIST_SUBSCRIBED:
2081 f |= _ANYLIST;
2082 goto j_mft_add;
2083 case MLIST_OTHER:
2084 if (!(f & HF_LIST_REPLY)) {
2085 j_mft_add:
2086 if (!is_addr_invalid(x,
2087 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2088 x->n_flink = mft;
2089 mft = x;
2090 } /* XXX write some warning? if verbose?? */
2091 continue;
2093 /* And if this is a reply that honoured a MFT: header then we'll
2094 * also add all members of the original MFT: that are still
2095 * addressed by us, regardless of all other circumstances */
2096 else if (f & _HADMFT) {
2097 struct name *ox;
2098 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2099 if (!asccasecmp(ox->n_name, x->n_name))
2100 goto j_mft_add;
2102 break;
2106 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2107 if (((f & HF_MFT_SENDER) ||
2108 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2109 (np = fromasender) != NULL && np != (struct name*)0x1) {
2110 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2111 np->n_flink = mft;
2112 mft = np;
2115 if (fmt("Mail-Followup-To:", mft, fo, ff))
2116 goto jleave;
2117 ++gotcha;
2121 if (!_check_dispo_notif(fromasender, hp, fo))
2122 goto jleave;
2125 if ((w & GUA) && stealthmua == 0) {
2126 if (fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)) < 0)
2127 goto jleave;
2128 ++gotcha;
2131 /* The user may have placed headers when editing */
2132 if(1){
2133 struct n_header_field *hfp;
2135 if((hfp = hp->h_user_headers) != NULL){
2136 if(!_sendout_header_list(fo, hfp, nodisp))
2137 goto jleave;
2138 ++gotcha;
2142 /* Custom headers, as via *customhdr* */
2143 if(!nosend_msg){
2144 struct n_header_field *hfp;
2146 /* With iconv support we likely have a cached result */
2147 if((hfp = hp->h_custom_headers) == NULL)
2148 hp->h_custom_headers = hfp = n_customhdr_query();
2149 if(hfp != NULL){
2150 if(!_sendout_header_list(fo, hfp, nodisp))
2151 goto jleave;
2152 ++gotcha;
2156 /* We don't need MIME unless.. we need MIME?! */
2157 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
2158 hp->h_attach != NULL ||
2159 ((options & OPT_Mm_FLAG) && option_Mm_arg != NULL) ||
2160 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2161 ++gotcha;
2162 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2163 goto jleave;
2164 if (hp->h_attach != NULL) {
2165 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2166 if (fprintf(fo,
2167 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2168 _sendout_boundary) < 0)
2169 goto jleave;
2170 } else {
2171 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2172 goto jleave;
2176 if (gotcha && (w & GNL))
2177 if (putc('\n', fo) == EOF)
2178 goto jleave;
2179 rv = 0;
2180 jleave:
2181 NYD_LEAVE;
2182 return rv;
2183 #undef FMT_CC_AND_BCC
2186 FL enum okay
2187 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2189 struct sendbundle sb;
2190 FILE *ibuf, *nfo, *nfi;
2191 char *tempMail;
2192 enum okay rv = STOP;
2193 NYD_ENTER;
2195 _sendout_error = FAL0;
2196 __sendout_ident = NULL;
2198 /* Update some globals we likely need first */
2199 time_current_update(&time_current, TRU1);
2201 if ((to = checkaddrs(to,
2202 (EACM_NORMAL |
2203 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2204 &_sendout_error)) == NULL)
2205 goto jleave;
2206 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2207 if (_sendout_error < 0)
2208 n_err(_("Some addressees were classified as \"hard error\"\n"));
2210 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2211 == NULL) {
2212 _sendout_error = TRU1;
2213 n_perr(_("temporary mail file"), 0);
2214 goto jleave;
2216 if ((nfi = Fopen(tempMail, "r")) == NULL)
2217 n_perr(tempMail, 0);
2218 Ftmp_release(&tempMail);
2219 if (nfi == NULL)
2220 goto jerr_o;
2222 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2223 goto jerr_io;
2225 memset(&sb, 0, sizeof sb);
2226 sb.sb_to = to;
2227 sb.sb_input = nfi;
2228 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2229 /* ..wait until we can write DEAD */
2230 _sendout_error = -1;
2232 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2233 jfail_dead:
2234 savedeadletter(nfi, TRU1);
2235 n_err(_("... message not sent\n"));
2236 jerr_io:
2237 Fclose(nfi);
2238 jerr_o:
2239 Fclose(nfo);
2240 _sendout_error = TRU1;
2241 goto jleave;
2244 if (_sendout_error < 0)
2245 goto jfail_dead;
2247 Fclose(nfo);
2248 rewind(nfi);
2250 to = _outof(to, nfi, &_sendout_error);
2252 if (_sendout_error)
2253 savedeadletter(nfi, FAL0);
2255 if (count(to = elide(to)) != 0) {
2256 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2257 sb.sb_to = to;
2258 /*sb.sb_input = nfi;*/
2259 if (_transfer(&sb))
2260 rv = OKAY;
2262 } else if (!_sendout_error)
2263 rv = OKAY;
2265 Fclose(nfi);
2266 jleave:
2267 if (_sendout_error)
2268 exit_status |= EXIT_SEND_ERROR;
2269 NYD_LEAVE;
2270 return rv;
2273 FL void
2274 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2275 struct n_string line;
2276 int c;
2277 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2278 ul_i bytes, lines;
2279 FILE *dbuf;
2280 char const *cp, *cpq;
2281 NYD_ENTER;
2283 if(!ok_blook(save))
2284 goto jleave;
2286 if(fflush_rewind_first){
2287 fflush(fp);
2288 rewind(fp);
2290 if(fsize(fp) == 0)
2291 goto jleave;
2293 cp = n_getdeadletter();
2294 cpq = n_shexp_quote_cp(cp, FAL0);
2296 if(options & OPT_DEBUG){
2297 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2298 goto jleave;
2301 if((dbuf = Fopen(cp, "w")) == NULL){
2302 n_perr(_("Cannot save to $DEAD"), 0);
2303 goto jleave;
2305 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2307 printf("%s ", cpq);
2308 fflush(stdout);
2310 /* TODO savedeadletter() non-conforming: should check whether we have any
2311 * TODO headers, if not we need to place "something", anything will do.
2312 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2313 * TODO I/O error handling missing. Yuck! */
2314 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2315 bytes = (ul_i)fprintf(dbuf, "From %s %s", myname, time_current.tc_ctime);
2316 lines = 1;
2317 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2318 n_string_trunc(&line, 0);
2319 while((c = getc(fp)) != EOF && c != '\n')
2320 n_string_push_c(&line, c);
2322 /* TODO It may be that we have only some plain text. It may be that we
2323 * TODO have a complete MIME encoded message. We don't know, and we
2324 * TODO have no usable mechanism to dig it!! tWe need v15! */
2325 if(!(flags & a_INIT)){
2326 size_t i;
2328 /* Throw away leading empty lines! */
2329 if(line.s_len == 0)
2330 continue;
2331 for(i = 0; i < line.s_len; ++i){
2332 if(fieldnamechar(line.s_dat[i]))
2333 continue;
2334 if(line.s_dat[i] == ':'){
2335 flags |= a_INIT;
2336 break;
2337 }else{
2338 /* We have no headers, this is already a body line! */
2339 flags |= a_INIT | a_BODY;
2340 break;
2343 /* Well, i had to check whether the RFC allows this. Assume we've
2344 * passed the headers, too, then! */
2345 if(i == line.s_len)
2346 flags |= a_INIT | a_BODY;
2348 if(flags & a_BODY){
2349 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2350 n_string_unshift_c(&line, '>');
2352 if(line.s_len == 0)
2353 flags |= a_BODY | a_NL;
2354 else
2355 flags &= ~a_NL;
2357 n_string_push_c(&line, '\n');
2358 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2360 if(!(flags & a_NL)){
2361 putc('\n', dbuf);
2362 ++bytes;
2363 ++lines;
2365 n_string_gut(&line);
2367 Fclose(dbuf);
2368 printf("%lu/%lu\n", lines, bytes);
2369 fflush(stdout);
2371 rewind(fp);
2372 jleave:
2373 NYD_LEAVE;
2376 #undef SEND_LINESIZE
2378 /* s-it-mode */