Tweak previous, it added a bad memory access
[s-mailx.git] / sendout.c
blob18a4db3cb39a2cda16151d867609953dd2633ba8
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 = mime_type_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 ((smtp = ok_vlook(mta)) == NULL ||
481 (proto = n_servbyname(smtp, NULL)) == NULL || *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 = mime_type_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->mime_type_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 == 0);
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 if((fout = Zopen(fname, "a")) == NULL){
926 n_err(_("Writing message to %s failed: %s\n"),
927 fnameq, n_err_to_doc(n_err_no));
928 goto jerror;
931 rewind(fp);
932 while((c = getc(fp)) != EOF)
933 putc(c, fout);
934 if(ferror(fout)){
935 n_err(_("Writing message to %s failed: %s\n"),
936 fnameq, _("write error"));
937 *senderror = TRU1;
940 if(fout != n_stdout)
941 Fclose(fout);
945 jleave:
946 if(fp != NULL)
947 Fclose(fp);
948 if(fppa != NULL){
949 for(i = 0; i < pipecnt; ++i)
950 if((fp = fppa[i]) != NULL)
951 Fclose(fp);
952 n_lofi_free(fppa);
954 NYD_LEAVE;
955 return names;
957 jerror:
958 *senderror = TRU1;
959 while(np != NULL){
960 if(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
961 np->n_type |= GDEL;
962 np = np->n_flink;
964 goto jleave;
967 static bool_t
968 mightrecord(FILE *fp, struct name *to, bool_t resend)
970 char *cp, *cq;
971 char const *ep;
972 bool_t rv = TRU1;
973 NYD_ENTER;
975 if (n_poption & n_PO_DEBUG)
976 cp = NULL;
977 else if (to != NULL) {
978 cp = savestr(skinned_name(to));
979 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
981 *cq = '\0';
982 } else
983 cp = ok_vlook(record);
985 if (cp != NULL) {
986 if ((ep = fexpand(cp, FEXP_FULL)) == NULL) {
987 ep = "NULL";
988 goto jbail;
991 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
992 which_protocol(ep) == PROTO_FILE) {
993 size_t i = strlen(cp);
994 cq = salloc(i + 1 +1);
995 cq[0] = '+';
996 memcpy(cq + 1, cp, i +1);
997 cp = cq;
998 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
999 ep = "NULL";
1000 goto jbail;
1004 if (!a_sendout__savemail(ep, fp, resend)) {
1005 jbail:
1006 n_err(_("Failed to save message in %s - message not sent\n"),
1007 n_shexp_quote_cp(ep, FAL0));
1008 n_exit_status |= n_EXIT_ERR;
1009 savedeadletter(fp, 1);
1010 rv = FAL0;
1013 NYD_LEAVE;
1014 return rv;
1017 static bool_t
1018 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1019 FILE *fo;
1020 size_t bufsize, buflen, cnt;
1021 bool_t rv, emptyline;
1022 char *buf;
1023 NYD_ENTER;
1025 buf = smalloc(bufsize = LINESIZE);
1026 rv = emptyline = FAL0;
1028 if((fo = Zopen(name, "a+")) == NULL){
1029 if((fo = Zopen(name, "wx")) == NULL){
1030 n_perr(name, 0);
1031 goto j_leave;
1033 emptyline = TRU1;
1036 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1037 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1039 rv = TRU1;
1041 if(!emptyline){
1042 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1043 switch(fread(buf, sizeof *buf, 2, fo)){
1044 case 2:
1045 if(buf[1] != '\n')
1046 emptyline = TRU1;
1047 break;
1048 case 1:
1049 if(buf[0] != '\n')
1050 emptyline = TRU1;
1051 break;
1052 default:
1053 if(ferror(fo)){
1054 n_perr(name, 0);
1055 rv = FAL0;
1056 goto jleave;
1059 if(emptyline){
1060 putc('\n', fo);
1061 fflush(fo);
1066 fflush_rewind(fp);
1068 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1069 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1070 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1071 /* Only if we are resending it can happen that we have to quote From_
1072 * lines here; we don't generate messages which are ambiguous ourselves */
1073 if(resend){
1074 if(emptyline && is_head(buf, buflen, FAL0))
1075 putc('>', fo);
1076 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1078 emptyline = (buflen > 0 && *buf == '\n');
1079 fwrite(buf, sizeof *buf, buflen, fo);
1081 if(buflen > 0 && buf[buflen - 1] != '\n')
1082 putc('\n', fo);
1083 putc('\n', fo);
1084 fflush(fo);
1085 if(ferror(fo)){
1086 n_perr(name, 0);
1087 rv = FAL0;
1090 jleave:
1091 really_rewind(fp);
1092 if(Fclose(fo) != 0)
1093 rv = FAL0;
1094 j_leave:
1095 free(buf);
1096 NYD_LEAVE;
1097 return rv;
1100 static bool_t
1101 _transfer(struct sendbundle *sbp)
1103 struct name *np;
1104 ui32_t cnt;
1105 bool_t rv = TRU1;
1106 NYD_ENTER;
1108 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1109 char const k[] = "smime-encrypt-", *cp;
1110 size_t nl = strlen(np->n_name);
1111 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1112 memcpy(vs, k, sizeof(k) -1);
1113 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1115 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1116 #ifdef HAVE_SSL
1117 FILE *ef;
1119 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1120 FILE *fisave = sbp->sb_input;
1121 struct name *nsave = sbp->sb_to;
1123 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1124 sbp->sb_input = ef;
1125 if (!__mta_start(sbp))
1126 rv = FAL0;
1127 sbp->sb_to = nsave;
1128 sbp->sb_input = fisave;
1130 Fclose(ef);
1131 } else {
1132 #else
1133 n_err(_("No SSL support compiled in\n"));
1134 rv = FAL0;
1135 #endif
1136 n_err(_("Message not sent to: %s\n"), np->n_name);
1137 _sendout_error = TRU1;
1138 #ifdef HAVE_SSL
1140 #endif
1141 rewind(sbp->sb_input);
1143 if (np->n_flink != NULL)
1144 np->n_flink->n_blink = np->n_blink;
1145 if (np->n_blink != NULL)
1146 np->n_blink->n_flink = np->n_flink;
1147 if (np == sbp->sb_to)
1148 sbp->sb_to = np->n_flink;
1149 np = np->n_flink;
1150 } else {
1151 ++cnt;
1152 np = np->n_flink;
1154 ac_free(vs);
1157 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1158 rv = FAL0;
1159 NYD_LEAVE;
1160 return rv;
1163 static bool_t
1164 __mta_start(struct sendbundle *sbp)
1166 pid_t pid;
1167 sigset_t nset;
1168 char const **args, *mta;
1169 bool_t rv;
1170 NYD_ENTER;
1172 /* Let rv mean "is smtp-based MTA" */
1173 if((mta = ok_vlook(smtp)) != NULL){
1174 n_OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1175 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1176 * that *smtp* is misused with file:// or so */
1177 if(n_servbyname(mta, NULL) == NULL)
1178 mta = savecat("smtp://", mta);
1179 rv = TRU1;
1180 }else{
1181 char const *proto;
1183 if((proto = ok_vlook(sendmail)) != NULL)
1184 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1185 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1186 if(proto == NULL){
1187 mta = VAL_MTA;
1188 rv = FAL0;
1189 }else
1190 rv = TRU1;
1192 /* TODO for now this is pretty hacky: in v15 we should simply create
1193 * TODO an URL object; i.e., be able to do so, and it does it right
1194 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1195 else if((proto = n_servbyname(mta, NULL)) != NULL){
1196 if(*proto == '\0'){
1197 mta += sizeof("file://") -1;
1198 rv = FAL0;
1199 }else
1200 rv = TRU1;
1201 }else
1202 rv = FAL0;
1205 if(!rv){
1206 char const *mta_base;
1208 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1209 n_err(_("*mta* variable expansion failure: %s\n"),
1210 n_shexp_quote_cp(mta_base, FAL0));
1211 goto jstop;
1214 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1215 if (n_poption & n_PO_DEBUG) {
1216 __mta_debug(sbp, mta, args);
1217 rv = TRU1;
1218 goto jleave;
1220 } else {
1221 n_UNINIT(args, NULL);
1222 #ifndef HAVE_SMTP
1223 n_err(_("No SMTP support compiled in\n"));
1224 goto jstop;
1225 #else
1226 /* C99 */{
1227 struct name *np;
1229 for(np = sbp->sb_to; np != NULL; np = np->n_flink)
1230 if(!(np->n_type & GDEL) && (np->n_flags & NAME_ADDRSPEC_ISNAME)){
1231 n_err(_("SMTP *mta* cannot send to alias name: %s\n"),
1232 n_shexp_quote_cp(np->n_name, FAL0));
1233 rv = FAL0;
1235 if(!rv)
1236 goto jstop;
1239 if (n_poption & n_PO_DEBUG) {
1240 (void)smtp_mta(sbp);
1241 rv = TRU1;
1242 goto jleave;
1244 #endif
1247 /* Fork, set up the temporary mail file as standard input for "mail", and
1248 * exec with the user list we generated far above */
1249 if ((pid = n_child_fork()) == -1) {
1250 n_perr("fork", 0);
1251 jstop:
1252 savedeadletter(sbp->sb_input, 0);
1253 _sendout_error = TRU1;
1254 goto jleave;
1256 if (pid == 0) {
1257 sigemptyset(&nset);
1258 sigaddset(&nset, SIGHUP);
1259 sigaddset(&nset, SIGINT);
1260 sigaddset(&nset, SIGQUIT);
1261 sigaddset(&nset, SIGTSTP);
1262 sigaddset(&nset, SIGTTIN);
1263 sigaddset(&nset, SIGTTOU);
1264 /* n_stdin = */freopen("/dev/null", "r", stdin);
1265 #ifdef HAVE_SMTP
1266 if (rv) {
1267 n_child_prepare(&nset, 0, 1);
1268 if (smtp_mta(sbp))
1269 _exit(n_EXIT_OK);
1270 } else
1271 #endif
1273 char const *ecp;
1274 int e;
1276 n_child_prepare(&nset, fileno(sbp->sb_input), -1);
1277 execv(mta, n_UNCONST(args));
1278 e = n_err_no;
1279 ecp = (e != n_ERR_NOENT) ? n_err_to_doc(e)
1280 : _("executable not found (adjust *mta* variable)");
1281 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1283 savedeadletter(sbp->sb_input, 1);
1284 n_err(_("... message not sent\n"));
1285 _exit(n_EXIT_ERR);
1288 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1289 if (!(rv = n_child_wait(pid, NULL)))
1290 _sendout_error = TRU1;
1291 } else {
1292 n_child_free(pid);
1293 rv = TRU1;
1295 jleave:
1296 NYD_LEAVE;
1297 return rv;
1300 static char const **
1301 __mta_prepare_args(struct name *to, struct header *hp)
1303 size_t vas_cnt, i, j;
1304 char **vas;
1305 char const **args, *cp, *cp_v15compat;
1306 bool_t snda;
1307 NYD_ENTER;
1309 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1310 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1311 if((cp = ok_vlook(mta_arguments)) == NULL)
1312 cp = cp_v15compat;
1313 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1314 vas_cnt = 0;
1315 vas = NULL;
1316 } else {
1317 /* Don't assume anything on the content but do allocate exactly j slots;
1318 * like this getrawlist will never overflow (and return -1) */
1319 j = strlen(cp);
1320 vas = n_lofi_alloc(sizeof(*vas) * j);
1321 vas_cnt = (size_t)getrawlist(TRU1, vas, j, cp, j);
1324 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1325 args = salloc(i * sizeof(char*));
1327 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1328 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1329 if((cp = ok_vlook(mta_argv0)) == NULL)
1330 cp = cp_v15compat;
1331 if(cp == NULL)
1332 cp = VAL_MTA_ARGV0;
1333 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1335 if ((snda = ok_blook(sendmail_no_default_arguments)))
1336 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1337 "not *sendmail-no-default-arguments*"));
1338 snda |= ok_blook(mta_no_default_arguments);
1339 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1340 i = 1;
1341 else {
1342 args[1] = "-i";
1343 i = 2;
1344 if (ok_blook(metoo))
1345 args[i++] = "-m";
1346 if (n_poption & n_PO_VERB)
1347 args[i++] = "-v";
1350 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1351 args[i] = n_smopts[j];
1353 for (j = 0; j < vas_cnt; ++j, ++i)
1354 args[i] = vas[j];
1356 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1357 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1358 * The interdependency with -t has been resolved in puthead() */
1359 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1360 struct name const *np;
1362 if (hp != NULL && (np = hp->h_from) != NULL) {
1363 /* However, what wasn't resolved there was the case that the message
1364 * specified multiple From: addresses and a Sender: */
1365 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1366 np = hp->h_sender;
1368 if (np->n_fullextra != NULL) {
1369 args[i++] = "-F";
1370 args[i++] = np->n_fullextra;
1372 cp = np->n_name;
1373 } else {
1374 assert(n_poption_arg_r == NULL);
1375 cp = skin(myorigin(NULL));
1378 if (cp != NULL) {
1379 args[i++] = "-f";
1380 args[i++] = cp;
1384 /* Terminate option list to avoid false interpretation of system-wide
1385 * aliases that start with hyphen */
1386 if (!snda)
1387 args[i++] = "--";
1389 /* Receivers follow */
1390 for (; to != NULL; to = to->n_flink)
1391 if (!(to->n_type & GDEL))
1392 args[i++] = to->n_name;
1393 args[i] = NULL;
1395 if(vas != NULL)
1396 n_lofi_free(vas);
1397 NYD_LEAVE;
1398 return args;
1401 static void
1402 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1404 size_t cnt, bufsize, llen;
1405 char *buf;
1406 NYD_ENTER;
1408 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1409 for (; *args != NULL; ++args)
1410 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1411 n_err("\n");
1413 fflush_rewind(sbp->sb_input);
1415 cnt = fsize(sbp->sb_input);
1416 buf = NULL;
1417 bufsize = 0;
1418 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1419 buf[--llen] = '\0';
1420 n_err(">>> %s\n", buf);
1422 if (buf != NULL)
1423 free(buf);
1424 NYD_LEAVE;
1427 static char const *
1428 a_sendout_random_id(struct header *hp, bool_t msgid)
1430 struct tm *tmp;
1431 char const *h;
1432 size_t rl, i;
1433 char *rv, sep;
1434 NYD_ENTER;
1436 rv = NULL;
1438 if(msgid && hp != NULL && hp->h_message_id != NULL){
1439 rv = hp->h_message_id->n_name;
1440 goto jleave;
1443 if(ok_blook(message_id_disable))
1444 goto jleave;
1446 sep = '%';
1447 rl = 5;
1448 if((h = __sendout_ident) != NULL)
1449 goto jgen;
1450 if(ok_vlook(hostname) != NULL){
1451 h = n_nodename(TRU1);
1452 sep = '@';
1453 rl = 8;
1454 goto jgen;
1456 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1457 goto jgen;
1458 goto jleave;
1460 jgen:
1461 tmp = &time_current.tc_gm;
1462 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1463 rv = salloc(i +1);
1464 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1465 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1466 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1467 n_random_create_cp(rl), sep, h);
1468 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1469 jleave:
1470 NYD_LEAVE;
1471 return rv;
1474 static int
1475 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1477 enum {
1478 m_INIT = 1<<0,
1479 m_COMMA = 1<<1,
1480 m_NOPF = 1<<2,
1481 m_NONAME = 1<<3,
1482 m_CSEEN = 1<<4
1483 } m = (ff & GCOMMA) ? m_COMMA : 0;
1484 ssize_t col, len;
1485 int rv = 1;
1486 NYD_ENTER;
1488 col = strlen(str);
1489 if (col) {
1490 fwrite(str, sizeof *str, col, fo);
1491 #undef _X
1492 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1493 if (ff & GFILES) {
1495 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1496 _X("references:") || _X("disposition-notification-to:"))
1497 m |= m_NOPF | m_NONAME;
1498 else if (ok_blook(add_file_recipients)) {
1500 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1501 m |= m_NOPF;
1502 #undef _X
1505 for (; np != NULL; np = np->n_flink) {
1506 if(np->n_type & GDEL)
1507 continue;
1508 if(is_addr_invalid(np,
1509 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1510 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1511 !(ff & FMT_INC_INVADDR))
1512 continue;
1514 /* File and pipe addresses only printed with set *add-file-recipients* */
1515 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1516 continue;
1518 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1519 if (putc(',', fo) == EOF)
1520 goto jleave;
1521 m |= m_CSEEN;
1522 ++col;
1525 len = strlen(np->n_fullname);
1526 if (np->n_type & GREF)
1527 len += 2;
1528 ++col; /* The separating space */
1529 if ((m & m_INIT) && /*col > 1 &&*/
1530 UICMP(z, col + len, >,
1531 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1532 if (fputs("\n ", fo) == EOF)
1533 goto jleave;
1534 col = 1;
1535 m &= ~m_CSEEN;
1536 } else
1537 putc(' ', fo);
1538 m = (m & ~m_CSEEN) | m_INIT;
1540 /* C99 */{
1541 char *hb;
1543 /* GREF needs to be placed in angle brackets, but which are missing */
1544 hb = np->n_fullname;
1545 if(np->n_type & GREF){
1546 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1547 hb = n_lofi_alloc(len +1);
1548 len -= 2;
1549 hb[0] = '<';
1550 hb[len + 1] = '>';
1551 hb[len + 2] = '\0';
1552 memcpy(&hb[1], np->n_fullname, len);
1553 len += 2;
1555 len = xmime_write(hb, len, fo,
1556 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1557 if(np->n_type & GREF)
1558 n_lofi_free(hb);
1560 if (len < 0)
1561 goto jleave;
1562 col += len;
1565 if (putc('\n', fo) != EOF)
1566 rv = 0;
1567 jleave:
1568 NYD_LEAVE;
1569 return rv;
1572 static int
1573 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1574 int add_resent)
1576 size_t cnt, c, bufsize = 0;
1577 char *buf = NULL;
1578 char const *cp;
1579 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1580 int rv = 1;
1581 NYD_ENTER;
1583 cnt = mp->m_size;
1585 /* Write the Resent-Fields */
1586 if (add_resent) {
1587 fputs("Resent-", fo);
1588 mkdate(fo, "Date");
1589 if ((cp = myaddrs(NULL)) != NULL) {
1590 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1591 &fromfield, 0))
1592 goto jleave;
1594 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1595 if ((cp = ok_vlook(sender)) != NULL) {
1596 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1597 &senderfield, 0))
1598 goto jleave;
1600 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1601 goto jleave;
1602 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1603 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1604 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1605 goto jleave;
1608 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1609 goto jleave;
1610 if (!_check_dispo_notif(mdn, NULL, fo))
1611 goto jleave;
1613 /* Write the original headers */
1614 while (cnt > 0) {
1615 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1616 break;
1617 if (ascncasecmp("status:", buf, 7) &&
1618 ascncasecmp("disposition-notification-to:", buf, 28) &&
1619 !is_head(buf, c, FAL0))
1620 fwrite(buf, sizeof *buf, c, fo);
1621 if (cnt > 0 && *buf == '\n')
1622 break;
1625 /* Write the message body */
1626 while (cnt > 0) {
1627 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1628 break;
1629 if (cnt == 0 && *buf == '\n')
1630 break;
1631 fwrite(buf, sizeof *buf, c, fo);
1633 if (buf != NULL)
1634 free(buf);
1635 if (ferror(fo)) {
1636 n_perr(_("temporary mail file"), 0);
1637 goto jleave;
1639 rv = 0;
1640 jleave:
1641 NYD_LEAVE;
1642 return rv;
1645 FL int
1646 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1647 struct attachment *attach, char const *quotefile, int recipient_record)
1649 struct header head;
1650 struct str in, out;
1651 NYD_ENTER;
1653 memset(&head, 0, sizeof head);
1655 /* The given subject may be in RFC1522 format. */
1656 if (subject != NULL) {
1657 in.s = n_UNCONST(subject);
1658 in.l = strlen(subject);
1659 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1660 head.h_subject = out.s;
1662 head.h_to = to;
1663 head.h_cc = cc;
1664 head.h_bcc = bcc;
1665 head.h_attach = attach;
1667 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1669 if (subject != NULL)
1670 free(out.s);
1671 NYD_LEAVE;
1672 return 0;
1675 FL int
1676 c_sendmail(void *v)
1678 int rv;
1679 NYD_ENTER;
1681 rv = sendmail_internal(v, 0);
1682 NYD_LEAVE;
1683 return rv;
1686 FL int
1687 c_Sendmail(void *v)
1689 int rv;
1690 NYD_ENTER;
1692 rv = sendmail_internal(v, 1);
1693 NYD_LEAVE;
1694 return rv;
1697 FL enum okay
1698 mail1(struct header *hp, int printheaders, struct message *quote,
1699 char const *quotefile, int recipient_record, int doprefix)
1701 struct n_sigman sm;
1702 struct sendbundle sb;
1703 struct name *to;
1704 bool_t dosign;
1705 FILE *mtf, *nmtf;
1706 enum okay rv;
1707 NYD_ENTER;
1709 _sendout_error = FAL0;
1710 __sendout_ident = NULL;
1711 rv = STOP;
1712 mtf = NULL;
1714 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1715 case 0:
1716 break;
1717 default:
1718 goto jleave;
1721 /* Update some globals we likely need first */
1722 time_current_update(&time_current, TRU1);
1724 /* Collect user's mail from standard input. Get the result as mtf */
1725 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1726 if (mtf == NULL)
1727 goto jleave;
1729 dosign = TRUM1;
1731 /* */
1732 if(n_psonce & n_PSO_INTERACTIVE){
1733 if (ok_blook(asksign))
1734 dosign = getapproval(_("Sign this message"), TRU1);
1737 if (fsize(mtf) == 0) {
1738 if (n_poption & n_PO_E_FLAG)
1739 goto jleave;
1740 if (hp->h_subject == NULL)
1741 fprintf(n_stdout, _("No message, no subject; hope that's ok\n"));
1742 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1743 fprintf(n_stdout, _("Null message body; hope that's ok\n"));
1746 if (dosign == TRUM1)
1747 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1748 #ifndef HAVE_SSL
1749 if (dosign) {
1750 n_err(_("No SSL support compiled in\n"));
1751 goto jleave;
1753 #endif
1755 /* XXX Update time_current again; once collect() offers editing of more
1756 * XXX headers, including Date:, this must only happen if Date: is the
1757 * XXX same that it was before collect() (e.g., postponing etc.).
1758 * XXX But *do* update otherwise because the mail seems to be backdated
1759 * XXX if the user edited some time, which looks odd and it happened
1760 * XXX to me that i got mis-dated response mails due to that... */
1761 time_current_update(&time_current, TRU1);
1763 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1764 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1765 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1766 * TODO header fields ONCE, call that ONCE after user editing etc. has
1767 * TODO completed (one edit cycle) */
1769 /* Take the user names from the combined to and cc lists and do all the
1770 * alias processing. The POSIX standard says:
1771 * The names shall be substituted when alias is used as a recipient
1772 * address specified by the user in an outgoing message (that is,
1773 * other recipients addressed indirectly through the reply command
1774 * shall not be substituted in this manner).
1775 * S-nail thus violates POSIX, as has been pointed out correctly by
1776 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1777 * disputable anyway. Go for user friendliness */
1779 to = namelist_vaporise_head(hp,
1780 (EACM_NORMAL |
1781 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1782 TRU1, &_sendout_error);
1783 if (to == NULL) {
1784 n_err(_("No recipients specified\n"));
1785 goto jfail_dead;
1787 if (_sendout_error < 0) {
1788 n_err(_("Some addressees were classified as \"hard error\"\n"));
1789 goto jfail_dead;
1792 /* */
1793 memset(&sb, 0, sizeof sb);
1794 sb.sb_hp = hp;
1795 sb.sb_to = to;
1796 sb.sb_input = mtf;
1797 if ((dosign || count_nonlocal(to) > 0) &&
1798 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1799 /* TODO saving $DEAD and recovering etc is not yet well defined */
1800 goto jfail_dead;
1802 /* 'Bit ugly kind of control flow until we find a charset that does it */
1803 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1804 int err;
1806 if (!charset_iter_is_valid())
1808 else if ((nmtf = infix(hp, mtf)) != NULL)
1809 break;
1810 else if ((err = n_err_no) == n_ERR_ILSEQ || err == n_ERR_INVAL) {
1811 rewind(mtf);
1812 continue;
1815 n_perr(_("Failed to create encoded message"), 0);
1816 goto jfail_dead;
1818 mtf = nmtf;
1820 /* */
1821 #ifdef HAVE_SSL
1822 if (dosign) {
1823 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1824 goto jfail_dead;
1825 Fclose(mtf);
1826 mtf = nmtf;
1828 #endif
1830 /* TODO truly - i still don't get what follows: (1) we deliver file
1831 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1832 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1834 /* Deliver pipe and file addressees */
1835 to = a_sendout_file_a_pipe(to, mtf, &_sendout_error);
1836 if (_sendout_error)
1837 savedeadletter(mtf, FAL0);
1839 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
1841 { ui32_t cnt = count(to);
1842 if ((!recipient_record || cnt > 0) &&
1843 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1844 goto jleave;
1845 if (cnt > 0) {
1846 sb.sb_hp = hp;
1847 sb.sb_to = to;
1848 sb.sb_input = mtf;
1849 if (_transfer(&sb))
1850 rv = OKAY;
1851 } else if (!_sendout_error)
1852 rv = OKAY;
1855 n_sigman_cleanup_ping(&sm);
1856 jleave:
1857 if(mtf != NULL){
1858 Fclose(mtf);
1859 temporary_compose_mode_hook_unroll();
1861 if (_sendout_error)
1862 n_exit_status |= n_EXIT_SEND_ERROR;
1863 NYD_LEAVE;
1864 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1865 return rv;
1867 jfail_dead:
1868 _sendout_error = TRU1;
1869 savedeadletter(mtf, TRU1);
1870 n_err(_("... message not sent\n"));
1871 goto jleave;
1874 FL int
1875 mkdate(FILE *fo, char const *field)
1877 struct tm tmpgm, *tmptr;
1878 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1879 NYD_ENTER;
1881 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1882 tzdiff = time_current.tc_time - mktime(&tmpgm);
1883 tzdiff_hour = (int)(tzdiff / 60);
1884 tzdiff_min = tzdiff_hour % 60;
1885 tzdiff_hour /= 60;
1886 tmptr = &time_current.tc_local;
1887 if (tmptr->tm_isdst > 0)
1888 ++tzdiff_hour;
1889 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1890 field,
1891 n_weekday_names[tmptr->tm_wday],
1892 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1893 tmptr->tm_year + 1900, tmptr->tm_hour,
1894 tmptr->tm_min, tmptr->tm_sec,
1895 tzdiff_hour * 100 + tzdiff_min);
1896 NYD_LEAVE;
1897 return rv;
1900 FL int
1901 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1902 enum sendaction action, enum conversion convert, char const *contenttype,
1903 char const *charset)
1905 #define FMT_CC_AND_BCC() \
1906 do {\
1907 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1908 if (fmt("Cc:", hp->h_cc, fo, ff))\
1909 goto jleave;\
1910 ++gotcha;\
1912 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1913 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1914 goto jleave;\
1915 ++gotcha;\
1917 } while (0)
1919 char const *addr;
1920 size_t gotcha;
1921 struct name *np, *fromasender = NULL;
1922 int stealthmua, rv = 1;
1923 bool_t nodisp;
1924 enum fmt_flags ff;
1925 NYD_ENTER;
1927 if ((addr = ok_vlook(stealthmua)) != NULL)
1928 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1929 else
1930 stealthmua = 0;
1931 gotcha = 0;
1932 nodisp = (action != SEND_TODISP);
1933 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1934 if(nosend_msg)
1935 ff |= FMT_INC_INVADDR;
1937 if (w & GDATE)
1938 mkdate(fo, "Date"), ++gotcha;
1939 if (w & GIDENT) {
1940 if (hp->h_from == NULL || hp->h_sender == NULL)
1941 setup_from_and_sender(hp);
1943 if (hp->h_from != NULL) {
1944 if (fmt("From:", hp->h_from, fo, ff))
1945 goto jleave;
1946 ++gotcha;
1949 if (hp->h_sender != NULL) {
1950 if (fmt("Sender:", hp->h_sender, fo, ff))
1951 goto jleave;
1952 ++gotcha;
1955 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1956 if (fromasender == NULL)
1957 goto jleave;
1958 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1961 #if 1
1962 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1963 if (fmt("To:", hp->h_to, fo, ff))
1964 goto jleave;
1965 ++gotcha;
1967 #else
1968 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1969 * TODO given that we cannot handle group addresses. Ridiculous */
1970 if (w & GTO) {
1971 struct name *xto;
1973 if ((xto = hp->h_to) != NULL) {
1974 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1976 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1977 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1978 goto jto_fmt;
1979 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1980 goto jleave;
1981 ++gotcha;
1982 } else if (nosend_msg == TRUM1) {
1983 jto_fmt:
1984 if (fmt("To:", hp->h_to, fo, ff))
1985 goto jleave;
1986 ++gotcha;
1989 #endif
1991 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1992 FMT_CC_AND_BCC();
1994 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1995 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1996 goto jleave;
1997 if (hp->h_subject != NULL) {
1998 size_t sublen;
1999 char const *sub;
2001 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2003 /* Trimmed something, (re-)add Re: */
2004 if (sub != hp->h_subject) {
2005 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2006 goto jleave;
2007 if (sublen > 0 &&
2008 xmime_write(sub, sublen, fo,
2009 (!nodisp ? CONV_NONE : CONV_TOHDR),
2010 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2011 goto jleave;
2013 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2014 else if (*sub != '\0') {
2015 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2016 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2017 goto jleave;
2020 ++gotcha;
2021 putc('\n', fo);
2024 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2025 FMT_CC_AND_BCC();
2027 if ((w & GMSGID) && stealthmua <= 0 &&
2028 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2029 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2030 goto jleave;
2031 ++gotcha;
2034 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2035 if (fmt("References:", np, fo, 0))
2036 goto jleave;
2037 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2038 while (np->n_flink != NULL)
2039 np = np->n_flink;
2040 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2041 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2042 if (fprintf(fo,
2043 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2044 goto jleave;
2045 ++gotcha;
2046 } else {
2047 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2048 goto jleave;
2052 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2053 if (fprintf(fo,
2054 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2055 goto jleave;
2056 ++gotcha;
2059 if (w & GIDENT) {
2060 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2061 * the list first.. TODO it is a terrible codebase.. */
2062 if ((np = hp->h_replyto) != NULL)
2063 np = namelist_dup(np, np->n_type);
2064 else if ((addr = ok_vlook(replyto)) != NULL)
2065 np = lextract(addr, GEXTRA | GFULL);
2066 if (np != NULL &&
2067 (np = elide(
2068 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2069 NULL))) != NULL) {
2070 if (fmt("Reply-To:", np, fo, ff))
2071 goto jleave;
2072 ++gotcha;
2076 if ((w & GIDENT) && !nosend_msg) {
2077 /* Mail-Followup-To: TODO factor out this huge block of code */
2078 /* Place ourselfs in there if any non-subscribed list is an addressee */
2079 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2080 ok_blook(followup_to)) {
2081 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2083 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2084 struct name *mft, *x;
2086 /* But for that, we have to remove all incarnations of ourselfs first.
2087 * TODO It is total crap that we have delete_alternates(), is_myname()
2088 * TODO or whatever; these work only with variables, not with data
2089 * TODO that is _currently_ in some header fields!!! v15.0: complete
2090 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2091 * TODO then this should be a really cheap thing in here... */
2092 np = elide(delete_alternates(cat(
2093 namelist_dup(hp->h_to, GEXTRA | GFULL),
2094 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2095 addr = hp->h_list_post;
2097 for (mft = NULL; (x = np) != NULL;) {
2098 si8_t ml;
2099 np = np->n_flink;
2101 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2102 addr != NULL && !asccasecmp(addr, x->n_name))
2103 ml = MLIST_KNOWN;
2105 /* Any non-subscribed list? Add ourselves */
2106 switch (ml) {
2107 case MLIST_KNOWN:
2108 f |= HF_MFT_SENDER;
2109 /* FALLTHRU */
2110 case MLIST_SUBSCRIBED:
2111 f |= _ANYLIST;
2112 goto j_mft_add;
2113 case MLIST_OTHER:
2114 if (!(f & HF_LIST_REPLY)) {
2115 j_mft_add:
2116 if (!is_addr_invalid(x,
2117 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2118 x->n_flink = mft;
2119 mft = x;
2120 } /* XXX write some warning? if verbose?? */
2121 continue;
2123 /* And if this is a reply that honoured a MFT: header then we'll
2124 * also add all members of the original MFT: that are still
2125 * addressed by us, regardless of all other circumstances */
2126 else if (f & _HADMFT) {
2127 struct name *ox;
2128 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2129 if (!asccasecmp(ox->n_name, x->n_name))
2130 goto j_mft_add;
2132 break;
2136 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2137 if (((f & HF_MFT_SENDER) ||
2138 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2139 (np = fromasender) != NULL && np != (struct name*)0x1) {
2140 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2141 np->n_flink = mft;
2142 mft = np;
2145 if (fmt("Mail-Followup-To:", mft, fo, ff))
2146 goto jleave;
2147 ++gotcha;
2151 if (!_check_dispo_notif(fromasender, hp, fo))
2152 goto jleave;
2155 if ((w & GUA) && stealthmua == 0) {
2156 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent, ok_vlook(version)) < 0)
2157 goto jleave;
2158 ++gotcha;
2161 /* The user may have placed headers when editing */
2162 if(1){
2163 struct n_header_field *hfp;
2165 if((hfp = hp->h_user_headers) != NULL){
2166 if(!_sendout_header_list(fo, hfp, nodisp))
2167 goto jleave;
2168 ++gotcha;
2172 /* Custom headers, as via *customhdr* */
2173 if(!nosend_msg){
2174 struct n_header_field *hfp;
2176 /* With iconv support we likely have a cached result */
2177 if((hfp = hp->h_custom_headers) == NULL)
2178 hp->h_custom_headers = hfp = n_customhdr_query();
2179 if(hfp != NULL){
2180 if(!_sendout_header_list(fo, hfp, nodisp))
2181 goto jleave;
2182 ++gotcha;
2186 /* We don't need MIME unless.. we need MIME?! */
2187 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2188 hp->h_attach != NULL ||
2189 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2190 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2191 ++gotcha;
2192 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2193 goto jleave;
2194 if (hp->h_attach != NULL) {
2195 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2196 if (fprintf(fo,
2197 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2198 _sendout_boundary) < 0)
2199 goto jleave;
2200 } else {
2201 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2202 goto jleave;
2206 if (gotcha && (w & GNL))
2207 if (putc('\n', fo) == EOF)
2208 goto jleave;
2209 rv = 0;
2210 jleave:
2211 NYD_LEAVE;
2212 return rv;
2213 #undef FMT_CC_AND_BCC
2216 FL enum okay
2217 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2219 struct sendbundle sb;
2220 FILE *ibuf, *nfo, *nfi;
2221 char *tempMail;
2222 enum okay rv = STOP;
2223 NYD_ENTER;
2225 _sendout_error = FAL0;
2226 __sendout_ident = NULL;
2228 /* Update some globals we likely need first */
2229 time_current_update(&time_current, TRU1);
2231 if ((to = checkaddrs(to,
2232 (EACM_NORMAL |
2233 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2234 &_sendout_error)) == NULL)
2235 goto jleave;
2236 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2237 if (_sendout_error < 0)
2238 n_err(_("Some addressees were classified as \"hard error\"\n"));
2240 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2241 == NULL) {
2242 _sendout_error = TRU1;
2243 n_perr(_("temporary mail file"), 0);
2244 goto jleave;
2246 if ((nfi = Fopen(tempMail, "r")) == NULL)
2247 n_perr(tempMail, 0);
2248 Ftmp_release(&tempMail);
2249 if (nfi == NULL)
2250 goto jerr_o;
2252 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2253 goto jerr_io;
2255 memset(&sb, 0, sizeof sb);
2256 sb.sb_to = to;
2257 sb.sb_input = nfi;
2258 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2259 /* ..wait until we can write DEAD */
2260 _sendout_error = -1;
2262 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2263 jfail_dead:
2264 savedeadletter(nfi, TRU1);
2265 n_err(_("... message not sent\n"));
2266 jerr_io:
2267 Fclose(nfi);
2268 jerr_o:
2269 Fclose(nfo);
2270 _sendout_error = TRU1;
2271 goto jleave;
2274 if (_sendout_error < 0)
2275 goto jfail_dead;
2277 Fclose(nfo);
2278 rewind(nfi);
2280 to = a_sendout_file_a_pipe(to, nfi, &_sendout_error);
2282 if (_sendout_error)
2283 savedeadletter(nfi, FAL0);
2285 if (count(to = elide(to)) != 0) {
2286 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2287 sb.sb_to = to;
2288 /*sb.sb_input = nfi;*/
2289 if (_transfer(&sb))
2290 rv = OKAY;
2292 } else if (!_sendout_error)
2293 rv = OKAY;
2295 Fclose(nfi);
2296 jleave:
2297 if (_sendout_error)
2298 n_exit_status |= n_EXIT_SEND_ERROR;
2299 NYD_LEAVE;
2300 return rv;
2303 FL void
2304 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2305 struct n_string line;
2306 int c;
2307 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2308 ul_i bytes, lines;
2309 FILE *dbuf;
2310 char const *cp, *cpq;
2311 NYD_ENTER;
2313 if(!ok_blook(save))
2314 goto jleave;
2316 if(fflush_rewind_first){
2317 fflush(fp);
2318 rewind(fp);
2320 if(fsize(fp) == 0)
2321 goto jleave;
2323 cp = n_getdeadletter();
2324 cpq = n_shexp_quote_cp(cp, FAL0);
2326 if(n_poption & n_PO_DEBUG){
2327 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2328 goto jleave;
2331 if((dbuf = Fopen(cp, "w")) == NULL){
2332 n_perr(_("Cannot save to $DEAD"), 0);
2333 goto jleave;
2335 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2337 fprintf(n_stdout, "%s ", cpq);
2338 fflush(n_stdout);
2340 /* TODO savedeadletter() non-conforming: should check whether we have any
2341 * TODO headers, if not we need to place "something", anything will do.
2342 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2343 * TODO I/O error handling missing. Yuck! */
2344 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2345 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2346 ok_vlook(LOGNAME), time_current.tc_ctime);
2347 lines = 1;
2348 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2349 n_string_trunc(&line, 0);
2350 while((c = getc(fp)) != EOF && c != '\n')
2351 n_string_push_c(&line, c);
2353 /* TODO It may be that we have only some plain text. It may be that we
2354 * TODO have a complete MIME encoded message. We don't know, and we
2355 * TODO have no usable mechanism to dig it!! tWe need v15! */
2356 if(!(flags & a_INIT)){
2357 size_t i;
2359 /* Throw away leading empty lines! */
2360 if(line.s_len == 0)
2361 continue;
2362 for(i = 0; i < line.s_len; ++i){
2363 if(fieldnamechar(line.s_dat[i]))
2364 continue;
2365 if(line.s_dat[i] == ':'){
2366 flags |= a_INIT;
2367 break;
2368 }else{
2369 /* We have no headers, this is already a body line! */
2370 flags |= a_INIT | a_BODY;
2371 break;
2374 /* Well, i had to check whether the RFC allows this. Assume we've
2375 * passed the headers, too, then! */
2376 if(i == line.s_len)
2377 flags |= a_INIT | a_BODY;
2379 if(flags & a_BODY){
2380 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2381 n_string_unshift_c(&line, '>');
2383 if(line.s_len == 0)
2384 flags |= a_BODY | a_NL;
2385 else
2386 flags &= ~a_NL;
2388 n_string_push_c(&line, '\n');
2389 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2391 if(!(flags & a_NL)){
2392 putc('\n', dbuf);
2393 ++bytes;
2394 ++lines;
2396 n_string_gut(&line);
2398 Fclose(dbuf);
2399 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2400 fflush(n_stdout);
2402 rewind(fp);
2403 jleave:
2404 NYD_LEAVE;
2407 #undef SEND_LINESIZE
2409 /* s-it-mode */