FIX [1c4b8c918] (Address struct name memory usage.., 2015-07-08)..
[s-mailx.git] / sendout.c
blob2a9790fa7c0af17a3a6350d637c839f1236d4a54
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 - 2017 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(ap->a_content_id != NULL &&
366 fprintf(fo, "Content-ID: <%s>\n", ap->a_content_id->n_name) < 0)
367 goto jerr_header;
369 if ((cp = ap->a_content_description) != NULL &&
370 (fputs("Content-Description: ", fo) == EOF ||
371 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
372 ) < 0 || putc('\n', fo) == EOF))
373 goto jerr_header;
375 if (putc('\n', fo) == EOF) {
376 jerr_header:
377 err = errno;
378 goto jerr_fclose;
382 #ifdef HAVE_ICONV
383 if (iconvd != (iconv_t)-1)
384 n_iconv_close(iconvd);
385 if (do_iconv) {
386 if (asccasecmp(charset, ap->a_input_charset) &&
387 (iconvd = n_iconv_open(charset, ap->a_input_charset)
388 ) == (iconv_t)-1 && (err = errno) != 0) {
389 if (err == EINVAL)
390 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
391 charset);
392 else
393 n_err(_("iconv_open: %s\n"), strerror(err));
394 goto jerr_fclose;
397 #endif
399 bufsize = SEND_LINESIZE;
400 buf = smalloc(bufsize);
401 if (convert == CONV_TOQP
402 #ifdef HAVE_ICONV
403 || iconvd != (iconv_t)-1
404 #endif
406 lncnt = fsize(fi);
407 for (;;) {
408 if (convert == CONV_TOQP
409 #ifdef HAVE_ICONV
410 || iconvd != (iconv_t)-1
411 #endif
413 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
414 break;
415 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
416 break;
417 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
418 err = errno;
419 goto jerr;
422 if (ferror(fi))
423 err = EDOM;
424 jerr:
425 free(buf);
426 jerr_fclose:
427 if (ap->a_conv != AC_TMPFILE)
428 Fclose(fi);
429 jleave:
430 NYD_LEAVE;
431 return err;
434 static bool_t
435 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
437 bool_t v15, rv = FAL0;
438 char *shost, *from;
439 #ifdef HAVE_SMTP
440 char const *smtp;
441 #endif
442 NYD_ENTER;
444 v15 = ok_blook(v15_compat);
445 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
446 from = ((signing_caps || !v15 || shost == NULL)
447 ? skin(myorigin(sbp->sb_hp)) : NULL);
449 if (signing_caps) {
450 if (from == NULL) {
451 #ifdef HAVE_SSL
452 n_err(_("No *from* address for signing specified\n"));
453 goto jleave;
454 #endif
455 } else
456 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
459 #ifdef HAVE_SMTP
460 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
461 char const *proto;
463 /* *smtp* OBSOLETE message in mta_start() */
464 if ((smtp = ok_vlook(mta)) == NULL ||
465 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
466 rv = TRU1;
467 goto jleave;
471 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
472 goto jleave;
474 if (v15) {
475 if (shost == NULL) {
476 if (from == NULL)
477 goto jenofrom;
478 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
479 } else
480 __sendout_ident = sbp->sb_url.url_u_h.s;
481 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
482 goto jleave;
483 } else {
484 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
485 n_err(_("New-style URL used without *v15-compat* being set\n"));
486 goto jleave;
488 /* TODO part of the entire myorigin() disaster, get rid of this! */
489 if (from == NULL) {
490 jenofrom:
491 n_err(_("Your configuration requires a *from* address, "
492 "but none was given\n"));
493 goto jleave;
495 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
496 goto jleave;
497 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
500 rv = TRU1;
501 #endif /* HAVE_SMTP */
502 #if defined HAVE_SSL || defined HAVE_SMTP
503 jleave:
504 #endif
505 NYD_LEAVE;
506 return rv;
509 static int
510 attach_message(struct attachment *ap, FILE *fo)
512 struct message *mp;
513 char const *ccp;
514 int rv;
515 NYD_ENTER;
517 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
518 "Content-Disposition: inline\n", _sendout_boundary);
519 if ((ccp = ap->a_content_description) != NULL)
520 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
521 putc('\n', fo);
523 mp = message + ap->a_msgno - 1;
524 touch(mp);
525 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
526 NYD_LEAVE;
527 return rv;
530 static int
531 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
532 char const *contenttype, char const *charset)
534 struct attachment *att;
535 int rv = -1;
536 NYD_ENTER;
538 fputs("This is a multi-part message in MIME format.\n", fo);
539 if (fsize(fi) != 0) {
540 char *buf;
541 size_t sz, bufsize, cnt;
543 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
544 _put_ct(fo, contenttype, charset) < 0 ||
545 _put_cte(fo, convert) < 0 ||
546 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
547 goto jleave;
549 buf = smalloc(bufsize = SEND_LINESIZE);
550 if (convert == CONV_TOQP
551 #ifdef HAVE_ICONV
552 || iconvd != (iconv_t)-1
553 #endif
555 fflush(fi);
556 cnt = fsize(fi);
558 for (;;) {
559 if (convert == CONV_TOQP
560 #ifdef HAVE_ICONV
561 || iconvd != (iconv_t)-1
562 #endif
564 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
565 break;
566 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
567 break;
569 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
570 free(buf);
571 goto jleave;
574 free(buf);
576 if (ferror(fi))
577 goto jleave;
580 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
581 if (att->a_msgno) {
582 if (attach_message(att, fo) != 0)
583 goto jleave;
584 } else if (_attach_file(att, fo) != 0)
585 goto jleave;
588 /* the final boundary with two attached dashes */
589 fprintf(fo, "\n--%s--\n", _sendout_boundary);
590 rv = 0;
591 jleave:
592 NYD_LEAVE;
593 return rv;
596 static FILE *
597 infix(struct header *hp, FILE *fi) /* TODO check */
599 FILE *nfo, *nfi = NULL;
600 char *tempMail;
601 char const *contenttype, *charset = NULL;
602 enum conversion convert;
603 int do_iconv = 0, err;
604 #ifdef HAVE_ICONV
605 char const *tcs, *convhdr = NULL;
606 #endif
607 NYD_ENTER;
609 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
610 == NULL) {
611 n_perr(_("temporary mail file"), 0);
612 goto jleave;
614 if ((nfi = Fopen(tempMail, "r")) == NULL) {
615 n_perr(tempMail, 0);
616 Fclose(nfo);
618 Ftmp_release(&tempMail);
619 if (nfi == NULL)
620 goto jleave;
622 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
624 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
625 if((options & OPT_Mm_FLAG) && option_Mm_arg != NULL)
626 contenttype = option_Mm_arg;
627 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
629 #ifdef HAVE_ICONV
630 tcs = ok_vlook(ttycharset);
631 if ((convhdr = need_hdrconv(hp))) {
632 if (iconvd != (iconv_t)-1) /* XXX */
633 n_iconv_close(iconvd);
634 if (asccasecmp(convhdr, tcs) != 0 &&
635 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
636 (err = errno) != 0)
637 goto jiconv_err;
639 #endif
640 if (puthead(FAL0, hp, nfo,
641 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
642 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
643 goto jerr;
644 #ifdef HAVE_ICONV
645 if (iconvd != (iconv_t)-1)
646 n_iconv_close(iconvd);
647 #endif
649 #ifdef HAVE_ICONV
650 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
651 if (asccasecmp(charset, tcs) != 0 &&
652 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
653 (err = errno) != 0) {
654 jiconv_err:
655 if (err == EINVAL)
656 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
657 else
658 n_perr("iconv_open", 0);
659 goto jerr;
662 #endif
664 if (hp->h_attach != NULL) {
665 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
666 goto jerr;
667 } else {
668 size_t sz, bufsize, cnt;
669 char *buf;
671 if (convert == CONV_TOQP
672 #ifdef HAVE_ICONV
673 || iconvd != (iconv_t)-1
674 #endif
676 fflush(fi);
677 cnt = fsize(fi);
679 buf = smalloc(bufsize = SEND_LINESIZE);
680 for (err = 0;;) {
681 if (convert == CONV_TOQP
682 #ifdef HAVE_ICONV
683 || iconvd != (iconv_t)-1
684 #endif
686 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
687 break;
688 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
689 break;
690 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
691 err = 1;
692 break;
695 free(buf);
697 if (err || ferror(fi)) {
698 jerr:
699 Fclose(nfo);
700 Fclose(nfi);
701 #ifdef HAVE_ICONV
702 if (iconvd != (iconv_t)-1)
703 n_iconv_close(iconvd);
704 #endif
705 nfi = NULL;
706 goto jleave;
710 #ifdef HAVE_ICONV
711 if (iconvd != (iconv_t)-1)
712 n_iconv_close(iconvd);
713 #endif
715 fflush(nfo);
716 if ((err = ferror(nfo)))
717 n_perr(_("temporary mail file"), 0);
718 Fclose(nfo);
719 if (!err) {
720 fflush_rewind(nfi);
721 Fclose(fi);
722 } else {
723 Fclose(nfi);
724 nfi = NULL;
726 jleave:
727 NYD_LEAVE;
728 return nfi;
731 static bool_t
732 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
734 char const *from;
735 bool_t rv = TRU1;
736 NYD_ENTER;
738 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
739 * TODO not yet checked */
740 if (!ok_blook(disposition_notification_send))
741 goto jleave;
743 if (mdn != NULL && mdn != (struct name*)0x1)
744 from = mdn->n_name;
745 else if ((from = myorigin(hp)) == NULL) {
746 if (options & OPT_D_V)
747 n_err(_("*disposition-notification-send*: no *from* set\n"));
748 goto jleave;
751 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
752 rv = FAL0;
753 jleave:
754 NYD_LEAVE;
755 return rv;
758 static int
759 sendmail_internal(void *v, int recipient_record)
761 struct header head;
762 char *str = v;
763 int rv;
764 NYD_ENTER;
766 memset(&head, 0, sizeof head);
767 head.h_to = lextract(str, GTO | GFULL);
768 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
769 NYD_LEAVE;
770 return (rv == 0);
773 static struct name *
774 _outof(struct name *names, FILE *fo, bool_t *senderror)
776 ui32_t pipecnt, xcnt, i;
777 int *fda;
778 char const *sh;
779 struct name *np;
780 FILE *fin = NULL, *fout;
781 NYD_ENTER;
783 /* Look through all recipients and do a quick return if no file or pipe
784 * addressee is found */
785 fda = NULL; /* Silence cc */
786 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
787 if (np->n_type & GDEL)
788 continue;
789 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
790 case NAME_ADDRSPEC_ISFILE:
791 ++xcnt;
792 break;
793 case NAME_ADDRSPEC_ISPIPE:
794 ++pipecnt;
795 break;
798 if (pipecnt == 0 && xcnt == 0)
799 goto jleave;
801 /* Otherwise create an array of file descriptors for each found pipe
802 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
803 * each pipe subprocess needs its very own file descriptor, and we need
804 * to deal with that.
805 * To make our life a bit easier let's just use the auto-reclaimed
806 * string storage */
807 if (pipecnt == 0 || (options & OPT_DEBUG)) {
808 pipecnt = 0;
809 fda = NULL;
810 sh = NULL;
811 } else {
812 fda = salloc(sizeof(int) * pipecnt);
813 for (i = 0; i < pipecnt; ++i)
814 fda[i] = -1;
815 sh = ok_vlook(SHELL);
818 for (np = names; np != NULL; np = np->n_flink) {
819 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
820 continue;
822 /* In days of old we removed the entry from the the list; now for sake of
823 * header expansion we leave it in and mark it as deleted */
824 np->n_type |= GDEL;
826 if(options & OPT_D_VV)
827 n_err(_(">>> Writing message via %s\n"),
828 n_shexp_quote_cp(np->n_name, FAL0));
829 /* We _do_ write to STDOUT, anyway! */
830 if((options & OPT_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
831 np->n_name[0] != '-' || np->n_name[1] != '\0'))
832 continue;
834 /* See if we have copied the complete message out yet. If not, do so */
835 if (image < 0) {
836 int c;
837 char *tempEdit;
839 if ((fout = Ftmp(&tempEdit, "outof",
840 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
841 n_perr(_("Creation of temporary image"), 0);
842 *senderror = TRU1;
843 goto jcant;
845 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
846 _CLOEXEC_SET(image);
847 for (i = 0; i < pipecnt; ++i) {
848 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
849 if (fd < 0) {
850 close(image);
851 image = -1;
852 pipecnt = i;
853 break;
855 fda[i] = fd;
856 _CLOEXEC_SET(fd);
859 Ftmp_release(&tempEdit);
861 if (image < 0) {
862 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
863 *senderror = TRU1;
864 Fclose(fout);
865 goto jcant;
868 fprintf(fout, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
869 c = EOF;
870 while (i = c, (c = getc(fo)) != EOF)
871 putc(c, fout);
872 rewind(fo);
873 if ((int)i != '\n')
874 putc('\n', fout);
875 putc('\n', fout);
876 fflush(fout);
877 if (ferror(fout)) {
878 n_perr(_("Finalizing write of temporary image"), 0);
879 Fclose(fout);
880 goto jcantfout;
882 Fclose(fout);
884 /* If we have to serve file addressees, open reader */
885 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
886 n_perr(_("Failed to open a temporary image duplicate"), 0);
887 jcantfout:
888 *senderror = TRU1;
889 close(image);
890 image = -1;
891 goto jcant;
894 /* From now on use xcnt as a counter for pipecnt */
895 xcnt = 0;
898 /* Now either copy "image" to the desired file or give it as the standard
899 * input to the desired program as appropriate */
900 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
901 int pid;
902 sigset_t nset;
904 sigemptyset(&nset);
905 sigaddset(&nset, SIGHUP);
906 sigaddset(&nset, SIGINT);
907 sigaddset(&nset, SIGQUIT);
908 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
909 np->n_name + 1, NULL, NULL);
910 if (pid < 0) {
911 n_err(_("Piping message to %s failed\n"),
912 n_shexp_quote_cp(np->n_name, FAL0));
913 *senderror = TRU1;
914 goto jcant;
916 free_child(pid);
917 } else {
918 int c;
919 char const *fname, *fnameq;
921 if ((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
922 *senderror = TRU1;
923 goto jcant;
925 fnameq = n_shexp_quote_cp(fname, FAL0);
927 if(fname[0] == '-' && fname[1] == '\0')
928 fout = stdout;
929 else if ((fout = Zopen(fname, "a")) == NULL) {
930 n_err(_("Writing message to %s failed: %s\n"),
931 fnameq, strerror(errno));
932 *senderror = TRU1;
933 goto jcant;
935 rewind(fin);
936 while ((c = getc(fin)) != EOF)
937 putc(c, fout);
938 if (ferror(fout)) {
939 n_err(_("Writing message to %s failed: %s\n"),
940 fnameq, _("write error"));
941 *senderror = TRU1;
943 if(fout != stdout)
944 Fclose(fout);
947 jcant:
948 if (image < 0)
949 goto jdelall;
952 jleave:
953 if (fin != NULL)
954 Fclose(fin);
955 for (i = 0; i < pipecnt; ++i)
956 close(fda[i]);
957 if (image >= 0) {
958 close(image);
959 image = -1;
961 NYD_LEAVE;
962 return names;
964 jdelall:
965 while (np != NULL) {
966 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
967 np->n_type |= GDEL;
968 np = np->n_flink;
970 goto jleave;
973 static bool_t
974 mightrecord(FILE *fp, struct name *to, bool_t resend)
976 char *cp, *cq;
977 char const *ep;
978 bool_t rv = TRU1;
979 NYD_ENTER;
981 if (options & OPT_DEBUG)
982 cp = NULL;
983 else if (to != NULL) {
984 cp = savestr(skinned_name(to));
985 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
987 *cq = '\0';
988 } else
989 cp = ok_vlook(record);
991 if (cp != NULL) {
992 if ((ep = expand(cp)) == NULL) {
993 ep = "NULL";
994 goto jbail;
997 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
998 which_protocol(ep) == PROTO_FILE) {
999 size_t i = strlen(cp);
1000 cq = salloc(i + 1 +1);
1001 cq[0] = '+';
1002 memcpy(cq + 1, cp, i +1);
1003 cp = cq;
1004 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
1005 ep = "NULL";
1006 goto jbail;
1010 if (!a_sendout__savemail(ep, fp, resend)) {
1011 jbail:
1012 n_err(_("Failed to save message in %s - message not sent\n"),
1013 n_shexp_quote_cp(ep, FAL0));
1014 exit_status |= EXIT_ERR;
1015 savedeadletter(fp, 1);
1016 rv = FAL0;
1019 NYD_LEAVE;
1020 return rv;
1023 static bool_t
1024 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1025 FILE *fo;
1026 size_t bufsize, buflen, cnt;
1027 bool_t rv, emptyline;
1028 char *buf;
1029 NYD_ENTER;
1031 buf = smalloc(bufsize = LINESIZE);
1032 rv = emptyline = FAL0;
1034 if((fo = Zopen(name, "a+")) == NULL){
1035 if((fo = Zopen(name, "wx")) == NULL){
1036 n_perr(name, 0);
1037 goto j_leave;
1039 emptyline = TRU1;
1042 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1043 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1045 rv = TRU1;
1047 if(!emptyline){
1048 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1049 switch(fread(buf, sizeof *buf, 2, fo)){
1050 case 2:
1051 if(buf[1] != '\n')
1052 emptyline = TRU1;
1053 break;
1054 case 1:
1055 if(buf[0] != '\n')
1056 emptyline = TRU1;
1057 break;
1058 default:
1059 if(ferror(fo)){
1060 n_perr(name, 0);
1061 rv = FAL0;
1062 goto jleave;
1065 if(emptyline){
1066 putc('\n', fo);
1067 fflush(fo);
1072 fflush_rewind(fp);
1074 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1075 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1076 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1077 /* Only if we are resending it can happen that we have to quote From_
1078 * lines here; we don't generate messages which are ambiguous ourselves */
1079 if(resend){
1080 if(emptyline && is_head(buf, buflen, FAL0))
1081 putc('>', fo);
1082 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1084 emptyline = (buflen > 0 && *buf == '\n');
1085 fwrite(buf, sizeof *buf, buflen, fo);
1087 if(buflen > 0 && buf[buflen - 1] != '\n')
1088 putc('\n', fo);
1089 putc('\n', fo);
1090 fflush(fo);
1091 if(ferror(fo)){
1092 n_perr(name, 0);
1093 rv = FAL0;
1096 jleave:
1097 really_rewind(fp);
1098 if(Fclose(fo) != 0)
1099 rv = FAL0;
1100 j_leave:
1101 free(buf);
1102 NYD_LEAVE;
1103 return rv;
1106 static bool_t
1107 _transfer(struct sendbundle *sbp)
1109 struct name *np;
1110 ui32_t cnt;
1111 bool_t rv = TRU1;
1112 NYD_ENTER;
1114 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1115 char const k[] = "smime-encrypt-";
1116 size_t nl = strlen(np->n_name);
1117 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1118 memcpy(vs, k, sizeof(k) -1);
1119 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1121 if ((cp = vok_vlook(vs)) != NULL) {
1122 #ifdef HAVE_SSL
1123 FILE *ef;
1125 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1126 FILE *fisave = sbp->sb_input;
1127 struct name *nsave = sbp->sb_to;
1129 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1130 sbp->sb_input = ef;
1131 if (!__mta_start(sbp))
1132 rv = FAL0;
1133 sbp->sb_to = nsave;
1134 sbp->sb_input = fisave;
1136 Fclose(ef);
1137 } else {
1138 #else
1139 n_err(_("No SSL support compiled in\n"));
1140 rv = FAL0;
1141 #endif
1142 n_err(_("Message not sent to: %s\n"), np->n_name);
1143 _sendout_error = TRU1;
1144 #ifdef HAVE_SSL
1146 #endif
1147 rewind(sbp->sb_input);
1149 if (np->n_flink != NULL)
1150 np->n_flink->n_blink = np->n_blink;
1151 if (np->n_blink != NULL)
1152 np->n_blink->n_flink = np->n_flink;
1153 if (np == sbp->sb_to)
1154 sbp->sb_to = np->n_flink;
1155 np = np->n_flink;
1156 } else {
1157 ++cnt;
1158 np = np->n_flink;
1160 ac_free(vs);
1163 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1164 rv = FAL0;
1165 NYD_LEAVE;
1166 return rv;
1169 static bool_t
1170 __mta_start(struct sendbundle *sbp)
1172 pid_t pid;
1173 sigset_t nset;
1174 char const **args, *mta;
1175 bool_t rv;
1176 NYD_ENTER;
1178 if((mta = ok_vlook(smtp)) != NULL){
1179 OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1180 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1181 * that *smtp* is misused with file:// or so */
1182 if(n_servbyname(mta, NULL) == NULL)
1183 mta = savecat("smtp://", mta);
1184 rv = TRU1;
1185 }else{
1186 char const *proto;
1188 if((proto = ok_vlook(sendmail)) != NULL)
1189 OBSOLETE(_("please use *mta* instead of *sendmail*"));
1190 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1191 if(proto == NULL){
1192 mta = VAL_MTA;
1193 rv = FAL0;
1194 }else
1195 rv = TRU1;
1197 /* TODO for now this is pretty hacky: in v15 we should simply create
1198 * TODO an URL object; i.e., be able to do so, and it does it right
1199 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1200 else if((proto = n_servbyname(mta, NULL)) != NULL){
1201 if(*proto == '\0'){
1202 mta += sizeof("file://") -1;
1203 rv = FAL0;
1204 }else
1205 rv = TRU1;
1206 }else
1207 rv = FAL0;
1210 if(!rv){
1211 char const *mta_base;
1213 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1214 n_err(_("*mta* variable expansion failure: %s\n"),
1215 n_shexp_quote_cp(mta_base, FAL0));
1216 goto jstop;
1219 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1220 if (options & OPT_DEBUG) {
1221 __mta_debug(sbp, mta, args);
1222 rv = TRU1;
1223 goto jleave;
1225 } else {
1226 n_UNINIT(args, NULL);
1227 #ifndef HAVE_SMTP
1228 n_err(_("No SMTP support compiled in\n"));
1229 goto jstop;
1230 #else
1231 if (options & OPT_DEBUG) {
1232 (void)smtp_mta(sbp);
1233 rv = TRU1;
1234 goto jleave;
1236 #endif
1239 /* Fork, set up the temporary mail file as standard input for "mail", and
1240 * exec with the user list we generated far above */
1241 if ((pid = fork_child()) == -1) {
1242 n_perr("fork", 0);
1243 jstop:
1244 savedeadletter(sbp->sb_input, 0);
1245 _sendout_error = TRU1;
1246 goto jleave;
1248 if (pid == 0) {
1249 sigemptyset(&nset);
1250 sigaddset(&nset, SIGHUP);
1251 sigaddset(&nset, SIGINT);
1252 sigaddset(&nset, SIGQUIT);
1253 sigaddset(&nset, SIGTSTP);
1254 sigaddset(&nset, SIGTTIN);
1255 sigaddset(&nset, SIGTTOU);
1256 freopen("/dev/null", "r", stdin);
1257 #ifdef HAVE_SMTP
1258 if (rv) {
1259 prepare_child(&nset, 0, 1);
1260 if (smtp_mta(sbp))
1261 _exit(EXIT_OK);
1262 } else
1263 #endif
1265 char const *ecp;
1266 int e;
1268 prepare_child(&nset, fileno(sbp->sb_input), -1);
1269 execv(mta, n_UNCONST(args));
1270 e = errno;
1271 ecp = (e != ENOENT) ? strerror(e)
1272 : _("executable not found (adjust *mta* variable)");
1273 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1275 savedeadletter(sbp->sb_input, 1);
1276 n_err(_("... message not sent\n"));
1277 _exit(EXIT_ERR);
1280 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1281 if (!(rv = wait_child(pid, NULL)))
1282 _sendout_error = TRU1;
1283 } else {
1284 free_child(pid);
1285 rv = TRU1;
1287 jleave:
1288 NYD_LEAVE;
1289 return rv;
1292 static char const **
1293 __mta_prepare_args(struct name *to, struct header *hp)
1295 size_t vas_cnt, i, j;
1296 char **vas;
1297 char const **args, *cp, *cp_v15compat;
1298 bool_t snda;
1299 NYD_ENTER;
1301 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1302 OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1303 if((cp = ok_vlook(mta_arguments)) == NULL)
1304 cp = cp_v15compat;
1305 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1306 vas_cnt = 0;
1307 vas = NULL;
1308 } else {
1309 /* Don't assume anything on the content but do allocate exactly j slots;
1310 * like this getrawlist will never overflow (and return -1) */
1311 j = strlen(cp);
1312 vas = n_lofi_alloc(sizeof(*vas) * j);
1313 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1316 i = 4 + smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1317 args = salloc(i * sizeof(char*));
1319 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1320 OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1321 if((cp = ok_vlook(mta_argv0)) == NULL)
1322 cp = cp_v15compat;
1323 if(cp == NULL)
1324 cp = VAL_MTA_ARGV0;
1325 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1327 if ((snda = ok_blook(sendmail_no_default_arguments)))
1328 OBSOLETE(_("please use *mta-no-default-arguments*, "
1329 "not *sendmail-no-default-arguments*"));
1330 snda |= ok_blook(mta_no_default_arguments);
1331 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1332 i = 1;
1333 else {
1334 args[1] = "-i";
1335 i = 2;
1336 if (ok_blook(metoo))
1337 args[i++] = "-m";
1338 if (options & OPT_VERB)
1339 args[i++] = "-v";
1342 for (j = 0; j < smopts_cnt; ++j, ++i)
1343 args[i] = smopts[j];
1345 for (j = 0; j < vas_cnt; ++j, ++i)
1346 args[i] = vas[j];
1348 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1349 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1350 * The interdependency with -t has been resolved in puthead() */
1351 if (!snda && ((options & OPT_r_FLAG) || ok_blook(r_option_implicit))) {
1352 struct name const *np;
1354 if (hp != NULL && (np = hp->h_from) != NULL) {
1355 /* However, what wasn't resolved there was the case that the message
1356 * specified multiple From: addresses and a Sender: */
1357 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1358 np = hp->h_sender;
1360 if (np->n_fullextra != NULL) {
1361 args[i++] = "-F";
1362 args[i++] = np->n_fullextra;
1364 cp = np->n_name;
1365 } else {
1366 assert(option_r_arg == NULL);
1367 cp = skin(myorigin(NULL));
1370 if (cp != NULL) {
1371 args[i++] = "-f";
1372 args[i++] = cp;
1376 /* Terminate option list to avoid false interpretation of system-wide
1377 * aliases that start with hyphen */
1378 if (!snda)
1379 args[i++] = "--";
1381 /* Receivers follow */
1382 for (; to != NULL; to = to->n_flink)
1383 if (!(to->n_type & GDEL))
1384 args[i++] = to->n_name;
1385 args[i] = NULL;
1387 if(vas != NULL)
1388 n_lofi_free(vas);
1389 NYD_LEAVE;
1390 return args;
1393 static void
1394 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1396 size_t cnt, bufsize, llen;
1397 char *buf;
1398 NYD_ENTER;
1400 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1401 for (; *args != NULL; ++args)
1402 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1403 n_err("\n");
1405 fflush_rewind(sbp->sb_input);
1407 cnt = fsize(sbp->sb_input);
1408 buf = NULL;
1409 bufsize = 0;
1410 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1411 buf[--llen] = '\0';
1412 n_err(">>> %s\n", buf);
1414 if (buf != NULL)
1415 free(buf);
1416 NYD_LEAVE;
1419 static char *
1420 _message_id(struct header *hp)
1422 char *rv = NULL, sep;
1423 char const *h;
1424 size_t rl, i;
1425 struct tm *tmp;
1426 NYD_ENTER;
1428 if (hp != NULL && hp->h_message_id != NULL) {
1429 i = strlen(hp->h_message_id->n_name);
1430 rl = sizeof("Message-ID: <>") -1;
1431 rv = salloc(rl + i +1);
1432 memcpy(rv, "Message-ID: <", --rl);
1433 memcpy(rv + rl, hp->h_message_id->n_name, i);
1434 rl += i;
1435 rv[rl++] = '>';
1436 rv[rl] = '\0';
1437 goto jleave;
1440 if (ok_blook(message_id_disable))
1441 goto jleave;
1443 sep = '%';
1444 rl = 9;
1445 if ((h = __sendout_ident) != NULL)
1446 goto jgen;
1447 if (ok_vlook(hostname) != NULL) {
1448 h = nodename(1);
1449 sep = '@';
1450 rl = 15;
1451 goto jgen;
1453 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1454 goto jgen;
1455 /* Up to MTA */
1456 goto jleave;
1458 jgen:
1459 tmp = &time_current.tc_gm;
1460 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1461 rl + strlen(h);
1462 rv = salloc(i +1);
1463 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1464 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1465 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1466 getrandstring(rl), sep, h);
1467 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1468 jleave:
1469 NYD_LEAVE;
1470 return rv;
1473 static int
1474 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1476 enum {
1477 m_INIT = 1<<0,
1478 m_COMMA = 1<<1,
1479 m_NOPF = 1<<2,
1480 m_NONAME = 1<<3,
1481 m_CSEEN = 1<<4
1482 } m = (ff & GCOMMA) ? m_COMMA : 0;
1483 ssize_t col, len;
1484 int rv = 1;
1485 NYD_ENTER;
1487 col = strlen(str);
1488 if (col) {
1489 fwrite(str, sizeof *str, col, fo);
1490 #undef _X
1491 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1492 if (ff & GFILES) {
1494 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1495 _X("references:") || _X("disposition-notification-to:"))
1496 m |= m_NOPF | m_NONAME;
1497 else if (ok_blook(add_file_recipients)) {
1499 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1500 m |= m_NOPF;
1501 #undef _X
1504 for (; np != NULL; np = np->n_flink) {
1505 if (is_addr_invalid(np,
1506 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1507 continue;
1508 /* File and pipe addresses only printed with set *add-file-recipients* */
1509 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1510 continue;
1512 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1513 if (putc(',', fo) == EOF)
1514 goto jleave;
1515 m |= m_CSEEN;
1516 ++col;
1519 len = strlen(np->n_fullname);
1520 if (np->n_type & GREF)
1521 len += 2;
1522 ++col; /* The separating space */
1523 if ((m & m_INIT) && /*col > 1 &&*/
1524 UICMP(z, col + len, >,
1525 (np->n_type & GREF ? MIME_LINELEN : 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;
1534 /* C99 */{
1535 char *hb;
1537 /* GREF needs to be placed in angle brackets, but which are missing */
1538 hb = np->n_fullname;
1539 if(np->n_type & GREF){
1540 assert(len == strlen(np->n_fullname) + 2);
1541 hb = n_lofi_alloc(len +1);
1542 len -= 2;
1543 hb[0] = '<';
1544 hb[len + 1] = '>';
1545 hb[len + 2] = '\0';
1546 memcpy(&hb[1], np->n_fullname, len);
1547 len += 2;
1549 len = xmime_write(hb, len, fo,
1550 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1551 if(np->n_type & GREF)
1552 n_lofi_free(hb);
1554 if (len < 0)
1555 goto jleave;
1556 col += len;
1559 if (putc('\n', fo) != EOF)
1560 rv = 0;
1561 jleave:
1562 NYD_LEAVE;
1563 return rv;
1566 static int
1567 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1568 int add_resent)
1570 size_t cnt, c, bufsize = 0;
1571 char *buf = NULL;
1572 char const *cp;
1573 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1574 int rv = 1;
1575 NYD_ENTER;
1577 cnt = mp->m_size;
1579 /* Write the Resent-Fields */
1580 if (add_resent) {
1581 fputs("Resent-", fo);
1582 mkdate(fo, "Date");
1583 if ((cp = myaddrs(NULL)) != NULL) {
1584 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1585 &fromfield, 0))
1586 goto jleave;
1588 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1589 if ((cp = ok_vlook(sender)) != NULL) {
1590 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1591 &senderfield, 0))
1592 goto jleave;
1594 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1595 goto jleave;
1596 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1597 (cp = _message_id(NULL)) != NULL)
1598 fprintf(fo, "Resent-%s\n", cp);
1601 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1602 goto jleave;
1603 if (!_check_dispo_notif(mdn, NULL, fo))
1604 goto jleave;
1606 /* Write the original headers */
1607 while (cnt > 0) {
1608 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1609 break;
1610 if (ascncasecmp("status:", buf, 7) &&
1611 ascncasecmp("disposition-notification-to:", buf, 28) &&
1612 !is_head(buf, c, FAL0))
1613 fwrite(buf, sizeof *buf, c, fo);
1614 if (cnt > 0 && *buf == '\n')
1615 break;
1618 /* Write the message body */
1619 while (cnt > 0) {
1620 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1621 break;
1622 if (cnt == 0 && *buf == '\n')
1623 break;
1624 fwrite(buf, sizeof *buf, c, fo);
1626 if (buf != NULL)
1627 free(buf);
1628 if (ferror(fo)) {
1629 n_perr(_("temporary mail file"), 0);
1630 goto jleave;
1632 rv = 0;
1633 jleave:
1634 NYD_LEAVE;
1635 return rv;
1638 FL int
1639 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1640 struct attachment *attach, char *quotefile, int recipient_record)
1642 struct header head;
1643 struct str in, out;
1644 NYD_ENTER;
1646 memset(&head, 0, sizeof head);
1648 /* The given subject may be in RFC1522 format. */
1649 if (subject != NULL) {
1650 in.s = subject;
1651 in.l = strlen(subject);
1652 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1653 head.h_subject = out.s;
1655 head.h_to = to;
1656 head.h_cc = cc;
1657 head.h_bcc = bcc;
1658 head.h_attach = attach;
1660 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1662 if (subject != NULL)
1663 free(out.s);
1664 NYD_LEAVE;
1665 return 0;
1668 FL int
1669 c_sendmail(void *v)
1671 int rv;
1672 NYD_ENTER;
1674 rv = sendmail_internal(v, 0);
1675 NYD_LEAVE;
1676 return rv;
1679 FL int
1680 c_Sendmail(void *v)
1682 int rv;
1683 NYD_ENTER;
1685 rv = sendmail_internal(v, 1);
1686 NYD_LEAVE;
1687 return rv;
1690 FL enum okay
1691 mail1(struct header *hp, int printheaders, struct message *quote,
1692 char *quotefile, int recipient_record, int doprefix)
1694 struct n_sigman sm;
1695 struct sendbundle sb;
1696 struct name *to;
1697 bool_t dosign;
1698 FILE *mtf, *nmtf;
1699 enum okay rv;
1700 NYD_ENTER;
1702 _sendout_error = FAL0;
1703 __sendout_ident = NULL;
1704 rv = STOP;
1705 mtf = NULL;
1707 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1708 case 0:
1709 break;
1710 default:
1711 goto jleave;
1714 /* Update some globals we likely need first */
1715 time_current_update(&time_current, TRU1);
1717 /* Collect user's mail from standard input. Get the result as mtf */
1718 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1719 if (mtf == NULL)
1720 goto jleave;
1722 dosign = TRUM1;
1724 /* */
1725 if (options & OPT_INTERACTIVE) {
1726 if (ok_blook(asksign))
1727 dosign = getapproval(_("Sign this message"), TRU1);
1730 if (fsize(mtf) == 0) {
1731 if (options & OPT_E_FLAG)
1732 goto jleave;
1733 if (hp->h_subject == NULL)
1734 printf(_("No message, no subject; hope that's ok\n"));
1735 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1736 printf(_("Null message body; hope that's ok\n"));
1739 if (dosign == TRUM1)
1740 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1741 #ifndef HAVE_SSL
1742 if (dosign) {
1743 n_err(_("No SSL support compiled in\n"));
1744 goto jleave;
1746 #endif
1748 /* XXX Update time_current again; once collect() offers editing of more
1749 * XXX headers, including Date:, this must only happen if Date: is the
1750 * XXX same that it was before collect() (e.g., postponing etc.).
1751 * XXX But *do* update otherwise because the mail seems to be backdated
1752 * XXX if the user edited some time, which looks odd and it happened
1753 * XXX to me that i got mis-dated response mails due to that... */
1754 time_current_update(&time_current, TRU1);
1756 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1757 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1758 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1759 * TODO header fields ONCE, call that ONCE after user editing etc. has
1760 * TODO completed (one edit cycle) */
1762 /* Take the user names from the combined to and cc lists and do all the
1763 * alias processing. The POSIX standard says:
1764 * The names shall be substituted when alias is used as a recipient
1765 * address specified by the user in an outgoing message (that is,
1766 * other recipients addressed indirectly through the reply command
1767 * shall not be substituted in this manner).
1768 * S-nail thus violates POSIX, as has been pointed out correctly by
1769 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1770 * disputable anyway. Go for user friendliness */
1772 to = namelist_vaporise_head(hp,
1773 (EACM_NORMAL |
1774 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1775 TRU1, &_sendout_error);
1776 if (to == NULL) {
1777 n_err(_("No recipients specified\n"));
1778 goto jfail_dead;
1780 if (_sendout_error < 0) {
1781 n_err(_("Some addressees were classified as \"hard error\"\n"));
1782 goto jfail_dead;
1785 /* */
1786 memset(&sb, 0, sizeof sb);
1787 sb.sb_hp = hp;
1788 sb.sb_to = to;
1789 sb.sb_input = mtf;
1790 if ((dosign || count_nonlocal(to) > 0) &&
1791 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1792 /* TODO saving $DEAD and recovering etc is not yet well defined */
1793 goto jfail_dead;
1795 /* 'Bit ugly kind of control flow until we find a charset that does it */
1796 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1797 int err;
1799 if (!charset_iter_is_valid())
1801 else if ((nmtf = infix(hp, mtf)) != NULL)
1802 break;
1803 else if ((err = errno) == EILSEQ || err == EINVAL) {
1804 rewind(mtf);
1805 continue;
1808 n_perr(_("Failed to create encoded message"), 0);
1809 goto jfail_dead;
1811 mtf = nmtf;
1813 /* */
1814 #ifdef HAVE_SSL
1815 if (dosign) {
1816 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1817 goto jfail_dead;
1818 Fclose(mtf);
1819 mtf = nmtf;
1821 #endif
1823 /* TODO truly - i still don't get what follows: (1) we deliver file
1824 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1825 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1827 /* Deliver pipe and file addressees */
1828 to = _outof(to, mtf, &_sendout_error);
1829 if (_sendout_error)
1830 savedeadletter(mtf, FAL0);
1832 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1834 { ui32_t cnt = count(to);
1835 if ((!recipient_record || cnt > 0) &&
1836 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1837 goto jleave;
1838 if (cnt > 0) {
1839 sb.sb_hp = hp;
1840 sb.sb_to = to;
1841 sb.sb_input = mtf;
1842 if (_transfer(&sb))
1843 rv = OKAY;
1844 } else if (!_sendout_error)
1845 rv = OKAY;
1848 n_sigman_cleanup_ping(&sm);
1849 jleave:
1850 if(mtf != NULL){
1851 Fclose(mtf);
1852 temporary_unroll_compose_mode();
1854 if (_sendout_error)
1855 exit_status |= EXIT_SEND_ERROR;
1856 NYD_LEAVE;
1857 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1858 return rv;
1860 jfail_dead:
1861 _sendout_error = TRU1;
1862 savedeadletter(mtf, TRU1);
1863 n_err(_("... message not sent\n"));
1864 goto jleave;
1867 FL int
1868 mkdate(FILE *fo, char const *field)
1870 struct tm tmpgm, *tmptr;
1871 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1872 NYD_ENTER;
1874 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1875 tzdiff = time_current.tc_time - mktime(&tmpgm);
1876 tzdiff_hour = (int)(tzdiff / 60);
1877 tzdiff_min = tzdiff_hour % 60;
1878 tzdiff_hour /= 60;
1879 tmptr = &time_current.tc_local;
1880 if (tmptr->tm_isdst > 0)
1881 ++tzdiff_hour;
1882 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1883 field,
1884 weekday_names[tmptr->tm_wday],
1885 tmptr->tm_mday, month_names[tmptr->tm_mon],
1886 tmptr->tm_year + 1900, tmptr->tm_hour,
1887 tmptr->tm_min, tmptr->tm_sec,
1888 tzdiff_hour * 100 + tzdiff_min);
1889 NYD_LEAVE;
1890 return rv;
1893 FL int
1894 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1895 enum sendaction action, enum conversion convert, char const *contenttype,
1896 char const *charset)
1898 #define FMT_CC_AND_BCC() \
1899 do {\
1900 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1901 if (fmt("Cc:", hp->h_cc, fo, ff))\
1902 goto jleave;\
1903 ++gotcha;\
1905 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1906 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1907 goto jleave;\
1908 ++gotcha;\
1910 } while (0)
1912 char const *addr;
1913 size_t gotcha;
1914 struct name *np, *fromasender = NULL;
1915 int stealthmua, rv = 1;
1916 bool_t nodisp;
1917 enum fmt_flags ff;
1918 NYD_ENTER;
1920 if ((addr = ok_vlook(stealthmua)) != NULL)
1921 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1922 else
1923 stealthmua = 0;
1924 gotcha = 0;
1925 nodisp = (action != SEND_TODISP);
1926 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1928 if (w & GDATE)
1929 mkdate(fo, "Date"), ++gotcha;
1930 if (w & GIDENT) {
1931 if (hp->h_from == NULL || hp->h_sender == NULL)
1932 setup_from_and_sender(hp);
1934 if (hp->h_from != NULL) {
1935 if (fmt("From:", hp->h_from, fo, ff))
1936 goto jleave;
1937 ++gotcha;
1940 if (hp->h_sender != NULL) {
1941 if (fmt("Sender:", hp->h_sender, fo, ff))
1942 goto jleave;
1943 ++gotcha;
1946 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1947 if (fromasender == NULL)
1948 goto jleave;
1949 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1952 #if 1
1953 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1954 if (fmt("To:", hp->h_to, fo, ff))
1955 goto jleave;
1956 ++gotcha;
1958 #else
1959 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1960 * TODO given that we cannot handle group addresses. Ridiculous */
1961 if (w & GTO) {
1962 struct name *xto;
1964 if ((xto = hp->h_to) != NULL) {
1965 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1967 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1968 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1969 goto jto_fmt;
1970 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1971 goto jleave;
1972 ++gotcha;
1973 } else if (nosend_msg == TRUM1) {
1974 jto_fmt:
1975 if (fmt("To:", hp->h_to, fo, ff))
1976 goto jleave;
1977 ++gotcha;
1980 #endif
1982 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1983 FMT_CC_AND_BCC();
1985 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1986 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1987 goto jleave;
1988 if (hp->h_subject != NULL) {
1989 char *sub = subject_re_trim(hp->h_subject);
1990 size_t sublen = strlen(sub);
1992 /* Trimmed something, (re-)add Re: */
1993 if (sub != hp->h_subject) {
1994 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
1995 goto jleave;
1996 if (sublen > 0 &&
1997 xmime_write(sub, sublen, fo,
1998 (!nodisp ? CONV_NONE : CONV_TOHDR),
1999 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2000 goto jleave;
2002 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2003 else if (*sub != '\0') {
2004 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2005 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2006 goto jleave;
2009 ++gotcha;
2010 putc('\n', fo);
2013 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2014 FMT_CC_AND_BCC();
2016 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
2017 if (fputs(addr, fo) == EOF || putc('\n', fo) == EOF)
2018 goto jleave;
2019 ++gotcha;
2022 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2023 if (fmt("References:", np, fo, 0))
2024 goto jleave;
2025 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2026 while (np->n_flink != NULL)
2027 np = np->n_flink;
2028 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2029 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2030 if (fprintf(fo,
2031 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2032 goto jleave;
2033 ++gotcha;
2034 } else {
2035 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2036 goto jleave;
2040 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2041 if (fprintf(fo,
2042 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2043 goto jleave;
2044 ++gotcha;
2047 if (w & GIDENT) {
2048 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2049 * the list first.. TODO it is a terrible codebase.. */
2050 if ((np = hp->h_replyto) != NULL)
2051 np = namelist_dup(np, np->n_type);
2052 else if ((addr = ok_vlook(replyto)) != NULL)
2053 np = lextract(addr, GEXTRA | GFULL);
2054 if (np != NULL &&
2055 (np = elide(
2056 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2057 NULL))) != NULL) {
2058 if (fmt("Reply-To:", np, fo, ff))
2059 goto jleave;
2060 ++gotcha;
2064 if ((w & GIDENT) && !nosend_msg) {
2065 /* Mail-Followup-To: TODO factor out this huge block of code */
2066 /* Place ourselfs in there if any non-subscribed list is an addressee */
2067 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2068 ok_blook(followup_to)) {
2069 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2071 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2072 struct name *mft, *x;
2074 /* But for that, we have to remove all incarnations of ourselfs first.
2075 * TODO It is total crap that we have delete_alternates(), is_myname()
2076 * TODO or whatever; these work only with variables, not with data
2077 * TODO that is _currently_ in some header fields!!! v15.0: complete
2078 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2079 * TODO then this should be a really cheap thing in here... */
2080 np = elide(delete_alternates(cat(
2081 namelist_dup(hp->h_to, GEXTRA | GFULL),
2082 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2083 addr = hp->h_list_post;
2085 for (mft = NULL; (x = np) != NULL;) {
2086 si8_t ml;
2087 np = np->n_flink;
2089 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2090 addr != NULL && !asccasecmp(addr, x->n_name))
2091 ml = MLIST_KNOWN;
2093 /* Any non-subscribed list? Add ourselves */
2094 switch (ml) {
2095 case MLIST_KNOWN:
2096 f |= HF_MFT_SENDER;
2097 /* FALLTHRU */
2098 case MLIST_SUBSCRIBED:
2099 f |= _ANYLIST;
2100 goto j_mft_add;
2101 case MLIST_OTHER:
2102 if (!(f & HF_LIST_REPLY)) {
2103 j_mft_add:
2104 if (!is_addr_invalid(x,
2105 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2106 x->n_flink = mft;
2107 mft = x;
2108 } /* XXX write some warning? if verbose?? */
2109 continue;
2111 /* And if this is a reply that honoured a MFT: header then we'll
2112 * also add all members of the original MFT: that are still
2113 * addressed by us, regardless of all other circumstances */
2114 else if (f & _HADMFT) {
2115 struct name *ox;
2116 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2117 if (!asccasecmp(ox->n_name, x->n_name))
2118 goto j_mft_add;
2120 break;
2124 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2125 if (((f & HF_MFT_SENDER) ||
2126 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2127 (np = fromasender) != NULL && np != (struct name*)0x1) {
2128 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2129 np->n_flink = mft;
2130 mft = np;
2133 if (fmt("Mail-Followup-To:", mft, fo, ff))
2134 goto jleave;
2135 ++gotcha;
2139 if (!_check_dispo_notif(fromasender, hp, fo))
2140 goto jleave;
2143 if ((w & GUA) && stealthmua == 0) {
2144 if (fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)) < 0)
2145 goto jleave;
2146 ++gotcha;
2149 /* The user may have placed headers when editing */
2150 if(1){
2151 struct n_header_field *hfp;
2153 if((hfp = hp->h_user_headers) != NULL){
2154 if(!_sendout_header_list(fo, hfp, nodisp))
2155 goto jleave;
2156 ++gotcha;
2160 /* Custom headers, as via *customhdr* */
2161 if(!nosend_msg){
2162 struct n_header_field *hfp;
2164 /* With iconv support we likely have a cached result */
2165 if((hfp = hp->h_custom_headers) == NULL)
2166 hp->h_custom_headers = hfp = n_customhdr_query();
2167 if(hfp != NULL){
2168 if(!_sendout_header_list(fo, hfp, nodisp))
2169 goto jleave;
2170 ++gotcha;
2174 /* We don't need MIME unless.. we need MIME?! */
2175 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
2176 hp->h_attach != NULL ||
2177 ((options & OPT_Mm_FLAG) && option_Mm_arg != NULL) ||
2178 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2179 ++gotcha;
2180 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2181 goto jleave;
2182 if (hp->h_attach != NULL) {
2183 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2184 if (fprintf(fo,
2185 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2186 _sendout_boundary) < 0)
2187 goto jleave;
2188 } else {
2189 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2190 goto jleave;
2194 if (gotcha && (w & GNL))
2195 if (putc('\n', fo) == EOF)
2196 goto jleave;
2197 rv = 0;
2198 jleave:
2199 NYD_LEAVE;
2200 return rv;
2201 #undef FMT_CC_AND_BCC
2204 FL enum okay
2205 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2207 struct sendbundle sb;
2208 FILE *ibuf, *nfo, *nfi;
2209 char *tempMail;
2210 enum okay rv = STOP;
2211 NYD_ENTER;
2213 _sendout_error = FAL0;
2214 __sendout_ident = NULL;
2216 /* Update some globals we likely need first */
2217 time_current_update(&time_current, TRU1);
2219 if ((to = checkaddrs(to,
2220 (EACM_NORMAL |
2221 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2222 &_sendout_error)) == NULL)
2223 goto jleave;
2224 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2225 if (_sendout_error < 0)
2226 n_err(_("Some addressees were classified as \"hard error\"\n"));
2228 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2229 == NULL) {
2230 _sendout_error = TRU1;
2231 n_perr(_("temporary mail file"), 0);
2232 goto jleave;
2234 if ((nfi = Fopen(tempMail, "r")) == NULL)
2235 n_perr(tempMail, 0);
2236 Ftmp_release(&tempMail);
2237 if (nfi == NULL)
2238 goto jerr_o;
2240 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2241 goto jerr_io;
2243 memset(&sb, 0, sizeof sb);
2244 sb.sb_to = to;
2245 sb.sb_input = nfi;
2246 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2247 /* ..wait until we can write DEAD */
2248 _sendout_error = -1;
2250 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2251 jfail_dead:
2252 savedeadletter(nfi, TRU1);
2253 n_err(_("... message not sent\n"));
2254 jerr_io:
2255 Fclose(nfi);
2256 jerr_o:
2257 Fclose(nfo);
2258 _sendout_error = TRU1;
2259 goto jleave;
2262 if (_sendout_error < 0)
2263 goto jfail_dead;
2265 Fclose(nfo);
2266 rewind(nfi);
2268 to = _outof(to, nfi, &_sendout_error);
2270 if (_sendout_error)
2271 savedeadletter(nfi, FAL0);
2273 if (count(to = elide(to)) != 0) {
2274 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2275 sb.sb_to = to;
2276 /*sb.sb_input = nfi;*/
2277 if (_transfer(&sb))
2278 rv = OKAY;
2280 } else if (!_sendout_error)
2281 rv = OKAY;
2283 Fclose(nfi);
2284 jleave:
2285 if (_sendout_error)
2286 exit_status |= EXIT_SEND_ERROR;
2287 NYD_LEAVE;
2288 return rv;
2291 FL void
2292 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2293 struct n_string line;
2294 int c;
2295 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2296 ul_i bytes, lines;
2297 FILE *dbuf;
2298 char const *cp, *cpq;
2299 NYD_ENTER;
2301 if(!ok_blook(save))
2302 goto jleave;
2304 if(fflush_rewind_first){
2305 fflush(fp);
2306 rewind(fp);
2308 if(fsize(fp) == 0)
2309 goto jleave;
2311 cp = n_getdeadletter();
2312 cpq = n_shexp_quote_cp(cp, FAL0);
2314 if(options & OPT_DEBUG){
2315 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2316 goto jleave;
2319 if((dbuf = Fopen(cp, "w")) == NULL){
2320 n_perr(_("Cannot save to $DEAD"), 0);
2321 goto jleave;
2323 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2325 printf("%s ", cpq);
2326 fflush(stdout);
2328 /* TODO savedeadletter() non-conforming: should check whether we have any
2329 * TODO headers, if not we need to place "something", anything will do.
2330 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2331 * TODO I/O error handling missing. Yuck! */
2332 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2333 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2334 ok_vlook(LOGNAME), time_current.tc_ctime);
2335 lines = 1;
2336 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2337 n_string_trunc(&line, 0);
2338 while((c = getc(fp)) != EOF && c != '\n')
2339 n_string_push_c(&line, c);
2341 /* TODO It may be that we have only some plain text. It may be that we
2342 * TODO have a complete MIME encoded message. We don't know, and we
2343 * TODO have no usable mechanism to dig it!! tWe need v15! */
2344 if(!(flags & a_INIT)){
2345 size_t i;
2347 /* Throw away leading empty lines! */
2348 if(line.s_len == 0)
2349 continue;
2350 for(i = 0; i < line.s_len; ++i){
2351 if(fieldnamechar(line.s_dat[i]))
2352 continue;
2353 if(line.s_dat[i] == ':'){
2354 flags |= a_INIT;
2355 break;
2356 }else{
2357 /* We have no headers, this is already a body line! */
2358 flags |= a_INIT | a_BODY;
2359 break;
2362 /* Well, i had to check whether the RFC allows this. Assume we've
2363 * passed the headers, too, then! */
2364 if(i == line.s_len)
2365 flags |= a_INIT | a_BODY;
2367 if(flags & a_BODY){
2368 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2369 n_string_unshift_c(&line, '>');
2371 if(line.s_len == 0)
2372 flags |= a_BODY | a_NL;
2373 else
2374 flags &= ~a_NL;
2376 n_string_push_c(&line, '\n');
2377 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2379 if(!(flags & a_NL)){
2380 putc('\n', dbuf);
2381 ++bytes;
2382 ++lines;
2384 n_string_gut(&line);
2386 Fclose(dbuf);
2387 printf("%lu/%lu\n", lines, bytes);
2388 fflush(stdout);
2390 rewind(fp);
2391 jleave:
2392 NYD_LEAVE;
2395 #undef SEND_LINESIZE
2397 /* s-it-mode */