(BWDIC!) FIX false decision: for `if' etc., add -le,-gt.. operators..
[s-mailx.git] / sendout.c
blob048db402c1d063342bb9bf94529d8f6e3bda6084
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 = EIO;
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 = EILSEQ;
311 break;
313 err = a_sendout__attach_file(hp, ap, fo);
314 if (err == 0 || (err != EILSEQ && err != EINVAL))
315 break;
316 clearerr(fo);
317 if (fseek(fo, offs, SEEK_SET) == -1) {
318 err = EIO;
319 break;
321 if (ap->a_conv != AC_DEFAULT) {
322 err = EILSEQ;
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 = errno;
350 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0), strerror(err));
351 goto jleave;
354 /* MIME part header for attachment */
355 { char const *ct, *cp;
357 ct = ap->a_content_type;
358 charset = ap->a_charset;
359 convert = mime_type_classify_file(fi, (char const**)&ct,
360 &charset, &do_iconv);
361 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
362 ap->a_conv == AC_TMPFILE)
363 do_iconv = 0;
365 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
366 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
367 _put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
368 goto jerr_header;
370 if((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")){
371 struct name *np;
373 if((np = ap->a_content_id) != NULL)
374 cp = np->n_name;
375 else
376 cp = a_sendout_random_id(hp, FAL0);
378 if(cp != NULL && fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
379 goto jerr_header;
382 if ((cp = ap->a_content_description) != NULL &&
383 (fputs("Content-Description: ", fo) == EOF ||
384 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
385 ) < 0 || putc('\n', fo) == EOF))
386 goto jerr_header;
388 if (putc('\n', fo) == EOF) {
389 jerr_header:
390 err = errno;
391 goto jerr_fclose;
395 #ifdef HAVE_ICONV
396 if (iconvd != (iconv_t)-1)
397 n_iconv_close(iconvd);
398 if (do_iconv) {
399 if (asccasecmp(charset, ap->a_input_charset) &&
400 (iconvd = n_iconv_open(charset, ap->a_input_charset)
401 ) == (iconv_t)-1 && (err = errno) != 0) {
402 if (err == EINVAL)
403 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
404 charset);
405 else
406 n_err(_("iconv_open: %s\n"), strerror(err));
407 goto jerr_fclose;
410 #endif
412 bufsize = SEND_LINESIZE;
413 buf = smalloc(bufsize);
414 if (convert == CONV_TOQP
415 #ifdef HAVE_ICONV
416 || iconvd != (iconv_t)-1
417 #endif
419 lncnt = fsize(fi);
420 for (;;) {
421 if (convert == CONV_TOQP
422 #ifdef HAVE_ICONV
423 || iconvd != (iconv_t)-1
424 #endif
426 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
427 break;
428 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
429 break;
430 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
431 err = errno;
432 goto jerr;
435 if (ferror(fi))
436 err = EDOM;
437 jerr:
438 free(buf);
439 jerr_fclose:
440 if (ap->a_conv != AC_TMPFILE)
441 Fclose(fi);
442 jleave:
443 NYD_LEAVE;
444 return err;
447 static bool_t
448 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
450 bool_t v15, rv = FAL0;
451 char *shost, *from;
452 #ifdef HAVE_SMTP
453 char const *smtp;
454 #endif
455 NYD_ENTER;
457 v15 = ok_blook(v15_compat);
458 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
459 from = ((signing_caps || !v15 || shost == NULL)
460 ? skin(myorigin(sbp->sb_hp)) : NULL);
462 if (signing_caps) {
463 if (from == NULL) {
464 #ifdef HAVE_SSL
465 n_err(_("No *from* address for signing specified\n"));
466 goto jleave;
467 #endif
468 } else
469 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
472 #ifdef HAVE_SMTP
473 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
474 char const *proto;
476 /* *smtp* OBSOLETE message in mta_start() */
477 if ((smtp = ok_vlook(mta)) == NULL ||
478 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
479 rv = TRU1;
480 goto jleave;
484 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
485 goto jleave;
487 if (v15) {
488 if (shost == NULL) {
489 if (from == NULL)
490 goto jenofrom;
491 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
492 } else
493 __sendout_ident = sbp->sb_url.url_u_h.s;
494 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
495 goto jleave;
496 } else {
497 if ((sbp->sb_url.url_flags & n_URL_HAD_USER) ||
498 sbp->sb_url.url_pass.s != NULL) {
499 n_err(_("New-style URL used without *v15-compat* being set\n"));
500 goto jleave;
502 /* TODO part of the entire myorigin() disaster, get rid of this! */
503 if (from == NULL) {
504 jenofrom:
505 n_err(_("Your configuration requires a *from* address, "
506 "but none was given\n"));
507 goto jleave;
509 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
510 goto jleave;
511 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
514 rv = TRU1;
515 #endif /* HAVE_SMTP */
516 #if defined HAVE_SSL || defined HAVE_SMTP
517 jleave:
518 #endif
519 NYD_LEAVE;
520 return rv;
523 static int
524 a_sendout_attach_msg(struct header *hp, struct attachment *ap, FILE *fo)
526 struct message *mp;
527 char const *ccp;
528 int rv;
529 NYD_ENTER;
530 n_UNUSED(hp);
532 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
533 "Content-Disposition: inline\n", _sendout_boundary);
534 if ((ccp = ap->a_content_description) != NULL)
535 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
536 putc('\n', fo);
538 mp = message + ap->a_msgno - 1;
539 touch(mp);
540 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
541 NYD_LEAVE;
542 return rv;
545 static int
546 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
547 char const *contenttype, char const *charset)
549 struct attachment *att;
550 int rv = -1;
551 NYD_ENTER;
553 fputs("This is a multi-part message in MIME format.\n", fo);
554 if (fsize(fi) != 0) {
555 char const *cp;
556 char *buf;
557 size_t sz, bufsize, cnt;
559 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
560 _put_ct(fo, contenttype, charset) < 0 ||
561 _put_cte(fo, convert) < 0 ||
562 fprintf(fo, "Content-Disposition: inline\n") < 0)
563 goto jleave;
564 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
565 (cp = a_sendout_random_id(hp, FAL0)) != NULL &&
566 fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
567 goto jleave;
568 if(putc('\n', fo) == EOF)
569 goto jleave;
571 buf = smalloc(bufsize = SEND_LINESIZE);
572 if (convert == CONV_TOQP
573 #ifdef HAVE_ICONV
574 || iconvd != (iconv_t)-1
575 #endif
577 fflush(fi);
578 cnt = fsize(fi);
580 for (;;) {
581 if (convert == CONV_TOQP
582 #ifdef HAVE_ICONV
583 || iconvd != (iconv_t)-1
584 #endif
586 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
587 break;
588 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
589 break;
591 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
592 free(buf);
593 goto jleave;
596 free(buf);
598 if (ferror(fi))
599 goto jleave;
602 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
603 if (att->a_msgno) {
604 if (a_sendout_attach_msg(hp, att, fo) != 0)
605 goto jleave;
606 } else if (a_sendout_attach_file(hp, att, fo) != 0)
607 goto jleave;
610 /* the final boundary with two attached dashes */
611 fprintf(fo, "\n--%s--\n", _sendout_boundary);
612 rv = 0;
613 jleave:
614 NYD_LEAVE;
615 return rv;
618 static FILE *
619 infix(struct header *hp, FILE *fi) /* TODO check */
621 FILE *nfo, *nfi = NULL;
622 char *tempMail;
623 char const *contenttype, *charset = NULL;
624 enum conversion convert;
625 int do_iconv = 0, err;
626 #ifdef HAVE_ICONV
627 char const *tcs, *convhdr = NULL;
628 #endif
629 NYD_ENTER;
631 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
632 == NULL) {
633 n_perr(_("temporary mail file"), 0);
634 goto jleave;
636 if ((nfi = Fopen(tempMail, "r")) == NULL) {
637 n_perr(tempMail, 0);
638 Fclose(nfo);
640 Ftmp_release(&tempMail);
641 if (nfi == NULL)
642 goto jleave;
644 n_pstate &= ~n_PS_HEADER_NEEDED_MIME; /* TODO hack -> be carrier tracked */
646 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
647 if((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL)
648 contenttype = n_poption_arg_Mm;
649 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
651 #ifdef HAVE_ICONV
652 tcs = ok_vlook(ttycharset);
653 if ((convhdr = need_hdrconv(hp))) {
654 if (iconvd != (iconv_t)-1) /* XXX */
655 n_iconv_close(iconvd);
656 if (asccasecmp(convhdr, tcs) != 0 &&
657 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
658 (err = errno) != 0)
659 goto jiconv_err;
661 #endif
662 if (puthead(FAL0, hp, nfo,
663 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
664 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
665 goto jerr;
666 #ifdef HAVE_ICONV
667 if (iconvd != (iconv_t)-1)
668 n_iconv_close(iconvd);
669 #endif
671 #ifdef HAVE_ICONV
672 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
673 if (asccasecmp(charset, tcs) != 0 &&
674 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
675 (err = errno) != 0) {
676 jiconv_err:
677 if (err == EINVAL)
678 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
679 else
680 n_perr("iconv_open", 0);
681 goto jerr;
684 #endif
686 if (hp->h_attach != NULL) {
687 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
688 goto jerr;
689 } else {
690 size_t sz, bufsize, cnt;
691 char *buf;
693 if (convert == CONV_TOQP
694 #ifdef HAVE_ICONV
695 || iconvd != (iconv_t)-1
696 #endif
698 fflush(fi);
699 cnt = fsize(fi);
701 buf = smalloc(bufsize = SEND_LINESIZE);
702 for (err = 0;;) {
703 if (convert == CONV_TOQP
704 #ifdef HAVE_ICONV
705 || iconvd != (iconv_t)-1
706 #endif
708 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
709 break;
710 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
711 break;
712 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
713 err = 1;
714 break;
717 free(buf);
719 if (err || ferror(fi)) {
720 jerr:
721 Fclose(nfo);
722 Fclose(nfi);
723 #ifdef HAVE_ICONV
724 if (iconvd != (iconv_t)-1)
725 n_iconv_close(iconvd);
726 #endif
727 nfi = NULL;
728 goto jleave;
732 #ifdef HAVE_ICONV
733 if (iconvd != (iconv_t)-1)
734 n_iconv_close(iconvd);
735 #endif
737 fflush(nfo);
738 if ((err = ferror(nfo)))
739 n_perr(_("temporary mail file"), 0);
740 Fclose(nfo);
741 if (!err) {
742 fflush_rewind(nfi);
743 Fclose(fi);
744 } else {
745 Fclose(nfi);
746 nfi = NULL;
748 jleave:
749 NYD_LEAVE;
750 return nfi;
753 static bool_t
754 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
756 char const *from;
757 bool_t rv = TRU1;
758 NYD_ENTER;
760 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
761 * TODO not yet checked */
762 if (!ok_blook(disposition_notification_send))
763 goto jleave;
765 if (mdn != NULL && mdn != (struct name*)0x1)
766 from = mdn->n_name;
767 else if ((from = myorigin(hp)) == NULL) {
768 if (n_poption & n_PO_D_V)
769 n_err(_("*disposition-notification-send*: *from* not set\n"));
770 goto jleave;
773 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
774 rv = FAL0;
775 jleave:
776 NYD_LEAVE;
777 return rv;
780 static int
781 sendmail_internal(void *v, int recipient_record)
783 struct header head;
784 char *str = v;
785 int rv;
786 NYD_ENTER;
788 memset(&head, 0, sizeof head);
789 head.h_to = lextract(str, GTO | GFULL);
790 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
791 NYD_LEAVE;
792 return (rv == 0);
795 static struct name *
796 a_sendout_file_a_pipe(struct name *names, FILE *fo, bool_t *senderror){
797 ui32_t pipecnt, xcnt, i;
798 char const *sh;
799 struct name *np;
800 FILE *fp, **fppa;
801 NYD_ENTER;
803 fp = NULL;
804 fppa = NULL;
806 /* Look through all recipients and do a quick return if no file or pipe
807 * addressee is found */
808 for(pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink){
809 if(np->n_type & GDEL)
810 continue;
811 switch(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE){
812 case NAME_ADDRSPEC_ISFILE: ++xcnt; break;
813 case NAME_ADDRSPEC_ISPIPE: ++pipecnt; break;
816 if((pipecnt | xcnt) == 0)
817 goto jleave;
819 /* Otherwise create an array of file descriptors for each found pipe
820 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
821 * each pipe subprocess needs its very own file descriptor, and we need
822 * to deal with that.
823 * To make our life a bit easier let's just use the auto-reclaimed
824 * string storage */
825 if(pipecnt == 0 || (n_poption & n_PO_DEBUG)){
826 pipecnt = 0;
827 sh = NULL;
828 }else{
829 i = sizeof(FILE*) * pipecnt;
830 fppa = n_lofi_alloc(i);
831 memset(fppa, 0, i);
832 sh = ok_vlook(SHELL);
835 for(np = names; np != NULL; np = np->n_flink){
836 if(!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) || (np->n_type & GDEL))
837 continue;
839 /* In days of old we removed the entry from the the list; now for sake of
840 * header expansion we leave it in and mark it as deleted */
841 np->n_type |= GDEL;
843 if(n_poption & n_PO_D_VV)
844 n_err(_(">>> Writing message via %s\n"),
845 n_shexp_quote_cp(np->n_name, FAL0));
846 /* We _do_ write to STDOUT, anyway! */
847 if((n_poption & n_PO_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
848 np->n_name[0] != '-' || np->n_name[1] != '\0'))
849 continue;
851 /* See if we have copied the complete message out yet. If not, do so */
852 if(fp == NULL){
853 int c;
854 char *tempEdit;
856 if((fp = Ftmp(&tempEdit, "outof", OF_RDWR | OF_HOLDSIGS | OF_REGISTER)
857 ) == NULL){
858 n_perr(_("Creation of temporary image"), 0);
859 pipecnt = 0;
860 goto jerror;
863 for(i = 0; i < pipecnt; ++i)
864 if((fppa[i] = Fopen(tempEdit, "r")) == NULL){
865 n_perr(_("Creation of pipe image descriptor"), 0);
866 break;
869 Ftmp_release(&tempEdit);
870 if(i != pipecnt){
871 pipecnt = i;
872 goto jerror;
875 fprintf(fp, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
876 c = EOF;
877 while(i = c, (c = getc(fo)) != EOF)
878 putc(c, fp);
879 rewind(fo);
880 if((int)i != '\n')
881 putc('\n', fp);
882 putc('\n', fp);
883 fflush(fp);
884 if(ferror(fp)){
885 n_perr(_("Finalizing write of temporary image"), 0);
886 goto jerror;
889 /* From now on use xcnt as a counter for pipecnt */
890 xcnt = 0;
893 /* Now either copy "image" to the desired file or give it as the standard
894 * input to the desired program as appropriate */
895 if(np->n_flags & NAME_ADDRSPEC_ISPIPE){
896 int pid;
897 sigset_t nset;
899 sigemptyset(&nset);
900 sigaddset(&nset, SIGHUP);
901 sigaddset(&nset, SIGINT);
902 sigaddset(&nset, SIGQUIT);
903 pid = start_command(sh, &nset, fileno(fppa[xcnt++]), COMMAND_FD_NULL,
904 "-c", &np->n_name[1], NULL, NULL);
905 if(pid < 0){
906 n_err(_("Piping message to %s failed\n"),
907 n_shexp_quote_cp(np->n_name, FAL0));
908 goto jerror;
910 free_child(pid);
911 }else{
912 int c;
913 FILE *fout;
914 char const *fname, *fnameq;
916 if((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL)
917 goto jerror;
918 fnameq = n_shexp_quote_cp(fname, FAL0);
920 if(fname[0] == '-' && fname[1] == '\0')
921 fout = n_stdout;
922 else if((fout = Zopen(fname, "a")) == NULL){
923 n_err(_("Writing message to %s failed: %s\n"),
924 fnameq, strerror(errno));
925 goto jerror;
928 rewind(fp);
929 while((c = getc(fp)) != EOF)
930 putc(c, fout);
931 if(ferror(fout)){
932 n_err(_("Writing message to %s failed: %s\n"),
933 fnameq, _("write error"));
934 *senderror = TRU1;
937 if(fout != n_stdout)
938 Fclose(fout);
942 jleave:
943 if(fp != NULL)
944 Fclose(fp);
945 if(fppa != NULL){
946 for(i = 0; i < pipecnt; ++i)
947 if((fp = fppa[i]) != NULL)
948 Fclose(fp);
949 n_lofi_free(fppa);
951 NYD_LEAVE;
952 return names;
954 jerror:
955 *senderror = TRU1;
956 while(np != NULL){
957 if(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
958 np->n_type |= GDEL;
959 np = np->n_flink;
961 goto jleave;
964 static bool_t
965 mightrecord(FILE *fp, struct name *to, bool_t resend)
967 char *cp, *cq;
968 char const *ep;
969 bool_t rv = TRU1;
970 NYD_ENTER;
972 if (n_poption & n_PO_DEBUG)
973 cp = NULL;
974 else if (to != NULL) {
975 cp = savestr(skinned_name(to));
976 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
978 *cq = '\0';
979 } else
980 cp = ok_vlook(record);
982 if (cp != NULL) {
983 if ((ep = fexpand(cp, FEXP_FULL)) == NULL) {
984 ep = "NULL";
985 goto jbail;
988 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
989 which_protocol(ep) == PROTO_FILE) {
990 size_t i = strlen(cp);
991 cq = salloc(i + 1 +1);
992 cq[0] = '+';
993 memcpy(cq + 1, cp, i +1);
994 cp = cq;
995 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
996 ep = "NULL";
997 goto jbail;
1001 if (!a_sendout__savemail(ep, fp, resend)) {
1002 jbail:
1003 n_err(_("Failed to save message in %s - message not sent\n"),
1004 n_shexp_quote_cp(ep, FAL0));
1005 n_exit_status |= n_EXIT_ERR;
1006 savedeadletter(fp, 1);
1007 rv = FAL0;
1010 NYD_LEAVE;
1011 return rv;
1014 static bool_t
1015 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1016 FILE *fo;
1017 size_t bufsize, buflen, cnt;
1018 bool_t rv, emptyline;
1019 char *buf;
1020 NYD_ENTER;
1022 buf = smalloc(bufsize = LINESIZE);
1023 rv = emptyline = FAL0;
1025 if((fo = Zopen(name, "a+")) == NULL){
1026 if((fo = Zopen(name, "wx")) == NULL){
1027 n_perr(name, 0);
1028 goto j_leave;
1030 emptyline = TRU1;
1033 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1034 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1036 rv = TRU1;
1038 if(!emptyline){
1039 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1040 switch(fread(buf, sizeof *buf, 2, fo)){
1041 case 2:
1042 if(buf[1] != '\n')
1043 emptyline = TRU1;
1044 break;
1045 case 1:
1046 if(buf[0] != '\n')
1047 emptyline = TRU1;
1048 break;
1049 default:
1050 if(ferror(fo)){
1051 n_perr(name, 0);
1052 rv = FAL0;
1053 goto jleave;
1056 if(emptyline){
1057 putc('\n', fo);
1058 fflush(fo);
1063 fflush_rewind(fp);
1065 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1066 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1067 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1068 /* Only if we are resending it can happen that we have to quote From_
1069 * lines here; we don't generate messages which are ambiguous ourselves */
1070 if(resend){
1071 if(emptyline && is_head(buf, buflen, FAL0))
1072 putc('>', fo);
1073 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1075 emptyline = (buflen > 0 && *buf == '\n');
1076 fwrite(buf, sizeof *buf, buflen, fo);
1078 if(buflen > 0 && buf[buflen - 1] != '\n')
1079 putc('\n', fo);
1080 putc('\n', fo);
1081 fflush(fo);
1082 if(ferror(fo)){
1083 n_perr(name, 0);
1084 rv = FAL0;
1087 jleave:
1088 really_rewind(fp);
1089 if(Fclose(fo) != 0)
1090 rv = FAL0;
1091 j_leave:
1092 free(buf);
1093 NYD_LEAVE;
1094 return rv;
1097 static bool_t
1098 _transfer(struct sendbundle *sbp)
1100 struct name *np;
1101 ui32_t cnt;
1102 bool_t rv = TRU1;
1103 NYD_ENTER;
1105 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1106 char const k[] = "smime-encrypt-", *cp;
1107 size_t nl = strlen(np->n_name);
1108 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1109 memcpy(vs, k, sizeof(k) -1);
1110 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1112 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1113 #ifdef HAVE_SSL
1114 FILE *ef;
1116 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1117 FILE *fisave = sbp->sb_input;
1118 struct name *nsave = sbp->sb_to;
1120 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1121 sbp->sb_input = ef;
1122 if (!__mta_start(sbp))
1123 rv = FAL0;
1124 sbp->sb_to = nsave;
1125 sbp->sb_input = fisave;
1127 Fclose(ef);
1128 } else {
1129 #else
1130 n_err(_("No SSL support compiled in\n"));
1131 rv = FAL0;
1132 #endif
1133 n_err(_("Message not sent to: %s\n"), np->n_name);
1134 _sendout_error = TRU1;
1135 #ifdef HAVE_SSL
1137 #endif
1138 rewind(sbp->sb_input);
1140 if (np->n_flink != NULL)
1141 np->n_flink->n_blink = np->n_blink;
1142 if (np->n_blink != NULL)
1143 np->n_blink->n_flink = np->n_flink;
1144 if (np == sbp->sb_to)
1145 sbp->sb_to = np->n_flink;
1146 np = np->n_flink;
1147 } else {
1148 ++cnt;
1149 np = np->n_flink;
1151 ac_free(vs);
1154 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1155 rv = FAL0;
1156 NYD_LEAVE;
1157 return rv;
1160 static bool_t
1161 __mta_start(struct sendbundle *sbp)
1163 pid_t pid;
1164 sigset_t nset;
1165 char const **args, *mta;
1166 bool_t rv;
1167 NYD_ENTER;
1169 /* Let rv mean "is smtp-based MTA" */
1170 if((mta = ok_vlook(smtp)) != NULL){
1171 n_OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1172 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1173 * that *smtp* is misused with file:// or so */
1174 if(n_servbyname(mta, NULL) == NULL)
1175 mta = savecat("smtp://", mta);
1176 rv = TRU1;
1177 }else{
1178 char const *proto;
1180 if((proto = ok_vlook(sendmail)) != NULL)
1181 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1182 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1183 if(proto == NULL){
1184 mta = VAL_MTA;
1185 rv = FAL0;
1186 }else
1187 rv = TRU1;
1189 /* TODO for now this is pretty hacky: in v15 we should simply create
1190 * TODO an URL object; i.e., be able to do so, and it does it right
1191 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1192 else if((proto = n_servbyname(mta, NULL)) != NULL){
1193 if(*proto == '\0'){
1194 mta += sizeof("file://") -1;
1195 rv = FAL0;
1196 }else
1197 rv = TRU1;
1198 }else
1199 rv = FAL0;
1202 if(!rv){
1203 char const *mta_base;
1205 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1206 n_err(_("*mta* variable expansion failure: %s\n"),
1207 n_shexp_quote_cp(mta_base, FAL0));
1208 goto jstop;
1211 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1212 if (n_poption & n_PO_DEBUG) {
1213 __mta_debug(sbp, mta, args);
1214 rv = TRU1;
1215 goto jleave;
1217 } else {
1218 n_UNINIT(args, NULL);
1219 #ifndef HAVE_SMTP
1220 n_err(_("No SMTP support compiled in\n"));
1221 goto jstop;
1222 #else
1223 /* C99 */{
1224 struct name *np;
1226 for(np = sbp->sb_to; np != NULL; np = np->n_flink)
1227 if(!(np->n_type & GDEL) && (np->n_flags & NAME_ADDRSPEC_ISNAME)){
1228 n_err(_("SMTP *mta* cannot send to alias name: %s\n"),
1229 n_shexp_quote_cp(np->n_name, FAL0));
1230 rv = FAL0;
1232 if(!rv)
1233 goto jstop;
1236 if (n_poption & n_PO_DEBUG) {
1237 (void)smtp_mta(sbp);
1238 rv = TRU1;
1239 goto jleave;
1241 #endif
1244 /* Fork, set up the temporary mail file as standard input for "mail", and
1245 * exec with the user list we generated far above */
1246 if ((pid = fork_child()) == -1) {
1247 n_perr("fork", 0);
1248 jstop:
1249 savedeadletter(sbp->sb_input, 0);
1250 _sendout_error = TRU1;
1251 goto jleave;
1253 if (pid == 0) {
1254 sigemptyset(&nset);
1255 sigaddset(&nset, SIGHUP);
1256 sigaddset(&nset, SIGINT);
1257 sigaddset(&nset, SIGQUIT);
1258 sigaddset(&nset, SIGTSTP);
1259 sigaddset(&nset, SIGTTIN);
1260 sigaddset(&nset, SIGTTOU);
1261 /* n_stdin = */freopen("/dev/null", "r", stdin);
1262 #ifdef HAVE_SMTP
1263 if (rv) {
1264 prepare_child(&nset, 0, 1);
1265 if (smtp_mta(sbp))
1266 _exit(n_EXIT_OK);
1267 } else
1268 #endif
1270 char const *ecp;
1271 int e;
1273 prepare_child(&nset, fileno(sbp->sb_input), -1);
1274 execv(mta, n_UNCONST(args));
1275 e = errno;
1276 ecp = (e != ENOENT) ? strerror(e)
1277 : _("executable not found (adjust *mta* variable)");
1278 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1280 savedeadletter(sbp->sb_input, 1);
1281 n_err(_("... message not sent\n"));
1282 _exit(n_EXIT_ERR);
1285 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1286 if (!(rv = wait_child(pid, NULL)))
1287 _sendout_error = TRU1;
1288 } else {
1289 free_child(pid);
1290 rv = TRU1;
1292 jleave:
1293 NYD_LEAVE;
1294 return rv;
1297 static char const **
1298 __mta_prepare_args(struct name *to, struct header *hp)
1300 size_t vas_cnt, i, j;
1301 char **vas;
1302 char const **args, *cp, *cp_v15compat;
1303 bool_t snda;
1304 NYD_ENTER;
1306 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1307 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1308 if((cp = ok_vlook(mta_arguments)) == NULL)
1309 cp = cp_v15compat;
1310 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1311 vas_cnt = 0;
1312 vas = NULL;
1313 } else {
1314 /* Don't assume anything on the content but do allocate exactly j slots;
1315 * like this getrawlist will never overflow (and return -1) */
1316 j = strlen(cp);
1317 vas = n_lofi_alloc(sizeof(*vas) * j);
1318 vas_cnt = (size_t)getrawlist(TRU1, vas, j, cp, j);
1321 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1322 args = salloc(i * sizeof(char*));
1324 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1325 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1326 if((cp = ok_vlook(mta_argv0)) == NULL)
1327 cp = cp_v15compat;
1328 if(cp == NULL)
1329 cp = VAL_MTA_ARGV0;
1330 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1332 if ((snda = ok_blook(sendmail_no_default_arguments)))
1333 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1334 "not *sendmail-no-default-arguments*"));
1335 snda |= ok_blook(mta_no_default_arguments);
1336 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1337 i = 1;
1338 else {
1339 args[1] = "-i";
1340 i = 2;
1341 if (ok_blook(metoo))
1342 args[i++] = "-m";
1343 if (n_poption & n_PO_VERB)
1344 args[i++] = "-v";
1347 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1348 args[i] = n_smopts[j];
1350 for (j = 0; j < vas_cnt; ++j, ++i)
1351 args[i] = vas[j];
1353 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1354 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1355 * The interdependency with -t has been resolved in puthead() */
1356 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1357 struct name const *np;
1359 if (hp != NULL && (np = hp->h_from) != NULL) {
1360 /* However, what wasn't resolved there was the case that the message
1361 * specified multiple From: addresses and a Sender: */
1362 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1363 np = hp->h_sender;
1365 if (np->n_fullextra != NULL) {
1366 args[i++] = "-F";
1367 args[i++] = np->n_fullextra;
1369 cp = np->n_name;
1370 } else {
1371 assert(n_poption_arg_r == NULL);
1372 cp = skin(myorigin(NULL));
1375 if (cp != NULL) {
1376 args[i++] = "-f";
1377 args[i++] = cp;
1381 /* Terminate option list to avoid false interpretation of system-wide
1382 * aliases that start with hyphen */
1383 if (!snda)
1384 args[i++] = "--";
1386 /* Receivers follow */
1387 for (; to != NULL; to = to->n_flink)
1388 if (!(to->n_type & GDEL))
1389 args[i++] = to->n_name;
1390 args[i] = NULL;
1392 if(vas != NULL)
1393 n_lofi_free(vas);
1394 NYD_LEAVE;
1395 return args;
1398 static void
1399 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1401 size_t cnt, bufsize, llen;
1402 char *buf;
1403 NYD_ENTER;
1405 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1406 for (; *args != NULL; ++args)
1407 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1408 n_err("\n");
1410 fflush_rewind(sbp->sb_input);
1412 cnt = fsize(sbp->sb_input);
1413 buf = NULL;
1414 bufsize = 0;
1415 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1416 buf[--llen] = '\0';
1417 n_err(">>> %s\n", buf);
1419 if (buf != NULL)
1420 free(buf);
1421 NYD_LEAVE;
1424 static char const *
1425 a_sendout_random_id(struct header *hp, bool_t msgid)
1427 struct tm *tmp;
1428 char const *h;
1429 size_t rl, i;
1430 char *rv, sep;
1431 NYD_ENTER;
1433 rv = NULL;
1435 if(msgid && hp != NULL && hp->h_message_id != NULL){
1436 rv = hp->h_message_id->n_name;
1437 goto jleave;
1440 if(ok_blook(message_id_disable))
1441 goto jleave;
1443 sep = '%';
1444 rl = 5;
1445 if((h = __sendout_ident) != NULL)
1446 goto jgen;
1447 if(ok_vlook(hostname) != NULL){
1448 h = nodename(1);
1449 sep = '@';
1450 rl = 8;
1451 goto jgen;
1453 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1454 goto jgen;
1455 goto jleave;
1457 jgen:
1458 tmp = &time_current.tc_gm;
1459 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1460 rv = salloc(i +1);
1461 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1462 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1463 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1464 getrandstring(rl), sep, h);
1465 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1466 jleave:
1467 NYD_LEAVE;
1468 return rv;
1471 static int
1472 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1474 enum {
1475 m_INIT = 1<<0,
1476 m_COMMA = 1<<1,
1477 m_NOPF = 1<<2,
1478 m_NONAME = 1<<3,
1479 m_CSEEN = 1<<4
1480 } m = (ff & GCOMMA) ? m_COMMA : 0;
1481 ssize_t col, len;
1482 int rv = 1;
1483 NYD_ENTER;
1485 col = strlen(str);
1486 if (col) {
1487 fwrite(str, sizeof *str, col, fo);
1488 #undef _X
1489 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1490 if (ff & GFILES) {
1492 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1493 _X("references:") || _X("disposition-notification-to:"))
1494 m |= m_NOPF | m_NONAME;
1495 else if (ok_blook(add_file_recipients)) {
1497 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1498 m |= m_NOPF;
1499 #undef _X
1502 for (; np != NULL; np = np->n_flink) {
1503 if(np->n_type & GDEL)
1504 continue;
1505 if(is_addr_invalid(np,
1506 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1507 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1508 !(ff & FMT_INC_INVADDR))
1509 continue;
1511 /* File and pipe addresses only printed with set *add-file-recipients* */
1512 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1513 continue;
1515 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1516 if (putc(',', fo) == EOF)
1517 goto jleave;
1518 m |= m_CSEEN;
1519 ++col;
1522 len = strlen(np->n_fullname);
1523 if (np->n_type & GREF)
1524 len += 2;
1525 ++col; /* The separating space */
1526 if ((m & m_INIT) && /*col > 1 &&*/
1527 UICMP(z, col + len, >,
1528 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1529 if (fputs("\n ", fo) == EOF)
1530 goto jleave;
1531 col = 1;
1532 m &= ~m_CSEEN;
1533 } else
1534 putc(' ', fo);
1535 m = (m & ~m_CSEEN) | m_INIT;
1537 /* C99 */{
1538 char *hb;
1540 /* GREF needs to be placed in angle brackets, but which are missing */
1541 hb = np->n_fullname;
1542 if(np->n_type & GREF){
1543 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1544 hb = n_lofi_alloc(len +1);
1545 len -= 2;
1546 hb[0] = '<';
1547 hb[len + 1] = '>';
1548 hb[len + 2] = '\0';
1549 memcpy(&hb[1], np->n_fullname, len);
1550 len += 2;
1552 len = xmime_write(hb, len, fo,
1553 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1554 if(np->n_type & GREF)
1555 n_lofi_free(hb);
1557 if (len < 0)
1558 goto jleave;
1559 col += len;
1562 if (putc('\n', fo) != EOF)
1563 rv = 0;
1564 jleave:
1565 NYD_LEAVE;
1566 return rv;
1569 static int
1570 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1571 int add_resent)
1573 size_t cnt, c, bufsize = 0;
1574 char *buf = NULL;
1575 char const *cp;
1576 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1577 int rv = 1;
1578 NYD_ENTER;
1580 cnt = mp->m_size;
1582 /* Write the Resent-Fields */
1583 if (add_resent) {
1584 fputs("Resent-", fo);
1585 mkdate(fo, "Date");
1586 if ((cp = myaddrs(NULL)) != NULL) {
1587 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1588 &fromfield, 0))
1589 goto jleave;
1591 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1592 if ((cp = ok_vlook(sender)) != NULL) {
1593 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1594 &senderfield, 0))
1595 goto jleave;
1597 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1598 goto jleave;
1599 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1600 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1601 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1602 goto jleave;
1605 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1606 goto jleave;
1607 if (!_check_dispo_notif(mdn, NULL, fo))
1608 goto jleave;
1610 /* Write the original headers */
1611 while (cnt > 0) {
1612 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1613 break;
1614 if (ascncasecmp("status:", buf, 7) &&
1615 ascncasecmp("disposition-notification-to:", buf, 28) &&
1616 !is_head(buf, c, FAL0))
1617 fwrite(buf, sizeof *buf, c, fo);
1618 if (cnt > 0 && *buf == '\n')
1619 break;
1622 /* Write the message body */
1623 while (cnt > 0) {
1624 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1625 break;
1626 if (cnt == 0 && *buf == '\n')
1627 break;
1628 fwrite(buf, sizeof *buf, c, fo);
1630 if (buf != NULL)
1631 free(buf);
1632 if (ferror(fo)) {
1633 n_perr(_("temporary mail file"), 0);
1634 goto jleave;
1636 rv = 0;
1637 jleave:
1638 NYD_LEAVE;
1639 return rv;
1642 FL int
1643 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1644 struct attachment *attach, char const *quotefile, int recipient_record)
1646 struct header head;
1647 struct str in, out;
1648 NYD_ENTER;
1650 memset(&head, 0, sizeof head);
1652 /* The given subject may be in RFC1522 format. */
1653 if (subject != NULL) {
1654 in.s = n_UNCONST(subject);
1655 in.l = strlen(subject);
1656 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1657 head.h_subject = out.s;
1659 head.h_to = to;
1660 head.h_cc = cc;
1661 head.h_bcc = bcc;
1662 head.h_attach = attach;
1664 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1666 if (subject != NULL)
1667 free(out.s);
1668 NYD_LEAVE;
1669 return 0;
1672 FL int
1673 c_sendmail(void *v)
1675 int rv;
1676 NYD_ENTER;
1678 rv = sendmail_internal(v, 0);
1679 NYD_LEAVE;
1680 return rv;
1683 FL int
1684 c_Sendmail(void *v)
1686 int rv;
1687 NYD_ENTER;
1689 rv = sendmail_internal(v, 1);
1690 NYD_LEAVE;
1691 return rv;
1694 FL enum okay
1695 mail1(struct header *hp, int printheaders, struct message *quote,
1696 char const *quotefile, int recipient_record, int doprefix)
1698 struct n_sigman sm;
1699 struct sendbundle sb;
1700 struct name *to;
1701 bool_t dosign;
1702 FILE *mtf, *nmtf;
1703 enum okay rv;
1704 NYD_ENTER;
1706 _sendout_error = FAL0;
1707 __sendout_ident = NULL;
1708 rv = STOP;
1709 mtf = NULL;
1711 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1712 case 0:
1713 break;
1714 default:
1715 goto jleave;
1718 /* Update some globals we likely need first */
1719 time_current_update(&time_current, TRU1);
1721 /* Collect user's mail from standard input. Get the result as mtf */
1722 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1723 if (mtf == NULL)
1724 goto jleave;
1726 dosign = TRUM1;
1728 /* */
1729 if(n_psonce & n_PSO_INTERACTIVE){
1730 if (ok_blook(asksign))
1731 dosign = getapproval(_("Sign this message"), TRU1);
1734 if (fsize(mtf) == 0) {
1735 if (n_poption & n_PO_E_FLAG)
1736 goto jleave;
1737 if (hp->h_subject == NULL)
1738 fprintf(n_stdout, _("No message, no subject; hope that's ok\n"));
1739 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1740 fprintf(n_stdout, _("Null message body; hope that's ok\n"));
1743 if (dosign == TRUM1)
1744 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1745 #ifndef HAVE_SSL
1746 if (dosign) {
1747 n_err(_("No SSL support compiled in\n"));
1748 goto jleave;
1750 #endif
1752 /* XXX Update time_current again; once collect() offers editing of more
1753 * XXX headers, including Date:, this must only happen if Date: is the
1754 * XXX same that it was before collect() (e.g., postponing etc.).
1755 * XXX But *do* update otherwise because the mail seems to be backdated
1756 * XXX if the user edited some time, which looks odd and it happened
1757 * XXX to me that i got mis-dated response mails due to that... */
1758 time_current_update(&time_current, TRU1);
1760 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1761 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1762 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1763 * TODO header fields ONCE, call that ONCE after user editing etc. has
1764 * TODO completed (one edit cycle) */
1766 /* Take the user names from the combined to and cc lists and do all the
1767 * alias processing. The POSIX standard says:
1768 * The names shall be substituted when alias is used as a recipient
1769 * address specified by the user in an outgoing message (that is,
1770 * other recipients addressed indirectly through the reply command
1771 * shall not be substituted in this manner).
1772 * S-nail thus violates POSIX, as has been pointed out correctly by
1773 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1774 * disputable anyway. Go for user friendliness */
1776 to = namelist_vaporise_head(hp,
1777 (EACM_NORMAL |
1778 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1779 TRU1, &_sendout_error);
1780 if (to == NULL) {
1781 n_err(_("No recipients specified\n"));
1782 goto jfail_dead;
1784 if (_sendout_error < 0) {
1785 n_err(_("Some addressees were classified as \"hard error\"\n"));
1786 goto jfail_dead;
1789 /* */
1790 memset(&sb, 0, sizeof sb);
1791 sb.sb_hp = hp;
1792 sb.sb_to = to;
1793 sb.sb_input = mtf;
1794 if ((dosign || count_nonlocal(to) > 0) &&
1795 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1796 /* TODO saving $DEAD and recovering etc is not yet well defined */
1797 goto jfail_dead;
1799 /* 'Bit ugly kind of control flow until we find a charset that does it */
1800 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1801 int err;
1803 if (!charset_iter_is_valid())
1805 else if ((nmtf = infix(hp, mtf)) != NULL)
1806 break;
1807 else if ((err = errno) == EILSEQ || err == EINVAL) {
1808 rewind(mtf);
1809 continue;
1812 n_perr(_("Failed to create encoded message"), 0);
1813 goto jfail_dead;
1815 mtf = nmtf;
1817 /* */
1818 #ifdef HAVE_SSL
1819 if (dosign) {
1820 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1821 goto jfail_dead;
1822 Fclose(mtf);
1823 mtf = nmtf;
1825 #endif
1827 /* TODO truly - i still don't get what follows: (1) we deliver file
1828 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1829 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1831 /* Deliver pipe and file addressees */
1832 to = a_sendout_file_a_pipe(to, mtf, &_sendout_error);
1833 if (_sendout_error)
1834 savedeadletter(mtf, FAL0);
1836 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
1838 { ui32_t cnt = count(to);
1839 if ((!recipient_record || cnt > 0) &&
1840 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1841 goto jleave;
1842 if (cnt > 0) {
1843 sb.sb_hp = hp;
1844 sb.sb_to = to;
1845 sb.sb_input = mtf;
1846 if (_transfer(&sb))
1847 rv = OKAY;
1848 } else if (!_sendout_error)
1849 rv = OKAY;
1852 n_sigman_cleanup_ping(&sm);
1853 jleave:
1854 if(mtf != NULL){
1855 Fclose(mtf);
1856 temporary_compose_mode_hook_unroll();
1858 if (_sendout_error)
1859 n_exit_status |= n_EXIT_SEND_ERROR;
1860 NYD_LEAVE;
1861 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1862 return rv;
1864 jfail_dead:
1865 _sendout_error = TRU1;
1866 savedeadletter(mtf, TRU1);
1867 n_err(_("... message not sent\n"));
1868 goto jleave;
1871 FL int
1872 mkdate(FILE *fo, char const *field)
1874 struct tm tmpgm, *tmptr;
1875 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1876 NYD_ENTER;
1878 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1879 tzdiff = time_current.tc_time - mktime(&tmpgm);
1880 tzdiff_hour = (int)(tzdiff / 60);
1881 tzdiff_min = tzdiff_hour % 60;
1882 tzdiff_hour /= 60;
1883 tmptr = &time_current.tc_local;
1884 if (tmptr->tm_isdst > 0)
1885 ++tzdiff_hour;
1886 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1887 field,
1888 n_weekday_names[tmptr->tm_wday],
1889 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1890 tmptr->tm_year + 1900, tmptr->tm_hour,
1891 tmptr->tm_min, tmptr->tm_sec,
1892 tzdiff_hour * 100 + tzdiff_min);
1893 NYD_LEAVE;
1894 return rv;
1897 FL int
1898 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1899 enum sendaction action, enum conversion convert, char const *contenttype,
1900 char const *charset)
1902 #define FMT_CC_AND_BCC() \
1903 do {\
1904 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1905 if (fmt("Cc:", hp->h_cc, fo, ff))\
1906 goto jleave;\
1907 ++gotcha;\
1909 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1910 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1911 goto jleave;\
1912 ++gotcha;\
1914 } while (0)
1916 char const *addr;
1917 size_t gotcha;
1918 struct name *np, *fromasender = NULL;
1919 int stealthmua, rv = 1;
1920 bool_t nodisp;
1921 enum fmt_flags ff;
1922 NYD_ENTER;
1924 if ((addr = ok_vlook(stealthmua)) != NULL)
1925 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1926 else
1927 stealthmua = 0;
1928 gotcha = 0;
1929 nodisp = (action != SEND_TODISP);
1930 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1931 if(nosend_msg)
1932 ff |= FMT_INC_INVADDR;
1934 if (w & GDATE)
1935 mkdate(fo, "Date"), ++gotcha;
1936 if (w & GIDENT) {
1937 if (hp->h_from == NULL || hp->h_sender == NULL)
1938 setup_from_and_sender(hp);
1940 if (hp->h_from != NULL) {
1941 if (fmt("From:", hp->h_from, fo, ff))
1942 goto jleave;
1943 ++gotcha;
1946 if (hp->h_sender != NULL) {
1947 if (fmt("Sender:", hp->h_sender, fo, ff))
1948 goto jleave;
1949 ++gotcha;
1952 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1953 if (fromasender == NULL)
1954 goto jleave;
1955 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1958 #if 1
1959 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1960 if (fmt("To:", hp->h_to, fo, ff))
1961 goto jleave;
1962 ++gotcha;
1964 #else
1965 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1966 * TODO given that we cannot handle group addresses. Ridiculous */
1967 if (w & GTO) {
1968 struct name *xto;
1970 if ((xto = hp->h_to) != NULL) {
1971 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1973 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1974 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1975 goto jto_fmt;
1976 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1977 goto jleave;
1978 ++gotcha;
1979 } else if (nosend_msg == TRUM1) {
1980 jto_fmt:
1981 if (fmt("To:", hp->h_to, fo, ff))
1982 goto jleave;
1983 ++gotcha;
1986 #endif
1988 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1989 FMT_CC_AND_BCC();
1991 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1992 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1993 goto jleave;
1994 if (hp->h_subject != NULL) {
1995 size_t sublen;
1996 char const *sub;
1998 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2000 /* Trimmed something, (re-)add Re: */
2001 if (sub != hp->h_subject) {
2002 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2003 goto jleave;
2004 if (sublen > 0 &&
2005 xmime_write(sub, sublen, fo,
2006 (!nodisp ? CONV_NONE : CONV_TOHDR),
2007 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2008 goto jleave;
2010 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2011 else if (*sub != '\0') {
2012 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2013 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2014 goto jleave;
2017 ++gotcha;
2018 putc('\n', fo);
2021 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2022 FMT_CC_AND_BCC();
2024 if ((w & GMSGID) && stealthmua <= 0 &&
2025 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2026 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2027 goto jleave;
2028 ++gotcha;
2031 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2032 if (fmt("References:", np, fo, 0))
2033 goto jleave;
2034 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2035 while (np->n_flink != NULL)
2036 np = np->n_flink;
2037 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2038 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2039 if (fprintf(fo,
2040 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2041 goto jleave;
2042 ++gotcha;
2043 } else {
2044 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2045 goto jleave;
2049 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2050 if (fprintf(fo,
2051 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2052 goto jleave;
2053 ++gotcha;
2056 if (w & GIDENT) {
2057 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2058 * the list first.. TODO it is a terrible codebase.. */
2059 if ((np = hp->h_replyto) != NULL)
2060 np = namelist_dup(np, np->n_type);
2061 else if ((addr = ok_vlook(replyto)) != NULL)
2062 np = lextract(addr, GEXTRA | GFULL);
2063 if (np != NULL &&
2064 (np = elide(
2065 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2066 NULL))) != NULL) {
2067 if (fmt("Reply-To:", np, fo, ff))
2068 goto jleave;
2069 ++gotcha;
2073 if ((w & GIDENT) && !nosend_msg) {
2074 /* Mail-Followup-To: TODO factor out this huge block of code */
2075 /* Place ourselfs in there if any non-subscribed list is an addressee */
2076 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2077 ok_blook(followup_to)) {
2078 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2080 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2081 struct name *mft, *x;
2083 /* But for that, we have to remove all incarnations of ourselfs first.
2084 * TODO It is total crap that we have delete_alternates(), is_myname()
2085 * TODO or whatever; these work only with variables, not with data
2086 * TODO that is _currently_ in some header fields!!! v15.0: complete
2087 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2088 * TODO then this should be a really cheap thing in here... */
2089 np = elide(delete_alternates(cat(
2090 namelist_dup(hp->h_to, GEXTRA | GFULL),
2091 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2092 addr = hp->h_list_post;
2094 for (mft = NULL; (x = np) != NULL;) {
2095 si8_t ml;
2096 np = np->n_flink;
2098 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2099 addr != NULL && !asccasecmp(addr, x->n_name))
2100 ml = MLIST_KNOWN;
2102 /* Any non-subscribed list? Add ourselves */
2103 switch (ml) {
2104 case MLIST_KNOWN:
2105 f |= HF_MFT_SENDER;
2106 /* FALLTHRU */
2107 case MLIST_SUBSCRIBED:
2108 f |= _ANYLIST;
2109 goto j_mft_add;
2110 case MLIST_OTHER:
2111 if (!(f & HF_LIST_REPLY)) {
2112 j_mft_add:
2113 if (!is_addr_invalid(x,
2114 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2115 x->n_flink = mft;
2116 mft = x;
2117 } /* XXX write some warning? if verbose?? */
2118 continue;
2120 /* And if this is a reply that honoured a MFT: header then we'll
2121 * also add all members of the original MFT: that are still
2122 * addressed by us, regardless of all other circumstances */
2123 else if (f & _HADMFT) {
2124 struct name *ox;
2125 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2126 if (!asccasecmp(ox->n_name, x->n_name))
2127 goto j_mft_add;
2129 break;
2133 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2134 if (((f & HF_MFT_SENDER) ||
2135 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2136 (np = fromasender) != NULL && np != (struct name*)0x1) {
2137 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2138 np->n_flink = mft;
2139 mft = np;
2142 if (fmt("Mail-Followup-To:", mft, fo, ff))
2143 goto jleave;
2144 ++gotcha;
2148 if (!_check_dispo_notif(fromasender, hp, fo))
2149 goto jleave;
2152 if ((w & GUA) && stealthmua == 0) {
2153 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent, ok_vlook(version)) < 0)
2154 goto jleave;
2155 ++gotcha;
2158 /* The user may have placed headers when editing */
2159 if(1){
2160 struct n_header_field *hfp;
2162 if((hfp = hp->h_user_headers) != NULL){
2163 if(!_sendout_header_list(fo, hfp, nodisp))
2164 goto jleave;
2165 ++gotcha;
2169 /* Custom headers, as via *customhdr* */
2170 if(!nosend_msg){
2171 struct n_header_field *hfp;
2173 /* With iconv support we likely have a cached result */
2174 if((hfp = hp->h_custom_headers) == NULL)
2175 hp->h_custom_headers = hfp = n_customhdr_query();
2176 if(hfp != NULL){
2177 if(!_sendout_header_list(fo, hfp, nodisp))
2178 goto jleave;
2179 ++gotcha;
2183 /* We don't need MIME unless.. we need MIME?! */
2184 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2185 hp->h_attach != NULL ||
2186 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2187 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2188 ++gotcha;
2189 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2190 goto jleave;
2191 if (hp->h_attach != NULL) {
2192 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2193 if (fprintf(fo,
2194 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2195 _sendout_boundary) < 0)
2196 goto jleave;
2197 } else {
2198 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2199 goto jleave;
2203 if (gotcha && (w & GNL))
2204 if (putc('\n', fo) == EOF)
2205 goto jleave;
2206 rv = 0;
2207 jleave:
2208 NYD_LEAVE;
2209 return rv;
2210 #undef FMT_CC_AND_BCC
2213 FL enum okay
2214 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2216 struct sendbundle sb;
2217 FILE *ibuf, *nfo, *nfi;
2218 char *tempMail;
2219 enum okay rv = STOP;
2220 NYD_ENTER;
2222 _sendout_error = FAL0;
2223 __sendout_ident = NULL;
2225 /* Update some globals we likely need first */
2226 time_current_update(&time_current, TRU1);
2228 if ((to = checkaddrs(to,
2229 (EACM_NORMAL |
2230 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2231 &_sendout_error)) == NULL)
2232 goto jleave;
2233 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2234 if (_sendout_error < 0)
2235 n_err(_("Some addressees were classified as \"hard error\"\n"));
2237 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2238 == NULL) {
2239 _sendout_error = TRU1;
2240 n_perr(_("temporary mail file"), 0);
2241 goto jleave;
2243 if ((nfi = Fopen(tempMail, "r")) == NULL)
2244 n_perr(tempMail, 0);
2245 Ftmp_release(&tempMail);
2246 if (nfi == NULL)
2247 goto jerr_o;
2249 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2250 goto jerr_io;
2252 memset(&sb, 0, sizeof sb);
2253 sb.sb_to = to;
2254 sb.sb_input = nfi;
2255 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2256 /* ..wait until we can write DEAD */
2257 _sendout_error = -1;
2259 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2260 jfail_dead:
2261 savedeadletter(nfi, TRU1);
2262 n_err(_("... message not sent\n"));
2263 jerr_io:
2264 Fclose(nfi);
2265 jerr_o:
2266 Fclose(nfo);
2267 _sendout_error = TRU1;
2268 goto jleave;
2271 if (_sendout_error < 0)
2272 goto jfail_dead;
2274 Fclose(nfo);
2275 rewind(nfi);
2277 to = a_sendout_file_a_pipe(to, nfi, &_sendout_error);
2279 if (_sendout_error)
2280 savedeadletter(nfi, FAL0);
2282 if (count(to = elide(to)) != 0) {
2283 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2284 sb.sb_to = to;
2285 /*sb.sb_input = nfi;*/
2286 if (_transfer(&sb))
2287 rv = OKAY;
2289 } else if (!_sendout_error)
2290 rv = OKAY;
2292 Fclose(nfi);
2293 jleave:
2294 if (_sendout_error)
2295 n_exit_status |= n_EXIT_SEND_ERROR;
2296 NYD_LEAVE;
2297 return rv;
2300 FL void
2301 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2302 struct n_string line;
2303 int c;
2304 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2305 ul_i bytes, lines;
2306 FILE *dbuf;
2307 char const *cp, *cpq;
2308 NYD_ENTER;
2310 if(!ok_blook(save))
2311 goto jleave;
2313 if(fflush_rewind_first){
2314 fflush(fp);
2315 rewind(fp);
2317 if(fsize(fp) == 0)
2318 goto jleave;
2320 cp = n_getdeadletter();
2321 cpq = n_shexp_quote_cp(cp, FAL0);
2323 if(n_poption & n_PO_DEBUG){
2324 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2325 goto jleave;
2328 if((dbuf = Fopen(cp, "w")) == NULL){
2329 n_perr(_("Cannot save to $DEAD"), 0);
2330 goto jleave;
2332 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2334 fprintf(n_stdout, "%s ", cpq);
2335 fflush(n_stdout);
2337 /* TODO savedeadletter() non-conforming: should check whether we have any
2338 * TODO headers, if not we need to place "something", anything will do.
2339 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2340 * TODO I/O error handling missing. Yuck! */
2341 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2342 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2343 ok_vlook(LOGNAME), time_current.tc_ctime);
2344 lines = 1;
2345 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2346 n_string_trunc(&line, 0);
2347 while((c = getc(fp)) != EOF && c != '\n')
2348 n_string_push_c(&line, c);
2350 /* TODO It may be that we have only some plain text. It may be that we
2351 * TODO have a complete MIME encoded message. We don't know, and we
2352 * TODO have no usable mechanism to dig it!! tWe need v15! */
2353 if(!(flags & a_INIT)){
2354 size_t i;
2356 /* Throw away leading empty lines! */
2357 if(line.s_len == 0)
2358 continue;
2359 for(i = 0; i < line.s_len; ++i){
2360 if(fieldnamechar(line.s_dat[i]))
2361 continue;
2362 if(line.s_dat[i] == ':'){
2363 flags |= a_INIT;
2364 break;
2365 }else{
2366 /* We have no headers, this is already a body line! */
2367 flags |= a_INIT | a_BODY;
2368 break;
2371 /* Well, i had to check whether the RFC allows this. Assume we've
2372 * passed the headers, too, then! */
2373 if(i == line.s_len)
2374 flags |= a_INIT | a_BODY;
2376 if(flags & a_BODY){
2377 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2378 n_string_unshift_c(&line, '>');
2380 if(line.s_len == 0)
2381 flags |= a_BODY | a_NL;
2382 else
2383 flags &= ~a_NL;
2385 n_string_push_c(&line, '\n');
2386 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2388 if(!(flags & a_NL)){
2389 putc('\n', dbuf);
2390 ++bytes;
2391 ++lines;
2393 n_string_gut(&line);
2395 Fclose(dbuf);
2396 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2397 fflush(n_stdout);
2399 rewind(fp);
2400 jleave:
2401 NYD_LEAVE;
2404 #undef SEND_LINESIZE
2406 /* s-it-mode */