Support `vput' for `cwd'
[s-mailx.git] / sendout.c
blob125cf29c0d6d137287c95997e3d18e411a677aec
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 * _outof(struct name *names, FILE *fo, bool_t *senderror);
108 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
109 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
111 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
113 /* */
114 static bool_t _transfer(struct sendbundle *sbp);
116 static bool_t __mta_start(struct sendbundle *sbp);
117 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
118 static void __mta_debug(struct sendbundle *sbp, char const *mta,
119 char const **args);
121 /* Create a Message-ID: header field. Use either host name or from address */
122 static char const *a_sendout_random_id(struct header *hp, bool_t msgid);
124 /* Format the given header line to not exceed 72 characters */
125 static int fmt(char const *str, struct name *np, FILE *fo,
126 enum fmt_flags ff);
128 /* Rewrite a message for resending, adding the Resent-Headers */
129 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
130 struct name *to, int add_resent);
132 static enum okay
133 _putname(char const *line, enum gfield w, enum sendaction action,
134 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
135 enum gfield addflags)
137 struct name *np;
138 enum okay rv = STOP;
139 NYD_ENTER;
141 np = lextract(line, GEXTRA | GFULL | addflags);
142 if (xp != NULL)
143 *xp = np;
144 if (np == NULL)
146 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
147 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
148 rv = OKAY;
149 else if (gotcha != NULL)
150 ++(*gotcha);
151 NYD_LEAVE;
152 return rv;
155 static int
156 _put_ct(FILE *fo, char const *contenttype, char const *charset)
158 int rv, i;
159 NYD2_ENTER;
161 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
162 goto jerr;
164 if (charset == NULL)
165 goto jend;
167 if (putc(';', fo) == EOF)
168 goto jerr;
169 ++rv;
171 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
172 if (putc('\n', fo) == EOF)
173 goto jerr;
174 ++rv;
177 /* C99 */{
178 size_t l = strlen(charset);
179 char *lcs = salloc(l +1);
181 for(l = 0; *charset != '\0'; ++l, ++charset)
182 lcs[l] = lowerconv(*charset);
183 lcs[l] = '\0';
184 charset = lcs;
186 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
187 goto jerr;
188 rv += i;
190 jend:
191 if (putc('\n', fo) == EOF)
192 goto jerr;
193 ++rv;
194 jleave:
195 NYD2_LEAVE;
196 return rv;
197 jerr:
198 rv = -1;
199 goto jleave;
202 SINLINE int
203 _put_cte(FILE *fo, enum conversion conv)
205 int rv;
206 NYD2_ENTER;
208 /* RFC 2045, 6.1.:
209 * This is the default value -- that is,
210 * "Content-Transfer-Encoding: 7BIT" is assumed if the
211 * Content-Transfer-Encoding header field is not present.
213 rv = (conv == CONV_7BIT) ? 0
214 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
215 mime_enc_from_conversion(conv));
216 NYD2_LEAVE;
217 return rv;
220 static int
221 _put_cd(FILE *fo, char const *cd, char const *filename)
223 struct str f;
224 si8_t mpc;
225 int rv;
226 NYD2_ENTER;
228 f.s = NULL;
230 /* xxx Ugly with the trailing space in case of wrap! */
231 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
232 goto jerr;
234 if (!(mpc = mime_param_create(&f, "filename", filename)))
235 goto jerr;
236 /* Always fold if result contains newlines */
237 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
238 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
239 goto jerr;
240 rv += 2;
242 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
243 goto jerr;
244 rv += (int)++f.l;
246 jleave:
247 NYD2_LEAVE;
248 return rv;
249 jerr:
250 rv = -1;
251 goto jleave;
255 static bool_t
256 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
257 bool_t rv;
258 NYD2_ENTER;
260 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
261 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
262 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
263 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
264 (!nodisp ? CONV_NONE : CONV_TOHDR),
265 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
266 putc('\n', fo) == EOF){
267 rv = FAL0;
268 break;
270 NYD_LEAVE;
271 return rv;
274 static int
275 a_sendout_attach_file(struct header *hp, struct attachment *ap, FILE *fo)
277 /* TODO of course, the MIME classification needs to performed once
278 * TODO only, not for each and every charset anew ... ;-// */
279 char *charset_iter_orig[2];
280 long offs;
281 int err = 0;
282 NYD_ENTER;
284 /* Is this already in target charset? Simply copy over */
285 if (ap->a_conv == AC_TMPFILE) {
286 err = a_sendout__attach_file(hp, ap, fo);
287 Fclose(ap->a_tmpf);
288 DBG( ap->a_tmpf = NULL; )
289 goto jleave;
292 /* If we don't apply charset conversion at all (fixed input=ouput charset)
293 * we also simply copy over, since it's the users desire */
294 if (ap->a_conv == AC_FIX_INCS) {
295 ap->a_charset = ap->a_input_charset;
296 err = a_sendout__attach_file(hp, ap, fo);
297 goto jleave;
298 } else
299 assert(ap->a_input_charset != NULL);
301 /* Otherwise we need to iterate over all possible output charsets */
302 if ((offs = ftell(fo)) == -1) {
303 err = EIO;
304 goto jleave;
306 charset_iter_recurse(charset_iter_orig);
307 for (charset_iter_reset(NULL);; charset_iter_next()) {
308 if (!charset_iter_is_valid()) {
309 err = EILSEQ;
310 break;
312 err = a_sendout__attach_file(hp, ap, fo);
313 if (err == 0 || (err != EILSEQ && err != EINVAL))
314 break;
315 clearerr(fo);
316 if (fseek(fo, offs, SEEK_SET) == -1) {
317 err = EIO;
318 break;
320 if (ap->a_conv != AC_DEFAULT) {
321 err = EILSEQ;
322 break;
324 ap->a_charset = NULL;
326 charset_iter_restore(charset_iter_orig);
327 jleave:
328 NYD_LEAVE;
329 return err;
332 static int
333 a_sendout__attach_file(struct header *hp, struct attachment *ap, FILE *fo)
335 int err = 0, do_iconv;
336 FILE *fi;
337 char const *charset;
338 enum conversion convert;
339 char *buf;
340 size_t bufsize, lncnt, inlen;
341 NYD_ENTER;
343 /* Either charset-converted temporary file, or plain path */
344 if (ap->a_conv == AC_TMPFILE) {
345 fi = ap->a_tmpf;
346 assert(ftell(fi) == 0);
347 } else if ((fi = Fopen(ap->a_path, "r")) == NULL) {
348 err = errno;
349 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0), strerror(err));
350 goto jleave;
353 /* MIME part header for attachment */
354 { char const *ct, *cp;
356 ct = ap->a_content_type;
357 charset = ap->a_charset;
358 convert = mime_type_classify_file(fi, (char const**)&ct,
359 &charset, &do_iconv);
360 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
361 ap->a_conv == AC_TMPFILE)
362 do_iconv = 0;
364 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
365 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
366 _put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
367 goto jerr_header;
369 if((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")){
370 struct name *np;
372 if((np = ap->a_content_id) != NULL)
373 cp = np->n_name;
374 else
375 cp = a_sendout_random_id(hp, FAL0);
377 if(cp != NULL && fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
378 goto jerr_header;
381 if ((cp = ap->a_content_description) != NULL &&
382 (fputs("Content-Description: ", fo) == EOF ||
383 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
384 ) < 0 || putc('\n', fo) == EOF))
385 goto jerr_header;
387 if (putc('\n', fo) == EOF) {
388 jerr_header:
389 err = errno;
390 goto jerr_fclose;
394 #ifdef HAVE_ICONV
395 if (iconvd != (iconv_t)-1)
396 n_iconv_close(iconvd);
397 if (do_iconv) {
398 if (asccasecmp(charset, ap->a_input_charset) &&
399 (iconvd = n_iconv_open(charset, ap->a_input_charset)
400 ) == (iconv_t)-1 && (err = errno) != 0) {
401 if (err == EINVAL)
402 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
403 charset);
404 else
405 n_err(_("iconv_open: %s\n"), strerror(err));
406 goto jerr_fclose;
409 #endif
411 bufsize = SEND_LINESIZE;
412 buf = smalloc(bufsize);
413 if (convert == CONV_TOQP
414 #ifdef HAVE_ICONV
415 || iconvd != (iconv_t)-1
416 #endif
418 lncnt = fsize(fi);
419 for (;;) {
420 if (convert == CONV_TOQP
421 #ifdef HAVE_ICONV
422 || iconvd != (iconv_t)-1
423 #endif
425 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
426 break;
427 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
428 break;
429 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
430 err = errno;
431 goto jerr;
434 if (ferror(fi))
435 err = EDOM;
436 jerr:
437 free(buf);
438 jerr_fclose:
439 if (ap->a_conv != AC_TMPFILE)
440 Fclose(fi);
441 jleave:
442 NYD_LEAVE;
443 return err;
446 static bool_t
447 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
449 bool_t v15, rv = FAL0;
450 char *shost, *from;
451 #ifdef HAVE_SMTP
452 char const *smtp;
453 #endif
454 NYD_ENTER;
456 v15 = ok_blook(v15_compat);
457 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
458 from = ((signing_caps || !v15 || shost == NULL)
459 ? skin(myorigin(sbp->sb_hp)) : NULL);
461 if (signing_caps) {
462 if (from == NULL) {
463 #ifdef HAVE_SSL
464 n_err(_("No *from* address for signing specified\n"));
465 goto jleave;
466 #endif
467 } else
468 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
471 #ifdef HAVE_SMTP
472 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
473 char const *proto;
475 /* *smtp* OBSOLETE message in mta_start() */
476 if ((smtp = ok_vlook(mta)) == NULL ||
477 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
478 rv = TRU1;
479 goto jleave;
483 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
484 goto jleave;
486 if (v15) {
487 if (shost == NULL) {
488 if (from == NULL)
489 goto jenofrom;
490 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
491 } else
492 __sendout_ident = sbp->sb_url.url_u_h.s;
493 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
494 goto jleave;
495 } else {
496 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
497 n_err(_("New-style URL used without *v15-compat* being set\n"));
498 goto jleave;
500 /* TODO part of the entire myorigin() disaster, get rid of this! */
501 if (from == NULL) {
502 jenofrom:
503 n_err(_("Your configuration requires a *from* address, "
504 "but none was given\n"));
505 goto jleave;
507 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
508 goto jleave;
509 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
512 rv = TRU1;
513 #endif /* HAVE_SMTP */
514 #if defined HAVE_SSL || defined HAVE_SMTP
515 jleave:
516 #endif
517 NYD_LEAVE;
518 return rv;
521 static int
522 a_sendout_attach_msg(struct header *hp, struct attachment *ap, FILE *fo)
524 struct message *mp;
525 char const *ccp;
526 int rv;
527 NYD_ENTER;
528 n_UNUSED(hp);
530 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
531 "Content-Disposition: inline\n", _sendout_boundary);
532 if ((ccp = ap->a_content_description) != NULL)
533 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
534 putc('\n', fo);
536 mp = message + ap->a_msgno - 1;
537 touch(mp);
538 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
539 NYD_LEAVE;
540 return rv;
543 static int
544 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
545 char const *contenttype, char const *charset)
547 struct attachment *att;
548 int rv = -1;
549 NYD_ENTER;
551 fputs("This is a multi-part message in MIME format.\n", fo);
552 if (fsize(fi) != 0) {
553 char const *cp;
554 char *buf;
555 size_t sz, bufsize, cnt;
557 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
558 _put_ct(fo, contenttype, charset) < 0 ||
559 _put_cte(fo, convert) < 0 ||
560 fprintf(fo, "Content-Disposition: inline\n") < 0)
561 goto jleave;
562 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
563 (cp = a_sendout_random_id(hp, FAL0)) != NULL &&
564 fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
565 goto jleave;
566 if(putc('\n', fo) == EOF)
567 goto jleave;
569 buf = smalloc(bufsize = SEND_LINESIZE);
570 if (convert == CONV_TOQP
571 #ifdef HAVE_ICONV
572 || iconvd != (iconv_t)-1
573 #endif
575 fflush(fi);
576 cnt = fsize(fi);
578 for (;;) {
579 if (convert == CONV_TOQP
580 #ifdef HAVE_ICONV
581 || iconvd != (iconv_t)-1
582 #endif
584 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
585 break;
586 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
587 break;
589 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
590 free(buf);
591 goto jleave;
594 free(buf);
596 if (ferror(fi))
597 goto jleave;
600 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
601 if (att->a_msgno) {
602 if (a_sendout_attach_msg(hp, att, fo) != 0)
603 goto jleave;
604 } else if (a_sendout_attach_file(hp, att, fo) != 0)
605 goto jleave;
608 /* the final boundary with two attached dashes */
609 fprintf(fo, "\n--%s--\n", _sendout_boundary);
610 rv = 0;
611 jleave:
612 NYD_LEAVE;
613 return rv;
616 static FILE *
617 infix(struct header *hp, FILE *fi) /* TODO check */
619 FILE *nfo, *nfi = NULL;
620 char *tempMail;
621 char const *contenttype, *charset = NULL;
622 enum conversion convert;
623 int do_iconv = 0, err;
624 #ifdef HAVE_ICONV
625 char const *tcs, *convhdr = NULL;
626 #endif
627 NYD_ENTER;
629 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
630 == NULL) {
631 n_perr(_("temporary mail file"), 0);
632 goto jleave;
634 if ((nfi = Fopen(tempMail, "r")) == NULL) {
635 n_perr(tempMail, 0);
636 Fclose(nfo);
638 Ftmp_release(&tempMail);
639 if (nfi == NULL)
640 goto jleave;
642 n_pstate &= ~n_PS_HEADER_NEEDED_MIME; /* TODO hack -> be carrier tracked */
644 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
645 if((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL)
646 contenttype = n_poption_arg_Mm;
647 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
649 #ifdef HAVE_ICONV
650 tcs = ok_vlook(ttycharset);
651 if ((convhdr = need_hdrconv(hp))) {
652 if (iconvd != (iconv_t)-1) /* XXX */
653 n_iconv_close(iconvd);
654 if (asccasecmp(convhdr, tcs) != 0 &&
655 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
656 (err = errno) != 0)
657 goto jiconv_err;
659 #endif
660 if (puthead(FAL0, hp, nfo,
661 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
662 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
663 goto jerr;
664 #ifdef HAVE_ICONV
665 if (iconvd != (iconv_t)-1)
666 n_iconv_close(iconvd);
667 #endif
669 #ifdef HAVE_ICONV
670 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
671 if (asccasecmp(charset, tcs) != 0 &&
672 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
673 (err = errno) != 0) {
674 jiconv_err:
675 if (err == EINVAL)
676 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
677 else
678 n_perr("iconv_open", 0);
679 goto jerr;
682 #endif
684 if (hp->h_attach != NULL) {
685 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
686 goto jerr;
687 } else {
688 size_t sz, bufsize, cnt;
689 char *buf;
691 if (convert == CONV_TOQP
692 #ifdef HAVE_ICONV
693 || iconvd != (iconv_t)-1
694 #endif
696 fflush(fi);
697 cnt = fsize(fi);
699 buf = smalloc(bufsize = SEND_LINESIZE);
700 for (err = 0;;) {
701 if (convert == CONV_TOQP
702 #ifdef HAVE_ICONV
703 || iconvd != (iconv_t)-1
704 #endif
706 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
707 break;
708 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
709 break;
710 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
711 err = 1;
712 break;
715 free(buf);
717 if (err || ferror(fi)) {
718 jerr:
719 Fclose(nfo);
720 Fclose(nfi);
721 #ifdef HAVE_ICONV
722 if (iconvd != (iconv_t)-1)
723 n_iconv_close(iconvd);
724 #endif
725 nfi = NULL;
726 goto jleave;
730 #ifdef HAVE_ICONV
731 if (iconvd != (iconv_t)-1)
732 n_iconv_close(iconvd);
733 #endif
735 fflush(nfo);
736 if ((err = ferror(nfo)))
737 n_perr(_("temporary mail file"), 0);
738 Fclose(nfo);
739 if (!err) {
740 fflush_rewind(nfi);
741 Fclose(fi);
742 } else {
743 Fclose(nfi);
744 nfi = NULL;
746 jleave:
747 NYD_LEAVE;
748 return nfi;
751 static bool_t
752 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
754 char const *from;
755 bool_t rv = TRU1;
756 NYD_ENTER;
758 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
759 * TODO not yet checked */
760 if (!ok_blook(disposition_notification_send))
761 goto jleave;
763 if (mdn != NULL && mdn != (struct name*)0x1)
764 from = mdn->n_name;
765 else if ((from = myorigin(hp)) == NULL) {
766 if (n_poption & n_PO_D_V)
767 n_err(_("*disposition-notification-send*: *from* not set\n"));
768 goto jleave;
771 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
772 rv = FAL0;
773 jleave:
774 NYD_LEAVE;
775 return rv;
778 static int
779 sendmail_internal(void *v, int recipient_record)
781 struct header head;
782 char *str = v;
783 int rv;
784 NYD_ENTER;
786 memset(&head, 0, sizeof head);
787 head.h_to = lextract(str, GTO | GFULL);
788 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
789 NYD_LEAVE;
790 return (rv == 0);
793 static struct name *
794 _outof(struct name *names, FILE *fo, bool_t *senderror)
796 ui32_t pipecnt, xcnt, i;
797 int *fda;
798 char const *sh;
799 struct name *np;
800 FILE *fin = NULL, *fout;
801 NYD_ENTER;
803 /* Look through all recipients and do a quick return if no file or pipe
804 * addressee is found */
805 fda = NULL; /* Silence cc */
806 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
807 if (np->n_type & GDEL)
808 continue;
809 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
810 case NAME_ADDRSPEC_ISFILE:
811 ++xcnt;
812 break;
813 case NAME_ADDRSPEC_ISPIPE:
814 ++pipecnt;
815 break;
818 if (pipecnt == 0 && xcnt == 0)
819 goto jleave;
821 /* Otherwise create an array of file descriptors for each found pipe
822 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
823 * each pipe subprocess needs its very own file descriptor, and we need
824 * to deal with that.
825 * To make our life a bit easier let's just use the auto-reclaimed
826 * string storage */
827 if (pipecnt == 0 || (n_poption & n_PO_DEBUG)) {
828 pipecnt = 0;
829 fda = NULL;
830 sh = NULL;
831 } else {
832 fda = salloc(sizeof(int) * pipecnt);
833 for (i = 0; i < pipecnt; ++i)
834 fda[i] = -1;
835 sh = ok_vlook(SHELL);
838 for (np = names; np != NULL; np = np->n_flink) {
839 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
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 (image < 0) {
856 int c;
857 char *tempEdit;
859 if ((fout = Ftmp(&tempEdit, "outof",
860 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
861 n_perr(_("Creation of temporary image"), 0);
862 *senderror = TRU1;
863 goto jcant;
865 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
866 _CLOEXEC_SET(image);
867 for (i = 0; i < pipecnt; ++i) {
868 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
869 if (fd < 0) {
870 close(image);
871 image = -1;
872 pipecnt = i;
873 break;
875 fda[i] = fd;
876 _CLOEXEC_SET(fd);
879 Ftmp_release(&tempEdit);
881 if (image < 0) {
882 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
883 *senderror = TRU1;
884 Fclose(fout);
885 goto jcant;
888 fprintf(fout, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
889 c = EOF;
890 while (i = c, (c = getc(fo)) != EOF)
891 putc(c, fout);
892 rewind(fo);
893 if ((int)i != '\n')
894 putc('\n', fout);
895 putc('\n', fout);
896 fflush(fout);
897 if (ferror(fout)) {
898 n_perr(_("Finalizing write of temporary image"), 0);
899 Fclose(fout);
900 goto jcantfout;
902 Fclose(fout);
904 /* If we have to serve file addressees, open reader */
905 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
906 n_perr(_("Failed to open a temporary image duplicate"), 0);
907 jcantfout:
908 *senderror = TRU1;
909 close(image);
910 image = -1;
911 goto jcant;
914 /* From now on use xcnt as a counter for pipecnt */
915 xcnt = 0;
918 /* Now either copy "image" to the desired file or give it as the standard
919 * input to the desired program as appropriate */
920 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
921 int pid;
922 sigset_t nset;
924 sigemptyset(&nset);
925 sigaddset(&nset, SIGHUP);
926 sigaddset(&nset, SIGINT);
927 sigaddset(&nset, SIGQUIT);
928 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
929 np->n_name + 1, NULL, NULL);
930 if (pid < 0) {
931 n_err(_("Piping message to %s failed\n"),
932 n_shexp_quote_cp(np->n_name, FAL0));
933 *senderror = TRU1;
934 goto jcant;
936 free_child(pid);
937 } else {
938 int c;
939 char const *fname, *fnameq;
941 if ((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
942 *senderror = TRU1;
943 goto jcant;
945 fnameq = n_shexp_quote_cp(fname, FAL0);
947 if(fname[0] == '-' && fname[1] == '\0')
948 fout = n_stdout;
949 else if ((fout = Zopen(fname, "a")) == NULL) {
950 n_err(_("Writing message to %s failed: %s\n"),
951 fnameq, strerror(errno));
952 *senderror = TRU1;
953 goto jcant;
955 rewind(fin);
956 while ((c = getc(fin)) != EOF)
957 putc(c, fout);
958 if (ferror(fout)) {
959 n_err(_("Writing message to %s failed: %s\n"),
960 fnameq, _("write error"));
961 *senderror = TRU1;
963 if(fout != n_stdout)
964 Fclose(fout);
967 jcant:
968 if (image < 0)
969 goto jdelall;
972 jleave:
973 if (fin != NULL)
974 Fclose(fin);
975 for (i = 0; i < pipecnt; ++i)
976 close(fda[i]);
977 if (image >= 0) {
978 close(image);
979 image = -1;
981 NYD_LEAVE;
982 return names;
984 jdelall:
985 while (np != NULL) {
986 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
987 np->n_type |= GDEL;
988 np = np->n_flink;
990 goto jleave;
993 static bool_t
994 mightrecord(FILE *fp, struct name *to, bool_t resend)
996 char *cp, *cq;
997 char const *ep;
998 bool_t rv = TRU1;
999 NYD_ENTER;
1001 if (n_poption & n_PO_DEBUG)
1002 cp = NULL;
1003 else if (to != NULL) {
1004 cp = savestr(skinned_name(to));
1005 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
1007 *cq = '\0';
1008 } else
1009 cp = ok_vlook(record);
1011 if (cp != NULL) {
1012 if ((ep = expand(cp)) == NULL) {
1013 ep = "NULL";
1014 goto jbail;
1017 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
1018 which_protocol(ep) == PROTO_FILE) {
1019 size_t i = strlen(cp);
1020 cq = salloc(i + 1 +1);
1021 cq[0] = '+';
1022 memcpy(cq + 1, cp, i +1);
1023 cp = cq;
1024 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
1025 ep = "NULL";
1026 goto jbail;
1030 if (!a_sendout__savemail(ep, fp, resend)) {
1031 jbail:
1032 n_err(_("Failed to save message in %s - message not sent\n"),
1033 n_shexp_quote_cp(ep, FAL0));
1034 n_exit_status |= n_EXIT_ERR;
1035 savedeadletter(fp, 1);
1036 rv = FAL0;
1039 NYD_LEAVE;
1040 return rv;
1043 static bool_t
1044 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1045 FILE *fo;
1046 size_t bufsize, buflen, cnt;
1047 bool_t rv, emptyline;
1048 char *buf;
1049 NYD_ENTER;
1051 buf = smalloc(bufsize = LINESIZE);
1052 rv = emptyline = FAL0;
1054 if((fo = Zopen(name, "a+")) == NULL){
1055 if((fo = Zopen(name, "wx")) == NULL){
1056 n_perr(name, 0);
1057 goto j_leave;
1059 emptyline = TRU1;
1062 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1063 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1065 rv = TRU1;
1067 if(!emptyline){
1068 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1069 switch(fread(buf, sizeof *buf, 2, fo)){
1070 case 2:
1071 if(buf[1] != '\n')
1072 emptyline = TRU1;
1073 break;
1074 case 1:
1075 if(buf[0] != '\n')
1076 emptyline = TRU1;
1077 break;
1078 default:
1079 if(ferror(fo)){
1080 n_perr(name, 0);
1081 rv = FAL0;
1082 goto jleave;
1085 if(emptyline){
1086 putc('\n', fo);
1087 fflush(fo);
1092 fflush_rewind(fp);
1094 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1095 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1096 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1097 /* Only if we are resending it can happen that we have to quote From_
1098 * lines here; we don't generate messages which are ambiguous ourselves */
1099 if(resend){
1100 if(emptyline && is_head(buf, buflen, FAL0))
1101 putc('>', fo);
1102 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1104 emptyline = (buflen > 0 && *buf == '\n');
1105 fwrite(buf, sizeof *buf, buflen, fo);
1107 if(buflen > 0 && buf[buflen - 1] != '\n')
1108 putc('\n', fo);
1109 putc('\n', fo);
1110 fflush(fo);
1111 if(ferror(fo)){
1112 n_perr(name, 0);
1113 rv = FAL0;
1116 jleave:
1117 really_rewind(fp);
1118 if(Fclose(fo) != 0)
1119 rv = FAL0;
1120 j_leave:
1121 free(buf);
1122 NYD_LEAVE;
1123 return rv;
1126 static bool_t
1127 _transfer(struct sendbundle *sbp)
1129 struct name *np;
1130 ui32_t cnt;
1131 bool_t rv = TRU1;
1132 NYD_ENTER;
1134 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1135 char const k[] = "smime-encrypt-", *cp;
1136 size_t nl = strlen(np->n_name);
1137 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1138 memcpy(vs, k, sizeof(k) -1);
1139 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1141 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1142 #ifdef HAVE_SSL
1143 FILE *ef;
1145 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1146 FILE *fisave = sbp->sb_input;
1147 struct name *nsave = sbp->sb_to;
1149 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1150 sbp->sb_input = ef;
1151 if (!__mta_start(sbp))
1152 rv = FAL0;
1153 sbp->sb_to = nsave;
1154 sbp->sb_input = fisave;
1156 Fclose(ef);
1157 } else {
1158 #else
1159 n_err(_("No SSL support compiled in\n"));
1160 rv = FAL0;
1161 #endif
1162 n_err(_("Message not sent to: %s\n"), np->n_name);
1163 _sendout_error = TRU1;
1164 #ifdef HAVE_SSL
1166 #endif
1167 rewind(sbp->sb_input);
1169 if (np->n_flink != NULL)
1170 np->n_flink->n_blink = np->n_blink;
1171 if (np->n_blink != NULL)
1172 np->n_blink->n_flink = np->n_flink;
1173 if (np == sbp->sb_to)
1174 sbp->sb_to = np->n_flink;
1175 np = np->n_flink;
1176 } else {
1177 ++cnt;
1178 np = np->n_flink;
1180 ac_free(vs);
1183 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1184 rv = FAL0;
1185 NYD_LEAVE;
1186 return rv;
1189 static bool_t
1190 __mta_start(struct sendbundle *sbp)
1192 pid_t pid;
1193 sigset_t nset;
1194 char const **args, *mta;
1195 bool_t rv;
1196 NYD_ENTER;
1198 /* Let rv mean "is smtp-based MTA" */
1199 if((mta = ok_vlook(smtp)) != NULL){
1200 n_OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1201 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1202 * that *smtp* is misused with file:// or so */
1203 if(n_servbyname(mta, NULL) == NULL)
1204 mta = savecat("smtp://", mta);
1205 rv = TRU1;
1206 }else{
1207 char const *proto;
1209 if((proto = ok_vlook(sendmail)) != NULL)
1210 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1211 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1212 if(proto == NULL){
1213 mta = VAL_MTA;
1214 rv = FAL0;
1215 }else
1216 rv = TRU1;
1218 /* TODO for now this is pretty hacky: in v15 we should simply create
1219 * TODO an URL object; i.e., be able to do so, and it does it right
1220 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1221 else if((proto = n_servbyname(mta, NULL)) != NULL){
1222 if(*proto == '\0'){
1223 mta += sizeof("file://") -1;
1224 rv = FAL0;
1225 }else
1226 rv = TRU1;
1227 }else
1228 rv = FAL0;
1231 if(!rv){
1232 char const *mta_base;
1234 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1235 n_err(_("*mta* variable expansion failure: %s\n"),
1236 n_shexp_quote_cp(mta_base, FAL0));
1237 goto jstop;
1240 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1241 if (n_poption & n_PO_DEBUG) {
1242 __mta_debug(sbp, mta, args);
1243 rv = TRU1;
1244 goto jleave;
1246 } else {
1247 n_UNINIT(args, NULL);
1248 #ifndef HAVE_SMTP
1249 n_err(_("No SMTP support compiled in\n"));
1250 goto jstop;
1251 #else
1252 if (n_poption & n_PO_DEBUG) {
1253 (void)smtp_mta(sbp);
1254 rv = TRU1;
1255 goto jleave;
1257 #endif
1260 /* Fork, set up the temporary mail file as standard input for "mail", and
1261 * exec with the user list we generated far above */
1262 if ((pid = fork_child()) == -1) {
1263 n_perr("fork", 0);
1264 jstop:
1265 savedeadletter(sbp->sb_input, 0);
1266 _sendout_error = TRU1;
1267 goto jleave;
1269 if (pid == 0) {
1270 sigemptyset(&nset);
1271 sigaddset(&nset, SIGHUP);
1272 sigaddset(&nset, SIGINT);
1273 sigaddset(&nset, SIGQUIT);
1274 sigaddset(&nset, SIGTSTP);
1275 sigaddset(&nset, SIGTTIN);
1276 sigaddset(&nset, SIGTTOU);
1277 /* n_stdin = */freopen("/dev/null", "r", stdin);
1278 #ifdef HAVE_SMTP
1279 if (rv) {
1280 prepare_child(&nset, 0, 1);
1281 if (smtp_mta(sbp))
1282 _exit(n_EXIT_OK);
1283 } else
1284 #endif
1286 char const *ecp;
1287 int e;
1289 prepare_child(&nset, fileno(sbp->sb_input), -1);
1290 execv(mta, n_UNCONST(args));
1291 e = errno;
1292 ecp = (e != ENOENT) ? strerror(e)
1293 : _("executable not found (adjust *mta* variable)");
1294 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1296 savedeadletter(sbp->sb_input, 1);
1297 n_err(_("... message not sent\n"));
1298 _exit(n_EXIT_ERR);
1301 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1302 if (!(rv = wait_child(pid, NULL)))
1303 _sendout_error = TRU1;
1304 } else {
1305 free_child(pid);
1306 rv = TRU1;
1308 jleave:
1309 NYD_LEAVE;
1310 return rv;
1313 static char const **
1314 __mta_prepare_args(struct name *to, struct header *hp)
1316 size_t vas_cnt, i, j;
1317 char **vas;
1318 char const **args, *cp, *cp_v15compat;
1319 bool_t snda;
1320 NYD_ENTER;
1322 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1323 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1324 if((cp = ok_vlook(mta_arguments)) == NULL)
1325 cp = cp_v15compat;
1326 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1327 vas_cnt = 0;
1328 vas = NULL;
1329 } else {
1330 /* Don't assume anything on the content but do allocate exactly j slots;
1331 * like this getrawlist will never overflow (and return -1) */
1332 j = strlen(cp);
1333 vas = n_lofi_alloc(sizeof(*vas) * j);
1334 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1337 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1338 args = salloc(i * sizeof(char*));
1340 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1341 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1342 if((cp = ok_vlook(mta_argv0)) == NULL)
1343 cp = cp_v15compat;
1344 if(cp == NULL)
1345 cp = VAL_MTA_ARGV0;
1346 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1348 if ((snda = ok_blook(sendmail_no_default_arguments)))
1349 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1350 "not *sendmail-no-default-arguments*"));
1351 snda |= ok_blook(mta_no_default_arguments);
1352 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1353 i = 1;
1354 else {
1355 args[1] = "-i";
1356 i = 2;
1357 if (ok_blook(metoo))
1358 args[i++] = "-m";
1359 if (n_poption & n_PO_VERB)
1360 args[i++] = "-v";
1363 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1364 args[i] = n_smopts[j];
1366 for (j = 0; j < vas_cnt; ++j, ++i)
1367 args[i] = vas[j];
1369 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1370 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1371 * The interdependency with -t has been resolved in puthead() */
1372 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1373 struct name const *np;
1375 if (hp != NULL && (np = hp->h_from) != NULL) {
1376 /* However, what wasn't resolved there was the case that the message
1377 * specified multiple From: addresses and a Sender: */
1378 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1379 np = hp->h_sender;
1381 if (np->n_fullextra != NULL) {
1382 args[i++] = "-F";
1383 args[i++] = np->n_fullextra;
1385 cp = np->n_name;
1386 } else {
1387 assert(n_poption_arg_r == NULL);
1388 cp = skin(myorigin(NULL));
1391 if (cp != NULL) {
1392 args[i++] = "-f";
1393 args[i++] = cp;
1397 /* Terminate option list to avoid false interpretation of system-wide
1398 * aliases that start with hyphen */
1399 if (!snda)
1400 args[i++] = "--";
1402 /* Receivers follow */
1403 for (; to != NULL; to = to->n_flink)
1404 if (!(to->n_type & GDEL))
1405 args[i++] = to->n_name;
1406 args[i] = NULL;
1408 if(vas != NULL)
1409 n_lofi_free(vas);
1410 NYD_LEAVE;
1411 return args;
1414 static void
1415 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1417 size_t cnt, bufsize, llen;
1418 char *buf;
1419 NYD_ENTER;
1421 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1422 for (; *args != NULL; ++args)
1423 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1424 n_err("\n");
1426 fflush_rewind(sbp->sb_input);
1428 cnt = fsize(sbp->sb_input);
1429 buf = NULL;
1430 bufsize = 0;
1431 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1432 buf[--llen] = '\0';
1433 n_err(">>> %s\n", buf);
1435 if (buf != NULL)
1436 free(buf);
1437 NYD_LEAVE;
1440 static char const *
1441 a_sendout_random_id(struct header *hp, bool_t msgid)
1443 struct tm *tmp;
1444 char const *h;
1445 size_t rl, i;
1446 char *rv, sep;
1447 NYD_ENTER;
1449 rv = NULL;
1451 if(msgid && hp != NULL && hp->h_message_id != NULL){
1452 rv = hp->h_message_id->n_name;
1453 goto jleave;
1456 if(ok_blook(message_id_disable))
1457 goto jleave;
1459 sep = '%';
1460 rl = 5;
1461 if((h = __sendout_ident) != NULL)
1462 goto jgen;
1463 if(ok_vlook(hostname) != NULL){
1464 h = nodename(1);
1465 sep = '@';
1466 rl = 8;
1467 goto jgen;
1469 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1470 goto jgen;
1471 goto jleave;
1473 jgen:
1474 tmp = &time_current.tc_gm;
1475 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1476 rv = salloc(i +1);
1477 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1478 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1479 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1480 getrandstring(rl), sep, h);
1481 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1482 jleave:
1483 NYD_LEAVE;
1484 return rv;
1487 static int
1488 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1490 enum {
1491 m_INIT = 1<<0,
1492 m_COMMA = 1<<1,
1493 m_NOPF = 1<<2,
1494 m_NONAME = 1<<3,
1495 m_CSEEN = 1<<4
1496 } m = (ff & GCOMMA) ? m_COMMA : 0;
1497 ssize_t col, len;
1498 int rv = 1;
1499 NYD_ENTER;
1501 col = strlen(str);
1502 if (col) {
1503 fwrite(str, sizeof *str, col, fo);
1504 #undef _X
1505 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1506 if (ff & GFILES) {
1508 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1509 _X("references:") || _X("disposition-notification-to:"))
1510 m |= m_NOPF | m_NONAME;
1511 else if (ok_blook(add_file_recipients)) {
1513 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1514 m |= m_NOPF;
1515 #undef _X
1518 for (; np != NULL; np = np->n_flink) {
1519 if(np->n_type & GDEL)
1520 continue;
1521 if(is_addr_invalid(np,
1522 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1523 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1524 !(ff & FMT_INC_INVADDR))
1525 continue;
1527 /* File and pipe addresses only printed with set *add-file-recipients* */
1528 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1529 continue;
1531 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1532 if (putc(',', fo) == EOF)
1533 goto jleave;
1534 m |= m_CSEEN;
1535 ++col;
1538 len = strlen(np->n_fullname);
1539 if (np->n_type & GREF)
1540 len += 2;
1541 ++col; /* The separating space */
1542 if ((m & m_INIT) && /*col > 1 &&*/
1543 UICMP(z, col + len, >,
1544 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1545 if (fputs("\n ", fo) == EOF)
1546 goto jleave;
1547 col = 1;
1548 m &= ~m_CSEEN;
1549 } else
1550 putc(' ', fo);
1551 m = (m & ~m_CSEEN) | m_INIT;
1553 /* C99 */{
1554 char *hb;
1556 /* GREF needs to be placed in angle brackets, but which are missing */
1557 hb = np->n_fullname;
1558 if(np->n_type & GREF){
1559 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1560 hb = n_lofi_alloc(len +1);
1561 len -= 2;
1562 hb[0] = '<';
1563 hb[len + 1] = '>';
1564 hb[len + 2] = '\0';
1565 memcpy(&hb[1], np->n_fullname, len);
1566 len += 2;
1568 len = xmime_write(hb, len, fo,
1569 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1570 if(np->n_type & GREF)
1571 n_lofi_free(hb);
1573 if (len < 0)
1574 goto jleave;
1575 col += len;
1578 if (putc('\n', fo) != EOF)
1579 rv = 0;
1580 jleave:
1581 NYD_LEAVE;
1582 return rv;
1585 static int
1586 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1587 int add_resent)
1589 size_t cnt, c, bufsize = 0;
1590 char *buf = NULL;
1591 char const *cp;
1592 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1593 int rv = 1;
1594 NYD_ENTER;
1596 cnt = mp->m_size;
1598 /* Write the Resent-Fields */
1599 if (add_resent) {
1600 fputs("Resent-", fo);
1601 mkdate(fo, "Date");
1602 if ((cp = myaddrs(NULL)) != NULL) {
1603 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1604 &fromfield, 0))
1605 goto jleave;
1607 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1608 if ((cp = ok_vlook(sender)) != NULL) {
1609 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1610 &senderfield, 0))
1611 goto jleave;
1613 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1614 goto jleave;
1615 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1616 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1617 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1618 goto jleave;
1621 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1622 goto jleave;
1623 if (!_check_dispo_notif(mdn, NULL, fo))
1624 goto jleave;
1626 /* Write the original headers */
1627 while (cnt > 0) {
1628 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1629 break;
1630 if (ascncasecmp("status:", buf, 7) &&
1631 ascncasecmp("disposition-notification-to:", buf, 28) &&
1632 !is_head(buf, c, FAL0))
1633 fwrite(buf, sizeof *buf, c, fo);
1634 if (cnt > 0 && *buf == '\n')
1635 break;
1638 /* Write the message body */
1639 while (cnt > 0) {
1640 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1641 break;
1642 if (cnt == 0 && *buf == '\n')
1643 break;
1644 fwrite(buf, sizeof *buf, c, fo);
1646 if (buf != NULL)
1647 free(buf);
1648 if (ferror(fo)) {
1649 n_perr(_("temporary mail file"), 0);
1650 goto jleave;
1652 rv = 0;
1653 jleave:
1654 NYD_LEAVE;
1655 return rv;
1658 FL int
1659 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1660 struct attachment *attach, char const *quotefile, int recipient_record)
1662 struct header head;
1663 struct str in, out;
1664 NYD_ENTER;
1666 memset(&head, 0, sizeof head);
1668 /* The given subject may be in RFC1522 format. */
1669 if (subject != NULL) {
1670 in.s = n_UNCONST(subject);
1671 in.l = strlen(subject);
1672 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1673 head.h_subject = out.s;
1675 head.h_to = to;
1676 head.h_cc = cc;
1677 head.h_bcc = bcc;
1678 head.h_attach = attach;
1680 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1682 if (subject != NULL)
1683 free(out.s);
1684 NYD_LEAVE;
1685 return 0;
1688 FL int
1689 c_sendmail(void *v)
1691 int rv;
1692 NYD_ENTER;
1694 rv = sendmail_internal(v, 0);
1695 NYD_LEAVE;
1696 return rv;
1699 FL int
1700 c_Sendmail(void *v)
1702 int rv;
1703 NYD_ENTER;
1705 rv = sendmail_internal(v, 1);
1706 NYD_LEAVE;
1707 return rv;
1710 FL enum okay
1711 mail1(struct header *hp, int printheaders, struct message *quote,
1712 char const *quotefile, int recipient_record, int doprefix)
1714 struct n_sigman sm;
1715 struct sendbundle sb;
1716 struct name *to;
1717 bool_t dosign;
1718 FILE *mtf, *nmtf;
1719 enum okay rv;
1720 NYD_ENTER;
1722 _sendout_error = FAL0;
1723 __sendout_ident = NULL;
1724 rv = STOP;
1725 mtf = NULL;
1727 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1728 case 0:
1729 break;
1730 default:
1731 goto jleave;
1734 /* Update some globals we likely need first */
1735 time_current_update(&time_current, TRU1);
1737 /* Collect user's mail from standard input. Get the result as mtf */
1738 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1739 if (mtf == NULL)
1740 goto jleave;
1742 dosign = TRUM1;
1744 /* */
1745 if(n_psonce & n_PSO_INTERACTIVE){
1746 if (ok_blook(asksign))
1747 dosign = getapproval(_("Sign this message"), TRU1);
1750 if (fsize(mtf) == 0) {
1751 if (n_poption & n_PO_E_FLAG)
1752 goto jleave;
1753 if (hp->h_subject == NULL)
1754 fprintf(n_stdout, _("No message, no subject; hope that's ok\n"));
1755 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1756 fprintf(n_stdout, _("Null message body; hope that's ok\n"));
1759 if (dosign == TRUM1)
1760 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1761 #ifndef HAVE_SSL
1762 if (dosign) {
1763 n_err(_("No SSL support compiled in\n"));
1764 goto jleave;
1766 #endif
1768 /* XXX Update time_current again; once collect() offers editing of more
1769 * XXX headers, including Date:, this must only happen if Date: is the
1770 * XXX same that it was before collect() (e.g., postponing etc.).
1771 * XXX But *do* update otherwise because the mail seems to be backdated
1772 * XXX if the user edited some time, which looks odd and it happened
1773 * XXX to me that i got mis-dated response mails due to that... */
1774 time_current_update(&time_current, TRU1);
1776 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1777 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1778 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1779 * TODO header fields ONCE, call that ONCE after user editing etc. has
1780 * TODO completed (one edit cycle) */
1782 /* Take the user names from the combined to and cc lists and do all the
1783 * alias processing. The POSIX standard says:
1784 * The names shall be substituted when alias is used as a recipient
1785 * address specified by the user in an outgoing message (that is,
1786 * other recipients addressed indirectly through the reply command
1787 * shall not be substituted in this manner).
1788 * S-nail thus violates POSIX, as has been pointed out correctly by
1789 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1790 * disputable anyway. Go for user friendliness */
1792 to = namelist_vaporise_head(hp,
1793 (EACM_NORMAL |
1794 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1795 TRU1, &_sendout_error);
1796 if (to == NULL) {
1797 n_err(_("No recipients specified\n"));
1798 goto jfail_dead;
1800 if (_sendout_error < 0) {
1801 n_err(_("Some addressees were classified as \"hard error\"\n"));
1802 goto jfail_dead;
1805 /* */
1806 memset(&sb, 0, sizeof sb);
1807 sb.sb_hp = hp;
1808 sb.sb_to = to;
1809 sb.sb_input = mtf;
1810 if ((dosign || count_nonlocal(to) > 0) &&
1811 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1812 /* TODO saving $DEAD and recovering etc is not yet well defined */
1813 goto jfail_dead;
1815 /* 'Bit ugly kind of control flow until we find a charset that does it */
1816 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1817 int err;
1819 if (!charset_iter_is_valid())
1821 else if ((nmtf = infix(hp, mtf)) != NULL)
1822 break;
1823 else if ((err = errno) == EILSEQ || err == EINVAL) {
1824 rewind(mtf);
1825 continue;
1828 n_perr(_("Failed to create encoded message"), 0);
1829 goto jfail_dead;
1831 mtf = nmtf;
1833 /* */
1834 #ifdef HAVE_SSL
1835 if (dosign) {
1836 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1837 goto jfail_dead;
1838 Fclose(mtf);
1839 mtf = nmtf;
1841 #endif
1843 /* TODO truly - i still don't get what follows: (1) we deliver file
1844 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1845 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1847 /* Deliver pipe and file addressees */
1848 to = _outof(to, mtf, &_sendout_error);
1849 if (_sendout_error)
1850 savedeadletter(mtf, FAL0);
1852 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1854 { ui32_t cnt = count(to);
1855 if ((!recipient_record || cnt > 0) &&
1856 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1857 goto jleave;
1858 if (cnt > 0) {
1859 sb.sb_hp = hp;
1860 sb.sb_to = to;
1861 sb.sb_input = mtf;
1862 if (_transfer(&sb))
1863 rv = OKAY;
1864 } else if (!_sendout_error)
1865 rv = OKAY;
1868 n_sigman_cleanup_ping(&sm);
1869 jleave:
1870 if(mtf != NULL){
1871 Fclose(mtf);
1872 temporary_compose_mode_hook_unroll();
1874 if (_sendout_error)
1875 n_exit_status |= n_EXIT_SEND_ERROR;
1876 NYD_LEAVE;
1877 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1878 return rv;
1880 jfail_dead:
1881 _sendout_error = TRU1;
1882 savedeadletter(mtf, TRU1);
1883 n_err(_("... message not sent\n"));
1884 goto jleave;
1887 FL int
1888 mkdate(FILE *fo, char const *field)
1890 struct tm tmpgm, *tmptr;
1891 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1892 NYD_ENTER;
1894 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1895 tzdiff = time_current.tc_time - mktime(&tmpgm);
1896 tzdiff_hour = (int)(tzdiff / 60);
1897 tzdiff_min = tzdiff_hour % 60;
1898 tzdiff_hour /= 60;
1899 tmptr = &time_current.tc_local;
1900 if (tmptr->tm_isdst > 0)
1901 ++tzdiff_hour;
1902 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1903 field,
1904 n_weekday_names[tmptr->tm_wday],
1905 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1906 tmptr->tm_year + 1900, tmptr->tm_hour,
1907 tmptr->tm_min, tmptr->tm_sec,
1908 tzdiff_hour * 100 + tzdiff_min);
1909 NYD_LEAVE;
1910 return rv;
1913 FL int
1914 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1915 enum sendaction action, enum conversion convert, char const *contenttype,
1916 char const *charset)
1918 #define FMT_CC_AND_BCC() \
1919 do {\
1920 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1921 if (fmt("Cc:", hp->h_cc, fo, ff))\
1922 goto jleave;\
1923 ++gotcha;\
1925 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1926 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1927 goto jleave;\
1928 ++gotcha;\
1930 } while (0)
1932 char const *addr;
1933 size_t gotcha;
1934 struct name *np, *fromasender = NULL;
1935 int stealthmua, rv = 1;
1936 bool_t nodisp;
1937 enum fmt_flags ff;
1938 NYD_ENTER;
1940 if ((addr = ok_vlook(stealthmua)) != NULL)
1941 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1942 else
1943 stealthmua = 0;
1944 gotcha = 0;
1945 nodisp = (action != SEND_TODISP);
1946 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1947 if(nosend_msg)
1948 ff |= FMT_INC_INVADDR;
1950 if (w & GDATE)
1951 mkdate(fo, "Date"), ++gotcha;
1952 if (w & GIDENT) {
1953 if (hp->h_from == NULL || hp->h_sender == NULL)
1954 setup_from_and_sender(hp);
1956 if (hp->h_from != NULL) {
1957 if (fmt("From:", hp->h_from, fo, ff))
1958 goto jleave;
1959 ++gotcha;
1962 if (hp->h_sender != NULL) {
1963 if (fmt("Sender:", hp->h_sender, fo, ff))
1964 goto jleave;
1965 ++gotcha;
1968 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1969 if (fromasender == NULL)
1970 goto jleave;
1971 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1974 #if 1
1975 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1976 if (fmt("To:", hp->h_to, fo, ff))
1977 goto jleave;
1978 ++gotcha;
1980 #else
1981 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1982 * TODO given that we cannot handle group addresses. Ridiculous */
1983 if (w & GTO) {
1984 struct name *xto;
1986 if ((xto = hp->h_to) != NULL) {
1987 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1989 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1990 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1991 goto jto_fmt;
1992 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1993 goto jleave;
1994 ++gotcha;
1995 } else if (nosend_msg == TRUM1) {
1996 jto_fmt:
1997 if (fmt("To:", hp->h_to, fo, ff))
1998 goto jleave;
1999 ++gotcha;
2002 #endif
2004 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
2005 FMT_CC_AND_BCC();
2007 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
2008 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
2009 goto jleave;
2010 if (hp->h_subject != NULL) {
2011 size_t sublen;
2012 char const *sub;
2014 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2016 /* Trimmed something, (re-)add Re: */
2017 if (sub != hp->h_subject) {
2018 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2019 goto jleave;
2020 if (sublen > 0 &&
2021 xmime_write(sub, sublen, fo,
2022 (!nodisp ? CONV_NONE : CONV_TOHDR),
2023 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2024 goto jleave;
2026 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2027 else if (*sub != '\0') {
2028 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2029 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2030 goto jleave;
2033 ++gotcha;
2034 putc('\n', fo);
2037 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2038 FMT_CC_AND_BCC();
2040 if ((w & GMSGID) && stealthmua <= 0 &&
2041 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2042 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2043 goto jleave;
2044 ++gotcha;
2047 if ((np = hp->h_ref) != NULL && (w & GREF)) {
2048 if (fmt("References:", np, fo, 0))
2049 goto jleave;
2050 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2051 while (np->n_flink != NULL)
2052 np = np->n_flink;
2053 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2054 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2055 if (fprintf(fo,
2056 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2057 goto jleave;
2058 ++gotcha;
2059 } else {
2060 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2061 goto jleave;
2065 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2066 if (fprintf(fo,
2067 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2068 goto jleave;
2069 ++gotcha;
2072 if (w & GIDENT) {
2073 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2074 * the list first.. TODO it is a terrible codebase.. */
2075 if ((np = hp->h_replyto) != NULL)
2076 np = namelist_dup(np, np->n_type);
2077 else if ((addr = ok_vlook(replyto)) != NULL)
2078 np = lextract(addr, GEXTRA | GFULL);
2079 if (np != NULL &&
2080 (np = elide(
2081 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2082 NULL))) != NULL) {
2083 if (fmt("Reply-To:", np, fo, ff))
2084 goto jleave;
2085 ++gotcha;
2089 if ((w & GIDENT) && !nosend_msg) {
2090 /* Mail-Followup-To: TODO factor out this huge block of code */
2091 /* Place ourselfs in there if any non-subscribed list is an addressee */
2092 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2093 ok_blook(followup_to)) {
2094 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2096 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2097 struct name *mft, *x;
2099 /* But for that, we have to remove all incarnations of ourselfs first.
2100 * TODO It is total crap that we have delete_alternates(), is_myname()
2101 * TODO or whatever; these work only with variables, not with data
2102 * TODO that is _currently_ in some header fields!!! v15.0: complete
2103 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2104 * TODO then this should be a really cheap thing in here... */
2105 np = elide(delete_alternates(cat(
2106 namelist_dup(hp->h_to, GEXTRA | GFULL),
2107 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2108 addr = hp->h_list_post;
2110 for (mft = NULL; (x = np) != NULL;) {
2111 si8_t ml;
2112 np = np->n_flink;
2114 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2115 addr != NULL && !asccasecmp(addr, x->n_name))
2116 ml = MLIST_KNOWN;
2118 /* Any non-subscribed list? Add ourselves */
2119 switch (ml) {
2120 case MLIST_KNOWN:
2121 f |= HF_MFT_SENDER;
2122 /* FALLTHRU */
2123 case MLIST_SUBSCRIBED:
2124 f |= _ANYLIST;
2125 goto j_mft_add;
2126 case MLIST_OTHER:
2127 if (!(f & HF_LIST_REPLY)) {
2128 j_mft_add:
2129 if (!is_addr_invalid(x,
2130 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2131 x->n_flink = mft;
2132 mft = x;
2133 } /* XXX write some warning? if verbose?? */
2134 continue;
2136 /* And if this is a reply that honoured a MFT: header then we'll
2137 * also add all members of the original MFT: that are still
2138 * addressed by us, regardless of all other circumstances */
2139 else if (f & _HADMFT) {
2140 struct name *ox;
2141 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2142 if (!asccasecmp(ox->n_name, x->n_name))
2143 goto j_mft_add;
2145 break;
2149 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2150 if (((f & HF_MFT_SENDER) ||
2151 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2152 (np = fromasender) != NULL && np != (struct name*)0x1) {
2153 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2154 np->n_flink = mft;
2155 mft = np;
2158 if (fmt("Mail-Followup-To:", mft, fo, ff))
2159 goto jleave;
2160 ++gotcha;
2164 if (!_check_dispo_notif(fromasender, hp, fo))
2165 goto jleave;
2168 if ((w & GUA) && stealthmua == 0) {
2169 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent, ok_vlook(version)) < 0)
2170 goto jleave;
2171 ++gotcha;
2174 /* The user may have placed headers when editing */
2175 if(1){
2176 struct n_header_field *hfp;
2178 if((hfp = hp->h_user_headers) != NULL){
2179 if(!_sendout_header_list(fo, hfp, nodisp))
2180 goto jleave;
2181 ++gotcha;
2185 /* Custom headers, as via *customhdr* */
2186 if(!nosend_msg){
2187 struct n_header_field *hfp;
2189 /* With iconv support we likely have a cached result */
2190 if((hfp = hp->h_custom_headers) == NULL)
2191 hp->h_custom_headers = hfp = n_customhdr_query();
2192 if(hfp != NULL){
2193 if(!_sendout_header_list(fo, hfp, nodisp))
2194 goto jleave;
2195 ++gotcha;
2199 /* We don't need MIME unless.. we need MIME?! */
2200 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2201 hp->h_attach != NULL ||
2202 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2203 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2204 ++gotcha;
2205 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2206 goto jleave;
2207 if (hp->h_attach != NULL) {
2208 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2209 if (fprintf(fo,
2210 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2211 _sendout_boundary) < 0)
2212 goto jleave;
2213 } else {
2214 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2215 goto jleave;
2219 if (gotcha && (w & GNL))
2220 if (putc('\n', fo) == EOF)
2221 goto jleave;
2222 rv = 0;
2223 jleave:
2224 NYD_LEAVE;
2225 return rv;
2226 #undef FMT_CC_AND_BCC
2229 FL enum okay
2230 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2232 struct sendbundle sb;
2233 FILE *ibuf, *nfo, *nfi;
2234 char *tempMail;
2235 enum okay rv = STOP;
2236 NYD_ENTER;
2238 _sendout_error = FAL0;
2239 __sendout_ident = NULL;
2241 /* Update some globals we likely need first */
2242 time_current_update(&time_current, TRU1);
2244 if ((to = checkaddrs(to,
2245 (EACM_NORMAL |
2246 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2247 &_sendout_error)) == NULL)
2248 goto jleave;
2249 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2250 if (_sendout_error < 0)
2251 n_err(_("Some addressees were classified as \"hard error\"\n"));
2253 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2254 == NULL) {
2255 _sendout_error = TRU1;
2256 n_perr(_("temporary mail file"), 0);
2257 goto jleave;
2259 if ((nfi = Fopen(tempMail, "r")) == NULL)
2260 n_perr(tempMail, 0);
2261 Ftmp_release(&tempMail);
2262 if (nfi == NULL)
2263 goto jerr_o;
2265 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2266 goto jerr_io;
2268 memset(&sb, 0, sizeof sb);
2269 sb.sb_to = to;
2270 sb.sb_input = nfi;
2271 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2272 /* ..wait until we can write DEAD */
2273 _sendout_error = -1;
2275 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2276 jfail_dead:
2277 savedeadletter(nfi, TRU1);
2278 n_err(_("... message not sent\n"));
2279 jerr_io:
2280 Fclose(nfi);
2281 jerr_o:
2282 Fclose(nfo);
2283 _sendout_error = TRU1;
2284 goto jleave;
2287 if (_sendout_error < 0)
2288 goto jfail_dead;
2290 Fclose(nfo);
2291 rewind(nfi);
2293 to = _outof(to, nfi, &_sendout_error);
2295 if (_sendout_error)
2296 savedeadletter(nfi, FAL0);
2298 if (count(to = elide(to)) != 0) {
2299 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2300 sb.sb_to = to;
2301 /*sb.sb_input = nfi;*/
2302 if (_transfer(&sb))
2303 rv = OKAY;
2305 } else if (!_sendout_error)
2306 rv = OKAY;
2308 Fclose(nfi);
2309 jleave:
2310 if (_sendout_error)
2311 n_exit_status |= n_EXIT_SEND_ERROR;
2312 NYD_LEAVE;
2313 return rv;
2316 FL void
2317 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2318 struct n_string line;
2319 int c;
2320 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2321 ul_i bytes, lines;
2322 FILE *dbuf;
2323 char const *cp, *cpq;
2324 NYD_ENTER;
2326 if(!ok_blook(save))
2327 goto jleave;
2329 if(fflush_rewind_first){
2330 fflush(fp);
2331 rewind(fp);
2333 if(fsize(fp) == 0)
2334 goto jleave;
2336 cp = n_getdeadletter();
2337 cpq = n_shexp_quote_cp(cp, FAL0);
2339 if(n_poption & n_PO_DEBUG){
2340 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2341 goto jleave;
2344 if((dbuf = Fopen(cp, "w")) == NULL){
2345 n_perr(_("Cannot save to $DEAD"), 0);
2346 goto jleave;
2348 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2350 fprintf(n_stdout, "%s ", cpq);
2351 fflush(n_stdout);
2353 /* TODO savedeadletter() non-conforming: should check whether we have any
2354 * TODO headers, if not we need to place "something", anything will do.
2355 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2356 * TODO I/O error handling missing. Yuck! */
2357 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2358 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2359 ok_vlook(LOGNAME), time_current.tc_ctime);
2360 lines = 1;
2361 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2362 n_string_trunc(&line, 0);
2363 while((c = getc(fp)) != EOF && c != '\n')
2364 n_string_push_c(&line, c);
2366 /* TODO It may be that we have only some plain text. It may be that we
2367 * TODO have a complete MIME encoded message. We don't know, and we
2368 * TODO have no usable mechanism to dig it!! tWe need v15! */
2369 if(!(flags & a_INIT)){
2370 size_t i;
2372 /* Throw away leading empty lines! */
2373 if(line.s_len == 0)
2374 continue;
2375 for(i = 0; i < line.s_len; ++i){
2376 if(fieldnamechar(line.s_dat[i]))
2377 continue;
2378 if(line.s_dat[i] == ':'){
2379 flags |= a_INIT;
2380 break;
2381 }else{
2382 /* We have no headers, this is already a body line! */
2383 flags |= a_INIT | a_BODY;
2384 break;
2387 /* Well, i had to check whether the RFC allows this. Assume we've
2388 * passed the headers, too, then! */
2389 if(i == line.s_len)
2390 flags |= a_INIT | a_BODY;
2392 if(flags & a_BODY){
2393 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2394 n_string_unshift_c(&line, '>');
2396 if(line.s_len == 0)
2397 flags |= a_BODY | a_NL;
2398 else
2399 flags &= ~a_NL;
2401 n_string_push_c(&line, '\n');
2402 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2404 if(!(flags & a_NL)){
2405 putc('\n', dbuf);
2406 ++bytes;
2407 ++lines;
2409 n_string_gut(&line);
2411 Fclose(dbuf);
2412 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2413 fflush(n_stdout);
2415 rewind(fp);
2416 jleave:
2417 NYD_LEAVE;
2420 #undef SEND_LINESIZE
2422 /* s-it-mode */