More `alternates' processing: a 2nd "pure", non-extended run
[s-mailx.git] / sendout.c
blob7c60ea409bdea4785bc130714ba0ab389292fdcc
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_INC_INVADDR = 1<<0, /* _Do_ include invalid addresses */
48 FMT_DOMIME = 1<<1, /* Perform MIME conversion */
49 FMT_COMMA = GCOMMA,
50 FMT_FILES = GFILES,
51 _FMT_GMASK = FMT_COMMA | FMT_FILES
53 n_CTA(!(_FMT_GMASK & (FMT_INC_INVADDR | FMT_DOMIME)),
54 "Code-required condition not satisfied but actual bit carrier value");
56 static char const *__sendout_ident; /* TODO temporary hack; rewrite puthead() */
57 static char * _sendout_boundary;
58 static si8_t _sendout_error;
60 /* */
61 static enum okay _putname(char const *line, enum gfield w,
62 enum sendaction action, size_t *gotcha,
63 char const *prefix, FILE *fo, struct name **xp,
64 enum gfield addflags);
66 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
67 * headers, respectively */
68 static int _put_ct(FILE *fo, char const *contenttype,
69 char const *charset);
70 SINLINE int _put_cte(FILE *fo, enum conversion conv);
71 static int _put_cd(FILE *fo, char const *cd, char const *filename);
73 /* Put all entries of the given header list */
74 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
75 bool_t nodisp);
77 /* Write an attachment to the file buffer, converting to MIME */
78 static int a_sendout_attach_file(struct header *hp, struct attachment *ap,
79 FILE *fo);
80 static int a_sendout__attach_file(struct header *hp, struct attachment *ap,
81 FILE *fo);
83 /* There are non-local receivers, collect credentials etc. */
84 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
85 bool_t signing_caps);
87 /* Attach a message to the file buffer */
88 static int a_sendout_attach_msg(struct header *hp, struct attachment *ap,
89 FILE *fo);
91 /* Generate the body of a MIME multipart message */
92 static int make_multipart(struct header *hp, int convert, FILE *fi,
93 FILE *fo, char const *contenttype, char const *charset);
95 /* Prepend a header in front of the collected stuff and return the new file */
96 static FILE * infix(struct header *hp, FILE *fi);
98 /* Check whether Disposition-Notification-To: is desired */
99 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
100 FILE *fo);
102 /* Send mail to a bunch of user names. The interface is through mail() */
103 static int sendmail_internal(void *v, int recipient_record);
105 /* Deal with file and pipe addressees */
106 static struct name *a_sendout_file_a_pipe(struct name *names, FILE *fo,
107 bool_t *senderror);
109 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
110 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
112 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
114 /* */
115 static bool_t _transfer(struct sendbundle *sbp);
117 static bool_t __mta_start(struct sendbundle *sbp);
118 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
119 static void __mta_debug(struct sendbundle *sbp, char const *mta,
120 char const **args);
122 /* Create a Message-ID: header field. Use either host name or from address */
123 static char const *a_sendout_random_id(struct header *hp, bool_t msgid);
125 /* Format the given header line to not exceed 72 characters */
126 static int fmt(char const *str, struct name *np, FILE *fo,
127 enum fmt_flags ff);
129 /* Rewrite a message for resending, adding the Resent-Headers */
130 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
131 struct name *to, int add_resent);
133 static enum okay
134 _putname(char const *line, enum gfield w, enum sendaction action,
135 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
136 enum gfield addflags)
138 struct name *np;
139 enum okay rv = STOP;
140 NYD_ENTER;
142 np = lextract(line, GEXTRA | GFULL | addflags);
143 if (xp != NULL)
144 *xp = np;
145 if (np == NULL)
147 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
148 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
149 rv = OKAY;
150 else if (gotcha != NULL)
151 ++(*gotcha);
152 NYD_LEAVE;
153 return rv;
156 static int
157 _put_ct(FILE *fo, char const *contenttype, char const *charset)
159 int rv, i;
160 NYD2_ENTER;
162 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
163 goto jerr;
165 if (charset == NULL)
166 goto jend;
168 if (putc(';', fo) == EOF)
169 goto jerr;
170 ++rv;
172 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
173 if (putc('\n', fo) == EOF)
174 goto jerr;
175 ++rv;
178 /* C99 */{
179 size_t l = strlen(charset);
180 char *lcs = salloc(l +1);
182 for(l = 0; *charset != '\0'; ++l, ++charset)
183 lcs[l] = lowerconv(*charset);
184 lcs[l] = '\0';
185 charset = lcs;
187 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
188 goto jerr;
189 rv += i;
191 jend:
192 if (putc('\n', fo) == EOF)
193 goto jerr;
194 ++rv;
195 jleave:
196 NYD2_LEAVE;
197 return rv;
198 jerr:
199 rv = -1;
200 goto jleave;
203 SINLINE int
204 _put_cte(FILE *fo, enum conversion conv)
206 int rv;
207 NYD2_ENTER;
209 /* RFC 2045, 6.1.:
210 * This is the default value -- that is,
211 * "Content-Transfer-Encoding: 7BIT" is assumed if the
212 * Content-Transfer-Encoding header field is not present.
214 rv = (conv == CONV_7BIT) ? 0
215 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
216 mime_enc_from_conversion(conv));
217 NYD2_LEAVE;
218 return rv;
221 static int
222 _put_cd(FILE *fo, char const *cd, char const *filename)
224 struct str f;
225 si8_t mpc;
226 int rv;
227 NYD2_ENTER;
229 f.s = NULL;
231 /* xxx Ugly with the trailing space in case of wrap! */
232 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
233 goto jerr;
235 if (!(mpc = mime_param_create(&f, "filename", filename)))
236 goto jerr;
237 /* Always fold if result contains newlines */
238 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
239 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
240 goto jerr;
241 rv += 2;
243 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
244 goto jerr;
245 rv += (int)++f.l;
247 jleave:
248 NYD2_LEAVE;
249 return rv;
250 jerr:
251 rv = -1;
252 goto jleave;
256 static bool_t
257 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
258 bool_t rv;
259 NYD2_ENTER;
261 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
262 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
263 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
264 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
265 (!nodisp ? CONV_NONE : CONV_TOHDR),
266 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
267 putc('\n', fo) == EOF){
268 rv = FAL0;
269 break;
271 NYD_LEAVE;
272 return rv;
275 static int
276 a_sendout_attach_file(struct header *hp, struct attachment *ap, FILE *fo)
278 /* TODO of course, the MIME classification needs to performed once
279 * TODO only, not for each and every charset anew ... ;-// */
280 char *charset_iter_orig[2];
281 long offs;
282 int err = 0;
283 NYD_ENTER;
285 /* Is this already in target charset? Simply copy over */
286 if (ap->a_conv == AC_TMPFILE) {
287 err = a_sendout__attach_file(hp, ap, fo);
288 Fclose(ap->a_tmpf);
289 DBG( ap->a_tmpf = NULL; )
290 goto jleave;
293 /* If we don't apply charset conversion at all (fixed input=ouput charset)
294 * we also simply copy over, since it's the users desire */
295 if (ap->a_conv == AC_FIX_INCS) {
296 ap->a_charset = ap->a_input_charset;
297 err = a_sendout__attach_file(hp, ap, fo);
298 goto jleave;
299 } else
300 assert(ap->a_input_charset != NULL);
302 /* Otherwise we need to iterate over all possible output charsets */
303 if ((offs = ftell(fo)) == -1) {
304 err = n_ERR_IO;
305 goto jleave;
307 charset_iter_recurse(charset_iter_orig);
308 for (charset_iter_reset(NULL);; charset_iter_next()) {
309 if (!charset_iter_is_valid()) {
310 err = n_ERR_ILSEQ;
311 break;
313 err = a_sendout__attach_file(hp, ap, fo);
314 if (err == 0 || (err != n_ERR_ILSEQ && err != n_ERR_INVAL))
315 break;
316 clearerr(fo);
317 if (fseek(fo, offs, SEEK_SET) == -1) {
318 err = n_ERR_IO;
319 break;
321 if (ap->a_conv != AC_DEFAULT) {
322 err = n_ERR_ILSEQ;
323 break;
325 ap->a_charset = NULL;
327 charset_iter_restore(charset_iter_orig);
328 jleave:
329 NYD_LEAVE;
330 return err;
333 static int
334 a_sendout__attach_file(struct header *hp, struct attachment *ap, FILE *fo)
336 int err = 0, do_iconv;
337 FILE *fi;
338 char const *charset;
339 enum conversion convert;
340 char *buf;
341 size_t bufsize, lncnt, inlen;
342 NYD_ENTER;
344 /* Either charset-converted temporary file, or plain path */
345 if (ap->a_conv == AC_TMPFILE) {
346 fi = ap->a_tmpf;
347 assert(ftell(fi) == 0);
348 } else if ((fi = Fopen(ap->a_path, "r")) == NULL) {
349 err = n_err_no;
350 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0),
351 n_err_to_doc(err));
352 goto jleave;
355 /* MIME part header for attachment */
356 { char const *ct, *cp;
358 ct = ap->a_content_type;
359 charset = ap->a_charset;
360 convert = n_mimetype_classify_file(fi, (char const**)&ct,
361 &charset, &do_iconv);
362 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
363 ap->a_conv == AC_TMPFILE)
364 do_iconv = 0;
366 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
367 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
368 _put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
369 goto jerr_header;
371 if((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")){
372 struct name *np;
374 if((np = ap->a_content_id) != NULL)
375 cp = np->n_name;
376 else
377 cp = a_sendout_random_id(hp, FAL0);
379 if(cp != NULL && fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
380 goto jerr_header;
383 if ((cp = ap->a_content_description) != NULL &&
384 (fputs("Content-Description: ", fo) == EOF ||
385 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
386 ) < 0 || putc('\n', fo) == EOF))
387 goto jerr_header;
389 if (putc('\n', fo) == EOF) {
390 jerr_header:
391 err = n_err_no;
392 goto jerr_fclose;
396 #ifdef HAVE_ICONV
397 if (iconvd != (iconv_t)-1)
398 n_iconv_close(iconvd);
399 if (do_iconv) {
400 if (asccasecmp(charset, ap->a_input_charset) &&
401 (iconvd = n_iconv_open(charset, ap->a_input_charset)
402 ) == (iconv_t)-1 && (err = n_err_no) != 0) {
403 if (err == n_ERR_INVAL)
404 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
405 charset);
406 else
407 n_err(_("iconv_open: %s\n"), n_err_to_doc(err));
408 goto jerr_fclose;
411 #endif
413 bufsize = SEND_LINESIZE;
414 buf = smalloc(bufsize);
415 if (convert == CONV_TOQP
416 #ifdef HAVE_ICONV
417 || iconvd != (iconv_t)-1
418 #endif
420 lncnt = fsize(fi);
421 for (;;) {
422 if (convert == CONV_TOQP
423 #ifdef HAVE_ICONV
424 || iconvd != (iconv_t)-1
425 #endif
427 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
428 break;
429 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
430 break;
431 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
432 err = n_err_no;
433 goto jerr;
436 if (ferror(fi))
437 err = n_ERR_DOM;
438 jerr:
439 free(buf);
440 jerr_fclose:
441 if (ap->a_conv != AC_TMPFILE)
442 Fclose(fi);
443 jleave:
444 NYD_LEAVE;
445 return err;
448 static bool_t
449 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
451 bool_t v15, rv = FAL0;
452 char *shost, *from;
453 #ifdef HAVE_SMTP
454 char const *smtp;
455 #endif
456 NYD_ENTER;
458 v15 = ok_blook(v15_compat);
459 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
460 from = ((signing_caps || !v15 || shost == NULL)
461 ? skin(myorigin(sbp->sb_hp)) : NULL);
463 if (signing_caps) {
464 if (from == NULL) {
465 #ifdef HAVE_SSL
466 n_err(_("No *from* address for signing specified\n"));
467 goto jleave;
468 #endif
469 } else
470 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
473 #ifndef HAVE_SMTP
474 rv = TRU1;
475 #else
476 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
477 char const *proto;
479 /* *smtp* OBSOLETE message in mta_start() */
480 if((proto = n_servbyname(smtp = ok_vlook(mta), NULL)) == NULL ||
481 *proto == '\0'){
482 rv = TRU1;
483 goto jleave;
487 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
488 goto jleave;
490 if (v15) {
491 if (shost == NULL) {
492 if (from == NULL)
493 goto jenofrom;
494 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
495 } else
496 __sendout_ident = sbp->sb_url.url_u_h.s;
497 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
498 goto jleave;
499 } else {
500 if ((sbp->sb_url.url_flags & n_URL_HAD_USER) ||
501 sbp->sb_url.url_pass.s != NULL) {
502 n_err(_("New-style URL used without *v15-compat* being set\n"));
503 goto jleave;
505 /* TODO part of the entire myorigin() disaster, get rid of this! */
506 if (from == NULL) {
507 jenofrom:
508 n_err(_("Your configuration requires a *from* address, "
509 "but none was given\n"));
510 goto jleave;
512 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
513 goto jleave;
514 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
517 rv = TRU1;
518 #endif /* HAVE_SMTP */
519 #if defined HAVE_SSL || defined HAVE_SMTP
520 jleave:
521 #endif
522 NYD_LEAVE;
523 return rv;
526 static int
527 a_sendout_attach_msg(struct header *hp, struct attachment *ap, FILE *fo)
529 struct message *mp;
530 char const *ccp;
531 int rv;
532 NYD_ENTER;
533 n_UNUSED(hp);
535 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
536 "Content-Disposition: inline\n", _sendout_boundary);
537 if ((ccp = ap->a_content_description) != NULL)
538 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
539 putc('\n', fo);
541 mp = message + ap->a_msgno - 1;
542 touch(mp);
543 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
544 NYD_LEAVE;
545 return rv;
548 static int
549 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
550 char const *contenttype, char const *charset)
552 struct attachment *att;
553 int rv = -1;
554 NYD_ENTER;
556 fputs("This is a multi-part message in MIME format.\n", fo);
557 if (fsize(fi) != 0) {
558 char const *cp;
559 char *buf;
560 size_t sz, bufsize, cnt;
562 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
563 _put_ct(fo, contenttype, charset) < 0 ||
564 _put_cte(fo, convert) < 0 ||
565 fprintf(fo, "Content-Disposition: inline\n") < 0)
566 goto jleave;
567 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
568 (cp = a_sendout_random_id(hp, FAL0)) != NULL &&
569 fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
570 goto jleave;
571 if(putc('\n', fo) == EOF)
572 goto jleave;
574 buf = smalloc(bufsize = SEND_LINESIZE);
575 if (convert == CONV_TOQP
576 #ifdef HAVE_ICONV
577 || iconvd != (iconv_t)-1
578 #endif
580 fflush(fi);
581 cnt = fsize(fi);
583 for (;;) {
584 if (convert == CONV_TOQP
585 #ifdef HAVE_ICONV
586 || iconvd != (iconv_t)-1
587 #endif
589 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
590 break;
591 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
592 break;
594 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
595 free(buf);
596 goto jleave;
599 free(buf);
601 if (ferror(fi))
602 goto jleave;
605 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
606 if (att->a_msgno) {
607 if (a_sendout_attach_msg(hp, att, fo) != 0)
608 goto jleave;
609 } else if (a_sendout_attach_file(hp, att, fo) != 0)
610 goto jleave;
613 /* the final boundary with two attached dashes */
614 fprintf(fo, "\n--%s--\n", _sendout_boundary);
615 rv = 0;
616 jleave:
617 NYD_LEAVE;
618 return rv;
621 static FILE *
622 infix(struct header *hp, FILE *fi) /* TODO check */
624 FILE *nfo, *nfi = NULL;
625 char *tempMail;
626 char const *contenttype, *charset = NULL;
627 enum conversion convert;
628 int do_iconv = 0, err;
629 #ifdef HAVE_ICONV
630 char const *tcs, *convhdr = NULL;
631 #endif
632 NYD_ENTER;
634 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
635 == NULL) {
636 n_perr(_("temporary mail file"), 0);
637 goto jleave;
639 if ((nfi = Fopen(tempMail, "r")) == NULL) {
640 n_perr(tempMail, 0);
641 Fclose(nfo);
643 Ftmp_release(&tempMail);
644 if (nfi == NULL)
645 goto jleave;
647 n_pstate &= ~n_PS_HEADER_NEEDED_MIME; /* TODO hack -> be carrier tracked */
649 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
650 if((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL)
651 contenttype = n_poption_arg_Mm;
652 convert = n_mimetype_classify_file(fi, &contenttype, &charset, &do_iconv);
654 #ifdef HAVE_ICONV
655 tcs = ok_vlook(ttycharset);
656 if ((convhdr = need_hdrconv(hp))) {
657 if (iconvd != (iconv_t)-1) /* XXX */
658 n_iconv_close(iconvd);
659 if (asccasecmp(convhdr, tcs) != 0 &&
660 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
661 (err = n_err_no) != 0)
662 goto jiconv_err;
664 #endif
665 if (puthead(FAL0, hp, nfo,
666 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
667 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
668 goto jerr;
669 #ifdef HAVE_ICONV
670 if (iconvd != (iconv_t)-1)
671 n_iconv_close(iconvd);
672 #endif
674 #ifdef HAVE_ICONV
675 if (do_iconv && charset != NULL) { /*TODO charset->n_mimetype_classify_file*/
676 if (asccasecmp(charset, tcs) != 0 &&
677 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
678 (err = n_err_no) != 0) {
679 jiconv_err:
680 if (err == n_ERR_INVAL)
681 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
682 else
683 n_perr("iconv_open", 0);
684 goto jerr;
687 #endif
689 if (hp->h_attach != NULL) {
690 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
691 goto jerr;
692 } else {
693 size_t sz, bufsize, cnt;
694 char *buf;
696 if (convert == CONV_TOQP
697 #ifdef HAVE_ICONV
698 || iconvd != (iconv_t)-1
699 #endif
701 fflush(fi);
702 cnt = fsize(fi);
704 buf = smalloc(bufsize = SEND_LINESIZE);
705 for (err = 0;;) {
706 if (convert == CONV_TOQP
707 #ifdef HAVE_ICONV
708 || iconvd != (iconv_t)-1
709 #endif
711 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
712 break;
713 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
714 break;
715 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
716 err = 1;
717 break;
720 free(buf);
722 if (err || ferror(fi)) {
723 jerr:
724 Fclose(nfo);
725 Fclose(nfi);
726 #ifdef HAVE_ICONV
727 if (iconvd != (iconv_t)-1)
728 n_iconv_close(iconvd);
729 #endif
730 nfi = NULL;
731 goto jleave;
735 #ifdef HAVE_ICONV
736 if (iconvd != (iconv_t)-1)
737 n_iconv_close(iconvd);
738 #endif
740 fflush(nfo);
741 if ((err = ferror(nfo)))
742 n_perr(_("temporary mail file"), 0);
743 Fclose(nfo);
744 if (!err) {
745 fflush_rewind(nfi);
746 Fclose(fi);
747 } else {
748 Fclose(nfi);
749 nfi = NULL;
751 jleave:
752 NYD_LEAVE;
753 return nfi;
756 static bool_t
757 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
759 char const *from;
760 bool_t rv = TRU1;
761 NYD_ENTER;
763 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
764 * TODO not yet checked */
765 if (!ok_blook(disposition_notification_send))
766 goto jleave;
768 if (mdn != NULL && mdn != (struct name*)0x1)
769 from = mdn->n_name;
770 else if ((from = myorigin(hp)) == NULL) {
771 if (n_poption & n_PO_D_V)
772 n_err(_("*disposition-notification-send*: *from* not set\n"));
773 goto jleave;
776 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
777 rv = FAL0;
778 jleave:
779 NYD_LEAVE;
780 return rv;
783 static int
784 sendmail_internal(void *v, int recipient_record)
786 struct header head;
787 char *str = v;
788 int rv;
789 NYD_ENTER;
791 memset(&head, 0, sizeof head);
792 head.h_to = lextract(str, GTO | GFULL);
793 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
794 NYD_LEAVE;
795 return (rv != OKAY); /* reverse! */
798 static struct name *
799 a_sendout_file_a_pipe(struct name *names, FILE *fo, bool_t *senderror){
800 ui32_t pipecnt, xcnt, i;
801 char const *sh;
802 struct name *np;
803 FILE *fp, **fppa;
804 NYD_ENTER;
806 fp = NULL;
807 fppa = NULL;
809 /* Look through all recipients and do a quick return if no file or pipe
810 * addressee is found */
811 for(pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink){
812 if(np->n_type & GDEL)
813 continue;
814 switch(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE){
815 case NAME_ADDRSPEC_ISFILE: ++xcnt; break;
816 case NAME_ADDRSPEC_ISPIPE: ++pipecnt; break;
819 if((pipecnt | xcnt) == 0)
820 goto jleave;
822 /* Otherwise create an array of file descriptors for each found pipe
823 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
824 * each pipe subprocess needs its very own file descriptor, and we need
825 * to deal with that.
826 * To make our life a bit easier let's just use the auto-reclaimed
827 * string storage */
828 if(pipecnt == 0 || (n_poption & n_PO_DEBUG)){
829 pipecnt = 0;
830 sh = NULL;
831 }else{
832 i = sizeof(FILE*) * pipecnt;
833 fppa = n_lofi_alloc(i);
834 memset(fppa, 0, i);
835 sh = ok_vlook(SHELL);
838 for(np = names; np != NULL; np = np->n_flink){
839 if(!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) || (np->n_type & GDEL))
840 continue;
842 /* In days of old we removed the entry from the the list; now for sake of
843 * header expansion we leave it in and mark it as deleted */
844 np->n_type |= GDEL;
846 if(n_poption & n_PO_D_VV)
847 n_err(_(">>> Writing message via %s\n"),
848 n_shexp_quote_cp(np->n_name, FAL0));
849 /* We _do_ write to STDOUT, anyway! */
850 if((n_poption & n_PO_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
851 np->n_name[0] != '-' || np->n_name[1] != '\0'))
852 continue;
854 /* See if we have copied the complete message out yet. If not, do so */
855 if(fp == NULL){
856 int c;
857 char *tempEdit;
859 if((fp = Ftmp(&tempEdit, "outof", OF_RDWR | OF_HOLDSIGS | OF_REGISTER)
860 ) == NULL){
861 n_perr(_("Creation of temporary image"), 0);
862 pipecnt = 0;
863 goto jerror;
866 for(i = 0; i < pipecnt; ++i)
867 if((fppa[i] = Fopen(tempEdit, "r")) == NULL){
868 n_perr(_("Creation of pipe image descriptor"), 0);
869 break;
872 Ftmp_release(&tempEdit);
873 if(i != pipecnt){
874 pipecnt = i;
875 goto jerror;
878 fprintf(fp, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
879 c = EOF;
880 while(i = c, (c = getc(fo)) != EOF)
881 putc(c, fp);
882 rewind(fo);
883 if((int)i != '\n')
884 putc('\n', fp);
885 putc('\n', fp);
886 fflush(fp);
887 if(ferror(fp)){
888 n_perr(_("Finalizing write of temporary image"), 0);
889 goto jerror;
892 /* From now on use xcnt as a counter for pipecnt */
893 xcnt = 0;
896 /* Now either copy "image" to the desired file or give it as the standard
897 * input to the desired program as appropriate */
898 if(np->n_flags & NAME_ADDRSPEC_ISPIPE){
899 int pid;
900 sigset_t nset;
902 sigemptyset(&nset);
903 sigaddset(&nset, SIGHUP);
904 sigaddset(&nset, SIGINT);
905 sigaddset(&nset, SIGQUIT);
906 pid = n_child_start(sh, &nset, fileno(fppa[xcnt++]), n_CHILD_FD_NULL,
907 "-c", &np->n_name[1], NULL, NULL);
908 if(pid < 0){
909 n_err(_("Piping message to %s failed\n"),
910 n_shexp_quote_cp(np->n_name, FAL0));
911 goto jerror;
913 n_child_free(pid);
914 }else{
915 int c;
916 FILE *fout;
917 char const *fname, *fnameq;
919 if((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL)
920 goto jerror;
921 fnameq = n_shexp_quote_cp(fname, FAL0);
923 if(fname[0] == '-' && fname[1] == '\0')
924 fout = n_stdout;
925 else{
926 int xerr;
927 enum n_fopen_state fs;
929 xerr = TRU1;
930 if((fout = n_fopen_any(fname, "a+", &fs)) == NULL){
931 xerr = n_err_no;
932 jefile:
933 n_err(_("Writing message to %s failed: %s\n"),
934 fnameq, n_err_to_doc(xerr));
935 goto jerror;
938 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
939 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
940 n_file_lock(fileno(fout), FLT_WRITE, 0,0, UIZ_MAX);
942 if((xerr = n_folder_mbox_prepare_append(fout, NULL)
943 ) != n_ERR_NONE)
944 goto jefile;
948 rewind(fp);
949 while((c = getc(fp)) != EOF)
950 putc(c, fout);
951 if(ferror(fout)){
952 n_err(_("Writing message to %s failed: %s\n"),
953 fnameq, _("write error"));
954 *senderror = TRU1;
957 if(fout != n_stdout)
958 Fclose(fout);
962 jleave:
963 if(fp != NULL)
964 Fclose(fp);
965 if(fppa != NULL){
966 for(i = 0; i < pipecnt; ++i)
967 if((fp = fppa[i]) != NULL)
968 Fclose(fp);
969 n_lofi_free(fppa);
971 NYD_LEAVE;
972 return names;
974 jerror:
975 *senderror = TRU1;
976 while(np != NULL){
977 if(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
978 np->n_type |= GDEL;
979 np = np->n_flink;
981 goto jleave;
984 static bool_t
985 mightrecord(FILE *fp, struct name *to, bool_t resend){
986 char *cp;
987 char const *ccp;
988 bool_t rv;
989 NYD2_ENTER;
991 rv = TRU1;
993 if(n_poption & n_PO_DEBUG)
994 ccp = NULL;
995 else if(to != NULL){
996 ccp = cp = savestr(skinned_name(to));
997 while(*cp != '\0' && *cp != '@')
998 ++cp;
999 *cp = '\0';
1000 }else
1001 ccp = ok_vlook(record);
1003 if(ccp != NULL){
1004 if((cp = fexpand(ccp, FEXP_FULL)) == NULL)
1005 goto jbail;
1007 switch(*(ccp = cp)){
1008 case '.':
1009 if(cp[1] != '/'){ /* DIRSEP */
1010 default:
1011 if(ok_blook(outfolder)){
1012 struct str s;
1013 char const *nccp;
1015 switch(which_protocol(ccp, TRU1, FAL0, &nccp)){
1016 case PROTO_FILE:
1017 ccp = "file://";
1018 if(0){
1019 /* FALLTHRU */
1020 case PROTO_MAILDIR:
1021 ccp = "maildir://";
1023 ccp = str_concat_csvl(&s, ccp, n_folder_query(), nccp)->s;
1024 /* FALLTHRU */
1025 default:
1026 break;
1030 /* FALLTHRU */
1031 case '/':
1032 break;
1035 if(!a_sendout__savemail(ccp, fp, resend)){
1036 jbail:
1037 n_err(_("Failed to save message in %s - message not sent\n"),
1038 n_shexp_quote_cp(ccp, FAL0));
1039 n_exit_status |= n_EXIT_ERR;
1040 savedeadletter(fp, 1);
1041 rv = FAL0;
1044 NYD2_LEAVE;
1045 return rv;
1048 static bool_t
1049 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1050 FILE *fo;
1051 size_t bufsize, buflen, cnt;
1052 enum n_fopen_state fs;
1053 bool_t rv, emptyline;
1054 char *buf;
1055 NYD_ENTER;
1057 buf = smalloc(bufsize = LINESIZE);
1058 rv = FAL0;
1060 if((fo = n_fopen_any(name, "a+", &fs)) == NULL){
1061 n_perr(name, 0);
1062 goto j_leave;
1065 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
1066 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
1067 int xerr;
1069 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()!
1070 * TODO BETTER yet: should be returned in lock state already! */
1071 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1073 if((xerr = n_folder_mbox_prepare_append(fo, NULL)) != n_ERR_NONE){
1074 n_perr(name, xerr);
1075 goto jleave;
1079 fflush_rewind(fp);
1080 rv = TRU1;
1082 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1083 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1084 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1085 /* Only if we are resending it can happen that we have to quote From_
1086 * lines here; we don't generate messages which are ambiguous ourselves */
1087 if(resend){
1088 if(emptyline && is_head(buf, buflen, FAL0))
1089 putc('>', fo);
1090 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1092 emptyline = (buflen > 0 && *buf == '\n');
1093 fwrite(buf, sizeof *buf, buflen, fo);
1095 if(buflen > 0 && buf[buflen - 1] != '\n')
1096 putc('\n', fo);
1097 putc('\n', fo);
1098 fflush(fo);
1099 if(ferror(fo)){
1100 n_perr(name, 0);
1101 rv = FAL0;
1104 jleave:
1105 really_rewind(fp);
1106 if(Fclose(fo) != 0)
1107 rv = FAL0;
1108 j_leave:
1109 free(buf);
1110 NYD_LEAVE;
1111 return rv;
1114 static bool_t
1115 _transfer(struct sendbundle *sbp)
1117 struct name *np;
1118 ui32_t cnt;
1119 bool_t rv = TRU1;
1120 NYD_ENTER;
1122 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1123 char const k[] = "smime-encrypt-", *cp;
1124 size_t nl = strlen(np->n_name);
1125 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1126 memcpy(vs, k, sizeof(k) -1);
1127 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1129 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1130 #ifdef HAVE_SSL
1131 FILE *ef;
1133 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1134 FILE *fisave = sbp->sb_input;
1135 struct name *nsave = sbp->sb_to;
1137 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1138 sbp->sb_input = ef;
1139 if (!__mta_start(sbp))
1140 rv = FAL0;
1141 sbp->sb_to = nsave;
1142 sbp->sb_input = fisave;
1144 Fclose(ef);
1145 } else {
1146 #else
1147 n_err(_("No SSL support compiled in\n"));
1148 rv = FAL0;
1149 #endif
1150 n_err(_("Message not sent to: %s\n"), np->n_name);
1151 _sendout_error = TRU1;
1152 #ifdef HAVE_SSL
1154 #endif
1155 rewind(sbp->sb_input);
1157 if (np->n_flink != NULL)
1158 np->n_flink->n_blink = np->n_blink;
1159 if (np->n_blink != NULL)
1160 np->n_blink->n_flink = np->n_flink;
1161 if (np == sbp->sb_to)
1162 sbp->sb_to = np->n_flink;
1163 np = np->n_flink;
1164 } else {
1165 ++cnt;
1166 np = np->n_flink;
1168 ac_free(vs);
1171 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1172 rv = FAL0;
1173 NYD_LEAVE;
1174 return rv;
1177 static bool_t
1178 __mta_start(struct sendbundle *sbp)
1180 pid_t pid;
1181 sigset_t nset;
1182 char const **args, *mta;
1183 bool_t rv;
1184 NYD_ENTER;
1186 /* Let rv mean "is smtp-based MTA" */
1187 if((mta = ok_vlook(smtp)) != NULL){
1188 n_OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1189 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1190 * that *smtp* is misused with file:// or so */
1191 if(n_servbyname(mta, NULL) == NULL)
1192 mta = savecat("smtp://", mta);
1193 rv = TRU1;
1194 }else{
1195 char const *proto;
1197 mta = ok_vlook(mta); /* TODO v15: what solely remains in here */
1198 if((proto = ok_vlook(sendmail)) != NULL)
1199 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1200 if(proto != NULL && !strcmp(mta, VAL_MTA))
1201 mta = proto;
1203 /* TODO for now this is pretty hacky: in v15 we should simply create
1204 * TODO an URL object; i.e., be able to do so, and it does it right
1205 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1206 if((proto = n_servbyname(mta, NULL)) != NULL){
1207 if(*proto == '\0'){
1208 mta += sizeof("file://") -1;
1209 rv = FAL0;
1210 }else
1211 rv = TRU1;
1212 }else
1213 rv = FAL0;
1216 if(!rv){
1217 char const *mta_base;
1219 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1220 n_err(_("*mta* variable expansion failure: %s\n"),
1221 n_shexp_quote_cp(mta_base, FAL0));
1222 goto jstop;
1225 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1226 if (n_poption & n_PO_DEBUG) {
1227 __mta_debug(sbp, mta, args);
1228 rv = TRU1;
1229 goto jleave;
1231 } else {
1232 n_UNINIT(args, NULL);
1233 #ifndef HAVE_SMTP
1234 n_err(_("No SMTP support compiled in\n"));
1235 goto jstop;
1236 #else
1237 /* C99 */{
1238 struct name *np;
1240 for(np = sbp->sb_to; np != NULL; np = np->n_flink)
1241 if(!(np->n_type & GDEL) && (np->n_flags & NAME_ADDRSPEC_ISNAME)){
1242 n_err(_("SMTP *mta* cannot send to alias name: %s\n"),
1243 n_shexp_quote_cp(np->n_name, FAL0));
1244 rv = FAL0;
1246 if(!rv)
1247 goto jstop;
1250 if (n_poption & n_PO_DEBUG) {
1251 (void)smtp_mta(sbp);
1252 rv = TRU1;
1253 goto jleave;
1255 #endif
1258 /* Fork, set up the temporary mail file as standard input for "mail", and
1259 * exec with the user list we generated far above */
1260 if ((pid = n_child_fork()) == -1) {
1261 n_perr("fork", 0);
1262 jstop:
1263 savedeadletter(sbp->sb_input, 0);
1264 _sendout_error = TRU1;
1265 goto jleave;
1267 if (pid == 0) {
1268 sigemptyset(&nset);
1269 sigaddset(&nset, SIGHUP);
1270 sigaddset(&nset, SIGINT);
1271 sigaddset(&nset, SIGQUIT);
1272 sigaddset(&nset, SIGTSTP);
1273 sigaddset(&nset, SIGTTIN);
1274 sigaddset(&nset, SIGTTOU);
1275 /* n_stdin = */freopen(n_path_devnull, "r", stdin);
1276 #ifdef HAVE_SMTP
1277 if (rv) {
1278 n_child_prepare(&nset, 0, 1);
1279 if (smtp_mta(sbp))
1280 _exit(n_EXIT_OK);
1281 } else
1282 #endif
1284 char const *ecp;
1285 int e;
1287 n_child_prepare(&nset, fileno(sbp->sb_input), -1);
1288 execv(mta, n_UNCONST(args));
1289 e = n_err_no;
1290 ecp = (e != n_ERR_NOENT) ? n_err_to_doc(e)
1291 : _("executable not found (adjust *mta* variable)");
1292 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1294 savedeadletter(sbp->sb_input, 1);
1295 n_err(_("... message not sent\n"));
1296 _exit(n_EXIT_ERR);
1299 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1300 if (!(rv = n_child_wait(pid, NULL)))
1301 _sendout_error = TRU1;
1302 } else {
1303 n_child_free(pid);
1304 rv = TRU1;
1306 jleave:
1307 NYD_LEAVE;
1308 return rv;
1311 static char const **
1312 __mta_prepare_args(struct name *to, struct header *hp)
1314 size_t vas_cnt, i, j;
1315 char **vas;
1316 char const **args, *cp, *cp_v15compat;
1317 bool_t snda;
1318 NYD_ENTER;
1320 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1321 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1322 if((cp = ok_vlook(mta_arguments)) == NULL)
1323 cp = cp_v15compat;
1324 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1325 vas_cnt = 0;
1326 vas = NULL;
1327 } else {
1328 /* Don't assume anything on the content but do allocate exactly j slots;
1329 * like this getrawlist will never overflow (and return -1) */
1330 j = strlen(cp);
1331 vas = n_lofi_alloc(sizeof(*vas) * j);
1332 vas_cnt = (size_t)getrawlist(TRU1, vas, j, cp, j);
1335 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1336 args = salloc(i * sizeof(char*));
1338 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1339 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1340 cp = ok_vlook(mta_argv0);
1341 if(cp_v15compat != NULL && !strcmp(cp, VAL_MTA_ARGV0))
1342 cp = cp_v15compat;
1343 args[0] = cp/* TODO v15 only : = ok_vlook(mta_argv0) */;
1345 if ((snda = ok_blook(sendmail_no_default_arguments)))
1346 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1347 "not *sendmail-no-default-arguments*"));
1348 snda |= ok_blook(mta_no_default_arguments);
1349 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1350 i = 1;
1351 else {
1352 args[1] = "-i";
1353 i = 2;
1354 if (ok_blook(metoo))
1355 args[i++] = "-m";
1356 if (n_poption & n_PO_VERB)
1357 args[i++] = "-v";
1360 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1361 args[i] = n_smopts[j];
1363 for (j = 0; j < vas_cnt; ++j, ++i)
1364 args[i] = vas[j];
1366 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1367 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1368 * The interdependency with -t has been resolved in puthead() */
1369 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1370 struct name const *np;
1372 if (hp != NULL && (np = hp->h_from) != NULL) {
1373 /* However, what wasn't resolved there was the case that the message
1374 * specified multiple From: addresses and a Sender: */
1375 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1376 np = hp->h_sender;
1378 if (np->n_fullextra != NULL) {
1379 args[i++] = "-F";
1380 args[i++] = np->n_fullextra;
1382 cp = np->n_name;
1383 } else {
1384 assert(n_poption_arg_r == NULL);
1385 cp = skin(myorigin(NULL));
1388 if (cp != NULL) {
1389 args[i++] = "-f";
1390 args[i++] = cp;
1394 /* Terminate option list to avoid false interpretation of system-wide
1395 * aliases that start with hyphen */
1396 if (!snda)
1397 args[i++] = "--";
1399 /* Receivers follow */
1400 for (; to != NULL; to = to->n_flink)
1401 if (!(to->n_type & GDEL))
1402 args[i++] = to->n_name;
1403 args[i] = NULL;
1405 if(vas != NULL)
1406 n_lofi_free(vas);
1407 NYD_LEAVE;
1408 return args;
1411 static void
1412 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1414 size_t cnt, bufsize, llen;
1415 char *buf;
1416 NYD_ENTER;
1418 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1419 for (; *args != NULL; ++args)
1420 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1421 n_err("\n");
1423 fflush_rewind(sbp->sb_input);
1425 cnt = fsize(sbp->sb_input);
1426 buf = NULL;
1427 bufsize = 0;
1428 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1429 buf[--llen] = '\0';
1430 n_err(">>> %s\n", buf);
1432 if (buf != NULL)
1433 free(buf);
1434 NYD_LEAVE;
1437 static char const *
1438 a_sendout_random_id(struct header *hp, bool_t msgid)
1440 static ui32_t reprocnt;
1441 struct tm *tmp;
1442 char const *h;
1443 size_t rl, i;
1444 char *rv, sep;
1445 NYD_ENTER;
1447 rv = NULL;
1449 if(msgid && hp != NULL && hp->h_message_id != NULL){
1450 rv = hp->h_message_id->n_name;
1451 goto jleave;
1454 if(ok_blook(message_id_disable))
1455 goto jleave;
1457 sep = '%';
1458 rl = 5;
1459 if((h = __sendout_ident) != NULL)
1460 goto jgen;
1461 if(ok_vlook(hostname) != NULL){
1462 h = n_nodename(TRU1);
1463 sep = '@';
1464 rl = 8;
1465 goto jgen;
1467 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1468 goto jgen;
1469 goto jleave;
1471 jgen:
1472 tmp = &time_current.tc_gm;
1473 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1474 rv = n_autorec_alloc(i +1);
1475 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1476 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1477 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1478 n_random_create_cp(rl, &reprocnt), sep, h);
1479 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1480 jleave:
1481 NYD_LEAVE;
1482 return rv;
1485 static int
1486 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1488 enum {
1489 m_INIT = 1<<0,
1490 m_COMMA = 1<<1,
1491 m_NOPF = 1<<2,
1492 m_NONAME = 1<<3,
1493 m_CSEEN = 1<<4
1494 } m = (ff & GCOMMA) ? m_COMMA : 0;
1495 ssize_t col, len;
1496 int rv = 1;
1497 NYD_ENTER;
1499 col = strlen(str);
1500 if (col) {
1501 fwrite(str, sizeof *str, col, fo);
1502 #undef _X
1503 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1504 if (ff & GFILES) {
1506 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1507 _X("references:") || _X("in-reply-to:") ||
1508 _X("disposition-notification-to:"))
1509 m |= m_NOPF | m_NONAME;
1510 else if (ok_blook(add_file_recipients)) {
1512 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1513 m |= m_NOPF;
1514 #undef _X
1517 for (; np != NULL; np = np->n_flink) {
1518 if(np->n_type & GDEL)
1519 continue;
1520 if(is_addr_invalid(np,
1521 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1522 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1523 !(ff & FMT_INC_INVADDR))
1524 continue;
1526 /* File and pipe addresses only printed with set *add-file-recipients* */
1527 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1528 continue;
1530 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1531 if (putc(',', fo) == EOF)
1532 goto jleave;
1533 m |= m_CSEEN;
1534 ++col;
1537 len = strlen(np->n_fullname);
1538 if (np->n_type & GREF)
1539 len += 2;
1540 ++col; /* The separating space */
1541 if ((m & m_INIT) && /*col > 1 &&*/
1542 UICMP(z, col + len, >,
1543 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1544 if (fputs("\n ", fo) == EOF)
1545 goto jleave;
1546 col = 1;
1547 m &= ~m_CSEEN;
1548 } else
1549 putc(' ', fo);
1550 m = (m & ~m_CSEEN) | m_INIT;
1552 /* C99 */{
1553 char *hb;
1555 /* GREF needs to be placed in angle brackets, but which are missing */
1556 hb = np->n_fullname;
1557 if(np->n_type & GREF){
1558 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1559 hb = n_lofi_alloc(len +1);
1560 len -= 2;
1561 hb[0] = '<';
1562 hb[len + 1] = '>';
1563 hb[len + 2] = '\0';
1564 memcpy(&hb[1], np->n_fullname, len);
1565 len += 2;
1567 len = xmime_write(hb, len, fo,
1568 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1569 if(np->n_type & GREF)
1570 n_lofi_free(hb);
1572 if (len < 0)
1573 goto jleave;
1574 col += len;
1577 if (putc('\n', fo) != EOF)
1578 rv = 0;
1579 jleave:
1580 NYD_LEAVE;
1581 return rv;
1584 static int
1585 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1586 int add_resent)
1588 size_t cnt, c, bufsize = 0;
1589 char *buf = NULL;
1590 char const *cp;
1591 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1592 int rv = 1;
1593 NYD_ENTER;
1595 cnt = mp->m_size;
1597 /* Write the Resent-Fields */
1598 if (add_resent) {
1599 fputs("Resent-", fo);
1600 mkdate(fo, "Date");
1601 if ((cp = myaddrs(NULL)) != NULL) {
1602 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1603 &fromfield, 0))
1604 goto jleave;
1606 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1607 if ((cp = ok_vlook(sender)) != NULL) {
1608 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1609 &senderfield, 0))
1610 goto jleave;
1612 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1613 goto jleave;
1614 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1615 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1616 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1617 goto jleave;
1620 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1621 goto jleave;
1622 if (!_check_dispo_notif(mdn, NULL, fo))
1623 goto jleave;
1625 /* Write the original headers */
1626 while (cnt > 0) {
1627 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1628 break;
1629 if (ascncasecmp("status:", buf, 7) &&
1630 ascncasecmp("disposition-notification-to:", buf, 28) &&
1631 !is_head(buf, c, FAL0))
1632 fwrite(buf, sizeof *buf, c, fo);
1633 if (cnt > 0 && *buf == '\n')
1634 break;
1637 /* Write the message body */
1638 while (cnt > 0) {
1639 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1640 break;
1641 if (cnt == 0 && *buf == '\n')
1642 break;
1643 fwrite(buf, sizeof *buf, c, fo);
1645 if (buf != NULL)
1646 free(buf);
1647 if (ferror(fo)) {
1648 n_perr(_("temporary mail file"), 0);
1649 goto jleave;
1651 rv = 0;
1652 jleave:
1653 NYD_LEAVE;
1654 return rv;
1657 FL int
1658 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1659 struct attachment *attach, char const *quotefile, int recipient_record)
1661 struct header head;
1662 struct str in, out;
1663 NYD_ENTER;
1665 memset(&head, 0, sizeof head);
1667 /* The given subject may be in RFC1522 format. */
1668 if (subject != NULL) {
1669 in.s = n_UNCONST(subject);
1670 in.l = strlen(subject);
1671 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1672 head.h_subject = out.s;
1674 head.h_to = to;
1675 head.h_cc = cc;
1676 head.h_bcc = bcc;
1677 head.h_attach = attach;
1679 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1681 if (subject != NULL)
1682 free(out.s);
1683 NYD_LEAVE;
1684 return 0; /* TODO only for main.c, -> n_exit_status, BUT: ARGH! */
1687 FL int
1688 c_sendmail(void *v)
1690 int rv;
1691 NYD_ENTER;
1693 rv = sendmail_internal(v, 0);
1694 NYD_LEAVE;
1695 return rv;
1698 FL int
1699 c_Sendmail(void *v)
1701 int rv;
1702 NYD_ENTER;
1704 rv = sendmail_internal(v, 1);
1705 NYD_LEAVE;
1706 return rv;
1709 FL enum okay
1710 mail1(struct header *hp, int printheaders, struct message *quote,
1711 char const *quotefile, int recipient_record, int doprefix)
1713 struct n_sigman sm;
1714 struct sendbundle sb;
1715 struct name *to;
1716 bool_t dosign;
1717 FILE *mtf, *nmtf;
1718 enum okay rv;
1719 NYD_ENTER;
1721 _sendout_error = FAL0;
1722 __sendout_ident = NULL;
1723 rv = STOP;
1724 mtf = NULL;
1726 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1727 case 0:
1728 break;
1729 default:
1730 goto jleave;
1733 /* Update some globals we likely need first */
1734 time_current_update(&time_current, TRU1);
1736 /* Collect user's mail from standard input. Get the result as mtf */
1737 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1738 if (mtf == NULL)
1739 goto jleave;
1741 dosign = TRUM1;
1743 /* */
1744 if(n_psonce & n_PSO_INTERACTIVE){
1745 if (ok_blook(asksign))
1746 dosign = getapproval(_("Sign this message"), TRU1);
1749 if (fsize(mtf) == 0) {
1750 if (n_poption & n_PO_E_FLAG)
1751 goto jleave;
1752 if (hp->h_subject == NULL)
1753 fprintf(n_stdout, _("No message, no subject; hope that's ok\n"));
1754 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1755 fprintf(n_stdout, _("Null message body; hope that's ok\n"));
1758 if (dosign == TRUM1)
1759 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1760 #ifndef HAVE_SSL
1761 if (dosign) {
1762 n_err(_("No SSL support compiled in\n"));
1763 goto jleave;
1765 #endif
1767 /* XXX Update time_current again; once collect() offers editing of more
1768 * XXX headers, including Date:, this must only happen if Date: is the
1769 * XXX same that it was before collect() (e.g., postponing etc.).
1770 * XXX But *do* update otherwise because the mail seems to be backdated
1771 * XXX if the user edited some time, which looks odd and it happened
1772 * XXX to me that i got mis-dated response mails due to that... */
1773 time_current_update(&time_current, TRU1);
1775 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1776 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1777 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1778 * TODO header fields ONCE, call that ONCE after user editing etc. has
1779 * TODO completed (one edit cycle) */
1781 /* Take the user names from the combined to and cc lists and do all the
1782 * alias processing. The POSIX standard says:
1783 * The names shall be substituted when alias is used as a recipient
1784 * address specified by the user in an outgoing message (that is,
1785 * other recipients addressed indirectly through the reply command
1786 * shall not be substituted in this manner).
1787 * S-nail thus violates POSIX, as has been pointed out correctly by
1788 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1789 * disputable anyway. Go for user friendliness */
1791 to = namelist_vaporise_head(hp,
1792 (EACM_NORMAL |
1793 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1794 TRU1, &_sendout_error);
1796 if (to == NULL) {
1797 n_err(_("No recipients specified\n"));
1798 goto jfail_dead;
1800 if (_sendout_error < 0) {
1801 n_err(_("Some addressees were classified as \"hard error\"\n"));
1802 goto jfail_dead;
1805 /* */
1806 memset(&sb, 0, sizeof sb);
1807 sb.sb_hp = hp;
1808 sb.sb_to = to;
1809 sb.sb_input = mtf;
1810 if ((dosign || count_nonlocal(to) > 0) &&
1811 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1812 /* TODO saving $DEAD and recovering etc is not yet well defined */
1813 goto jfail_dead;
1815 /* 'Bit ugly kind of control flow until we find a charset that does it */
1816 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1817 int err;
1819 if (!charset_iter_is_valid())
1821 else if ((nmtf = infix(hp, mtf)) != NULL)
1822 break;
1823 else if ((err = n_err_no) == n_ERR_ILSEQ || err == n_ERR_INVAL) {
1824 rewind(mtf);
1825 continue;
1828 n_perr(_("Failed to create encoded message"), 0);
1829 goto jfail_dead;
1831 mtf = nmtf;
1833 /* */
1834 #ifdef HAVE_SSL
1835 if (dosign) {
1836 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1837 goto jfail_dead;
1838 Fclose(mtf);
1839 mtf = nmtf;
1841 #endif
1843 /* TODO truly - i still don't get what follows: (1) we deliver file
1844 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1845 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1847 /* C99 */{
1848 ui32_t cnt;
1849 bool_t b;
1851 /* Deliver pipe and file addressees */
1852 b = (ok_blook(record_files) && count(to) > 0);
1853 to = a_sendout_file_a_pipe(to, mtf, &_sendout_error);
1855 if (_sendout_error)
1856 savedeadletter(mtf, FAL0);
1858 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
1859 cnt = count(to);
1861 if ((recipient_record || b || cnt > 0) &&
1862 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1863 goto jleave;
1864 if (cnt > 0) {
1865 sb.sb_hp = hp;
1866 sb.sb_to = to;
1867 sb.sb_input = mtf;
1868 if (_transfer(&sb))
1869 rv = OKAY;
1870 } else if (!_sendout_error)
1871 rv = OKAY;
1874 n_sigman_cleanup_ping(&sm);
1875 jleave:
1876 if(mtf != NULL){
1877 char const *cp;
1879 Fclose(mtf);
1881 if((cp = ok_vlook(on_compose_cleanup)) != NULL)
1882 temporary_compose_mode_hook_call(cp, NULL, NULL);
1884 temporary_compose_mode_hook_unroll();
1886 if (_sendout_error)
1887 n_exit_status |= n_EXIT_SEND_ERROR;
1888 NYD_LEAVE;
1889 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1890 return rv;
1892 jfail_dead:
1893 _sendout_error = TRU1;
1894 savedeadletter(mtf, TRU1);
1895 n_err(_("... message not sent\n"));
1896 goto jleave;
1899 FL int
1900 mkdate(FILE *fo, char const *field)
1902 struct tm tmpgm, *tmptr;
1903 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1904 NYD_ENTER;
1906 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1907 tzdiff = time_current.tc_time - mktime(&tmpgm);
1908 tzdiff_hour = (int)(tzdiff / 60);
1909 tzdiff_min = tzdiff_hour % 60;
1910 tzdiff_hour /= 60;
1911 tmptr = &time_current.tc_local;
1912 if (tmptr->tm_isdst > 0)
1913 ++tzdiff_hour;
1914 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1915 field,
1916 n_weekday_names[tmptr->tm_wday],
1917 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1918 tmptr->tm_year + 1900, tmptr->tm_hour,
1919 tmptr->tm_min, tmptr->tm_sec,
1920 tzdiff_hour * 100 + tzdiff_min);
1921 NYD_LEAVE;
1922 return rv;
1925 FL int
1926 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1927 enum sendaction action, enum conversion convert, char const *contenttype,
1928 char const *charset)
1930 #define FMT_CC_AND_BCC() \
1931 do {\
1932 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1933 if (fmt("Cc:", hp->h_cc, fo, ff))\
1934 goto jleave;\
1935 ++gotcha;\
1937 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1938 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1939 goto jleave;\
1940 ++gotcha;\
1942 } while (0)
1944 char const *addr;
1945 size_t gotcha;
1946 struct name *np, *fromasender = NULL;
1947 int stealthmua, rv = 1;
1948 bool_t nodisp;
1949 enum fmt_flags ff;
1950 NYD_ENTER;
1952 if ((addr = ok_vlook(stealthmua)) != NULL)
1953 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1954 else
1955 stealthmua = 0;
1956 gotcha = 0;
1957 nodisp = (action != SEND_TODISP);
1958 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1959 if(nosend_msg)
1960 ff |= FMT_INC_INVADDR;
1962 if (w & GDATE)
1963 mkdate(fo, "Date"), ++gotcha;
1964 if (w & GIDENT) {
1965 if (hp->h_from == NULL || hp->h_sender == NULL)
1966 setup_from_and_sender(hp);
1968 if (hp->h_from != NULL) {
1969 if (fmt("From:", hp->h_from, fo, ff))
1970 goto jleave;
1971 ++gotcha;
1974 if (hp->h_sender != NULL) {
1975 if (fmt("Sender:", hp->h_sender, fo, ff))
1976 goto jleave;
1977 ++gotcha;
1980 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1981 if (fromasender == NULL)
1982 goto jleave;
1983 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1986 #if 1
1987 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1988 if (fmt("To:", hp->h_to, fo, ff))
1989 goto jleave;
1990 ++gotcha;
1992 #else
1993 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1994 * TODO given that we cannot handle group addresses. Ridiculous */
1995 if (w & GTO) {
1996 struct name *xto;
1998 if ((xto = hp->h_to) != NULL) {
1999 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
2001 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
2002 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
2003 goto jto_fmt;
2004 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
2005 goto jleave;
2006 ++gotcha;
2007 } else if (nosend_msg == TRUM1) {
2008 jto_fmt:
2009 if (fmt("To:", hp->h_to, fo, ff))
2010 goto jleave;
2011 ++gotcha;
2014 #endif
2016 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
2017 FMT_CC_AND_BCC();
2019 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
2020 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
2021 goto jleave;
2022 if (hp->h_subject != NULL) {
2023 size_t sublen;
2024 char const *sub;
2026 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2028 /* Trimmed something, (re-)add Re: */
2029 if (sub != hp->h_subject) {
2030 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2031 goto jleave;
2032 if (sublen > 0 &&
2033 xmime_write(sub, sublen, fo,
2034 (!nodisp ? CONV_NONE : CONV_TOHDR),
2035 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2036 goto jleave;
2038 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2039 else if (*sub != '\0') {
2040 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2041 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2042 goto jleave;
2045 ++gotcha;
2046 putc('\n', fo);
2049 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2050 FMT_CC_AND_BCC();
2052 if ((w & GMSGID) && stealthmua <= 0 &&
2053 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2054 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2055 goto jleave;
2056 ++gotcha;
2059 if(w & GREF){
2060 if((np = hp->h_ref) != NULL){
2061 if(fmt("References:", np, fo, 0))
2062 goto jleave;
2063 ++gotcha;
2065 if((np = hp->h_in_reply_to) != NULL){
2066 if(fmt("In-Reply-To:", np, fo, 0))
2067 goto jleave;
2068 ++gotcha;
2072 if (w & GIDENT) {
2073 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2074 * the list first.. TODO it is a terrible codebase.. */
2075 if ((np = hp->h_replyto) != NULL)
2076 np = namelist_dup(np, np->n_type);
2077 else if ((addr = ok_vlook(replyto)) != NULL)
2078 np = lextract(addr, GEXTRA | GFULL);
2079 if (np != NULL &&
2080 (np = elide(
2081 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2082 NULL))) != NULL) {
2083 if (fmt("Reply-To:", np, fo, ff))
2084 goto jleave;
2085 ++gotcha;
2089 if ((w & GIDENT) && !nosend_msg) {
2090 /* Mail-Followup-To: TODO factor out this huge block of code */
2091 /* Place ourselfs in there if any non-subscribed list is an addressee */
2092 if((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2093 ok_blook(followup_to)){
2094 enum{
2095 _ANYLIST = 1u<<(HF__NEXT_SHIFT + 0),
2096 _HADMFT = 1u<<(HF__NEXT_SHIFT + 1)
2098 struct name *mft, **mftp, *x;
2099 ui32_t f;
2101 f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2102 mft = NULL;
2103 mftp = &mft;
2105 /* But for that, we have to remove all incarnations of ourselfs first.
2106 * TODO It is total crap that we have alternates_delete(), is_myname()
2107 * TODO or whatever; these work only with variables, not with data
2108 * TODO that is _currently_ in some header fields!!! v15.0: complete
2109 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2110 * TODO then this should be a really cheap thing in here... */
2111 np = elide(n_alternates_delete(cat(
2112 namelist_dup(hp->h_to, GEXTRA | GFULL),
2113 namelist_dup(hp->h_cc, GEXTRA | GFULL)), FAL0));
2114 addr = hp->h_list_post;
2116 while((x = np) != NULL){
2117 si8_t ml;
2119 np = np->n_flink;
2121 if((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2122 addr != NULL && !asccasecmp(addr, x->n_name))
2123 ml = MLIST_KNOWN;
2125 /* Any non-subscribed list? Add ourselves */
2126 switch(ml){
2127 case MLIST_KNOWN:
2128 f |= HF_MFT_SENDER;
2129 /* FALLTHRU */
2130 case MLIST_SUBSCRIBED:
2131 f |= _ANYLIST;
2132 goto j_mft_add;
2133 case MLIST_OTHER:
2134 if(!(f & HF_LIST_REPLY)){
2135 j_mft_add:
2136 if(!is_addr_invalid(x,
2137 EACM_STRICT | EACM_NOLOG | EACM_NONAME)){
2138 x->n_blink = *mftp;
2139 x->n_flink = NULL;
2140 *mftp = x;
2141 mftp = &x->n_flink;
2142 } /* XXX write some warning? if verbose?? */
2143 continue;
2145 /* And if this is a reply that honoured a MFT: header then we'll
2146 * also add all members of the original MFT: that are still
2147 * addressed by us, regardless of all other circumstances */
2148 else if(f & _HADMFT){
2149 struct name *ox;
2151 for(ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2152 if(!asccasecmp(ox->n_name, x->n_name))
2153 goto j_mft_add;
2155 break;
2159 if((f & (_ANYLIST | _HADMFT)) && mft != NULL){
2160 if(((f & HF_MFT_SENDER) ||
2161 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2162 (np = fromasender) != NULL && np != (struct name*)0x1)
2163 *mftp = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2165 if(fmt("Mail-Followup-To:", mft, fo, ff))
2166 goto jleave;
2167 ++gotcha;
2171 if (!_check_dispo_notif(fromasender, hp, fo))
2172 goto jleave;
2175 if ((w & GUA) && stealthmua == 0) {
2176 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent,
2177 (n_psonce & n_PSO_REPRODUCIBLE
2178 ? n_reproducible_name : ok_vlook(version))) < 0)
2179 goto jleave;
2180 ++gotcha;
2183 /* The user may have placed headers when editing */
2184 if(1){
2185 struct n_header_field *hfp;
2187 if((hfp = hp->h_user_headers) != NULL){
2188 if(!_sendout_header_list(fo, hfp, nodisp))
2189 goto jleave;
2190 ++gotcha;
2194 /* Custom headers, as via *customhdr* */
2195 if(!nosend_msg){
2196 struct n_header_field *hfp;
2198 /* With iconv support we likely have a cached result */
2199 if((hfp = hp->h_custom_headers) == NULL)
2200 hp->h_custom_headers = hfp = n_customhdr_query();
2201 if(hfp != NULL){
2202 if(!_sendout_header_list(fo, hfp, nodisp))
2203 goto jleave;
2204 ++gotcha;
2208 /* We don't need MIME unless.. we need MIME?! */
2209 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2210 hp->h_attach != NULL ||
2211 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2212 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2213 ++gotcha;
2214 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2215 goto jleave;
2216 if (hp->h_attach != NULL) {
2217 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2218 if (fprintf(fo,
2219 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2220 _sendout_boundary) < 0)
2221 goto jleave;
2222 } else {
2223 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2224 goto jleave;
2228 if (gotcha && (w & GNL))
2229 if (putc('\n', fo) == EOF)
2230 goto jleave;
2231 rv = 0;
2232 jleave:
2233 NYD_LEAVE;
2234 return rv;
2235 #undef FMT_CC_AND_BCC
2238 FL enum okay
2239 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2241 struct sendbundle sb;
2242 FILE *ibuf, *nfo, *nfi;
2243 char *tempMail;
2244 enum okay rv = STOP;
2245 NYD_ENTER;
2247 _sendout_error = FAL0;
2248 __sendout_ident = NULL;
2250 /* Update some globals we likely need first */
2251 time_current_update(&time_current, TRU1);
2253 if ((to = checkaddrs(to,
2254 (EACM_NORMAL |
2255 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2256 &_sendout_error)) == NULL)
2257 goto jleave;
2258 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2259 if (_sendout_error < 0)
2260 n_err(_("Some addressees were classified as \"hard error\"\n"));
2262 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2263 == NULL) {
2264 _sendout_error = TRU1;
2265 n_perr(_("temporary mail file"), 0);
2266 goto jleave;
2268 if ((nfi = Fopen(tempMail, "r")) == NULL)
2269 n_perr(tempMail, 0);
2270 Ftmp_release(&tempMail);
2271 if (nfi == NULL)
2272 goto jerr_o;
2274 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2275 goto jerr_io;
2277 memset(&sb, 0, sizeof sb);
2278 sb.sb_to = to;
2279 sb.sb_input = nfi;
2280 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2281 /* ..wait until we can write DEAD */
2282 _sendout_error = -1;
2284 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2285 jfail_dead:
2286 savedeadletter(nfi, TRU1);
2287 n_err(_("... message not sent\n"));
2288 jerr_io:
2289 Fclose(nfi);
2290 jerr_o:
2291 Fclose(nfo);
2292 _sendout_error = TRU1;
2293 goto jleave;
2296 if (_sendout_error < 0)
2297 goto jfail_dead;
2299 Fclose(nfo);
2300 rewind(nfi);
2302 /* C99 */{
2303 bool_t b, c;
2305 /* Deliver pipe and file addressees */
2306 b = (ok_blook(record_files) && count(to) > 0);
2307 to = a_sendout_file_a_pipe(to, nfi, &_sendout_error);
2309 if (_sendout_error)
2310 savedeadletter(nfi, FAL0);
2312 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
2313 c = (count(to) > 0);
2315 if (b || c) {
2316 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2317 sb.sb_to = to;
2318 /*sb.sb_input = nfi;*/
2319 if (!c || _transfer(&sb))
2320 rv = OKAY;
2322 } else if (!_sendout_error)
2323 rv = OKAY;
2326 Fclose(nfi);
2327 jleave:
2328 if (_sendout_error)
2329 n_exit_status |= n_EXIT_SEND_ERROR;
2330 NYD_LEAVE;
2331 return rv;
2334 FL void
2335 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2336 struct n_string line;
2337 int c;
2338 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2339 ul_i bytes, lines;
2340 FILE *dbuf;
2341 char const *cp, *cpq;
2342 NYD_ENTER;
2344 if(!ok_blook(save))
2345 goto jleave;
2347 if(fflush_rewind_first){
2348 fflush(fp);
2349 rewind(fp);
2351 if(fsize(fp) == 0)
2352 goto jleave;
2354 cp = n_getdeadletter();
2355 cpq = n_shexp_quote_cp(cp, FAL0);
2357 if(n_poption & n_PO_DEBUG){
2358 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2359 goto jleave;
2362 if((dbuf = Fopen(cp, "w")) == NULL){
2363 n_perr(_("Cannot save to $DEAD"), 0);
2364 goto jleave;
2366 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2368 fprintf(n_stdout, "%s ", cpq);
2369 fflush(n_stdout);
2371 /* TODO savedeadletter() non-conforming: should check whether we have any
2372 * TODO headers, if not we need to place "something", anything will do.
2373 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2374 * TODO I/O error handling missing. Yuck! */
2375 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2376 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2377 ok_vlook(LOGNAME), time_current.tc_ctime);
2378 lines = 1;
2379 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2380 n_string_trunc(&line, 0);
2381 while((c = getc(fp)) != EOF && c != '\n')
2382 n_string_push_c(&line, c);
2384 /* TODO It may be that we have only some plain text. It may be that we
2385 * TODO have a complete MIME encoded message. We don't know, and we
2386 * TODO have no usable mechanism to dig it!! We need v15! */
2387 if(!(flags & a_INIT)){
2388 size_t i;
2390 /* Throw away leading empty lines! */
2391 if(line.s_len == 0)
2392 continue;
2393 for(i = 0; i < line.s_len; ++i){
2394 if(fieldnamechar(line.s_dat[i]))
2395 continue;
2396 if(line.s_dat[i] == ':'){
2397 flags |= a_INIT;
2398 break;
2399 }else{
2400 /* We have no headers, this is already a body line! */
2401 flags |= a_INIT | a_BODY;
2402 break;
2405 /* Well, i had to check whether the RFC allows this. Assume we've
2406 * passed the headers, too, then! */
2407 if(i == line.s_len)
2408 flags |= a_INIT | a_BODY;
2410 if(flags & a_BODY){
2411 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2412 n_string_unshift_c(&line, '>');
2414 if(line.s_len == 0)
2415 flags |= a_BODY | a_NL;
2416 else
2417 flags &= ~a_NL;
2419 n_string_push_c(&line, '\n');
2420 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2422 if(!(flags & a_NL)){
2423 putc('\n', dbuf);
2424 ++bytes;
2425 ++lines;
2427 n_string_gut(&line);
2429 Fclose(dbuf);
2430 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2431 fflush(n_stdout);
2433 rewind(fp);
2434 jleave:
2435 NYD_LEAVE;
2438 #undef SEND_LINESIZE
2440 /* s-it-mode */