-s, ~s: normalize NL/CR characters (Debian #419840)
[s-mailx.git] / sendout.c
blob5c2f68dc43d044b39ad81468259427f52b06315e
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 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE sendout
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
42 #undef SEND_LINESIZE
43 #define SEND_LINESIZE \
44 ((1024 / B64_ENCODE_INPUT_PER_LINE) * B64_ENCODE_INPUT_PER_LINE)
46 enum fmt_flags {
47 FMT_DOMIME = 1<<0,
48 FMT_COMMA = GCOMMA,
49 FMT_FILES = GFILES,
50 _FMT_GMASK = FMT_COMMA | FMT_FILES
52 n_CTA(!(_FMT_GMASK & FMT_DOMIME),
53 "Code-required condition not satisfied but actual bit carrier value");
55 static char const *__sendout_ident; /* TODO temporary hack; rewrite puthead() */
56 static char * _sendout_boundary;
57 static si8_t _sendout_error;
59 static enum okay _putname(char const *line, enum gfield w,
60 enum sendaction action, size_t *gotcha,
61 char const *prefix, FILE *fo, struct name **xp,
62 enum gfield addflags);
64 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
65 * headers, respectively */
66 static int _put_ct(FILE *fo, char const *contenttype,
67 char const *charset);
68 SINLINE int _put_cte(FILE *fo, enum conversion conv);
69 static int _put_cd(FILE *fo, char const *cd, char const *filename);
71 /* Put all entries of the given header list */
72 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
73 bool_t nodisp);
75 /* Write an attachment to the file buffer, converting to MIME */
76 static int _attach_file(struct attachment *ap, FILE *fo);
77 static int __attach_file(struct attachment *ap, FILE *fo);
79 /* There are non-local receivers, collect credentials etc. */
80 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
81 bool_t signing_caps);
83 /* Attach a message to the file buffer */
84 static int attach_message(struct attachment *ap, FILE *fo);
86 /* Generate the body of a MIME multipart message */
87 static int make_multipart(struct header *hp, int convert, FILE *fi,
88 FILE *fo, char const *contenttype, char const *charset);
90 /* Prepend a header in front of the collected stuff and return the new file */
91 static FILE * infix(struct header *hp, FILE *fi);
93 /* Check whether Disposition-Notification-To: is desired */
94 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
95 FILE *fo);
97 /* Send mail to a bunch of user names. The interface is through mail() */
98 static int sendmail_internal(void *v, int recipient_record);
100 /* Deal with file and pipe addressees */
101 static struct name * _outof(struct name *names, FILE *fo, bool_t *senderror);
103 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
104 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
106 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
108 /* */
109 static bool_t _transfer(struct sendbundle *sbp);
111 static bool_t __mta_start(struct sendbundle *sbp);
112 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
113 static void __mta_debug(struct sendbundle *sbp, char const *mta,
114 char const **args);
116 /* Create a Message-ID: header field. Use either host name or from address */
117 static char * _message_id(struct header *hp);
119 /* Format the given header line to not exceed 72 characters */
120 static int fmt(char const *str, struct name *np, FILE *fo,
121 enum fmt_flags ff);
123 /* Rewrite a message for resending, adding the Resent-Headers */
124 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
125 struct name *to, int add_resent);
127 static enum okay
128 _putname(char const *line, enum gfield w, enum sendaction action,
129 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
130 enum gfield addflags)
132 struct name *np;
133 enum okay rv = STOP;
134 NYD_ENTER;
136 np = lextract(line, GEXTRA | GFULL | addflags);
137 if (xp != NULL)
138 *xp = np;
139 if (np == NULL)
141 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
142 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
143 rv = OKAY;
144 else if (gotcha != NULL)
145 ++(*gotcha);
146 NYD_LEAVE;
147 return rv;
150 static int
151 _put_ct(FILE *fo, char const *contenttype, char const *charset)
153 int rv, i;
154 NYD2_ENTER;
156 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
157 goto jerr;
159 if (charset == NULL)
160 goto jend;
162 if (putc(';', fo) == EOF)
163 goto jerr;
164 ++rv;
166 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
167 if (putc('\n', fo) == EOF)
168 goto jerr;
169 ++rv;
172 /* C99 */{
173 size_t l = strlen(charset);
174 char *lcs = salloc(l +1);
176 for(l = 0; *charset != '\0'; ++l, ++charset)
177 lcs[l] = lowerconv(*charset);
178 lcs[l] = '\0';
179 charset = lcs;
181 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
182 goto jerr;
183 rv += i;
185 jend:
186 if (putc('\n', fo) == EOF)
187 goto jerr;
188 ++rv;
189 jleave:
190 NYD2_LEAVE;
191 return rv;
192 jerr:
193 rv = -1;
194 goto jleave;
197 SINLINE int
198 _put_cte(FILE *fo, enum conversion conv)
200 int rv;
201 NYD2_ENTER;
203 /* RFC 2045, 6.1.:
204 * This is the default value -- that is,
205 * "Content-Transfer-Encoding: 7BIT" is assumed if the
206 * Content-Transfer-Encoding header field is not present.
208 rv = (conv == CONV_7BIT) ? 0
209 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
210 mime_enc_from_conversion(conv));
211 NYD2_LEAVE;
212 return rv;
215 static int
216 _put_cd(FILE *fo, char const *cd, char const *filename)
218 struct str f;
219 si8_t mpc;
220 int rv;
221 NYD2_ENTER;
223 f.s = NULL;
225 /* xxx Ugly with the trailing space in case of wrap! */
226 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
227 goto jerr;
229 if (!(mpc = mime_param_create(&f, "filename", filename)))
230 goto jerr;
231 /* Always fold if result contains newlines */
232 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
233 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
234 goto jerr;
235 rv += 2;
237 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
238 goto jerr;
239 rv += (int)++f.l;
241 jleave:
242 NYD2_LEAVE;
243 return rv;
244 jerr:
245 rv = -1;
246 goto jleave;
250 static bool_t
251 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
252 bool_t rv;
253 NYD2_ENTER;
255 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
256 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
257 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
258 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
259 (!nodisp ? CONV_NONE : CONV_TOHDR),
260 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
261 putc('\n', fo) == EOF){
262 rv = FAL0;
263 break;
265 NYD_LEAVE;
266 return rv;
269 static int
270 _attach_file(struct attachment *ap, FILE *fo)
272 /* TODO of course, the MIME classification needs to performed once
273 * TODO only, not for each and every charset anew ... ;-// */
274 char *charset_iter_orig[2];
275 long offs;
276 int err = 0;
277 NYD_ENTER;
279 /* Is this already in target charset? Simply copy over */
280 if (ap->a_conv == AC_TMPFILE) {
281 err = __attach_file(ap, fo);
282 Fclose(ap->a_tmpf);
283 DBG( ap->a_tmpf = NULL; )
284 goto jleave;
287 /* If we don't apply charset conversion at all (fixed input=ouput charset)
288 * we also simply copy over, since it's the users desire */
289 if (ap->a_conv == AC_FIX_INCS) {
290 ap->a_charset = ap->a_input_charset;
291 err = __attach_file(ap, fo);
292 goto jleave;
295 /* Otherwise we need to iterate over all possible output charsets */
296 if ((offs = ftell(fo)) == -1) {
297 err = EIO;
298 goto jleave;
300 charset_iter_recurse(charset_iter_orig);
301 for (charset_iter_reset(NULL);; charset_iter_next()) {
302 if (!charset_iter_is_valid()) {
303 err = EILSEQ;
304 break;
306 err = __attach_file(ap, fo);
307 if (err == 0 || (err != EILSEQ && err != EINVAL))
308 break;
309 clearerr(fo);
310 if (fseek(fo, offs, SEEK_SET) == -1) {
311 err = EIO;
312 break;
314 if (ap->a_conv != AC_DEFAULT) {
315 err = EILSEQ;
316 break;
318 ap->a_charset = NULL;
320 charset_iter_restore(charset_iter_orig);
321 jleave:
322 NYD_LEAVE;
323 return err;
326 static int
327 __attach_file(struct attachment *ap, FILE *fo) /* XXX linelength */
329 int err = 0, do_iconv;
330 FILE *fi;
331 char const *charset;
332 enum conversion convert;
333 char *buf;
334 size_t bufsize, lncnt, inlen;
335 NYD_ENTER;
337 /* Either charset-converted temporary file, or plain path */
338 if (ap->a_conv == AC_TMPFILE) {
339 fi = ap->a_tmpf;
340 assert(ftell(fi) == 0);
341 } else if ((fi = Fopen(ap->a_name, "r")) == NULL) {
342 err = errno;
343 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_name, FAL0), strerror(err));
344 goto jleave;
347 /* MIME part header for attachment */
348 { char const *bn = ap->a_name, *ct;
350 if ((ct = strrchr(bn, '/')) != NULL)
351 bn = ++ct;
352 ct = ap->a_content_type;
353 charset = ap->a_charset;
354 convert = mime_type_classify_file(fi, (char const**)&ct,
355 &charset, &do_iconv);
356 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
357 ap->a_conv == AC_TMPFILE)
358 do_iconv = 0;
360 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
361 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
362 _put_cd(fo, ap->a_content_disposition, bn) < 0)
363 goto jerr_header;
365 if ((bn = ap->a_content_id) != NULL &&
366 fprintf(fo, "Content-ID: %s\n", bn) == -1)
367 goto jerr_header;
369 if ((bn = ap->a_content_description) != NULL &&
370 fprintf(fo, "Content-Description: %s\n", bn) == -1) /* TODO MIME! */
371 goto jerr_header;
373 if (putc('\n', fo) == EOF) {
374 jerr_header:
375 err = errno;
376 goto jerr_fclose;
380 #ifdef HAVE_ICONV
381 if (iconvd != (iconv_t)-1)
382 n_iconv_close(iconvd);
383 if (do_iconv) {
384 char const *tcs = charset_get_lc();
385 if (asccasecmp(charset, tcs) &&
386 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
387 (err = errno) != 0) {
388 if (err == EINVAL)
389 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
390 else
391 n_err(_("iconv_open: %s\n"), strerror(err));
392 goto jerr_fclose;
395 #endif
397 bufsize = SEND_LINESIZE;
398 buf = smalloc(bufsize);
399 if (convert == CONV_TOQP
400 #ifdef HAVE_ICONV
401 || iconvd != (iconv_t)-1
402 #endif
404 lncnt = fsize(fi);
405 for (;;) {
406 if (convert == CONV_TOQP
407 #ifdef HAVE_ICONV
408 || iconvd != (iconv_t)-1
409 #endif
411 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
412 break;
413 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
414 break;
415 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
416 err = errno;
417 goto jerr;
420 if (ferror(fi))
421 err = EDOM;
422 jerr:
423 free(buf);
424 jerr_fclose:
425 if (ap->a_conv != AC_TMPFILE)
426 Fclose(fi);
427 jleave:
428 NYD_LEAVE;
429 return err;
432 static bool_t
433 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
435 bool_t v15, rv = FAL0;
436 char *shost, *from;
437 #ifdef HAVE_SMTP
438 char const *smtp;
439 #endif
440 NYD_ENTER;
442 v15 = ok_blook(v15_compat);
443 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
444 from = ((signing_caps || !v15 || shost == NULL)
445 ? skin(myorigin(sbp->sb_hp)) : NULL);
447 if (signing_caps) {
448 if (from == NULL) {
449 #ifdef HAVE_SSL
450 n_err(_("No *from* address for signing specified\n"));
451 goto jleave;
452 #endif
453 } else
454 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
457 #ifdef HAVE_SMTP
458 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
459 char const *proto;
461 /* *smtp* OBSOLETE message in mta_start() */
462 if ((smtp = ok_vlook(mta)) == NULL ||
463 (proto = n_servbyname(smtp, NULL)) == NULL || *proto == '\0') {
464 rv = TRU1;
465 goto jleave;
469 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
470 goto jleave;
472 if (v15) {
473 if (shost == NULL) {
474 if (from == NULL)
475 goto jenofrom;
476 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
477 } else
478 __sendout_ident = sbp->sb_url.url_u_h.s;
479 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
480 goto jleave;
481 } else {
482 if (sbp->sb_url.url_had_user || sbp->sb_url.url_pass.s != NULL) {
483 n_err(_("New-style URL used without *v15-compat* being set\n"));
484 goto jleave;
486 /* TODO part of the entire myorigin() disaster, get rid of this! */
487 if (from == NULL) {
488 jenofrom:
489 n_err(_("Your configuration requires a *from* address, "
490 "but none was given\n"));
491 goto jleave;
493 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
494 goto jleave;
495 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
498 rv = TRU1;
499 #endif /* HAVE_SMTP */
500 #if defined HAVE_SSL || defined HAVE_SMTP
501 jleave:
502 #endif
503 NYD_LEAVE;
504 return rv;
507 static int
508 attach_message(struct attachment *ap, FILE *fo)
510 struct message *mp;
511 char const *ccp;
512 int rv;
513 NYD_ENTER;
515 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
516 "Content-Disposition: inline\n", _sendout_boundary);
517 if ((ccp = ap->a_content_description) != NULL)
518 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
519 putc('\n', fo);
521 mp = message + ap->a_msgno - 1;
522 touch(mp);
523 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
524 NYD_LEAVE;
525 return rv;
528 static int
529 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
530 char const *contenttype, char const *charset)
532 struct attachment *att;
533 int rv = -1;
534 NYD_ENTER;
536 fputs("This is a multi-part message in MIME format.\n", fo);
537 if (fsize(fi) != 0) {
538 char *buf;
539 size_t sz, bufsize, cnt;
541 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
542 _put_ct(fo, contenttype, charset) < 0 ||
543 _put_cte(fo, convert) < 0 ||
544 fprintf(fo, "Content-Disposition: inline\n\n") < 0)
545 goto jleave;
547 buf = smalloc(bufsize = SEND_LINESIZE);
548 if (convert == CONV_TOQP
549 #ifdef HAVE_ICONV
550 || iconvd != (iconv_t)-1
551 #endif
553 fflush(fi);
554 cnt = fsize(fi);
556 for (;;) {
557 if (convert == CONV_TOQP
558 #ifdef HAVE_ICONV
559 || iconvd != (iconv_t)-1
560 #endif
562 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
563 break;
564 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
565 break;
567 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
568 free(buf);
569 goto jleave;
572 free(buf);
574 if (ferror(fi))
575 goto jleave;
578 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
579 if (att->a_msgno) {
580 if (attach_message(att, fo) != 0)
581 goto jleave;
582 } else if (_attach_file(att, fo) != 0)
583 goto jleave;
586 /* the final boundary with two attached dashes */
587 fprintf(fo, "\n--%s--\n", _sendout_boundary);
588 rv = 0;
589 jleave:
590 NYD_LEAVE;
591 return rv;
594 static FILE *
595 infix(struct header *hp, FILE *fi) /* TODO check */
597 FILE *nfo, *nfi = NULL;
598 char *tempMail;
599 char const *contenttype, *charset = NULL;
600 enum conversion convert;
601 int do_iconv = 0, err;
602 #ifdef HAVE_ICONV
603 char const *tcs, *convhdr = NULL;
604 #endif
605 NYD_ENTER;
607 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
608 == NULL) {
609 n_perr(_("temporary mail file"), 0);
610 goto jleave;
612 if ((nfi = Fopen(tempMail, "r")) == NULL) {
613 n_perr(tempMail, 0);
614 Fclose(nfo);
616 Ftmp_release(&tempMail);
617 if (nfi == NULL)
618 goto jleave;
620 pstate &= ~PS_HEADER_NEEDED_MIME; /* TODO a hack should be carrier tracked */
622 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
623 if((options & OPT_Mm_FLAG) && option_Mm_arg != NULL)
624 contenttype = option_Mm_arg;
625 convert = mime_type_classify_file(fi, &contenttype, &charset, &do_iconv);
627 #ifdef HAVE_ICONV
628 tcs = charset_get_lc();
629 if ((convhdr = need_hdrconv(hp))) {
630 if (iconvd != (iconv_t)-1) /* XXX */
631 n_iconv_close(iconvd);
632 if (asccasecmp(convhdr, tcs) != 0 &&
633 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
634 (err = errno) != 0)
635 goto jiconv_err;
637 #endif
638 if (puthead(FAL0, hp, nfo,
639 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
640 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
641 goto jerr;
642 #ifdef HAVE_ICONV
643 if (iconvd != (iconv_t)-1)
644 n_iconv_close(iconvd);
645 #endif
647 #ifdef HAVE_ICONV
648 if (do_iconv && charset != NULL) { /*TODO charset->mime_type_classify_file*/
649 if (asccasecmp(charset, tcs) != 0 &&
650 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
651 (err = errno) != 0) {
652 jiconv_err:
653 if (err == EINVAL)
654 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
655 else
656 n_perr("iconv_open", 0);
657 goto jerr;
660 #endif
662 if (hp->h_attach != NULL) {
663 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
664 goto jerr;
665 } else {
666 size_t sz, bufsize, cnt;
667 char *buf;
669 if (convert == CONV_TOQP
670 #ifdef HAVE_ICONV
671 || iconvd != (iconv_t)-1
672 #endif
674 fflush(fi);
675 cnt = fsize(fi);
677 buf = smalloc(bufsize = SEND_LINESIZE);
678 for (err = 0;;) {
679 if (convert == CONV_TOQP
680 #ifdef HAVE_ICONV
681 || iconvd != (iconv_t)-1
682 #endif
684 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
685 break;
686 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
687 break;
688 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
689 err = 1;
690 break;
693 free(buf);
695 if (err || ferror(fi)) {
696 jerr:
697 Fclose(nfo);
698 Fclose(nfi);
699 #ifdef HAVE_ICONV
700 if (iconvd != (iconv_t)-1)
701 n_iconv_close(iconvd);
702 #endif
703 nfi = NULL;
704 goto jleave;
708 #ifdef HAVE_ICONV
709 if (iconvd != (iconv_t)-1)
710 n_iconv_close(iconvd);
711 #endif
713 fflush(nfo);
714 if ((err = ferror(nfo)))
715 n_perr(_("temporary mail file"), 0);
716 Fclose(nfo);
717 if (!err) {
718 fflush_rewind(nfi);
719 Fclose(fi);
720 } else {
721 Fclose(nfi);
722 nfi = NULL;
724 jleave:
725 NYD_LEAVE;
726 return nfi;
729 static bool_t
730 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
732 char const *from;
733 bool_t rv = TRU1;
734 NYD_ENTER;
736 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
737 * TODO not yet checked */
738 if (!ok_blook(disposition_notification_send))
739 goto jleave;
741 if (mdn != NULL && mdn != (struct name*)0x1)
742 from = mdn->n_name;
743 else if ((from = myorigin(hp)) == NULL) {
744 if (options & OPT_D_V)
745 n_err(_("*disposition-notification-send*: no *from* set\n"));
746 goto jleave;
749 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
750 rv = FAL0;
751 jleave:
752 NYD_LEAVE;
753 return rv;
756 static int
757 sendmail_internal(void *v, int recipient_record)
759 struct header head;
760 char *str = v;
761 int rv;
762 NYD_ENTER;
764 memset(&head, 0, sizeof head);
765 head.h_to = lextract(str, GTO | GFULL);
766 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
767 NYD_LEAVE;
768 return (rv == 0);
771 static struct name *
772 _outof(struct name *names, FILE *fo, bool_t *senderror)
774 ui32_t pipecnt, xcnt, i;
775 int *fda;
776 char const *sh;
777 struct name *np;
778 FILE *fin = NULL, *fout;
779 NYD_ENTER;
781 /* Look through all recipients and do a quick return if no file or pipe
782 * addressee is found */
783 fda = NULL; /* Silence cc */
784 for (pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink) {
785 if (np->n_type & GDEL)
786 continue;
787 switch (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) {
788 case NAME_ADDRSPEC_ISFILE:
789 ++xcnt;
790 break;
791 case NAME_ADDRSPEC_ISPIPE:
792 ++pipecnt;
793 break;
796 if (pipecnt == 0 && xcnt == 0)
797 goto jleave;
799 /* Otherwise create an array of file descriptors for each found pipe
800 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
801 * each pipe subprocess needs its very own file descriptor, and we need
802 * to deal with that.
803 * To make our life a bit easier let's just use the auto-reclaimed
804 * string storage */
805 if (pipecnt == 0 || (options & OPT_DEBUG)) {
806 pipecnt = 0;
807 fda = NULL;
808 sh = NULL;
809 } else {
810 fda = salloc(sizeof(int) * pipecnt);
811 for (i = 0; i < pipecnt; ++i)
812 fda[i] = -1;
813 sh = ok_vlook(SHELL);
816 for (np = names; np != NULL; np = np->n_flink) {
817 if (!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE))
818 continue;
820 /* In days of old we removed the entry from the the list; now for sake of
821 * header expansion we leave it in and mark it as deleted */
822 np->n_type |= GDEL;
824 if(options & OPT_D_VV)
825 n_err(_(">>> Writing message via %s\n"),
826 n_shexp_quote_cp(np->n_name, FAL0));
827 if(options & OPT_DEBUG)
828 continue;
830 /* See if we have copied the complete message out yet. If not, do so */
831 if (image < 0) {
832 int c;
833 char *tempEdit;
835 if ((fout = Ftmp(&tempEdit, "outof",
836 OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)) == NULL) {
837 n_perr(_("Creation of temporary image"), 0);
838 *senderror = TRU1;
839 goto jcant;
841 if ((image = open(tempEdit, O_RDWR | _O_CLOEXEC)) >= 0) {
842 _CLOEXEC_SET(image);
843 for (i = 0; i < pipecnt; ++i) {
844 int fd = open(tempEdit, O_RDONLY | _O_CLOEXEC);
845 if (fd < 0) {
846 close(image);
847 image = -1;
848 pipecnt = i;
849 break;
851 fda[i] = fd;
852 _CLOEXEC_SET(fd);
855 Ftmp_release(&tempEdit);
857 if (image < 0) {
858 n_perr(_("Creating descriptor duplicate of temporary image"), 0);
859 *senderror = TRU1;
860 Fclose(fout);
861 goto jcant;
864 fprintf(fout, "From %s %s", myname, time_current.tc_ctime);
865 c = EOF;
866 while (i = c, (c = getc(fo)) != EOF)
867 putc(c, fout);
868 rewind(fo);
869 if ((int)i != '\n')
870 putc('\n', fout);
871 putc('\n', fout);
872 fflush(fout);
873 if (ferror(fout)) {
874 n_perr(_("Finalizing write of temporary image"), 0);
875 Fclose(fout);
876 goto jcantfout;
878 Fclose(fout);
880 /* If we have to serve file addressees, open reader */
881 if (xcnt != 0 && (fin = Fdopen(image, "r", FAL0)) == NULL) {
882 n_perr(_("Failed to open a temporary image duplicate"), 0);
883 jcantfout:
884 *senderror = TRU1;
885 close(image);
886 image = -1;
887 goto jcant;
890 /* From now on use xcnt as a counter for pipecnt */
891 xcnt = 0;
894 /* Now either copy "image" to the desired file or give it as the standard
895 * input to the desired program as appropriate */
896 if (np->n_flags & NAME_ADDRSPEC_ISPIPE) {
897 int pid;
898 sigset_t nset;
900 sigemptyset(&nset);
901 sigaddset(&nset, SIGHUP);
902 sigaddset(&nset, SIGINT);
903 sigaddset(&nset, SIGQUIT);
904 pid = start_command(sh, &nset, fda[xcnt++], COMMAND_FD_NULL, "-c",
905 np->n_name + 1, NULL, NULL);
906 if (pid < 0) {
907 n_err(_("Piping message to %s failed\n"),
908 n_shexp_quote_cp(np->n_name, FAL0));
909 *senderror = TRU1;
910 goto jcant;
912 free_child(pid);
913 } else {
914 int c;
915 char const *fname, *fnameq;
917 if ((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
918 *senderror = TRU1;
919 goto jcant;
921 fnameq = n_shexp_quote_cp(fname, FAL0);
923 if(fname[0] == '-' && fname[1] == '\0')
924 fout = stdout;
925 else if ((fout = Zopen(fname, "a")) == NULL) {
926 n_err(_("Writing message to %s failed: %s\n"),
927 fnameq, strerror(errno));
928 *senderror = TRU1;
929 goto jcant;
931 rewind(fin);
932 while ((c = getc(fin)) != EOF)
933 putc(c, fout);
934 if (ferror(fout)) {
935 n_err(_("Writing message to %s failed: %s\n"),
936 fnameq, _("write error"));
937 *senderror = TRU1;
939 if(fout != stdout)
940 Fclose(fout);
943 jcant:
944 if (image < 0)
945 goto jdelall;
948 jleave:
949 if (fin != NULL)
950 Fclose(fin);
951 for (i = 0; i < pipecnt; ++i)
952 close(fda[i]);
953 if (image >= 0) {
954 close(image);
955 image = -1;
957 NYD_LEAVE;
958 return names;
960 jdelall:
961 while (np != NULL) {
962 if (np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
963 np->n_type |= GDEL;
964 np = np->n_flink;
966 goto jleave;
969 static bool_t
970 mightrecord(FILE *fp, struct name *to, bool_t resend)
972 char *cp, *cq;
973 char const *ep;
974 bool_t rv = TRU1;
975 NYD_ENTER;
977 if (options & OPT_DEBUG)
978 cp = NULL;
979 else if (to != NULL) {
980 cp = savestr(skinned_name(to));
981 for (cq = cp; *cq != '\0' && *cq != '@'; ++cq)
983 *cq = '\0';
984 } else
985 cp = ok_vlook(record);
987 if (cp != NULL) {
988 if ((ep = expand(cp)) == NULL) {
989 ep = "NULL";
990 goto jbail;
993 if (*ep != '/' && *ep != '+' && ok_blook(outfolder) &&
994 which_protocol(ep) == PROTO_FILE) {
995 size_t i = strlen(cp);
996 cq = salloc(i + 1 +1);
997 cq[0] = '+';
998 memcpy(cq + 1, cp, i +1);
999 cp = cq;
1000 if ((ep = fexpand(cp, FEXP_LOCAL | FEXP_NOPROTO)) == NULL) {
1001 ep = "NULL";
1002 goto jbail;
1006 if (!a_sendout__savemail(ep, fp, resend)) {
1007 jbail:
1008 n_err(_("Failed to save message in %s - message not sent\n"),
1009 n_shexp_quote_cp(ep, FAL0));
1010 exit_status |= EXIT_ERR;
1011 savedeadletter(fp, 1);
1012 rv = FAL0;
1015 NYD_LEAVE;
1016 return rv;
1019 static bool_t
1020 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1021 FILE *fo;
1022 size_t bufsize, buflen, cnt;
1023 bool_t rv, emptyline;
1024 char *buf;
1025 NYD_ENTER;
1027 buf = smalloc(bufsize = LINESIZE);
1028 rv = emptyline = FAL0;
1030 if((fo = Zopen(name, "a+")) == NULL){
1031 if((fo = Zopen(name, "wx")) == NULL){
1032 n_perr(name, 0);
1033 goto j_leave;
1035 emptyline = TRU1;
1038 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()! */
1039 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1041 rv = TRU1;
1043 if(!emptyline){
1044 if(fseek(fo, -2L, SEEK_END) == 0){ /* TODO Should be Mailbox::->append */
1045 switch(fread(buf, sizeof *buf, 2, fo)){
1046 case 2:
1047 if(buf[1] != '\n')
1048 emptyline = TRU1;
1049 break;
1050 case 1:
1051 if(buf[0] != '\n')
1052 emptyline = TRU1;
1053 break;
1054 default:
1055 if(ferror(fo)){
1056 n_perr(name, 0);
1057 rv = FAL0;
1058 goto jleave;
1061 if(emptyline){
1062 putc('\n', fo);
1063 fflush(fo);
1068 fflush_rewind(fp);
1070 fprintf(fo, "From %s %s", myname, time_current.tc_ctime);
1071 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1072 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1073 /* Only if we are resending it can happen that we have to quote From_
1074 * lines here; we don't generate messages which are ambiguous ourselves */
1075 if(resend){
1076 if(emptyline && is_head(buf, buflen, FAL0))
1077 putc('>', fo);
1078 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1080 emptyline = (buflen > 0 && *buf == '\n');
1081 fwrite(buf, sizeof *buf, buflen, fo);
1083 if(buflen > 0 && buf[buflen - 1] != '\n')
1084 putc('\n', fo);
1085 putc('\n', fo);
1086 fflush(fo);
1087 if(ferror(fo)){
1088 n_perr(name, 0);
1089 rv = FAL0;
1092 jleave:
1093 really_rewind(fp);
1094 if(Fclose(fo) != 0)
1095 rv = FAL0;
1096 j_leave:
1097 free(buf);
1098 NYD_LEAVE;
1099 return rv;
1102 static bool_t
1103 _transfer(struct sendbundle *sbp)
1105 struct name *np;
1106 ui32_t cnt;
1107 bool_t rv = TRU1;
1108 NYD_ENTER;
1110 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1111 char const k[] = "smime-encrypt-";
1112 size_t nl = strlen(np->n_name);
1113 char *cp, *vs = ac_alloc(sizeof(k)-1 + nl +1);
1114 memcpy(vs, k, sizeof(k) -1);
1115 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1117 if ((cp = vok_vlook(vs)) != NULL) {
1118 #ifdef HAVE_SSL
1119 FILE *ef;
1121 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1122 FILE *fisave = sbp->sb_input;
1123 struct name *nsave = sbp->sb_to;
1125 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1126 sbp->sb_input = ef;
1127 if (!__mta_start(sbp))
1128 rv = FAL0;
1129 sbp->sb_to = nsave;
1130 sbp->sb_input = fisave;
1132 Fclose(ef);
1133 } else {
1134 #else
1135 n_err(_("No SSL support compiled in\n"));
1136 rv = FAL0;
1137 #endif
1138 n_err(_("Message not sent to: %s\n"), np->n_name);
1139 _sendout_error = TRU1;
1140 #ifdef HAVE_SSL
1142 #endif
1143 rewind(sbp->sb_input);
1145 if (np->n_flink != NULL)
1146 np->n_flink->n_blink = np->n_blink;
1147 if (np->n_blink != NULL)
1148 np->n_blink->n_flink = np->n_flink;
1149 if (np == sbp->sb_to)
1150 sbp->sb_to = np->n_flink;
1151 np = np->n_flink;
1152 } else {
1153 ++cnt;
1154 np = np->n_flink;
1156 ac_free(vs);
1159 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1160 rv = FAL0;
1161 NYD_LEAVE;
1162 return rv;
1165 static bool_t
1166 __mta_start(struct sendbundle *sbp)
1168 pid_t pid;
1169 sigset_t nset;
1170 char const **args, *mta;
1171 bool_t rv;
1172 NYD_ENTER;
1174 if((mta = ok_vlook(smtp)) != NULL){
1175 OBSOLETE(_("please don't use *smtp*, but assign an SMTP URL to *mta*"));
1176 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1177 * that *smtp* is misused with file:// or so */
1178 if(n_servbyname(mta, NULL) == NULL)
1179 mta = savecat("smtp://", mta);
1180 rv = TRU1;
1181 }else{
1182 char const *proto;
1184 if((proto = ok_vlook(sendmail)) != NULL)
1185 OBSOLETE(_("please use *mta* instead of *sendmail*"));
1186 if((mta = ok_vlook(mta)) == NULL){ /* TODO v15: mta = ok_vlook(mta); */
1187 if(proto == NULL){
1188 mta = VAL_MTA;
1189 rv = FAL0;
1190 }else
1191 rv = TRU1;
1193 /* TODO for now this is pretty hacky: in v15 we should simply create
1194 * TODO an URL object; i.e., be able to do so, and it does it right
1195 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1196 else if((proto = n_servbyname(mta, NULL)) != NULL){
1197 if(*proto == '\0'){
1198 mta += sizeof("file://") -1;
1199 rv = FAL0;
1200 }else
1201 rv = TRU1;
1202 }else
1203 rv = FAL0;
1206 if(!rv){
1207 char const *mta_base;
1209 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1210 n_err(_("*mta* variable expansion failure: %s\n"),
1211 n_shexp_quote_cp(mta_base, FAL0));
1212 goto jstop;
1215 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1216 if (options & OPT_DEBUG) {
1217 __mta_debug(sbp, mta, args);
1218 rv = TRU1;
1219 goto jleave;
1221 } else {
1222 n_UNINIT(args, NULL);
1223 #ifndef HAVE_SMTP
1224 n_err(_("No SMTP support compiled in\n"));
1225 goto jstop;
1226 #else
1227 if (options & OPT_DEBUG) {
1228 (void)smtp_mta(sbp);
1229 rv = TRU1;
1230 goto jleave;
1232 #endif
1235 /* Fork, set up the temporary mail file as standard input for "mail", and
1236 * exec with the user list we generated far above */
1237 if ((pid = fork_child()) == -1) {
1238 n_perr("fork", 0);
1239 jstop:
1240 savedeadletter(sbp->sb_input, 0);
1241 _sendout_error = TRU1;
1242 goto jleave;
1244 if (pid == 0) {
1245 sigemptyset(&nset);
1246 sigaddset(&nset, SIGHUP);
1247 sigaddset(&nset, SIGINT);
1248 sigaddset(&nset, SIGQUIT);
1249 sigaddset(&nset, SIGTSTP);
1250 sigaddset(&nset, SIGTTIN);
1251 sigaddset(&nset, SIGTTOU);
1252 freopen("/dev/null", "r", stdin);
1253 #ifdef HAVE_SMTP
1254 if (rv) {
1255 prepare_child(&nset, 0, 1);
1256 if (smtp_mta(sbp))
1257 _exit(EXIT_OK);
1258 } else
1259 #endif
1261 char const *ecp;
1262 int e;
1264 prepare_child(&nset, fileno(sbp->sb_input), -1);
1265 execv(mta, n_UNCONST(args));
1266 e = errno;
1267 ecp = (e != ENOENT) ? strerror(e)
1268 : _("executable not found (adjust *mta* variable)");
1269 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1271 savedeadletter(sbp->sb_input, 1);
1272 n_err(_("... message not sent\n"));
1273 _exit(EXIT_ERR);
1276 if ((options & (OPT_DEBUG | OPT_VERB)) || ok_blook(sendwait)) {
1277 if (!(rv = wait_child(pid, NULL)))
1278 _sendout_error = TRU1;
1279 } else {
1280 free_child(pid);
1281 rv = TRU1;
1283 jleave:
1284 NYD_LEAVE;
1285 return rv;
1288 static char const **
1289 __mta_prepare_args(struct name *to, struct header *hp)
1291 size_t vas_cnt, i, j;
1292 char **vas;
1293 char const **args, *cp, *cp_v15compat;
1294 bool_t snda;
1295 NYD_ENTER;
1297 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1298 OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1299 if((cp = ok_vlook(mta_arguments)) == NULL)
1300 cp = cp_v15compat;
1301 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1302 vas_cnt = 0;
1303 vas = NULL;
1304 } else {
1305 /* Don't assume anything on the content but do allocate exactly j slots;
1306 * like this getrawlist will never overflow (and return -1) */
1307 j = strlen(cp);
1308 vas = n_lofi_alloc(sizeof(*vas) * j);
1309 vas_cnt = (size_t)getrawlist(FAL0, vas, j, cp, j);
1312 i = 4 + smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1313 args = salloc(i * sizeof(char*));
1315 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1316 OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1317 if((cp = ok_vlook(mta_argv0)) == NULL)
1318 cp = cp_v15compat;
1319 if(cp == NULL)
1320 cp = VAL_MTA_ARGV0;
1321 args[0] = cp/* TODO v15: = ok_vlook(mta_argv0) */;
1323 if ((snda = ok_blook(sendmail_no_default_arguments)))
1324 OBSOLETE(_("please use *mta-no-default-arguments*, "
1325 "not *sendmail-no-default-arguments*"));
1326 snda |= ok_blook(mta_no_default_arguments);
1327 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1328 i = 1;
1329 else {
1330 args[1] = "-i";
1331 i = 2;
1332 if (ok_blook(metoo))
1333 args[i++] = "-m";
1334 if (options & OPT_VERB)
1335 args[i++] = "-v";
1338 for (j = 0; j < smopts_cnt; ++j, ++i)
1339 args[i] = smopts[j];
1341 for (j = 0; j < vas_cnt; ++j, ++i)
1342 args[i] = vas[j];
1344 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1345 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1346 * The interdependency with -t has been resolved in puthead() */
1347 if (!snda && (options & OPT_r_FLAG)) {
1348 struct name const *np;
1350 if (hp != NULL && (np = hp->h_from) != NULL) {
1351 /* However, what wasn't resolved there was the case that the message
1352 * specified multiple From: addresses and a Sender: */
1353 if ((pstate & PS_t_FLAG) && hp->h_sender != NULL)
1354 np = hp->h_sender;
1356 if (np->n_fullextra != NULL) {
1357 args[i++] = "-F";
1358 args[i++] = np->n_fullextra;
1360 cp = np->n_name;
1361 } else {
1362 assert(option_r_arg == NULL);
1363 cp = skin(myorigin(NULL));
1366 if (cp != NULL) {
1367 args[i++] = "-f";
1368 args[i++] = cp;
1372 /* Terminate option list to avoid false interpretation of system-wide
1373 * aliases that start with hyphen */
1374 if (!snda)
1375 args[i++] = "--";
1377 /* Receivers follow */
1378 for (; to != NULL; to = to->n_flink)
1379 if (!(to->n_type & GDEL))
1380 args[i++] = to->n_name;
1381 args[i] = NULL;
1383 if(vas != NULL)
1384 n_lofi_free(vas);
1385 NYD_LEAVE;
1386 return args;
1389 static void
1390 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1392 size_t cnt, bufsize, llen;
1393 char *buf;
1394 NYD_ENTER;
1396 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1397 for (; *args != NULL; ++args)
1398 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1399 n_err("\n");
1401 fflush_rewind(sbp->sb_input);
1403 cnt = fsize(sbp->sb_input);
1404 buf = NULL;
1405 bufsize = 0;
1406 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1407 buf[--llen] = '\0';
1408 n_err(">>> %s\n", buf);
1410 if (buf != NULL)
1411 free(buf);
1412 NYD_LEAVE;
1415 static char *
1416 _message_id(struct header *hp)
1418 char *rv = NULL, sep;
1419 char const *h;
1420 size_t rl, i;
1421 struct tm *tmp;
1422 NYD_ENTER;
1424 if (hp != NULL && hp->h_message_id != NULL) {
1425 i = strlen(hp->h_message_id->n_name);
1426 rl = sizeof("Message-ID: <>") -1;
1427 rv = salloc(rl + i +1);
1428 memcpy(rv, "Message-ID: <", --rl);
1429 memcpy(rv + rl, hp->h_message_id->n_name, i);
1430 rl += i;
1431 rv[rl++] = '>';
1432 rv[rl] = '\0';
1433 goto jleave;
1436 if (ok_blook(message_id_disable))
1437 goto jleave;
1439 sep = '%';
1440 rl = 9;
1441 if ((h = __sendout_ident) != NULL)
1442 goto jgen;
1443 if (ok_vlook(hostname) != NULL) {
1444 h = nodename(1);
1445 sep = '@';
1446 rl = 15;
1447 goto jgen;
1449 if (hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1450 goto jgen;
1451 /* Up to MTA */
1452 goto jleave;
1454 jgen:
1455 tmp = &time_current.tc_gm;
1456 i = sizeof("Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>") -1 +
1457 rl + strlen(h);
1458 rv = salloc(i +1);
1459 snprintf(rv, i, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>",
1460 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1461 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1462 getrandstring(rl), sep, h);
1463 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1464 jleave:
1465 NYD_LEAVE;
1466 return rv;
1469 static int
1470 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1472 enum {
1473 m_INIT = 1<<0,
1474 m_COMMA = 1<<1,
1475 m_NOPF = 1<<2,
1476 m_NONAME = 1<<3,
1477 m_CSEEN = 1<<4
1478 } m = (ff & GCOMMA) ? m_COMMA : 0;
1479 ssize_t col, len;
1480 int rv = 1;
1481 NYD_ENTER;
1483 col = strlen(str);
1484 if (col) {
1485 fwrite(str, sizeof *str, col, fo);
1486 #undef _X
1487 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1488 if (ff & GFILES) {
1490 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1491 _X("references:") || _X("disposition-notification-to:"))
1492 m |= m_NOPF | m_NONAME;
1493 else if (ok_blook(add_file_recipients)) {
1495 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1496 m |= m_NOPF;
1497 #undef _X
1500 for (; np != NULL; np = np->n_flink) {
1501 if (is_addr_invalid(np,
1502 EACM_NOLOG | (m & m_NONAME ? EACM_NONAME : EACM_NONE)))
1503 continue;
1504 /* File and pipe addresses only printed with set *add-file-recipients* */
1505 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1506 continue;
1508 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1509 if (putc(',', fo) == EOF)
1510 goto jleave;
1511 m |= m_CSEEN;
1512 ++col;
1515 len = strlen(np->n_fullname);
1516 if (np->n_flags & GREF)
1517 len += 2;
1518 ++col; /* The separating space */
1519 if ((m & m_INIT) && /*col > 1 &&*/ UICMP(z, col + len, >, 72)) {
1520 if (fputs("\n ", fo) == EOF)
1521 goto jleave;
1522 col = 1;
1523 m &= ~m_CSEEN;
1524 } else
1525 putc(' ', fo);
1526 m = (m & ~m_CSEEN) | m_INIT;
1529 char *hb = np->n_fullname;
1530 /* GREF needs to be placed in angle brackets, but which are missing */
1531 if (np->n_type & GREF) {
1532 hb = ac_alloc(len + 2 +1);
1533 hb[0] = '<';
1534 hb[len + 1] = '>';
1535 hb[len + 2] = '\0';
1536 memcpy(hb + 1, np->n_fullname, len);
1537 len += 2;
1539 len = xmime_write(hb, len, fo,
1540 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1541 if (np->n_type & GREF)
1542 ac_free(hb);
1544 if (len < 0)
1545 goto jleave;
1546 col += len;
1549 if (putc('\n', fo) != EOF)
1550 rv = 0;
1551 jleave:
1552 NYD_LEAVE;
1553 return rv;
1556 static int
1557 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1558 int add_resent)
1560 size_t cnt, c, bufsize = 0;
1561 char *buf = NULL;
1562 char const *cp;
1563 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1564 int rv = 1;
1565 NYD_ENTER;
1567 cnt = mp->m_size;
1569 /* Write the Resent-Fields */
1570 if (add_resent) {
1571 fputs("Resent-", fo);
1572 mkdate(fo, "Date");
1573 if ((cp = myaddrs(NULL)) != NULL) {
1574 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1575 &fromfield, 0))
1576 goto jleave;
1578 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1579 if ((cp = ok_vlook(sender)) != NULL) {
1580 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1581 &senderfield, 0))
1582 goto jleave;
1584 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1585 goto jleave;
1586 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1587 (cp = _message_id(NULL)) != NULL)
1588 fprintf(fo, "Resent-%s\n", cp);
1591 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1592 goto jleave;
1593 if (!_check_dispo_notif(mdn, NULL, fo))
1594 goto jleave;
1596 /* Write the original headers */
1597 while (cnt > 0) {
1598 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1599 break;
1600 if (ascncasecmp("status:", buf, 7) &&
1601 ascncasecmp("disposition-notification-to:", buf, 28) &&
1602 !is_head(buf, c, FAL0))
1603 fwrite(buf, sizeof *buf, c, fo);
1604 if (cnt > 0 && *buf == '\n')
1605 break;
1608 /* Write the message body */
1609 while (cnt > 0) {
1610 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1611 break;
1612 if (cnt == 0 && *buf == '\n')
1613 break;
1614 fwrite(buf, sizeof *buf, c, fo);
1616 if (buf != NULL)
1617 free(buf);
1618 if (ferror(fo)) {
1619 n_perr(_("temporary mail file"), 0);
1620 goto jleave;
1622 rv = 0;
1623 jleave:
1624 NYD_LEAVE;
1625 return rv;
1628 FL int
1629 mail(struct name *to, struct name *cc, struct name *bcc, char *subject,
1630 struct attachment *attach, char *quotefile, int recipient_record)
1632 struct header head;
1633 struct str in, out;
1634 NYD_ENTER;
1636 memset(&head, 0, sizeof head);
1638 /* The given subject may be in RFC1522 format. */
1639 if (subject != NULL) {
1640 in.s = subject;
1641 in.l = strlen(subject);
1642 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1643 head.h_subject = out.s;
1645 head.h_to = to;
1646 head.h_cc = cc;
1647 head.h_bcc = bcc;
1648 head.h_attach = attach;
1650 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1652 if (subject != NULL)
1653 free(out.s);
1654 NYD_LEAVE;
1655 return 0;
1658 FL int
1659 c_sendmail(void *v)
1661 int rv;
1662 NYD_ENTER;
1664 rv = sendmail_internal(v, 0);
1665 NYD_LEAVE;
1666 return rv;
1669 FL int
1670 c_Sendmail(void *v)
1672 int rv;
1673 NYD_ENTER;
1675 rv = sendmail_internal(v, 1);
1676 NYD_LEAVE;
1677 return rv;
1680 FL enum okay
1681 mail1(struct header *hp, int printheaders, struct message *quote,
1682 char *quotefile, int recipient_record, int doprefix)
1684 struct sendbundle sb;
1685 struct name *to;
1686 FILE *mtf, *nmtf;
1687 bool_t dosign;
1688 enum okay rv = STOP;
1689 NYD_ENTER;
1691 _sendout_error = FAL0;
1692 __sendout_ident = NULL;
1694 /* Update some globals we likely need first */
1695 time_current_update(&time_current, TRU1);
1697 /* Collect user's mail from standard input. Get the result as mtf */
1698 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1699 if (mtf == NULL)
1700 goto j_leave;
1702 dosign = TRUM1;
1704 /* */
1705 if (options & OPT_INTERACTIVE) {
1706 if (ok_blook(asksign))
1707 dosign = getapproval(_("Sign this message"), TRU1);
1710 if (fsize(mtf) == 0) {
1711 if (options & OPT_E_FLAG)
1712 goto jleave;
1713 if (hp->h_subject == NULL)
1714 printf(_("No message, no subject; hope that's ok\n"));
1715 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1716 printf(_("Null message body; hope that's ok\n"));
1719 if (dosign == TRUM1)
1720 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1721 #ifndef HAVE_SSL
1722 if (dosign) {
1723 n_err(_("No SSL support compiled in\n"));
1724 goto jleave;
1726 #endif
1728 /* XXX Update time_current again; once collect() offers editing of more
1729 * XXX headers, including Date:, this must only happen if Date: is the
1730 * XXX same that it was before collect() (e.g., postponing etc.).
1731 * XXX But *do* update otherwise because the mail seems to be backdated
1732 * XXX if the user edited some time, which looks odd and it happened
1733 * XXX to me that i got mis-dated response mails due to that... */
1734 time_current_update(&time_current, TRU1);
1736 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1737 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1738 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1739 * TODO header fields ONCE, call that ONCE after user editing etc. has
1740 * TODO completed (one edit cycle) */
1742 /* Take the user names from the combined to and cc lists and do all the
1743 * alias processing. The POSIX standard says:
1744 * The names shall be substituted when alias is used as a recipient
1745 * address specified by the user in an outgoing message (that is,
1746 * other recipients addressed indirectly through the reply command
1747 * shall not be substituted in this manner).
1748 * S-nail thus violates POSIX, as has been pointed out correctly by
1749 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1750 * disputable anyway. Go for user friendliness */
1752 to = namelist_vaporise_head(hp,
1753 (EACM_NORMAL |
1754 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1755 TRU1, &_sendout_error);
1756 if (to == NULL) {
1757 n_err(_("No recipients specified\n"));
1758 goto jfail_dead;
1760 if (_sendout_error < 0) {
1761 n_err(_("Some addressees were classified as \"hard error\"\n"));
1762 goto jfail_dead;
1765 /* */
1766 memset(&sb, 0, sizeof sb);
1767 sb.sb_hp = hp;
1768 sb.sb_to = to;
1769 sb.sb_input = mtf;
1770 if ((dosign || count_nonlocal(to) > 0) &&
1771 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1772 /* TODO saving $DEAD and recovering etc is not yet well defined */
1773 goto jfail_dead;
1775 /* 'Bit ugly kind of control flow until we find a charset that does it */
1776 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1777 int err;
1779 if (!charset_iter_is_valid())
1781 else if ((nmtf = infix(hp, mtf)) != NULL)
1782 break;
1783 else if ((err = errno) == EILSEQ || err == EINVAL) {
1784 rewind(mtf);
1785 continue;
1788 n_perr(_("Failed to create encoded message"), 0);
1789 goto jfail_dead;
1791 mtf = nmtf;
1793 /* */
1794 #ifdef HAVE_SSL
1795 if (dosign) {
1796 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1797 goto jfail_dead;
1798 Fclose(mtf);
1799 mtf = nmtf;
1801 #endif
1803 /* TODO truly - i still don't get what follows: (1) we deliver file
1804 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1805 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1807 /* Deliver pipe and file addressees */
1808 to = _outof(to, mtf, &_sendout_error);
1809 if (_sendout_error)
1810 savedeadletter(mtf, FAL0);
1812 to = elide(to); /* XXX needed only to drop GDELs due to _outof()! */
1814 { ui32_t cnt = count(to);
1815 if ((!recipient_record || cnt > 0) &&
1816 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1817 goto jleave;
1818 if (cnt > 0) {
1819 sb.sb_hp = hp;
1820 sb.sb_to = to;
1821 sb.sb_input = mtf;
1822 if (_transfer(&sb))
1823 rv = OKAY;
1824 } else if (!_sendout_error)
1825 rv = OKAY;
1827 jleave:
1828 Fclose(mtf);
1829 j_leave:
1830 if (_sendout_error)
1831 exit_status |= EXIT_SEND_ERROR;
1832 NYD_LEAVE;
1833 return rv;
1835 jfail_dead:
1836 _sendout_error = TRU1;
1837 savedeadletter(mtf, TRU1);
1838 n_err(_("... message not sent\n"));
1839 goto jleave;
1842 FL int
1843 mkdate(FILE *fo, char const *field)
1845 struct tm tmpgm, *tmptr;
1846 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1847 NYD_ENTER;
1849 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1850 tzdiff = time_current.tc_time - mktime(&tmpgm);
1851 tzdiff_hour = (int)(tzdiff / 60);
1852 tzdiff_min = tzdiff_hour % 60;
1853 tzdiff_hour /= 60;
1854 tmptr = &time_current.tc_local;
1855 if (tmptr->tm_isdst > 0)
1856 ++tzdiff_hour;
1857 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1858 field,
1859 weekday_names[tmptr->tm_wday],
1860 tmptr->tm_mday, month_names[tmptr->tm_mon],
1861 tmptr->tm_year + 1900, tmptr->tm_hour,
1862 tmptr->tm_min, tmptr->tm_sec,
1863 tzdiff_hour * 100 + tzdiff_min);
1864 NYD_LEAVE;
1865 return rv;
1868 FL int
1869 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1870 enum sendaction action, enum conversion convert, char const *contenttype,
1871 char const *charset)
1873 #define FMT_CC_AND_BCC() \
1874 do {\
1875 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1876 if (fmt("Cc:", hp->h_cc, fo, ff))\
1877 goto jleave;\
1878 ++gotcha;\
1880 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1881 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1882 goto jleave;\
1883 ++gotcha;\
1885 } while (0)
1887 char const *addr;
1888 size_t gotcha;
1889 struct name *np, *fromasender = NULL;
1890 int stealthmua, rv = 1;
1891 bool_t nodisp;
1892 enum fmt_flags ff;
1893 NYD_ENTER;
1895 if ((addr = ok_vlook(stealthmua)) != NULL)
1896 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1897 else
1898 stealthmua = 0;
1899 gotcha = 0;
1900 nodisp = (action != SEND_TODISP);
1901 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1903 if (w & GDATE)
1904 mkdate(fo, "Date"), ++gotcha;
1905 if (w & GIDENT) {
1906 if (hp->h_from == NULL || hp->h_sender == NULL)
1907 setup_from_and_sender(hp);
1909 if (hp->h_from != NULL) {
1910 if (fmt("From:", hp->h_from, fo, ff))
1911 goto jleave;
1912 ++gotcha;
1915 if (hp->h_sender != NULL) {
1916 if (fmt("Sender:", hp->h_sender, fo, ff))
1917 goto jleave;
1918 ++gotcha;
1921 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1922 if (fromasender == NULL)
1923 goto jleave;
1924 /* Note that fromasender is (NULL,) 0x1 or real sender here */
1927 #if 1
1928 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
1929 if (fmt("To:", hp->h_to, fo, ff))
1930 goto jleave;
1931 ++gotcha;
1933 #else
1934 /* TODO Thought about undisclosed recipients:;, but would be such a fake
1935 * TODO given that we cannot handle group addresses. Ridiculous */
1936 if (w & GTO) {
1937 struct name *xto;
1939 if ((xto = hp->h_to) != NULL) {
1940 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
1942 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
1943 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
1944 goto jto_fmt;
1945 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
1946 goto jleave;
1947 ++gotcha;
1948 } else if (nosend_msg == TRUM1) {
1949 jto_fmt:
1950 if (fmt("To:", hp->h_to, fo, ff))
1951 goto jleave;
1952 ++gotcha;
1955 #endif
1957 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
1958 FMT_CC_AND_BCC();
1960 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
1961 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
1962 goto jleave;
1963 if (hp->h_subject != NULL) {
1964 char *sub = subject_re_trim(hp->h_subject);
1965 size_t sublen = strlen(sub);
1967 /* Trimmed something, (re-)add Re: */
1968 if (sub != hp->h_subject) {
1969 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
1970 goto jleave;
1971 if (sublen > 0 &&
1972 xmime_write(sub, sublen, fo,
1973 (!nodisp ? CONV_NONE : CONV_TOHDR),
1974 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1975 goto jleave;
1977 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
1978 else if (*sub != '\0') {
1979 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
1980 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
1981 goto jleave;
1984 ++gotcha;
1985 putc('\n', fo);
1988 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
1989 FMT_CC_AND_BCC();
1991 if ((w & GMSGID) && stealthmua <= 0 && (addr = _message_id(hp)) != NULL) {
1992 if (fputs(addr, fo) == EOF || putc('\n', fo) == EOF)
1993 goto jleave;
1994 ++gotcha;
1997 if ((np = hp->h_ref) != NULL && (w & GREF)) {
1998 if (fmt("References:", np, fo, 0))
1999 goto jleave;
2000 if (hp->h_in_reply_to == NULL && np->n_name != NULL) {
2001 while (np->n_flink != NULL)
2002 np = np->n_flink;
2003 if (!is_addr_invalid(np, /* TODO check that on parser side! */
2004 /*EACM_STRICT | TODO '/' valid!! */ EACM_NOLOG | EACM_NONAME)) {
2005 if (fprintf(fo,
2006 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC5322 3.6.4*/) < 0)
2007 goto jleave;
2008 ++gotcha;
2009 } else {
2010 n_err(_("Invalid address in mail header: %s\n"), np->n_name);
2011 goto jleave;
2015 if ((np = hp->h_in_reply_to) != NULL && (w & GREF)) {
2016 if (fprintf(fo,
2017 "In-Reply-To: <%s>\n", np->n_name /*TODO RFC 5322 3.6.4*/) < 0)
2018 goto jleave;
2019 ++gotcha;
2022 if (w & GIDENT) {
2023 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2024 * the list first.. TODO it is a terrible codebase.. */
2025 if ((np = hp->h_replyto) != NULL)
2026 np = namelist_dup(np, np->n_type);
2027 else if ((addr = ok_vlook(replyto)) != NULL)
2028 np = lextract(addr, GEXTRA | GFULL);
2029 if (np != NULL &&
2030 (np = elide(
2031 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2032 NULL))) != NULL) {
2033 if (fmt("Reply-To:", np, fo, ff))
2034 goto jleave;
2035 ++gotcha;
2039 if ((w & GIDENT) && !nosend_msg) {
2040 /* Mail-Followup-To: TODO factor out this huge block of code */
2041 /* Place ourselfs in there if any non-subscribed list is an addressee */
2042 if ((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2043 ok_blook(followup_to)) {
2044 enum {_ANYLIST=1<<(HF__NEXT_SHIFT+0), _HADMFT=1<<(HF__NEXT_SHIFT+1)};
2046 ui32_t f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2047 struct name *mft, *x;
2049 /* But for that, we have to remove all incarnations of ourselfs first.
2050 * TODO It is total crap that we have delete_alternates(), is_myname()
2051 * TODO or whatever; these work only with variables, not with data
2052 * TODO that is _currently_ in some header fields!!! v15.0: complete
2053 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2054 * TODO then this should be a really cheap thing in here... */
2055 np = elide(delete_alternates(cat(
2056 namelist_dup(hp->h_to, GEXTRA | GFULL),
2057 namelist_dup(hp->h_cc, GEXTRA | GFULL))));
2058 addr = hp->h_list_post;
2060 for (mft = NULL; (x = np) != NULL;) {
2061 si8_t ml;
2062 np = np->n_flink;
2064 if ((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2065 addr != NULL && !asccasecmp(addr, x->n_name))
2066 ml = MLIST_KNOWN;
2068 /* Any non-subscribed list? Add ourselves */
2069 switch (ml) {
2070 case MLIST_KNOWN:
2071 f |= HF_MFT_SENDER;
2072 /* FALLTHRU */
2073 case MLIST_SUBSCRIBED:
2074 f |= _ANYLIST;
2075 goto j_mft_add;
2076 case MLIST_OTHER:
2077 if (!(f & HF_LIST_REPLY)) {
2078 j_mft_add:
2079 if (!is_addr_invalid(x,
2080 EACM_STRICT | EACM_NOLOG | EACM_NONAME)) {
2081 x->n_flink = mft;
2082 mft = x;
2083 } /* XXX write some warning? if verbose?? */
2084 continue;
2086 /* And if this is a reply that honoured a MFT: header then we'll
2087 * also add all members of the original MFT: that are still
2088 * addressed by us, regardless of all other circumstances */
2089 else if (f & _HADMFT) {
2090 struct name *ox;
2091 for (ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2092 if (!asccasecmp(ox->n_name, x->n_name))
2093 goto j_mft_add;
2095 break;
2099 if (f & (_ANYLIST | _HADMFT) && mft != NULL) {
2100 if (((f & HF_MFT_SENDER) ||
2101 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2102 (np = fromasender) != NULL && np != (struct name*)0x1) {
2103 np = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2104 np->n_flink = mft;
2105 mft = np;
2108 if (fmt("Mail-Followup-To:", mft, fo, ff))
2109 goto jleave;
2110 ++gotcha;
2114 if (!_check_dispo_notif(fromasender, hp, fo))
2115 goto jleave;
2118 if ((w & GUA) && stealthmua == 0) {
2119 if (fprintf(fo, "User-Agent: %s %s\n", uagent, ok_vlook(version)) < 0)
2120 goto jleave;
2121 ++gotcha;
2124 /* The user may have placed headers when editing */
2125 if(1){
2126 struct n_header_field *hfp;
2128 if((hfp = hp->h_user_headers) != NULL){
2129 if(!_sendout_header_list(fo, hfp, nodisp))
2130 goto jleave;
2131 ++gotcha;
2135 /* Custom headers, as via `customhdr' */
2136 if(!nosend_msg){
2137 struct n_header_field *hfp;
2139 /* With iconv support we likely have a cached result */
2140 if((hfp = hp->h_custom_headers) == NULL)
2141 hp->h_custom_headers = hfp = n_customhdr_query();
2142 if(hfp != NULL){
2143 if(!_sendout_header_list(fo, hfp, nodisp))
2144 goto jleave;
2145 ++gotcha;
2149 /* We don't need MIME unless.. we need MIME?! */
2150 if ((w & GMIME) && ((pstate & PS_HEADER_NEEDED_MIME) ||
2151 hp->h_attach != NULL ||
2152 ((options & OPT_Mm_FLAG) && option_Mm_arg != NULL) ||
2153 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2154 ++gotcha;
2155 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2156 goto jleave;
2157 if (hp->h_attach != NULL) {
2158 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2159 if (fprintf(fo,
2160 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2161 _sendout_boundary) < 0)
2162 goto jleave;
2163 } else {
2164 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2165 goto jleave;
2169 if (gotcha && (w & GNL))
2170 if (putc('\n', fo) == EOF)
2171 goto jleave;
2172 rv = 0;
2173 jleave:
2174 NYD_LEAVE;
2175 return rv;
2176 #undef FMT_CC_AND_BCC
2179 FL enum okay
2180 resend_msg(struct message *mp, struct name *to, int add_resent) /* TODO check */
2182 struct sendbundle sb;
2183 FILE *ibuf, *nfo, *nfi;
2184 char *tempMail;
2185 enum okay rv = STOP;
2186 NYD_ENTER;
2188 _sendout_error = FAL0;
2189 __sendout_ident = NULL;
2191 /* Update some globals we likely need first */
2192 time_current_update(&time_current, TRU1);
2194 if ((to = checkaddrs(to,
2195 (EACM_NORMAL |
2196 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2197 &_sendout_error)) == NULL)
2198 goto jleave;
2199 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2200 if (_sendout_error < 0)
2201 n_err(_("Some addressees were classified as \"hard error\"\n"));
2203 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2204 == NULL) {
2205 _sendout_error = TRU1;
2206 n_perr(_("temporary mail file"), 0);
2207 goto jleave;
2209 if ((nfi = Fopen(tempMail, "r")) == NULL)
2210 n_perr(tempMail, 0);
2211 Ftmp_release(&tempMail);
2212 if (nfi == NULL)
2213 goto jerr_o;
2215 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2216 goto jerr_io;
2218 memset(&sb, 0, sizeof sb);
2219 sb.sb_to = to;
2220 sb.sb_input = nfi;
2221 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2222 /* ..wait until we can write DEAD */
2223 _sendout_error = -1;
2225 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2226 jfail_dead:
2227 savedeadletter(nfi, TRU1);
2228 n_err(_("... message not sent\n"));
2229 jerr_io:
2230 Fclose(nfi);
2231 jerr_o:
2232 Fclose(nfo);
2233 _sendout_error = TRU1;
2234 goto jleave;
2237 if (_sendout_error < 0)
2238 goto jfail_dead;
2240 Fclose(nfo);
2241 rewind(nfi);
2243 to = _outof(to, nfi, &_sendout_error);
2245 if (_sendout_error)
2246 savedeadletter(nfi, FAL0);
2248 if (count(to = elide(to)) != 0) {
2249 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2250 sb.sb_to = to;
2251 /*sb.sb_input = nfi;*/
2252 if (_transfer(&sb))
2253 rv = OKAY;
2255 } else if (!_sendout_error)
2256 rv = OKAY;
2258 Fclose(nfi);
2259 jleave:
2260 if (_sendout_error)
2261 exit_status |= EXIT_SEND_ERROR;
2262 NYD_LEAVE;
2263 return rv;
2266 FL void
2267 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2268 struct n_string line;
2269 int c;
2270 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2271 ul_i bytes, lines;
2272 FILE *dbuf;
2273 char const *cp, *cpq;
2274 NYD_ENTER;
2276 if(!ok_blook(save))
2277 goto jleave;
2279 if(fflush_rewind_first){
2280 fflush(fp);
2281 rewind(fp);
2283 if(fsize(fp) == 0)
2284 goto jleave;
2286 cp = n_getdeadletter();
2287 cpq = n_shexp_quote_cp(cp, FAL0);
2289 if(options & OPT_DEBUG){
2290 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2291 goto jleave;
2294 if((dbuf = Fopen(cp, "w")) == NULL){
2295 n_perr(_("Cannot save to $DEAD"), 0);
2296 goto jleave;
2298 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2300 printf("%s ", cpq);
2301 fflush(stdout);
2303 /* TODO savedeadletter() non-conforming: should check whether we have any
2304 * TODO headers, if not we need to place "something", anything will do.
2305 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2306 * TODO I/O error handling missing. Yuck! */
2307 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2308 bytes = (ul_i)fprintf(dbuf, "From %s %s", myname, time_current.tc_ctime);
2309 lines = 1;
2310 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2311 n_string_trunc(&line, 0);
2312 while((c = getc(fp)) != EOF && c != '\n')
2313 n_string_push_c(&line, c);
2315 /* TODO It may be that we have only some plain text. It may be that we
2316 * TODO have a complete MIME encoded message. We don't know, and we
2317 * TODO have no usable mechanism to dig it!! tWe need v15! */
2318 if(!(flags & a_INIT)){
2319 size_t i;
2321 /* Throw away leading empty lines! */
2322 if(line.s_len == 0)
2323 continue;
2324 for(i = 0; i < line.s_len; ++i){
2325 if(fieldnamechar(line.s_dat[i]))
2326 continue;
2327 if(line.s_dat[i] == ':'){
2328 flags |= a_INIT;
2329 break;
2330 }else{
2331 /* We have no headers, this is already a body line! */
2332 flags |= a_INIT | a_BODY;
2333 break;
2336 /* Well, i had to check whether the RFC allows this. Assume we've
2337 * passed the headers, too, then! */
2338 if(i == line.s_len)
2339 flags |= a_INIT | a_BODY;
2341 if(flags & a_BODY){
2342 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2343 n_string_unshift_c(&line, '>');
2345 if(line.s_len == 0)
2346 flags |= a_BODY | a_NL;
2347 else
2348 flags &= ~a_NL;
2350 n_string_push_c(&line, '\n');
2351 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2353 if(!(flags & a_NL)){
2354 putc('\n', dbuf);
2355 ++bytes;
2356 ++lines;
2358 n_string_gut(&line);
2360 Fclose(dbuf);
2361 printf("%lu/%lu\n", lines, bytes);
2362 fflush(stdout);
2364 rewind(fp);
2365 jleave:
2366 NYD_LEAVE;
2369 #undef SEND_LINESIZE
2371 /* s-it-mode */