Fix typo introduced in IMAP reinstantiation
[s-mailx.git] / sendout.c
blob12d309e81dacfe2de5b92ab3ded3c1af4003688a
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Message sending lifecycle, header composing, etc.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 #undef n_FILE
36 #define n_FILE sendout
38 #ifndef HAVE_AMALGAMATION
39 # include "nail.h"
40 #endif
42 #undef SEND_LINESIZE
43 #define SEND_LINESIZE \
44 ((1024 / B64_ENCODE_INPUT_PER_LINE) * B64_ENCODE_INPUT_PER_LINE)
46 enum fmt_flags{
47 FMT_INC_INVADDR = 1<<0, /* _Do_ include invalid addresses */
48 FMT_DOMIME = 1<<1, /* Perform MIME conversion */
49 FMT_COMMA = GCOMMA,
50 FMT_FILES = GFILES,
51 _FMT_GMASK = FMT_COMMA | FMT_FILES
53 n_CTA(!(_FMT_GMASK & (FMT_INC_INVADDR | FMT_DOMIME)),
54 "Code-required condition not satisfied but actual bit carrier value");
56 static char const *__sendout_ident; /* TODO temporary hack; rewrite puthead() */
57 static char * _sendout_boundary;
58 static si8_t _sendout_error;
60 /* */
61 static enum okay _putname(char const *line, enum gfield w,
62 enum sendaction action, size_t *gotcha,
63 char const *prefix, FILE *fo, struct name **xp,
64 enum gfield addflags);
66 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
67 * headers, respectively */
68 static int _put_ct(FILE *fo, char const *contenttype,
69 char const *charset);
70 SINLINE int _put_cte(FILE *fo, enum conversion conv);
71 static int _put_cd(FILE *fo, char const *cd, char const *filename);
73 /* Put all entries of the given header list */
74 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
75 bool_t nodisp);
77 /* Write an attachment to the file buffer, converting to MIME */
78 static int a_sendout_attach_file(struct header *hp, struct attachment *ap,
79 FILE *fo);
80 static int a_sendout__attach_file(struct header *hp, struct attachment *ap,
81 FILE *fo);
83 /* There are non-local receivers, collect credentials etc. */
84 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
85 bool_t signing_caps);
87 /* Attach a message to the file buffer */
88 static int a_sendout_attach_msg(struct header *hp, struct attachment *ap,
89 FILE *fo);
91 /* Generate the body of a MIME multipart message */
92 static int make_multipart(struct header *hp, int convert, FILE *fi,
93 FILE *fo, char const *contenttype, char const *charset);
95 /* Prepend a header in front of the collected stuff and return the new file */
96 static FILE * infix(struct header *hp, FILE *fi);
98 /* Check whether Disposition-Notification-To: is desired */
99 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
100 FILE *fo);
102 /* Send mail to a bunch of user names. The interface is through mail() */
103 static int sendmail_internal(void *v, int recipient_record);
105 /* Deal with file and pipe addressees */
106 static struct name *a_sendout_file_a_pipe(struct name *names, FILE *fo,
107 bool_t *senderror);
109 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
110 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
112 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
114 /* */
115 static bool_t _transfer(struct sendbundle *sbp);
117 static bool_t __mta_start(struct sendbundle *sbp);
118 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
119 static void __mta_debug(struct sendbundle *sbp, char const *mta,
120 char const **args);
122 /* Create a Message-ID: header field. Use either host name or from address */
123 static char const *a_sendout_random_id(struct header *hp, bool_t msgid);
125 /* Format the given header line to not exceed 72 characters */
126 static int fmt(char const *str, struct name *np, FILE *fo,
127 enum fmt_flags ff);
129 /* Rewrite a message for resending, adding the Resent-Headers */
130 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
131 struct name *to, int add_resent);
133 static enum okay
134 _putname(char const *line, enum gfield w, enum sendaction action,
135 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
136 enum gfield addflags)
138 struct name *np;
139 enum okay rv = STOP;
140 NYD_ENTER;
142 np = lextract(line, GEXTRA | GFULL | addflags);
143 if (xp != NULL)
144 *xp = np;
145 if (np == NULL)
147 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
148 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
149 rv = OKAY;
150 else if (gotcha != NULL)
151 ++(*gotcha);
152 NYD_LEAVE;
153 return rv;
156 static int
157 _put_ct(FILE *fo, char const *contenttype, char const *charset)
159 int rv, i;
160 NYD2_ENTER;
162 if ((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
163 goto jerr;
165 if (charset == NULL)
166 goto jend;
168 if (putc(';', fo) == EOF)
169 goto jerr;
170 ++rv;
172 if (strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50) {
173 if (putc('\n', fo) == EOF)
174 goto jerr;
175 ++rv;
178 /* C99 */{
179 size_t l = strlen(charset);
180 char *lcs = salloc(l +1);
182 for(l = 0; *charset != '\0'; ++l, ++charset)
183 lcs[l] = lowerconv(*charset);
184 lcs[l] = '\0';
185 charset = lcs;
187 if ((i = fprintf(fo, " charset=%s", charset)) < 0)
188 goto jerr;
189 rv += i;
191 jend:
192 if (putc('\n', fo) == EOF)
193 goto jerr;
194 ++rv;
195 jleave:
196 NYD2_LEAVE;
197 return rv;
198 jerr:
199 rv = -1;
200 goto jleave;
203 SINLINE int
204 _put_cte(FILE *fo, enum conversion conv)
206 int rv;
207 NYD2_ENTER;
209 /* RFC 2045, 6.1.:
210 * This is the default value -- that is,
211 * "Content-Transfer-Encoding: 7BIT" is assumed if the
212 * Content-Transfer-Encoding header field is not present.
214 rv = (conv == CONV_7BIT) ? 0
215 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
216 mime_enc_from_conversion(conv));
217 NYD2_LEAVE;
218 return rv;
221 static int
222 _put_cd(FILE *fo, char const *cd, char const *filename)
224 struct str f;
225 si8_t mpc;
226 int rv;
227 NYD2_ENTER;
229 f.s = NULL;
231 /* xxx Ugly with the trailing space in case of wrap! */
232 if ((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
233 goto jerr;
235 if (!(mpc = mime_param_create(&f, "filename", filename)))
236 goto jerr;
237 /* Always fold if result contains newlines */
238 if (mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
239 if (putc('\n', fo) == EOF || putc(' ', fo) == EOF)
240 goto jerr;
241 rv += 2;
243 if (fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
244 goto jerr;
245 rv += (int)++f.l;
247 jleave:
248 NYD2_LEAVE;
249 return rv;
250 jerr:
251 rv = -1;
252 goto jleave;
256 static bool_t
257 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
258 bool_t rv;
259 NYD2_ENTER;
261 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
262 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
263 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
264 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
265 (!nodisp ? CONV_NONE : CONV_TOHDR),
266 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0 ||
267 putc('\n', fo) == EOF){
268 rv = FAL0;
269 break;
271 NYD_LEAVE;
272 return rv;
275 static int
276 a_sendout_attach_file(struct header *hp, struct attachment *ap, FILE *fo)
278 /* TODO of course, the MIME classification needs to performed once
279 * TODO only, not for each and every charset anew ... ;-// */
280 char *charset_iter_orig[2];
281 long offs;
282 int err = 0;
283 NYD_ENTER;
285 /* Is this already in target charset? Simply copy over */
286 if (ap->a_conv == AC_TMPFILE) {
287 err = a_sendout__attach_file(hp, ap, fo);
288 Fclose(ap->a_tmpf);
289 DBG( ap->a_tmpf = NULL; )
290 goto jleave;
293 /* If we don't apply charset conversion at all (fixed input=ouput charset)
294 * we also simply copy over, since it's the users desire */
295 if (ap->a_conv == AC_FIX_INCS) {
296 ap->a_charset = ap->a_input_charset;
297 err = a_sendout__attach_file(hp, ap, fo);
298 goto jleave;
299 } else
300 assert(ap->a_input_charset != NULL);
302 /* Otherwise we need to iterate over all possible output charsets */
303 if ((offs = ftell(fo)) == -1) {
304 err = n_ERR_IO;
305 goto jleave;
307 charset_iter_recurse(charset_iter_orig);
308 for (charset_iter_reset(NULL);; charset_iter_next()) {
309 if (!charset_iter_is_valid()) {
310 err = n_ERR_ILSEQ;
311 break;
313 err = a_sendout__attach_file(hp, ap, fo);
314 if (err == 0 || (err != n_ERR_ILSEQ && err != n_ERR_INVAL))
315 break;
316 clearerr(fo);
317 if (fseek(fo, offs, SEEK_SET) == -1) {
318 err = n_ERR_IO;
319 break;
321 if (ap->a_conv != AC_DEFAULT) {
322 err = n_ERR_ILSEQ;
323 break;
325 ap->a_charset = NULL;
327 charset_iter_restore(charset_iter_orig);
328 jleave:
329 NYD_LEAVE;
330 return err;
333 static int
334 a_sendout__attach_file(struct header *hp, struct attachment *ap, FILE *fo)
336 int err = 0, do_iconv;
337 FILE *fi;
338 char const *charset;
339 enum conversion convert;
340 char *buf;
341 size_t bufsize, lncnt, inlen;
342 NYD_ENTER;
344 /* Either charset-converted temporary file, or plain path */
345 if (ap->a_conv == AC_TMPFILE) {
346 fi = ap->a_tmpf;
347 assert(ftell(fi) == 0);
348 } else if ((fi = Fopen(ap->a_path, "r")) == NULL) {
349 err = n_err_no;
350 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0),
351 n_err_to_doc(err));
352 goto jleave;
355 /* MIME part header for attachment */
356 { char const *ct, *cp;
358 ct = ap->a_content_type;
359 charset = ap->a_charset;
360 convert = n_mimetype_classify_file(fi, (char const**)&ct,
361 &charset, &do_iconv);
362 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
363 ap->a_conv == AC_TMPFILE)
364 do_iconv = 0;
366 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
367 _put_ct(fo, ct, charset) < 0 || _put_cte(fo, convert) < 0 ||
368 _put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
369 goto jerr_header;
371 if((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")){
372 struct name *np;
374 if((np = ap->a_content_id) != NULL)
375 cp = np->n_name;
376 else
377 cp = a_sendout_random_id(hp, FAL0);
379 if(cp != NULL && fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
380 goto jerr_header;
383 if ((cp = ap->a_content_description) != NULL &&
384 (fputs("Content-Description: ", fo) == EOF ||
385 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV)
386 ) < 0 || putc('\n', fo) == EOF))
387 goto jerr_header;
389 if (putc('\n', fo) == EOF) {
390 jerr_header:
391 err = n_err_no;
392 goto jerr_fclose;
396 #ifdef HAVE_ICONV
397 if (iconvd != (iconv_t)-1)
398 n_iconv_close(iconvd);
399 if (do_iconv) {
400 if (asccasecmp(charset, ap->a_input_charset) &&
401 (iconvd = n_iconv_open(charset, ap->a_input_charset)
402 ) == (iconv_t)-1 && (err = n_err_no) != 0) {
403 if (err == n_ERR_INVAL)
404 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
405 charset);
406 else
407 n_err(_("iconv_open: %s\n"), n_err_to_doc(err));
408 goto jerr_fclose;
411 #endif
413 bufsize = SEND_LINESIZE;
414 buf = smalloc(bufsize);
415 if (convert == CONV_TOQP
416 #ifdef HAVE_ICONV
417 || iconvd != (iconv_t)-1
418 #endif
420 lncnt = fsize(fi);
421 for (;;) {
422 if (convert == CONV_TOQP
423 #ifdef HAVE_ICONV
424 || iconvd != (iconv_t)-1
425 #endif
427 if (fgetline(&buf, &bufsize, &lncnt, &inlen, fi, 0) == NULL)
428 break;
429 } else if ((inlen = fread(buf, sizeof *buf, bufsize, fi)) == 0)
430 break;
431 if (xmime_write(buf, inlen, fo, convert, TD_ICONV) < 0) {
432 err = n_err_no;
433 goto jerr;
436 if (ferror(fi))
437 err = n_ERR_DOM;
438 jerr:
439 free(buf);
440 jerr_fclose:
441 if (ap->a_conv != AC_TMPFILE)
442 Fclose(fi);
443 jleave:
444 NYD_LEAVE;
445 return err;
448 static bool_t
449 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
451 bool_t v15, rv = FAL0;
452 char *shost, *from;
453 #ifdef HAVE_SMTP
454 char const *smtp;
455 #endif
456 NYD_ENTER;
458 v15 = ok_blook(v15_compat);
459 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
460 from = ((signing_caps || !v15 || shost == NULL)
461 ? skin(myorigin(sbp->sb_hp)) : NULL);
463 if (signing_caps) {
464 if (from == NULL) {
465 #ifdef HAVE_SSL
466 n_err(_("No *from* address for signing specified\n"));
467 goto jleave;
468 #endif
469 } else
470 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
473 #ifndef HAVE_SMTP
474 rv = TRU1;
475 #else
476 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
477 char const *proto;
479 /* *smtp* OBSOLETE message in mta_start() */
480 if((proto = n_servbyname(smtp = ok_vlook(mta), NULL)) == NULL ||
481 *proto == '\0'){
482 rv = TRU1;
483 goto jleave;
487 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
488 goto jleave;
490 if (v15) {
491 if (shost == NULL) {
492 if (from == NULL)
493 goto jenofrom;
494 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
495 } else
496 __sendout_ident = sbp->sb_url.url_u_h.s;
497 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
498 goto jleave;
499 } else {
500 if ((sbp->sb_url.url_flags & n_URL_HAD_USER) ||
501 sbp->sb_url.url_pass.s != NULL) {
502 n_err(_("New-style URL used without *v15-compat* being set\n"));
503 goto jleave;
505 /* TODO part of the entire myorigin() disaster, get rid of this! */
506 if (from == NULL) {
507 jenofrom:
508 n_err(_("Your configuration requires a *from* address, "
509 "but none was given\n"));
510 goto jleave;
512 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
513 goto jleave;
514 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
517 rv = TRU1;
518 #endif /* HAVE_SMTP */
519 #if defined HAVE_SSL || defined HAVE_SMTP
520 jleave:
521 #endif
522 NYD_LEAVE;
523 return rv;
526 static int
527 a_sendout_attach_msg(struct header *hp, struct attachment *ap, FILE *fo)
529 struct message *mp;
530 char const *ccp;
531 int rv;
532 NYD_ENTER;
533 n_UNUSED(hp);
535 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
536 "Content-Disposition: inline\n", _sendout_boundary);
537 if ((ccp = ap->a_content_description) != NULL)
538 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
539 putc('\n', fo);
541 mp = message + ap->a_msgno - 1;
542 touch(mp);
543 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
544 NYD_LEAVE;
545 return rv;
548 static int
549 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
550 char const *contenttype, char const *charset)
552 struct attachment *att;
553 int rv = -1;
554 NYD_ENTER;
556 fputs("This is a multi-part message in MIME format.\n", fo);
557 if (fsize(fi) != 0) {
558 char const *cp;
559 char *buf;
560 size_t sz, bufsize, cnt;
562 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
563 _put_ct(fo, contenttype, charset) < 0 ||
564 _put_cte(fo, convert) < 0 ||
565 fprintf(fo, "Content-Disposition: inline\n") < 0)
566 goto jleave;
567 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
568 (cp = a_sendout_random_id(hp, FAL0)) != NULL &&
569 fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
570 goto jleave;
571 if(putc('\n', fo) == EOF)
572 goto jleave;
574 buf = smalloc(bufsize = SEND_LINESIZE);
575 if (convert == CONV_TOQP
576 #ifdef HAVE_ICONV
577 || iconvd != (iconv_t)-1
578 #endif
580 fflush(fi);
581 cnt = fsize(fi);
583 for (;;) {
584 if (convert == CONV_TOQP
585 #ifdef HAVE_ICONV
586 || iconvd != (iconv_t)-1
587 #endif
589 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
590 break;
591 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
592 break;
594 if (xmime_write(buf, sz, fo, convert, TD_ICONV) < 0) {
595 free(buf);
596 goto jleave;
599 free(buf);
601 if (ferror(fi))
602 goto jleave;
605 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
606 if (att->a_msgno) {
607 if (a_sendout_attach_msg(hp, att, fo) != 0)
608 goto jleave;
609 } else if (a_sendout_attach_file(hp, att, fo) != 0)
610 goto jleave;
613 /* the final boundary with two attached dashes */
614 fprintf(fo, "\n--%s--\n", _sendout_boundary);
615 rv = 0;
616 jleave:
617 NYD_LEAVE;
618 return rv;
621 static FILE *
622 infix(struct header *hp, FILE *fi) /* TODO check */
624 FILE *nfo, *nfi = NULL;
625 char *tempMail;
626 char const *contenttype, *charset = NULL;
627 enum conversion convert;
628 int do_iconv = 0, err;
629 #ifdef HAVE_ICONV
630 char const *tcs, *convhdr = NULL;
631 #endif
632 NYD_ENTER;
634 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
635 == NULL) {
636 n_perr(_("temporary mail file"), 0);
637 goto jleave;
639 if ((nfi = Fopen(tempMail, "r")) == NULL) {
640 n_perr(tempMail, 0);
641 Fclose(nfo);
643 Ftmp_release(&tempMail);
644 if (nfi == NULL)
645 goto jleave;
647 n_pstate &= ~n_PS_HEADER_NEEDED_MIME; /* TODO hack -> be carrier tracked */
649 contenttype = "text/plain"; /* XXX mail body - always text/plain, want XX? */
650 if((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL)
651 contenttype = n_poption_arg_Mm;
652 convert = n_mimetype_classify_file(fi, &contenttype, &charset, &do_iconv);
654 #ifdef HAVE_ICONV
655 tcs = ok_vlook(ttycharset);
656 if ((convhdr = need_hdrconv(hp))) {
657 if (iconvd != (iconv_t)-1) /* XXX */
658 n_iconv_close(iconvd);
659 if (asccasecmp(convhdr, tcs) != 0 &&
660 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
661 (err = n_err_no) != 0)
662 goto jiconv_err;
664 #endif
665 if (puthead(FAL0, hp, nfo,
666 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
667 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset))
668 goto jerr;
669 #ifdef HAVE_ICONV
670 if (iconvd != (iconv_t)-1)
671 n_iconv_close(iconvd);
672 #endif
674 #ifdef HAVE_ICONV
675 if (do_iconv && charset != NULL) { /*TODO charset->n_mimetype_classify_file*/
676 if (asccasecmp(charset, tcs) != 0 &&
677 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
678 (err = n_err_no) != 0) {
679 jiconv_err:
680 if (err == n_ERR_INVAL)
681 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
682 else
683 n_perr("iconv_open", 0);
684 goto jerr;
687 #endif
689 if (hp->h_attach != NULL) {
690 if (make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0)
691 goto jerr;
692 } else {
693 size_t sz, bufsize, cnt;
694 char *buf;
696 if (convert == CONV_TOQP
697 #ifdef HAVE_ICONV
698 || iconvd != (iconv_t)-1
699 #endif
701 fflush(fi);
702 cnt = fsize(fi);
704 buf = smalloc(bufsize = SEND_LINESIZE);
705 for (err = 0;;) {
706 if (convert == CONV_TOQP
707 #ifdef HAVE_ICONV
708 || iconvd != (iconv_t)-1
709 #endif
711 if (fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
712 break;
713 } else if ((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
714 break;
715 if (xmime_write(buf, sz, nfo, convert, TD_ICONV) < 0) {
716 err = 1;
717 break;
720 free(buf);
722 if (err || ferror(fi)) {
723 jerr:
724 Fclose(nfo);
725 Fclose(nfi);
726 #ifdef HAVE_ICONV
727 if (iconvd != (iconv_t)-1)
728 n_iconv_close(iconvd);
729 #endif
730 nfi = NULL;
731 goto jleave;
735 #ifdef HAVE_ICONV
736 if (iconvd != (iconv_t)-1)
737 n_iconv_close(iconvd);
738 #endif
740 fflush(nfo);
741 if ((err = ferror(nfo)))
742 n_perr(_("temporary mail file"), 0);
743 Fclose(nfo);
744 if (!err) {
745 fflush_rewind(nfi);
746 Fclose(fi);
747 } else {
748 Fclose(nfi);
749 nfi = NULL;
751 jleave:
752 NYD_LEAVE;
753 return nfi;
756 static bool_t
757 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
759 char const *from;
760 bool_t rv = TRU1;
761 NYD_ENTER;
763 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
764 * TODO not yet checked */
765 if (!ok_blook(disposition_notification_send))
766 goto jleave;
768 if (mdn != NULL && mdn != (struct name*)0x1)
769 from = mdn->n_name;
770 else if ((from = myorigin(hp)) == NULL) {
771 if (n_poption & n_PO_D_V)
772 n_err(_("*disposition-notification-send*: *from* not set\n"));
773 goto jleave;
776 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
777 rv = FAL0;
778 jleave:
779 NYD_LEAVE;
780 return rv;
783 static int
784 sendmail_internal(void *v, int recipient_record)
786 struct header head;
787 char *str = v;
788 int rv;
789 NYD_ENTER;
791 memset(&head, 0, sizeof head);
792 head.h_mailx_command = "mail";
793 if((head.h_to = lextract(str, GTO | GFULL | GSKIN)) != NULL)
794 head.h_mailx_raw_to = namelist_dup(head.h_to, head.h_to->n_type);
795 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
796 NYD_LEAVE;
797 return (rv != OKAY); /* reverse! */
800 static struct name *
801 a_sendout_file_a_pipe(struct name *names, FILE *fo, bool_t *senderror){
802 ui32_t pipecnt, xcnt, i;
803 char const *sh;
804 struct name *np;
805 FILE *fp, **fppa;
806 NYD_ENTER;
808 fp = NULL;
809 fppa = NULL;
811 /* Look through all recipients and do a quick return if no file or pipe
812 * addressee is found */
813 for(pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink){
814 if(np->n_type & GDEL)
815 continue;
816 switch(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE){
817 case NAME_ADDRSPEC_ISFILE: ++xcnt; break;
818 case NAME_ADDRSPEC_ISPIPE: ++pipecnt; break;
821 if((pipecnt | xcnt) == 0)
822 goto jleave;
824 /* Otherwise create an array of file descriptors for each found pipe
825 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
826 * each pipe subprocess needs its very own file descriptor, and we need
827 * to deal with that.
828 * To make our life a bit easier let's just use the auto-reclaimed
829 * string storage */
830 if(pipecnt == 0 || (n_poption & n_PO_DEBUG)){
831 pipecnt = 0;
832 sh = NULL;
833 }else{
834 i = sizeof(FILE*) * pipecnt;
835 fppa = n_lofi_alloc(i);
836 memset(fppa, 0, i);
837 sh = ok_vlook(SHELL);
840 for(np = names; np != NULL; np = np->n_flink){
841 if(!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) || (np->n_type & GDEL))
842 continue;
844 /* In days of old we removed the entry from the the list; now for sake of
845 * header expansion we leave it in and mark it as deleted */
846 np->n_type |= GDEL;
848 if(n_poption & n_PO_D_VV)
849 n_err(_(">>> Writing message via %s\n"),
850 n_shexp_quote_cp(np->n_name, FAL0));
851 /* We _do_ write to STDOUT, anyway! */
852 if((n_poption & n_PO_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
853 np->n_name[0] != '-' || np->n_name[1] != '\0'))
854 continue;
856 /* See if we have copied the complete message out yet. If not, do so */
857 if(fp == NULL){
858 int c;
859 char *tempEdit;
861 if((fp = Ftmp(&tempEdit, "outof", OF_RDWR | OF_HOLDSIGS | OF_REGISTER)
862 ) == NULL){
863 n_perr(_("Creation of temporary image"), 0);
864 pipecnt = 0;
865 goto jerror;
868 for(i = 0; i < pipecnt; ++i)
869 if((fppa[i] = Fopen(tempEdit, "r")) == NULL){
870 n_perr(_("Creation of pipe image descriptor"), 0);
871 break;
874 Ftmp_release(&tempEdit);
875 if(i != pipecnt){
876 pipecnt = i;
877 goto jerror;
880 fprintf(fp, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
881 c = EOF;
882 while(i = c, (c = getc(fo)) != EOF)
883 putc(c, fp);
884 rewind(fo);
885 if((int)i != '\n')
886 putc('\n', fp);
887 putc('\n', fp);
888 fflush(fp);
889 if(ferror(fp)){
890 n_perr(_("Finalizing write of temporary image"), 0);
891 goto jerror;
894 /* From now on use xcnt as a counter for pipecnt */
895 xcnt = 0;
898 /* Now either copy "image" to the desired file or give it as the standard
899 * input to the desired program as appropriate */
900 if(np->n_flags & NAME_ADDRSPEC_ISPIPE){
901 int pid;
902 sigset_t nset;
904 sigemptyset(&nset);
905 sigaddset(&nset, SIGHUP);
906 sigaddset(&nset, SIGINT);
907 sigaddset(&nset, SIGQUIT);
908 pid = n_child_start(sh, &nset, fileno(fppa[xcnt++]), n_CHILD_FD_NULL,
909 "-c", &np->n_name[1], NULL, NULL);
910 if(pid < 0){
911 n_err(_("Piping message to %s failed\n"),
912 n_shexp_quote_cp(np->n_name, FAL0));
913 goto jerror;
915 n_child_free(pid);
916 }else{
917 int c;
918 FILE *fout;
919 char const *fname, *fnameq;
921 if((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL)
922 goto jerror;
923 fnameq = n_shexp_quote_cp(fname, FAL0);
925 if(fname[0] == '-' && fname[1] == '\0')
926 fout = n_stdout;
927 else{
928 int xerr;
929 enum n_fopen_state fs;
931 xerr = TRU1;
932 if((fout = n_fopen_any(fname, "a+", &fs)) == NULL){
933 xerr = n_err_no;
934 jefile:
935 n_err(_("Writing message to %s failed: %s\n"),
936 fnameq, n_err_to_doc(xerr));
937 goto jerror;
940 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
941 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
942 n_file_lock(fileno(fout), FLT_WRITE, 0,0, UIZ_MAX);
944 if((xerr = n_folder_mbox_prepare_append(fout, NULL)
945 ) != n_ERR_NONE)
946 goto jefile;
950 rewind(fp);
951 while((c = getc(fp)) != EOF)
952 putc(c, fout);
953 if(ferror(fout)){
954 n_err(_("Writing message to %s failed: %s\n"),
955 fnameq, _("write error"));
956 *senderror = TRU1;
959 if(fout != n_stdout)
960 Fclose(fout);
964 jleave:
965 if(fp != NULL)
966 Fclose(fp);
967 if(fppa != NULL){
968 for(i = 0; i < pipecnt; ++i)
969 if((fp = fppa[i]) != NULL)
970 Fclose(fp);
971 n_lofi_free(fppa);
973 NYD_LEAVE;
974 return names;
976 jerror:
977 *senderror = TRU1;
978 while(np != NULL){
979 if(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
980 np->n_type |= GDEL;
981 np = np->n_flink;
983 goto jleave;
986 static bool_t
987 mightrecord(FILE *fp, struct name *to, bool_t resend){
988 char *cp;
989 char const *ccp;
990 bool_t rv;
991 NYD2_ENTER;
993 rv = TRU1;
995 if(n_poption & n_PO_DEBUG)
996 ccp = NULL;
997 else if(to != NULL){
998 ccp = cp = savestr(skinned_name(to));
999 while(*cp != '\0' && *cp != '@')
1000 ++cp;
1001 *cp = '\0';
1002 }else
1003 ccp = ok_vlook(record);
1005 if(ccp != NULL){
1006 if((cp = fexpand(ccp, FEXP_FULL)) == NULL)
1007 goto jbail;
1009 switch(*(ccp = cp)){
1010 case '.':
1011 if(cp[1] != '/'){ /* DIRSEP */
1012 default:
1013 if(ok_blook(outfolder)){
1014 struct str s;
1015 char const *nccp, *folder;
1017 switch(which_protocol(ccp, TRU1, FAL0, &nccp)){
1018 case PROTO_FILE:
1019 ccp = "file://";
1020 if(0){
1021 /* FALLTHRU */
1022 case PROTO_MAILDIR:
1023 ccp = "maildir://";
1025 folder = n_folder_query();
1026 #ifdef HAVE_IMAP
1027 if(which_protocol(folder, FAL0, FAL0, NULL) == PROTO_IMAP){
1028 n_err(_("(*record*): *outfolder* set, *folder* is IMAP "
1029 "based: only one protocol per file is possible\n"));
1030 goto jbail;
1032 #endif
1033 ccp = str_concat_csvl(&s, ccp, folder, nccp)->s;
1034 /* FALLTHRU */
1035 default:
1036 break;
1040 /* FALLTHRU */
1041 case '/':
1042 break;
1045 if(!a_sendout__savemail(ccp, fp, resend)){
1046 jbail:
1047 n_err(_("Failed to save message in %s - message not sent\n"),
1048 n_shexp_quote_cp(ccp, FAL0));
1049 n_exit_status |= n_EXIT_ERR;
1050 savedeadletter(fp, 1);
1051 rv = FAL0;
1054 NYD2_LEAVE;
1055 return rv;
1058 static bool_t
1059 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1060 FILE *fo;
1061 size_t bufsize, buflen, cnt;
1062 enum n_fopen_state fs;
1063 bool_t rv, emptyline;
1064 char *buf;
1065 NYD_ENTER;
1067 buf = smalloc(bufsize = LINESIZE);
1068 rv = FAL0;
1070 if((fo = n_fopen_any(name, "a+", &fs)) == NULL){
1071 n_perr(name, 0);
1072 goto j_leave;
1075 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
1076 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
1077 int xerr;
1079 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()!
1080 * TODO BETTER yet: should be returned in lock state already! */
1081 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1083 if((xerr = n_folder_mbox_prepare_append(fo, NULL)) != n_ERR_NONE){
1084 n_perr(name, xerr);
1085 goto jleave;
1089 fflush_rewind(fp);
1090 rv = TRU1;
1092 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1093 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1094 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1095 /* Only if we are resending it can happen that we have to quote From_
1096 * lines here; we don't generate messages which are ambiguous ourselves */
1097 if(resend){
1098 if(emptyline && is_head(buf, buflen, FAL0))
1099 putc('>', fo);
1100 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1102 emptyline = (buflen > 0 && *buf == '\n');
1103 fwrite(buf, sizeof *buf, buflen, fo);
1105 if(buflen > 0 && buf[buflen - 1] != '\n')
1106 putc('\n', fo);
1107 putc('\n', fo);
1108 fflush(fo);
1109 if(ferror(fo)){
1110 n_perr(name, 0);
1111 rv = FAL0;
1114 jleave:
1115 really_rewind(fp);
1116 if(Fclose(fo) != 0)
1117 rv = FAL0;
1118 j_leave:
1119 free(buf);
1120 NYD_LEAVE;
1121 return rv;
1124 static bool_t
1125 _transfer(struct sendbundle *sbp)
1127 struct name *np;
1128 ui32_t cnt;
1129 bool_t rv = TRU1;
1130 NYD_ENTER;
1132 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1133 char const k[] = "smime-encrypt-", *cp;
1134 size_t nl = strlen(np->n_name);
1135 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1136 memcpy(vs, k, sizeof(k) -1);
1137 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1139 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1140 #ifdef HAVE_SSL
1141 FILE *ef;
1143 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1144 FILE *fisave = sbp->sb_input;
1145 struct name *nsave = sbp->sb_to;
1147 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1148 sbp->sb_input = ef;
1149 if (!__mta_start(sbp))
1150 rv = FAL0;
1151 sbp->sb_to = nsave;
1152 sbp->sb_input = fisave;
1154 Fclose(ef);
1155 } else {
1156 #else
1157 n_err(_("No SSL support compiled in\n"));
1158 rv = FAL0;
1159 #endif
1160 n_err(_("Message not sent to: %s\n"), np->n_name);
1161 _sendout_error = TRU1;
1162 #ifdef HAVE_SSL
1164 #endif
1165 rewind(sbp->sb_input);
1167 if (np->n_flink != NULL)
1168 np->n_flink->n_blink = np->n_blink;
1169 if (np->n_blink != NULL)
1170 np->n_blink->n_flink = np->n_flink;
1171 if (np == sbp->sb_to)
1172 sbp->sb_to = np->n_flink;
1173 np = np->n_flink;
1174 } else {
1175 ++cnt;
1176 np = np->n_flink;
1178 ac_free(vs);
1181 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1182 rv = FAL0;
1183 NYD_LEAVE;
1184 return rv;
1187 static bool_t
1188 __mta_start(struct sendbundle *sbp)
1190 pid_t pid;
1191 sigset_t nset;
1192 char const **args, *mta;
1193 bool_t rv;
1194 NYD_ENTER;
1196 /* Let rv mean "is smtp-based MTA" */
1197 if((mta = ok_vlook(smtp)) != NULL){
1198 n_OBSOLETE(_("please don't use *smtp*: assign a smtp:// URL to *mta*!"));
1199 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1200 * that *smtp* is misused with file:// or so */
1201 if(n_servbyname(mta, NULL) == NULL)
1202 mta = savecat("smtp://", mta);
1203 rv = TRU1;
1204 }else{
1205 char const *proto;
1207 mta = ok_vlook(mta); /* TODO v15: what solely remains in here */
1208 if((proto = ok_vlook(sendmail)) != NULL)
1209 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1210 if(proto != NULL && !strcmp(mta, VAL_MTA))
1211 mta = proto;
1213 /* TODO for now this is pretty hacky: in v15 we should simply create
1214 * TODO an URL object; i.e., be able to do so, and it does it right
1215 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1216 if((proto = n_servbyname(mta, NULL)) != NULL){
1217 if(*proto == '\0'){
1218 mta += sizeof("file://") -1;
1219 rv = FAL0;
1220 }else
1221 rv = TRU1;
1222 }else
1223 rv = FAL0;
1226 if(!rv){
1227 char const *mta_base;
1229 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1230 n_err(_("*mta* variable expansion failure: %s\n"),
1231 n_shexp_quote_cp(mta_base, FAL0));
1232 goto jstop;
1235 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1236 if (n_poption & n_PO_DEBUG) {
1237 __mta_debug(sbp, mta, args);
1238 rv = TRU1;
1239 goto jleave;
1241 } else {
1242 n_UNINIT(args, NULL);
1243 #ifndef HAVE_SMTP
1244 n_err(_("No SMTP support compiled in\n"));
1245 goto jstop;
1246 #else
1247 /* C99 */{
1248 struct name *np;
1250 for(np = sbp->sb_to; np != NULL; np = np->n_flink)
1251 if(!(np->n_type & GDEL) && (np->n_flags & NAME_ADDRSPEC_ISNAME)){
1252 n_err(_("SMTP *mta* cannot send to alias name: %s\n"),
1253 n_shexp_quote_cp(np->n_name, FAL0));
1254 rv = FAL0;
1256 if(!rv)
1257 goto jstop;
1260 if (n_poption & n_PO_DEBUG) {
1261 (void)smtp_mta(sbp);
1262 rv = TRU1;
1263 goto jleave;
1265 #endif
1268 /* Fork, set up the temporary mail file as standard input for "mail", and
1269 * exec with the user list we generated far above */
1270 if ((pid = n_child_fork()) == -1) {
1271 n_perr("fork", 0);
1272 jstop:
1273 savedeadletter(sbp->sb_input, 0);
1274 _sendout_error = TRU1;
1275 goto jleave;
1277 if (pid == 0) {
1278 sigemptyset(&nset);
1279 sigaddset(&nset, SIGHUP);
1280 sigaddset(&nset, SIGINT);
1281 sigaddset(&nset, SIGQUIT);
1282 sigaddset(&nset, SIGTSTP);
1283 sigaddset(&nset, SIGTTIN);
1284 sigaddset(&nset, SIGTTOU);
1285 /* n_stdin = */freopen(n_path_devnull, "r", stdin);
1286 #ifdef HAVE_SMTP
1287 if (rv) {
1288 n_child_prepare(&nset, 0, 1);
1289 if (smtp_mta(sbp))
1290 _exit(n_EXIT_OK);
1291 } else
1292 #endif
1294 char const *ecp;
1295 int e;
1297 n_child_prepare(&nset, fileno(sbp->sb_input), -1);
1298 execv(mta, n_UNCONST(args));
1299 e = n_err_no;
1300 ecp = (e != n_ERR_NOENT) ? n_err_to_doc(e)
1301 : _("executable not found (adjust *mta* variable)");
1302 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1304 savedeadletter(sbp->sb_input, 1);
1305 n_err(_("... message not sent\n"));
1306 _exit(n_EXIT_ERR);
1309 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1310 if (!(rv = n_child_wait(pid, NULL)))
1311 _sendout_error = TRU1;
1312 } else {
1313 n_child_free(pid);
1314 rv = TRU1;
1316 jleave:
1317 NYD_LEAVE;
1318 return rv;
1321 static char const **
1322 __mta_prepare_args(struct name *to, struct header *hp)
1324 size_t vas_cnt, i, j;
1325 char **vas;
1326 char const **args, *cp, *cp_v15compat;
1327 bool_t snda;
1328 NYD_ENTER;
1330 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1331 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1332 if((cp = ok_vlook(mta_arguments)) == NULL)
1333 cp = cp_v15compat;
1334 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1335 vas_cnt = 0;
1336 vas = NULL;
1337 } else {
1338 /* Don't assume anything on the content but do allocate exactly j slots;
1339 * like this getrawlist will never overflow (and return -1) */
1340 j = strlen(cp);
1341 vas = n_lofi_alloc(sizeof(*vas) * j);
1342 vas_cnt = (size_t)getrawlist(TRU1, vas, j, cp, j);
1345 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1346 args = salloc(i * sizeof(char*));
1348 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1349 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1350 cp = ok_vlook(mta_argv0);
1351 if(cp_v15compat != NULL && !strcmp(cp, VAL_MTA_ARGV0))
1352 cp = cp_v15compat;
1353 args[0] = cp/* TODO v15 only : = ok_vlook(mta_argv0) */;
1355 if ((snda = ok_blook(sendmail_no_default_arguments)))
1356 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1357 "not *sendmail-no-default-arguments*"));
1358 snda |= ok_blook(mta_no_default_arguments);
1359 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1360 i = 1;
1361 else {
1362 args[1] = "-i";
1363 i = 2;
1364 if (ok_blook(metoo))
1365 args[i++] = "-m";
1366 if (n_poption & n_PO_VERB)
1367 args[i++] = "-v";
1370 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1371 args[i] = n_smopts[j];
1373 for (j = 0; j < vas_cnt; ++j, ++i)
1374 args[i] = vas[j];
1376 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1377 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1378 * The interdependency with -t has been resolved in puthead() */
1379 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1380 struct name const *np;
1382 if (hp != NULL && (np = hp->h_from) != NULL) {
1383 /* However, what wasn't resolved there was the case that the message
1384 * specified multiple From: addresses and a Sender: */
1385 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1386 np = hp->h_sender;
1388 if (np->n_fullextra != NULL) {
1389 args[i++] = "-F";
1390 args[i++] = np->n_fullextra;
1392 cp = np->n_name;
1393 } else {
1394 assert(n_poption_arg_r == NULL);
1395 cp = skin(myorigin(NULL));
1398 if (cp != NULL) {
1399 args[i++] = "-f";
1400 args[i++] = cp;
1404 /* Terminate option list to avoid false interpretation of system-wide
1405 * aliases that start with hyphen */
1406 if (!snda)
1407 args[i++] = "--";
1409 /* Receivers follow */
1410 for (; to != NULL; to = to->n_flink)
1411 if (!(to->n_type & GDEL))
1412 args[i++] = to->n_name;
1413 args[i] = NULL;
1415 if(vas != NULL)
1416 n_lofi_free(vas);
1417 NYD_LEAVE;
1418 return args;
1421 static void
1422 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1424 size_t cnt, bufsize, llen;
1425 char *buf;
1426 NYD_ENTER;
1428 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1429 for (; *args != NULL; ++args)
1430 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1431 n_err("\n");
1433 fflush_rewind(sbp->sb_input);
1435 cnt = fsize(sbp->sb_input);
1436 buf = NULL;
1437 bufsize = 0;
1438 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1439 buf[--llen] = '\0';
1440 n_err(">>> %s\n", buf);
1442 if (buf != NULL)
1443 free(buf);
1444 NYD_LEAVE;
1447 static char const *
1448 a_sendout_random_id(struct header *hp, bool_t msgid)
1450 static ui32_t reprocnt;
1451 struct tm *tmp;
1452 char const *h;
1453 size_t rl, i;
1454 char *rv, sep;
1455 NYD_ENTER;
1457 rv = NULL;
1459 if(msgid && hp != NULL && hp->h_message_id != NULL){
1460 rv = hp->h_message_id->n_name;
1461 goto jleave;
1464 if(ok_blook(message_id_disable))
1465 goto jleave;
1467 sep = '%';
1468 rl = 5;
1469 if((h = __sendout_ident) != NULL)
1470 goto jgen;
1471 if(ok_vlook(hostname) != NULL){
1472 h = n_nodename(TRU1);
1473 sep = '@';
1474 rl = 8;
1475 goto jgen;
1477 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1478 goto jgen;
1479 goto jleave;
1481 jgen:
1482 tmp = &time_current.tc_gm;
1483 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1484 rv = n_autorec_alloc(i +1);
1485 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1486 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1487 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1488 n_random_create_cp(rl, &reprocnt), sep, h);
1489 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1490 jleave:
1491 NYD_LEAVE;
1492 return rv;
1495 static int
1496 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1498 enum {
1499 m_INIT = 1<<0,
1500 m_COMMA = 1<<1,
1501 m_NOPF = 1<<2,
1502 m_NONAME = 1<<3,
1503 m_CSEEN = 1<<4
1504 } m = (ff & GCOMMA) ? m_COMMA : 0;
1505 ssize_t col, len;
1506 int rv = 1;
1507 NYD_ENTER;
1509 col = strlen(str);
1510 if (col) {
1511 fwrite(str, sizeof *str, col, fo);
1512 #undef _X
1513 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1514 if (ff & GFILES) {
1516 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1517 _X("references:") || _X("in-reply-to:") ||
1518 _X("disposition-notification-to:"))
1519 m |= m_NOPF | m_NONAME;
1520 else if (ok_blook(add_file_recipients)) {
1522 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1523 m |= m_NOPF;
1524 #undef _X
1527 for (; np != NULL; np = np->n_flink) {
1528 if(np->n_type & GDEL)
1529 continue;
1530 if(is_addr_invalid(np,
1531 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1532 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1533 !(ff & FMT_INC_INVADDR))
1534 continue;
1536 /* File and pipe addresses only printed with set *add-file-recipients* */
1537 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1538 continue;
1540 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1541 if (putc(',', fo) == EOF)
1542 goto jleave;
1543 m |= m_CSEEN;
1544 ++col;
1547 len = strlen(np->n_fullname);
1548 if (np->n_type & GREF)
1549 len += 2;
1550 ++col; /* The separating space */
1551 if ((m & m_INIT) && /*col > 1 &&*/
1552 UICMP(z, col + len, >,
1553 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1554 if (fputs("\n ", fo) == EOF)
1555 goto jleave;
1556 col = 1;
1557 m &= ~m_CSEEN;
1558 } else
1559 putc(' ', fo);
1560 m = (m & ~m_CSEEN) | m_INIT;
1562 /* C99 */{
1563 char *hb;
1565 /* GREF needs to be placed in angle brackets, but which are missing */
1566 hb = np->n_fullname;
1567 if(np->n_type & GREF){
1568 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1569 hb = n_lofi_alloc(len +1);
1570 len -= 2;
1571 hb[0] = '<';
1572 hb[len + 1] = '>';
1573 hb[len + 2] = '\0';
1574 memcpy(&hb[1], np->n_fullname, len);
1575 len += 2;
1577 len = xmime_write(hb, len, fo,
1578 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV);
1579 if(np->n_type & GREF)
1580 n_lofi_free(hb);
1582 if (len < 0)
1583 goto jleave;
1584 col += len;
1587 if (putc('\n', fo) != EOF)
1588 rv = 0;
1589 jleave:
1590 NYD_LEAVE;
1591 return rv;
1594 static int
1595 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1596 int add_resent)
1598 size_t cnt, c, bufsize = 0;
1599 char *buf = NULL;
1600 char const *cp;
1601 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1602 int rv = 1;
1603 NYD_ENTER;
1605 cnt = mp->m_size;
1607 /* Write the Resent-Fields */
1608 if (add_resent) {
1609 fputs("Resent-", fo);
1610 mkdate(fo, "Date");
1611 if ((cp = myaddrs(NULL)) != NULL) {
1612 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1613 &fromfield, 0))
1614 goto jleave;
1616 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1617 if ((cp = ok_vlook(sender)) != NULL) {
1618 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1619 &senderfield, 0))
1620 goto jleave;
1622 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1623 goto jleave;
1624 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1625 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1626 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1627 goto jleave;
1630 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1631 goto jleave;
1632 if (!_check_dispo_notif(mdn, NULL, fo))
1633 goto jleave;
1635 /* Write the original headers */
1636 while (cnt > 0) {
1637 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1638 break;
1639 if (ascncasecmp("status:", buf, 7) &&
1640 ascncasecmp("disposition-notification-to:", buf, 28) &&
1641 !is_head(buf, c, FAL0))
1642 fwrite(buf, sizeof *buf, c, fo);
1643 if (cnt > 0 && *buf == '\n')
1644 break;
1647 /* Write the message body */
1648 while (cnt > 0) {
1649 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1650 break;
1651 if (cnt == 0 && *buf == '\n')
1652 break;
1653 fwrite(buf, sizeof *buf, c, fo);
1655 if (buf != NULL)
1656 free(buf);
1657 if (ferror(fo)) {
1658 n_perr(_("temporary mail file"), 0);
1659 goto jleave;
1661 rv = 0;
1662 jleave:
1663 NYD_LEAVE;
1664 return rv;
1667 FL int
1668 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1669 struct attachment *attach, char const *quotefile, int recipient_record)
1671 struct header head;
1672 struct str in, out;
1673 NYD_ENTER;
1675 memset(&head, 0, sizeof head);
1677 /* The given subject may be in RFC1522 format. */
1678 if (subject != NULL) {
1679 in.s = n_UNCONST(subject);
1680 in.l = strlen(subject);
1681 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1682 head.h_subject = out.s;
1685 head.h_mailx_command = "mail";
1686 if((head.h_to = to) != NULL)
1687 head.h_mailx_raw_to = namelist_dup(to, to->n_type);
1688 if((head.h_cc = cc) != NULL)
1689 head.h_mailx_raw_cc = namelist_dup(cc, cc->n_type);
1690 if((head.h_bcc = bcc) != NULL)
1691 head.h_mailx_raw_bcc = namelist_dup(bcc, bcc->n_type);
1693 head.h_attach = attach;
1695 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1697 if (subject != NULL)
1698 free(out.s);
1699 NYD_LEAVE;
1700 return 0; /* TODO only for main.c, -> n_exit_status, BUT: ARGH! */
1703 FL int
1704 c_sendmail(void *v)
1706 int rv;
1707 NYD_ENTER;
1709 rv = sendmail_internal(v, 0);
1710 NYD_LEAVE;
1711 return rv;
1714 FL int
1715 c_Sendmail(void *v)
1717 int rv;
1718 NYD_ENTER;
1720 rv = sendmail_internal(v, 1);
1721 NYD_LEAVE;
1722 return rv;
1725 FL enum okay
1726 mail1(struct header *hp, int printheaders, struct message *quote,
1727 char const *quotefile, int recipient_record, int doprefix)
1729 struct n_sigman sm;
1730 struct sendbundle sb;
1731 struct name *to;
1732 bool_t dosign;
1733 FILE *mtf, *nmtf;
1734 enum okay rv;
1735 NYD_ENTER;
1737 _sendout_error = FAL0;
1738 __sendout_ident = NULL;
1739 rv = STOP;
1740 mtf = NULL;
1742 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1743 case 0:
1744 break;
1745 default:
1746 goto jleave;
1749 /* Update some globals we likely need first */
1750 time_current_update(&time_current, TRU1);
1752 /* Collect user's mail from standard input. Get the result as mtf */
1753 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1754 if (mtf == NULL)
1755 goto jleave;
1757 dosign = TRUM1;
1759 /* */
1760 if(n_psonce & n_PSO_INTERACTIVE){
1761 if (ok_blook(asksign))
1762 dosign = getapproval(_("Sign this message"), TRU1);
1765 if (fsize(mtf) == 0) {
1766 if (n_poption & n_PO_E_FLAG)
1767 goto jleave;
1768 if (hp->h_subject == NULL)
1769 fprintf(n_stdout, _("No message, no subject; hope that's ok\n"));
1770 else if (ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1771 fprintf(n_stdout, _("Null message body; hope that's ok\n"));
1774 if (dosign == TRUM1)
1775 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1776 #ifndef HAVE_SSL
1777 if (dosign) {
1778 n_err(_("No SSL support compiled in\n"));
1779 goto jleave;
1781 #endif
1783 /* XXX Update time_current again; once collect() offers editing of more
1784 * XXX headers, including Date:, this must only happen if Date: is the
1785 * XXX same that it was before collect() (e.g., postponing etc.).
1786 * XXX But *do* update otherwise because the mail seems to be backdated
1787 * XXX if the user edited some time, which looks odd and it happened
1788 * XXX to me that i got mis-dated response mails due to that... */
1789 time_current_update(&time_current, TRU1);
1791 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1792 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1793 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1794 * TODO header fields ONCE, call that ONCE after user editing etc. has
1795 * TODO completed (one edit cycle) */
1797 /* Take the user names from the combined to and cc lists and do all the
1798 * alias processing. The POSIX standard says:
1799 * The names shall be substituted when alias is used as a recipient
1800 * address specified by the user in an outgoing message (that is,
1801 * other recipients addressed indirectly through the reply command
1802 * shall not be substituted in this manner).
1803 * S-nail thus violates POSIX, as has been pointed out correctly by
1804 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1805 * disputable anyway. Go for user friendliness */
1807 to = namelist_vaporise_head(hp,
1808 (EACM_NORMAL |
1809 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1810 TRU1, &_sendout_error);
1812 if (to == NULL) {
1813 n_err(_("No recipients specified\n"));
1814 goto jfail_dead;
1816 if (_sendout_error < 0) {
1817 n_err(_("Some addressees were classified as \"hard error\"\n"));
1818 goto jfail_dead;
1821 /* */
1822 memset(&sb, 0, sizeof sb);
1823 sb.sb_hp = hp;
1824 sb.sb_to = to;
1825 sb.sb_input = mtf;
1826 if ((dosign || count_nonlocal(to) > 0) &&
1827 !_sendbundle_setup_creds(&sb, (dosign > 0)))
1828 /* TODO saving $DEAD and recovering etc is not yet well defined */
1829 goto jfail_dead;
1831 /* 'Bit ugly kind of control flow until we find a charset that does it */
1832 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1833 int err;
1835 if (!charset_iter_is_valid())
1837 else if ((nmtf = infix(hp, mtf)) != NULL)
1838 break;
1839 else if ((err = n_err_no) == n_ERR_ILSEQ || err == n_ERR_INVAL) {
1840 rewind(mtf);
1841 continue;
1844 n_perr(_("Failed to create encoded message"), 0);
1845 goto jfail_dead;
1847 mtf = nmtf;
1849 /* */
1850 #ifdef HAVE_SSL
1851 if (dosign) {
1852 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1853 goto jfail_dead;
1854 Fclose(mtf);
1855 mtf = nmtf;
1857 #endif
1859 /* TODO truly - i still don't get what follows: (1) we deliver file
1860 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1861 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1863 /* C99 */{
1864 ui32_t cnt;
1865 bool_t b;
1867 /* Deliver pipe and file addressees */
1868 b = (ok_blook(record_files) && count(to) > 0);
1869 to = a_sendout_file_a_pipe(to, mtf, &_sendout_error);
1871 if (_sendout_error)
1872 savedeadletter(mtf, FAL0);
1874 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
1875 cnt = count(to);
1877 if ((recipient_record || b || cnt > 0) &&
1878 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1879 goto jleave;
1880 if (cnt > 0) {
1881 sb.sb_hp = hp;
1882 sb.sb_to = to;
1883 sb.sb_input = mtf;
1884 if (_transfer(&sb))
1885 rv = OKAY;
1886 } else if (!_sendout_error)
1887 rv = OKAY;
1890 n_sigman_cleanup_ping(&sm);
1891 jleave:
1892 if(mtf != NULL){
1893 char const *cp;
1895 Fclose(mtf);
1897 if((cp = ok_vlook(on_compose_cleanup)) != NULL)
1898 temporary_compose_mode_hook_call(cp, NULL, NULL);
1900 temporary_compose_mode_hook_unroll();
1902 if (_sendout_error)
1903 n_exit_status |= n_EXIT_SEND_ERROR;
1904 NYD_LEAVE;
1905 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1906 return rv;
1908 jfail_dead:
1909 _sendout_error = TRU1;
1910 savedeadletter(mtf, TRU1);
1911 n_err(_("... message not sent\n"));
1912 goto jleave;
1915 FL int
1916 mkdate(FILE *fo, char const *field)
1918 struct tm tmpgm, *tmptr;
1919 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1920 NYD_ENTER;
1922 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1923 tzdiff = time_current.tc_time - mktime(&tmpgm);
1924 tzdiff_hour = (int)(tzdiff / 60);
1925 tzdiff_min = tzdiff_hour % 60;
1926 tzdiff_hour /= 60;
1927 tmptr = &time_current.tc_local;
1928 if (tmptr->tm_isdst > 0)
1929 ++tzdiff_hour;
1930 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1931 field,
1932 n_weekday_names[tmptr->tm_wday],
1933 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1934 tmptr->tm_year + 1900, tmptr->tm_hour,
1935 tmptr->tm_min, tmptr->tm_sec,
1936 tzdiff_hour * 100 + tzdiff_min);
1937 NYD_LEAVE;
1938 return rv;
1941 FL int
1942 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1943 enum sendaction action, enum conversion convert, char const *contenttype,
1944 char const *charset)
1946 #define FMT_CC_AND_BCC() \
1947 do {\
1948 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1949 if (fmt("Cc:", hp->h_cc, fo, ff))\
1950 goto jleave;\
1951 ++gotcha;\
1953 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1954 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1955 goto jleave;\
1956 ++gotcha;\
1958 } while (0)
1960 char const *addr;
1961 size_t gotcha;
1962 struct name *np, *fromasender = NULL;
1963 int stealthmua, rv = 1;
1964 bool_t nodisp;
1965 enum fmt_flags ff;
1966 NYD_ENTER;
1968 if ((addr = ok_vlook(stealthmua)) != NULL)
1969 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
1970 else
1971 stealthmua = 0;
1972 gotcha = 0;
1973 nodisp = (action != SEND_TODISP);
1974 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
1975 if(nosend_msg)
1976 ff |= FMT_INC_INVADDR;
1978 if (w & GDATE)
1979 mkdate(fo, "Date"), ++gotcha;
1980 if (w & GIDENT) {
1981 if (hp->h_from == NULL || hp->h_sender == NULL)
1982 setup_from_and_sender(hp);
1984 if (hp->h_from != NULL) {
1985 if (fmt("From:", hp->h_from, fo, ff))
1986 goto jleave;
1987 ++gotcha;
1990 if (hp->h_sender != NULL) {
1991 if (fmt("Sender:", hp->h_sender, fo, ff))
1992 goto jleave;
1993 ++gotcha;
1996 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
1997 if (fromasender == NULL)
1998 goto jleave;
1999 /* Note that fromasender is (NULL,) 0x1 or real sender here */
2002 #if 1
2003 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
2004 if (fmt("To:", hp->h_to, fo, ff))
2005 goto jleave;
2006 ++gotcha;
2008 #else
2009 /* TODO Thought about undisclosed recipients:;, but would be such a fake
2010 * TODO given that we cannot handle group addresses. Ridiculous */
2011 if (w & GTO) {
2012 struct name *xto;
2014 if ((xto = hp->h_to) != NULL) {
2015 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
2017 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
2018 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
2019 goto jto_fmt;
2020 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
2021 goto jleave;
2022 ++gotcha;
2023 } else if (nosend_msg == TRUM1) {
2024 jto_fmt:
2025 if (fmt("To:", hp->h_to, fo, ff))
2026 goto jleave;
2027 ++gotcha;
2030 #endif
2032 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
2033 FMT_CC_AND_BCC();
2035 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
2036 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
2037 goto jleave;
2038 if (hp->h_subject != NULL) {
2039 size_t sublen;
2040 char const *sub;
2042 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2044 /* Trimmed something, (re-)add Re: */
2045 if (sub != hp->h_subject) {
2046 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2047 goto jleave;
2048 if (sublen > 0 &&
2049 xmime_write(sub, sublen, fo,
2050 (!nodisp ? CONV_NONE : CONV_TOHDR),
2051 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2052 goto jleave;
2054 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2055 else if (*sub != '\0') {
2056 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2057 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV)) < 0)
2058 goto jleave;
2061 ++gotcha;
2062 putc('\n', fo);
2065 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2066 FMT_CC_AND_BCC();
2068 if ((w & GMSGID) && stealthmua <= 0 &&
2069 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2070 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2071 goto jleave;
2072 ++gotcha;
2075 if(w & GREF){
2076 if((np = hp->h_ref) != NULL){
2077 if(fmt("References:", np, fo, 0))
2078 goto jleave;
2079 ++gotcha;
2081 if((np = hp->h_in_reply_to) != NULL){
2082 if(fmt("In-Reply-To:", np, fo, 0))
2083 goto jleave;
2084 ++gotcha;
2088 if (w & GIDENT) {
2089 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2090 * the list first.. TODO it is a terrible codebase.. */
2091 if ((np = hp->h_replyto) != NULL)
2092 np = namelist_dup(np, np->n_type);
2093 else if ((addr = ok_vlook(replyto)) != NULL)
2094 np = lextract(addr, GEXTRA | GFULL);
2095 if (np != NULL &&
2096 (np = elide(
2097 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2098 NULL))) != NULL) {
2099 if (fmt("Reply-To:", np, fo, ff))
2100 goto jleave;
2101 ++gotcha;
2105 if ((w & GIDENT) && !nosend_msg) {
2106 /* Mail-Followup-To: TODO factor out this huge block of code */
2107 /* Place ourselfs in there if any non-subscribed list is an addressee */
2108 if((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2109 ok_blook(followup_to)){
2110 enum{
2111 _ANYLIST = 1u<<(HF__NEXT_SHIFT + 0),
2112 _HADMFT = 1u<<(HF__NEXT_SHIFT + 1)
2114 struct name *mft, **mftp, *x;
2115 ui32_t f;
2117 f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2118 mft = NULL;
2119 mftp = &mft;
2121 /* But for that, we have to remove all incarnations of ourselfs first.
2122 * TODO It is total crap that we have alternates_remove(), is_myname()
2123 * TODO or whatever; these work only with variables, not with data
2124 * TODO that is _currently_ in some header fields!!! v15.0: complete
2125 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2126 * TODO then this should be a really cheap thing in here... */
2127 np = elide(n_alternates_remove(cat(
2128 namelist_dup(hp->h_to, GEXTRA | GFULL),
2129 namelist_dup(hp->h_cc, GEXTRA | GFULL)), FAL0));
2130 addr = hp->h_list_post;
2132 while((x = np) != NULL){
2133 si8_t ml;
2135 np = np->n_flink;
2137 if((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2138 addr != NULL && !asccasecmp(addr, x->n_name))
2139 ml = MLIST_KNOWN;
2141 /* Any non-subscribed list? Add ourselves */
2142 switch(ml){
2143 case MLIST_KNOWN:
2144 f |= HF_MFT_SENDER;
2145 /* FALLTHRU */
2146 case MLIST_SUBSCRIBED:
2147 f |= _ANYLIST;
2148 goto j_mft_add;
2149 case MLIST_OTHER:
2150 if(!(f & HF_LIST_REPLY)){
2151 j_mft_add:
2152 if(!is_addr_invalid(x,
2153 EACM_STRICT | EACM_NOLOG | EACM_NONAME)){
2154 x->n_blink = *mftp;
2155 x->n_flink = NULL;
2156 *mftp = x;
2157 mftp = &x->n_flink;
2158 } /* XXX write some warning? if verbose?? */
2159 continue;
2161 /* And if this is a reply that honoured a MFT: header then we'll
2162 * also add all members of the original MFT: that are still
2163 * addressed by us, regardless of all other circumstances */
2164 else if(f & _HADMFT){
2165 struct name *ox;
2167 for(ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2168 if(!asccasecmp(ox->n_name, x->n_name))
2169 goto j_mft_add;
2171 break;
2175 if((f & (_ANYLIST | _HADMFT)) && mft != NULL){
2176 if(((f & HF_MFT_SENDER) ||
2177 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2178 (np = fromasender) != NULL && np != (struct name*)0x1)
2179 *mftp = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2181 if(fmt("Mail-Followup-To:", mft, fo, ff))
2182 goto jleave;
2183 ++gotcha;
2187 if (!_check_dispo_notif(fromasender, hp, fo))
2188 goto jleave;
2191 if ((w & GUA) && stealthmua == 0) {
2192 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent,
2193 (n_psonce & n_PSO_REPRODUCIBLE
2194 ? n_reproducible_name : ok_vlook(version))) < 0)
2195 goto jleave;
2196 ++gotcha;
2199 /* The user may have placed headers when editing */
2200 if(1){
2201 struct n_header_field *hfp;
2203 if((hfp = hp->h_user_headers) != NULL){
2204 if(!_sendout_header_list(fo, hfp, nodisp))
2205 goto jleave;
2206 ++gotcha;
2210 /* Custom headers, as via *customhdr* */
2211 if(!nosend_msg){
2212 struct n_header_field *hfp;
2214 /* With iconv support we likely have a cached result */
2215 if((hfp = hp->h_custom_headers) == NULL)
2216 hp->h_custom_headers = hfp = n_customhdr_query();
2217 if(hfp != NULL){
2218 if(!_sendout_header_list(fo, hfp, nodisp))
2219 goto jleave;
2220 ++gotcha;
2224 /* We don't need MIME unless.. we need MIME?! */
2225 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2226 hp->h_attach != NULL ||
2227 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2228 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2229 ++gotcha;
2230 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2231 goto jleave;
2232 if (hp->h_attach != NULL) {
2233 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2234 if (fprintf(fo,
2235 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2236 _sendout_boundary) < 0)
2237 goto jleave;
2238 } else {
2239 if (_put_ct(fo, contenttype, charset) < 0 || _put_cte(fo, convert) < 0)
2240 goto jleave;
2244 if (gotcha && (w & GNL))
2245 if (putc('\n', fo) == EOF)
2246 goto jleave;
2247 rv = 0;
2248 jleave:
2249 NYD_LEAVE;
2250 return rv;
2251 #undef FMT_CC_AND_BCC
2254 FL enum okay
2255 resend_msg(struct message *mp, struct header *hp, bool_t add_resent)
2257 struct n_sigman sm;
2258 struct sendbundle sb;
2259 FILE *ibuf, *nfo, *nfi;
2260 char *tempMail;
2261 struct name *to;
2262 enum okay rv;
2263 NYD_ENTER;
2265 _sendout_error = FAL0;
2266 __sendout_ident = NULL;
2267 rv = STOP;
2268 to = hp->h_to;
2269 nfi = NULL;
2271 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
2272 case 0:
2273 break;
2274 default:
2275 goto jleave;
2278 /* Update some globals we likely need first */
2279 time_current_update(&time_current, TRU1);
2281 if ((to = checkaddrs(to,
2282 (EACM_NORMAL |
2283 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2284 &_sendout_error)) == NULL)
2285 goto jleave;
2286 /* For the _sendout_error<0 case we want to wait until we can write DEAD! */
2287 if (_sendout_error < 0)
2288 n_err(_("Some addressees were classified as \"hard error\"\n"));
2290 if ((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
2291 == NULL) {
2292 _sendout_error = TRU1;
2293 n_perr(_("temporary mail file"), 0);
2294 goto jleave;
2296 if ((nfi = Fopen(tempMail, "r")) == NULL)
2297 n_perr(tempMail, 0);
2298 Ftmp_release(&tempMail);
2299 if (nfi == NULL)
2300 goto jerr_o;
2302 if ((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL)
2303 goto jerr_io;
2305 /* C99 */{
2306 char const *cp;
2308 if((cp = ok_vlook(on_resend_enter)) != NULL){
2309 /*setup_from_and_sender(hp);*/
2310 temporary_compose_mode_hook_call(cp, &n_temporary_compose_hook_varset,
2311 hp);
2315 memset(&sb, 0, sizeof sb);
2316 sb.sb_to = to;
2317 sb.sb_input = nfi;
2318 if (count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0))
2319 /* ..wait until we can write DEAD */
2320 _sendout_error = -1;
2322 if (infix_resend(ibuf, nfo, mp, to, add_resent) != 0) {
2323 jfail_dead:
2324 savedeadletter(nfi, TRU1);
2325 n_err(_("... message not sent\n"));
2326 jerr_io:
2327 Fclose(nfi);
2328 jerr_o:
2329 Fclose(nfo);
2330 _sendout_error = TRU1;
2331 goto jleave;
2334 if (_sendout_error < 0)
2335 goto jfail_dead;
2337 Fclose(nfo);
2338 rewind(nfi);
2340 /* C99 */{
2341 bool_t b, c;
2343 /* Deliver pipe and file addressees */
2344 b = (ok_blook(record_files) && count(to) > 0);
2345 to = a_sendout_file_a_pipe(to, nfi, &_sendout_error);
2347 if (_sendout_error)
2348 savedeadletter(nfi, FAL0);
2350 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
2351 c = (count(to) > 0);
2353 if (b || c) {
2354 if (!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)) {
2355 sb.sb_to = to;
2356 /*sb.sb_input = nfi;*/
2357 if (!c || _transfer(&sb))
2358 rv = OKAY;
2360 } else if (!_sendout_error)
2361 rv = OKAY;
2364 Fclose(nfi);
2365 n_sigman_cleanup_ping(&sm);
2366 jleave:
2367 if(nfi != NULL){
2368 char const *cp;
2370 if((cp = ok_vlook(on_resend_cleanup)) != NULL)
2371 temporary_compose_mode_hook_call(cp, NULL, NULL);
2373 temporary_compose_mode_hook_unroll();
2376 if (_sendout_error)
2377 n_exit_status |= n_EXIT_SEND_ERROR;
2378 NYD_LEAVE;
2379 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
2380 return rv;
2383 FL void
2384 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2385 struct n_string line;
2386 int c;
2387 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2388 ul_i bytes, lines;
2389 FILE *dbuf;
2390 char const *cp, *cpq;
2391 NYD_ENTER;
2393 if(!ok_blook(save))
2394 goto jleave;
2396 if(fflush_rewind_first){
2397 fflush(fp);
2398 rewind(fp);
2400 if(fsize(fp) == 0)
2401 goto jleave;
2403 cp = n_getdeadletter();
2404 cpq = n_shexp_quote_cp(cp, FAL0);
2406 if(n_poption & n_PO_DEBUG){
2407 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2408 goto jleave;
2411 if((dbuf = Fopen(cp, "w")) == NULL){
2412 n_perr(_("Cannot save to $DEAD"), 0);
2413 goto jleave;
2415 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2417 fprintf(n_stdout, "%s ", cpq);
2418 fflush(n_stdout);
2420 /* TODO savedeadletter() non-conforming: should check whether we have any
2421 * TODO headers, if not we need to place "something", anything will do.
2422 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2423 * TODO I/O error handling missing. Yuck! */
2424 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2425 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2426 ok_vlook(LOGNAME), time_current.tc_ctime);
2427 lines = 1;
2428 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2429 n_string_trunc(&line, 0);
2430 while((c = getc(fp)) != EOF && c != '\n')
2431 n_string_push_c(&line, c);
2433 /* TODO It may be that we have only some plain text. It may be that we
2434 * TODO have a complete MIME encoded message. We don't know, and we
2435 * TODO have no usable mechanism to dig it!! We need v15! */
2436 if(!(flags & a_INIT)){
2437 size_t i;
2439 /* Throw away leading empty lines! */
2440 if(line.s_len == 0)
2441 continue;
2442 for(i = 0; i < line.s_len; ++i){
2443 if(fieldnamechar(line.s_dat[i]))
2444 continue;
2445 if(line.s_dat[i] == ':'){
2446 flags |= a_INIT;
2447 break;
2448 }else{
2449 /* We have no headers, this is already a body line! */
2450 flags |= a_INIT | a_BODY;
2451 break;
2454 /* Well, i had to check whether the RFC allows this. Assume we've
2455 * passed the headers, too, then! */
2456 if(i == line.s_len)
2457 flags |= a_INIT | a_BODY;
2459 if(flags & a_BODY){
2460 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2461 n_string_unshift_c(&line, '>');
2463 if(line.s_len == 0)
2464 flags |= a_BODY | a_NL;
2465 else
2466 flags &= ~a_NL;
2468 n_string_push_c(&line, '\n');
2469 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2471 if(!(flags & a_NL)){
2472 putc('\n', dbuf);
2473 ++bytes;
2474 ++lines;
2476 n_string_gut(&line);
2478 Fclose(dbuf);
2479 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2480 fflush(n_stdout);
2482 rewind(fp);
2483 jleave:
2484 NYD_LEAVE;
2487 #undef SEND_LINESIZE
2489 /* s-it-mode */