Copyright 2018
[s-mailx.git] / sendout.c
blobfb4422084dbc81c7db43e60bc5db7921fdc8da0f
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 - 2018 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 /* *fullnames* appears after command line arguments have been parsed */
61 static struct name *a_sendout_fullnames_cleanup(struct name *np);
63 /* */
64 static enum okay _putname(char const *line, enum gfield w,
65 enum sendaction action, size_t *gotcha,
66 char const *prefix, FILE *fo, struct name **xp,
67 enum gfield addflags);
69 /* Place Content-Type:, Content-Transfer-Encoding:, Content-Disposition:
70 * headers, respectively */
71 static int a_sendout_put_ct(FILE *fo, char const *contenttype,
72 char const *charset);
73 n_INLINE int a_sendout_put_cte(FILE *fo, enum conversion conv);
74 static int a_sendout_put_cd(FILE *fo, char const *cd, char const *filename);
76 /* Put all entries of the given header list */
77 static bool_t _sendout_header_list(FILE *fo, struct n_header_field *hfp,
78 bool_t nodisp);
80 /* */
81 static int a_sendout_body(FILE *fo, FILE *fi, enum conversion convert);
83 /* Write an attachment to the file buffer, converting to MIME */
84 static int a_sendout_attach_file(struct header *hp, struct attachment *ap,
85 FILE *fo);
86 static int a_sendout__attach_file(struct header *hp, struct attachment *ap,
87 FILE *fo);
89 /* There are non-local receivers, collect credentials etc. */
90 static bool_t _sendbundle_setup_creds(struct sendbundle *sbpm,
91 bool_t signing_caps);
93 /* Attach a message to the file buffer */
94 static int a_sendout_attach_msg(struct header *hp, struct attachment *ap,
95 FILE *fo);
97 /* Generate the body of a MIME multipart message */
98 static int make_multipart(struct header *hp, int convert, FILE *fi,
99 FILE *fo, char const *contenttype, char const *charset);
101 /* Prepend a header in front of the collected stuff and return the new file */
102 static FILE * infix(struct header *hp, FILE *fi);
104 /* Check whether Disposition-Notification-To: is desired */
105 static bool_t _check_dispo_notif(struct name *mdn, struct header *hp,
106 FILE *fo);
108 /* Send mail to a bunch of user names. The interface is through mail() */
109 static int sendmail_internal(void *v, int recipient_record);
111 /* Deal with file and pipe addressees */
112 static struct name *a_sendout_file_a_pipe(struct name *names, FILE *fo,
113 bool_t *senderror);
115 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
116 static bool_t mightrecord(FILE *fp, struct name *to, bool_t resend);
118 static bool_t a_sendout__savemail(char const *name, FILE *fp, bool_t resend);
120 /* */
121 static bool_t _transfer(struct sendbundle *sbp);
123 static bool_t __mta_start(struct sendbundle *sbp);
124 static char const ** __mta_prepare_args(struct name *to, struct header *hp);
125 static void __mta_debug(struct sendbundle *sbp, char const *mta,
126 char const **args);
128 /* Create a Message-ID: header field. Use either host name or from address */
129 static char const *a_sendout_random_id(struct header *hp, bool_t msgid);
131 /* Format the given header line to not exceed 72 characters */
132 static int fmt(char const *str, struct name *np, FILE *fo,
133 enum fmt_flags ff);
135 /* Rewrite a message for resending, adding the Resent-Headers */
136 static int infix_resend(FILE *fi, FILE *fo, struct message *mp,
137 struct name *to, int add_resent);
139 static struct name *
140 a_sendout_fullnames_cleanup(struct name *np){
141 struct name *xp;
142 NYD2_ENTER;
144 for(xp = np; xp != NULL; xp = xp->n_flink){
145 xp->n_type &= ~(GFULL | GFULLEXTRA);
146 xp->n_flags &= ~NAME_FULLNAME_SALLOC;
147 xp->n_fullname = xp->n_name;
148 xp->n_fullextra = NULL;
150 NYD2_LEAVE;
151 return np;
154 static enum okay
155 _putname(char const *line, enum gfield w, enum sendaction action,
156 size_t *gotcha, char const *prefix, FILE *fo, struct name **xp,
157 enum gfield addflags)
159 struct name *np;
160 enum okay rv = STOP;
161 NYD_ENTER;
163 np = lextract(line, GEXTRA | GFULL | addflags);
164 if (xp != NULL)
165 *xp = np;
166 if (np == NULL)
168 else if (fmt(prefix, np, fo, ((w & GCOMMA) |
169 ((action != SEND_TODISP) ? FMT_DOMIME : 0))))
170 rv = OKAY;
171 else if (gotcha != NULL)
172 ++(*gotcha);
173 NYD_LEAVE;
174 return rv;
177 static int
178 a_sendout_put_ct(FILE *fo, char const *contenttype, char const *charset){
179 int rv;
180 NYD2_ENTER;
182 if((rv = fprintf(fo, "Content-Type: %s", contenttype)) < 0)
183 goto jerr;
185 if(charset == NULL)
186 goto jend;
188 if(putc(';', fo) == EOF)
189 goto jerr;
190 ++rv;
192 if(strlen(contenttype) + sizeof("Content-Type: ;")-1 > 50){
193 if(putc('\n', fo) == EOF)
194 goto jerr;
195 ++rv;
198 /* C99 */{
199 int i;
200 char *lcs;
201 size_t l;
203 l = strlen(charset);
204 lcs = n_lofi_alloc(l +1);
206 for(l = 0; *charset != '\0'; ++l, ++charset)
207 lcs[l] = lowerconv(*charset);
208 lcs[l] = '\0';
209 charset = lcs;
211 i = fprintf(fo, " charset=%s", charset);
213 n_lofi_free(lcs);
215 if(i < 0)
216 goto jerr;
217 rv += i;
220 jend:
221 if(putc('\n', fo) == EOF)
222 goto jerr;
223 ++rv;
224 jleave:
225 NYD2_LEAVE;
226 return rv;
227 jerr:
228 rv = -1;
229 goto jleave;
232 n_INLINE int
233 a_sendout_put_cte(FILE *fo, enum conversion conv){
234 int rv;
235 NYD2_ENTER;
237 /* RFC 2045, 6.1.:
238 * This is the default value -- that is,
239 * "Content-Transfer-Encoding: 7BIT" is assumed if the
240 * Content-Transfer-Encoding header field is not present.
242 rv = (conv == CONV_7BIT) ? 0
243 : fprintf(fo, "Content-Transfer-Encoding: %s\n",
244 mime_enc_from_conversion(conv));
245 NYD2_LEAVE;
246 return rv;
249 static int
250 a_sendout_put_cd(FILE *fo, char const *cd, char const *filename){
251 struct str f;
252 si8_t mpc;
253 int rv;
254 NYD2_ENTER;
256 f.s = NULL;
258 /* xxx Ugly with the trailing space in case of wrap! */
259 if((rv = fprintf(fo, "Content-Disposition: %s; ", cd)) < 0)
260 goto jerr;
262 if(!(mpc = mime_param_create(&f, "filename", filename)))
263 goto jerr;
264 /* Always fold if result contains newlines */
265 if(mpc < 0 || f.l + rv > MIME_LINELEN) { /* FIXME MIME_LINELEN_MAX */
266 if(putc('\n', fo) == EOF || putc(' ', fo) == EOF)
267 goto jerr;
268 rv += 2;
270 if(fputs(f.s, fo) == EOF || putc('\n', fo) == EOF)
271 goto jerr;
272 rv += (int)++f.l;
274 jleave:
275 NYD2_LEAVE;
276 return rv;
277 jerr:
278 rv = -1;
279 goto jleave;
283 static bool_t
284 _sendout_header_list(FILE *fo, struct n_header_field *hfp, bool_t nodisp){
285 bool_t rv;
286 NYD2_ENTER;
288 for(rv = TRU1; hfp != NULL; hfp = hfp->hf_next)
289 if(fwrite(hfp->hf_dat, sizeof(char), hfp->hf_nl, fo) != hfp->hf_nl ||
290 putc(':', fo) == EOF || putc(' ', fo) == EOF ||
291 xmime_write(hfp->hf_dat + hfp->hf_nl +1, hfp->hf_bl, fo,
292 (!nodisp ? CONV_NONE : CONV_TOHDR),
293 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV), NULL, NULL) < 0 ||
294 putc('\n', fo) == EOF){
295 rv = FAL0;
296 break;
298 NYD_LEAVE;
299 return rv;
302 static int
303 a_sendout_body(FILE *fo, FILE *fi, enum conversion convert){
304 struct str outrest, inrest;
305 char *buf;
306 size_t sz, bufsize, cnt;
307 bool_t iseof;
308 int rv;
309 NYD2_ENTER;
311 rv = n_ERR_INVAL;
312 iseof = FAL0;
313 buf = n_alloc(bufsize = SEND_LINESIZE);
314 outrest.s = inrest.s = NULL;
315 outrest.l = inrest.l = 0;
317 if(convert == CONV_TOQP
318 #ifdef HAVE_ICONV
319 || iconvd != (iconv_t)-1
320 #endif
322 fflush(fi);
323 cnt = fsize(fi);
326 while(!iseof){
327 if(convert == CONV_TOQP
328 #ifdef HAVE_ICONV
329 || iconvd != (iconv_t)-1
330 #endif
332 if(fgetline(&buf, &bufsize, &cnt, &sz, fi, 0) == NULL)
333 break;
334 }else if((sz = fread(buf, sizeof *buf, bufsize, fi)) == 0)
335 break;
336 joutln:
337 if(xmime_write(buf, sz, fo, convert, TD_ICONV, &outrest,
338 (iseof > FAL0 ? NULL : &inrest)) < 0)
339 goto jleave;
341 if(iseof <= FAL0 && (outrest.l != 0 || inrest.l != 0)){
342 sz = 0;
343 iseof = (iseof || inrest.l == 0) ? TRU1 : TRUM1;
344 goto joutln;
347 rv = ferror(fi) ? n_ERR_IO : n_ERR_NONE;
348 jleave:
349 if(outrest.s != NULL)
350 n_free(outrest.s);
351 if(inrest.s != NULL)
352 n_free(inrest.s);
353 n_free(buf);
355 NYD2_LEAVE;
356 return rv;
359 static int
360 a_sendout_attach_file(struct header *hp, struct attachment *ap, FILE *fo)
362 /* TODO of course, the MIME classification needs to performed once
363 * TODO only, not for each and every charset anew ... ;-// */
364 char *charset_iter_orig[2];
365 long offs;
366 int err = 0;
367 NYD_ENTER;
369 /* Is this already in target charset? Simply copy over */
370 if (ap->a_conv == AC_TMPFILE) {
371 err = a_sendout__attach_file(hp, ap, fo);
372 Fclose(ap->a_tmpf);
373 DBG( ap->a_tmpf = NULL; )
374 goto jleave;
377 /* If we don't apply charset conversion at all (fixed input=ouput charset)
378 * we also simply copy over, since it's the users desire */
379 if (ap->a_conv == AC_FIX_INCS) {
380 ap->a_charset = ap->a_input_charset;
381 err = a_sendout__attach_file(hp, ap, fo);
382 goto jleave;
383 } else
384 assert(ap->a_input_charset != NULL);
386 /* Otherwise we need to iterate over all possible output charsets */
387 if ((offs = ftell(fo)) == -1) {
388 err = n_ERR_IO;
389 goto jleave;
391 charset_iter_recurse(charset_iter_orig);
392 for (charset_iter_reset(NULL);; charset_iter_next()) {
393 if (!charset_iter_is_valid()) {
394 err = n_ERR_NOENT;
395 break;
397 err = a_sendout__attach_file(hp, ap, fo);
398 if (err == 0 || (err != n_ERR_ILSEQ && err != n_ERR_INVAL))
399 break;
400 clearerr(fo);
401 if (fseek(fo, offs, SEEK_SET) == -1) {
402 err = n_ERR_IO;
403 break;
405 if (ap->a_conv != AC_DEFAULT) {
406 err = n_ERR_ILSEQ;
407 break;
409 ap->a_charset = NULL;
411 charset_iter_restore(charset_iter_orig);
412 jleave:
413 NYD_LEAVE;
414 return err;
417 static int
418 a_sendout__attach_file(struct header *hp, struct attachment *ap, FILE *fo)
420 int err = 0, do_iconv;
421 FILE *fi;
422 char const *charset;
423 enum conversion convert;
424 NYD_ENTER;
426 /* Either charset-converted temporary file, or plain path */
427 if (ap->a_conv == AC_TMPFILE) {
428 fi = ap->a_tmpf;
429 assert(ftell(fi) == 0);
430 } else if ((fi = Fopen(ap->a_path, "r")) == NULL) {
431 err = n_err_no;
432 n_err(_("%s: %s\n"), n_shexp_quote_cp(ap->a_path, FAL0),
433 n_err_to_doc(err));
434 goto jleave;
437 /* MIME part header for attachment */
438 { char const *ct, *cp;
440 ct = ap->a_content_type;
441 charset = ap->a_charset;
442 convert = n_mimetype_classify_file(fi, (char const**)&ct,
443 &charset, &do_iconv);
444 if (charset == NULL || ap->a_conv == AC_FIX_INCS ||
445 ap->a_conv == AC_TMPFILE)
446 do_iconv = 0;
448 if (fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
449 a_sendout_put_ct(fo, ct, charset) < 0 ||
450 a_sendout_put_cte(fo, convert) < 0 ||
451 a_sendout_put_cd(fo, ap->a_content_disposition, ap->a_name) < 0)
452 goto jerr_header;
454 if((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")){
455 struct name *np;
457 /* TODO RFC 2046 specifies that the same Content-ID should be used
458 * TODO for identical data; this is too hard for use right now,
459 * TODO because if done right it should be checksum based!?! */
460 if((np = ap->a_content_id) != NULL)
461 cp = np->n_name;
462 else
463 cp = a_sendout_random_id(hp, FAL0);
465 if(cp != NULL && fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
466 goto jerr_header;
469 if ((cp = ap->a_content_description) != NULL &&
470 (fputs("Content-Description: ", fo) == EOF ||
471 xmime_write(cp, strlen(cp), fo, CONV_TOHDR, (TD_ISPR | TD_ICONV),
472 NULL, NULL) < 0 || putc('\n', fo) == EOF))
473 goto jerr_header;
475 if (putc('\n', fo) == EOF) {
476 jerr_header:
477 err = n_err_no;
478 goto jerr_fclose;
482 #ifdef HAVE_ICONV
483 if (iconvd != (iconv_t)-1)
484 n_iconv_close(iconvd);
485 if (do_iconv) {
486 if (asccasecmp(charset, ap->a_input_charset) &&
487 (iconvd = n_iconv_open(charset, ap->a_input_charset)
488 ) == (iconv_t)-1 && (err = n_err_no) != 0) {
489 if (err == n_ERR_INVAL)
490 n_err(_("Cannot convert from %s to %s\n"), ap->a_input_charset,
491 charset);
492 else
493 n_err(_("iconv_open: %s\n"), n_err_to_doc(err));
494 goto jerr_fclose;
497 #endif
499 err = a_sendout_body(fo, fi, convert);
500 jerr_fclose:
501 if(ap->a_conv != AC_TMPFILE)
502 Fclose(fi);
504 jleave:
505 NYD_LEAVE;
506 return err;
509 static bool_t
510 _sendbundle_setup_creds(struct sendbundle *sbp, bool_t signing_caps)
512 bool_t v15, rv = FAL0;
513 char *shost, *from;
514 #ifdef HAVE_SMTP
515 char const *smtp;
516 #endif
517 NYD_ENTER;
519 v15 = ok_blook(v15_compat);
520 shost = (v15 ? ok_vlook(smtp_hostname) : NULL);
521 from = ((signing_caps || !v15 || shost == NULL)
522 ? skin(myorigin(sbp->sb_hp)) : NULL);
524 if (signing_caps) {
525 if (from == NULL) {
526 #ifdef HAVE_SSL
527 n_err(_("No *from* address for signing specified\n"));
528 goto jleave;
529 #endif
530 } else
531 sbp->sb_signer.l = strlen(sbp->sb_signer.s = from);
534 #ifndef HAVE_SMTP
535 rv = TRU1;
536 #else
537 if ((smtp = ok_vlook(smtp)) == NULL) { /* TODO v15 url_creat(,ok_vlook(mta)*/
538 char const *proto;
540 /* *smtp* OBSOLETE message in mta_start() */
541 if((proto = n_servbyname(smtp = ok_vlook(mta), NULL)) == NULL ||
542 *proto == '\0'){
543 rv = TRU1;
544 goto jleave;
548 if (!url_parse(&sbp->sb_url, CPROTO_SMTP, smtp))
549 goto jleave;
551 if (v15) {
552 if (shost == NULL) {
553 if (from == NULL)
554 goto jenofrom;
555 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
556 } else
557 __sendout_ident = sbp->sb_url.url_u_h.s;
558 if (!ccred_lookup(&sbp->sb_ccred, &sbp->sb_url))
559 goto jleave;
560 } else {
561 if ((sbp->sb_url.url_flags & n_URL_HAD_USER) ||
562 sbp->sb_url.url_pass.s != NULL) {
563 n_err(_("New-style URL used without *v15-compat* being set\n"));
564 goto jleave;
566 /* TODO part of the entire myorigin() disaster, get rid of this! */
567 if (from == NULL) {
568 jenofrom:
569 n_err(_("Your configuration requires a *from* address, "
570 "but none was given\n"));
571 goto jleave;
573 if (!ccred_lookup_old(&sbp->sb_ccred, CPROTO_SMTP, from))
574 goto jleave;
575 sbp->sb_url.url_u_h.l = strlen(sbp->sb_url.url_u_h.s = from);
578 rv = TRU1;
579 #endif /* HAVE_SMTP */
580 #if defined HAVE_SSL || defined HAVE_SMTP
581 jleave:
582 #endif
583 NYD_LEAVE;
584 return rv;
587 static int
588 a_sendout_attach_msg(struct header *hp, struct attachment *ap, FILE *fo)
590 struct message *mp;
591 char const *ccp;
592 int rv;
593 NYD_ENTER;
594 n_UNUSED(hp);
596 fprintf(fo, "\n--%s\nContent-Type: message/rfc822\n"
597 "Content-Disposition: inline\n", _sendout_boundary);
598 if ((ccp = ap->a_content_description) != NULL)
599 fprintf(fo, "Content-Description: %s\n", ccp);/* TODO MIME! */
600 putc('\n', fo);
602 mp = message + ap->a_msgno - 1;
603 touch(mp);
604 rv = (sendmp(mp, fo, 0, NULL, SEND_RFC822, NULL) < 0) ? -1 : 0;
605 NYD_LEAVE;
606 return rv;
609 static int
610 make_multipart(struct header *hp, int convert, FILE *fi, FILE *fo,
611 char const *contenttype, char const *charset)
613 struct attachment *att;
614 int rv = -1;
615 NYD_ENTER;
617 fputs("This is a multi-part message in MIME format.\n", fo);
618 if(fsize(fi) != 0){
619 char const *cp;
621 if(fprintf(fo, "\n--%s\n", _sendout_boundary) < 0 ||
622 a_sendout_put_ct(fo, contenttype, charset) < 0 ||
623 a_sendout_put_cte(fo, convert) < 0 ||
624 fprintf(fo, "Content-Disposition: inline\n") < 0)
625 goto jleave;
626 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
627 (cp = a_sendout_random_id(hp, FAL0)) != NULL &&
628 fprintf(fo, "Content-ID: <%s>\n", cp) < 0)
629 goto jleave;
630 if(putc('\n', fo) == EOF)
631 goto jleave;
633 if(a_sendout_body(fo, fi, convert) != 0)
634 goto jleave;
636 if(ferror(fi))
637 goto jleave;
640 for (att = hp->h_attach; att != NULL; att = att->a_flink) {
641 if (att->a_msgno) {
642 if (a_sendout_attach_msg(hp, att, fo) != 0)
643 goto jleave;
644 } else if (a_sendout_attach_file(hp, att, fo) != 0)
645 goto jleave;
648 /* the final boundary with two attached dashes */
649 fprintf(fo, "\n--%s--\n", _sendout_boundary);
650 rv = 0;
651 jleave:
652 NYD_LEAVE;
653 return rv;
656 static FILE *
657 infix(struct header *hp, FILE *fi) /* TODO check */
659 char *tempMail;
660 enum conversion convert;
661 int do_iconv, err;
662 char const *contenttype, *charset;
663 FILE *nfo, *nfi;
664 #ifdef HAVE_ICONV
665 char const *tcs, *convhdr = NULL;
666 #endif
667 NYD_ENTER;
669 nfi = NULL;
670 charset = NULL;
671 do_iconv = 0;
672 n_UNINIT(err, 0);
674 if ((nfo = Ftmp(&tempMail, "infix", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER))
675 == NULL) {
676 n_perr(_("temporary mail file"), 0);
677 goto jleave;
679 if ((nfi = Fopen(tempMail, "r")) == NULL) {
680 n_perr(tempMail, 0);
681 Fclose(nfo);
683 Ftmp_release(&tempMail);
684 if (nfi == NULL)
685 goto jleave;
687 n_pstate &= ~n_PS_HEADER_NEEDED_MIME; /* TODO hack -> be carrier tracked */
689 contenttype = "text/plain";
690 if((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL)
691 contenttype = n_poption_arg_Mm;
692 convert = n_mimetype_classify_file(fi, &contenttype, &charset, &do_iconv);
694 #ifdef HAVE_ICONV
695 tcs = ok_vlook(ttycharset);
696 if ((convhdr = need_hdrconv(hp))) {
697 if (iconvd != (iconv_t)-1) /* XXX */
698 n_iconv_close(iconvd);
699 if (asccasecmp(convhdr, tcs) != 0 &&
700 (iconvd = n_iconv_open(convhdr, tcs)) == (iconv_t)-1 &&
701 (err = n_err_no) != 0)
702 goto jiconv_err;
704 #endif
705 if(puthead(FAL0, hp, nfo,
706 (GTO | GSUBJECT | GCC | GBCC | GNL | GCOMMA | GUA | GMIME | GMSGID |
707 GIDENT | GREF | GDATE), SEND_MBOX, convert, contenttype, charset)){
708 err = 1;
709 goto jerr;
711 #ifdef HAVE_ICONV
712 if (iconvd != (iconv_t)-1)
713 n_iconv_close(iconvd);
714 #endif
716 #ifdef HAVE_ICONV
717 if (do_iconv && charset != NULL) { /*TODO charset->n_mimetype_classify_file*/
718 if (asccasecmp(charset, tcs) != 0 &&
719 (iconvd = n_iconv_open(charset, tcs)) == (iconv_t)-1 &&
720 (err = n_err_no) != 0) {
721 jiconv_err:
722 if (err == n_ERR_INVAL)
723 n_err(_("Cannot convert from %s to %s\n"), tcs, charset);
724 else
725 n_perr("iconv_open", 0);
726 goto jerr;
729 #endif
731 if(hp->h_attach != NULL){
732 if(make_multipart(hp, convert, fi, nfo, contenttype, charset) != 0){
733 err = 1;
734 goto jerr;
736 }else if(a_sendout_body(nfo, fi, convert) != 0){
737 err = 1;
738 goto jerr;
741 fflush(nfo);
742 if((err = ferror(nfo)))
743 n_perr(_("temporary mail file"), 0);
744 jerr:
745 Fclose(nfo);
747 if(!err){
748 fflush_rewind(nfi);
749 Fclose(fi);
750 }else{
751 Fclose(nfi);
752 nfi = NULL;
754 jleave:
755 #ifdef HAVE_ICONV
756 if(iconvd != (iconv_t)-1)
757 n_iconv_close(iconvd);
758 #endif
759 NYD_LEAVE;
760 return nfi;
763 static bool_t
764 _check_dispo_notif(struct name *mdn, struct header *hp, FILE *fo)
766 char const *from;
767 bool_t rv = TRU1;
768 NYD_ENTER;
770 /* TODO smtp_disposition_notification (RFC 3798): relation to return-path
771 * TODO not yet checked */
772 if (!ok_blook(disposition_notification_send))
773 goto jleave;
775 if (mdn != NULL && mdn != (struct name*)0x1)
776 from = mdn->n_name;
777 else if ((from = myorigin(hp)) == NULL) {
778 if (n_poption & n_PO_D_V)
779 n_err(_("*disposition-notification-send*: *from* not set\n"));
780 goto jleave;
783 if (fmt("Disposition-Notification-To:", nalloc(n_UNCONST(from), 0), fo, 0))
784 rv = FAL0;
785 jleave:
786 NYD_LEAVE;
787 return rv;
790 static int
791 sendmail_internal(void *v, int recipient_record)
793 struct header head;
794 char *str = v;
795 int rv;
796 NYD_ENTER;
798 memset(&head, 0, sizeof head);
799 head.h_mailx_command = "mail";
800 if((head.h_to = lextract(str, GTO |
801 (ok_blook(fullnames) ? GFULL | GSKIN : GSKIN))) != NULL)
802 head.h_mailx_raw_to = namelist_dup(head.h_to, head.h_to->n_type);
803 rv = mail1(&head, 0, NULL, NULL, recipient_record, 0);
804 NYD_LEAVE;
805 return (rv != OKAY); /* reverse! */
808 static struct name *
809 a_sendout_file_a_pipe(struct name *names, FILE *fo, bool_t *senderror){
810 ui32_t pipecnt, xcnt, i;
811 char const *sh;
812 struct name *np;
813 FILE *fp, **fppa;
814 NYD_ENTER;
816 fp = NULL;
817 fppa = NULL;
819 /* Look through all recipients and do a quick return if no file or pipe
820 * addressee is found */
821 for(pipecnt = xcnt = 0, np = names; np != NULL; np = np->n_flink){
822 if(np->n_type & GDEL)
823 continue;
824 switch(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE){
825 case NAME_ADDRSPEC_ISFILE: ++xcnt; break;
826 case NAME_ADDRSPEC_ISPIPE: ++pipecnt; break;
829 if((pipecnt | xcnt) == 0)
830 goto jleave;
832 /* Otherwise create an array of file descriptors for each found pipe
833 * addressee to get around the dup(2)-shared-file-offset problem, i.e.,
834 * each pipe subprocess needs its very own file descriptor, and we need
835 * to deal with that.
836 * To make our life a bit easier let's just use the auto-reclaimed
837 * string storage */
838 if(pipecnt == 0 || (n_poption & n_PO_DEBUG)){
839 pipecnt = 0;
840 sh = NULL;
841 }else{
842 i = sizeof(FILE*) * pipecnt;
843 fppa = n_lofi_alloc(i);
844 memset(fppa, 0, i);
845 sh = ok_vlook(SHELL);
848 for(np = names; np != NULL; np = np->n_flink){
849 if(!(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE) || (np->n_type & GDEL))
850 continue;
852 /* In days of old we removed the entry from the the list; now for sake of
853 * header expansion we leave it in and mark it as deleted */
854 np->n_type |= GDEL;
856 if(n_poption & n_PO_D_VV)
857 n_err(_(">>> Writing message via %s\n"),
858 n_shexp_quote_cp(np->n_name, FAL0));
859 /* We _do_ write to STDOUT, anyway! */
860 if((n_poption & n_PO_DEBUG) && ((np->n_flags & NAME_ADDRSPEC_ISPIPE) ||
861 np->n_name[0] != '-' || np->n_name[1] != '\0'))
862 continue;
864 /* See if we have copied the complete message out yet. If not, do so */
865 if(fp == NULL){
866 int c;
867 char *tempEdit;
869 if((fp = Ftmp(&tempEdit, "outof", OF_RDWR | OF_HOLDSIGS | OF_REGISTER)
870 ) == NULL){
871 n_perr(_("Creation of temporary image"), 0);
872 pipecnt = 0;
873 goto jerror;
876 for(i = 0; i < pipecnt; ++i)
877 if((fppa[i] = Fopen(tempEdit, "r")) == NULL){
878 n_perr(_("Creation of pipe image descriptor"), 0);
879 break;
882 Ftmp_release(&tempEdit);
883 if(i != pipecnt){
884 pipecnt = i;
885 goto jerror;
888 fprintf(fp, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
889 c = EOF;
890 while(i = c, (c = getc(fo)) != EOF)
891 putc(c, fp);
892 rewind(fo);
893 if((int)i != '\n')
894 putc('\n', fp);
895 putc('\n', fp);
896 fflush(fp);
897 if(ferror(fp)){
898 n_perr(_("Finalizing write of temporary image"), 0);
899 goto jerror;
902 /* From now on use xcnt as a counter for pipecnt */
903 xcnt = 0;
906 /* Now either copy "image" to the desired file or give it as the standard
907 * input to the desired program as appropriate */
908 if(np->n_flags & NAME_ADDRSPEC_ISPIPE){
909 int pid;
910 sigset_t nset;
912 sigemptyset(&nset);
913 sigaddset(&nset, SIGHUP);
914 sigaddset(&nset, SIGINT);
915 sigaddset(&nset, SIGQUIT);
916 pid = n_child_start(sh, &nset, fileno(fppa[xcnt++]), n_CHILD_FD_NULL,
917 "-c", &np->n_name[1], NULL, NULL);
918 if(pid < 0){
919 n_err(_("Piping message to %s failed\n"),
920 n_shexp_quote_cp(np->n_name, FAL0));
921 goto jerror;
923 n_child_free(pid);
924 }else{
925 int c;
926 FILE *fout;
927 char const *fname, *fnameq;
929 if((fname = fexpand(np->n_name, FEXP_LOCAL | FEXP_NOPROTO)) == NULL)
930 goto jerror;
931 fnameq = n_shexp_quote_cp(fname, FAL0);
933 if(fname[0] == '-' && fname[1] == '\0')
934 fout = n_stdout;
935 else{
936 int xerr;
937 enum n_fopen_state fs;
939 if((fout = n_fopen_any(fname, "a+", &fs)) == NULL){
940 xerr = n_err_no;
941 jefile:
942 n_err(_("Writing message to %s failed: %s\n"),
943 fnameq, n_err_to_doc(xerr));
944 goto jerror;
947 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
948 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
949 n_file_lock(fileno(fout), FLT_WRITE, 0,0, UIZ_MAX);
951 if((xerr = n_folder_mbox_prepare_append(fout, NULL)
952 ) != n_ERR_NONE)
953 goto jefile;
957 rewind(fp);
958 while((c = getc(fp)) != EOF)
959 putc(c, fout);
960 if(ferror(fout)){
961 n_err(_("Writing message to %s failed: %s\n"),
962 fnameq, _("write error"));
963 *senderror = TRU1;
966 if(fout != n_stdout)
967 Fclose(fout);
971 jleave:
972 if(fp != NULL)
973 Fclose(fp);
974 if(fppa != NULL){
975 for(i = 0; i < pipecnt; ++i)
976 if((fp = fppa[i]) != NULL)
977 Fclose(fp);
978 n_lofi_free(fppa);
980 NYD_LEAVE;
981 return names;
983 jerror:
984 *senderror = TRU1;
985 while(np != NULL){
986 if(np->n_flags & NAME_ADDRSPEC_ISFILEORPIPE)
987 np->n_type |= GDEL;
988 np = np->n_flink;
990 goto jleave;
993 static bool_t
994 mightrecord(FILE *fp, struct name *to, bool_t resend){
995 char *cp;
996 char const *ccp;
997 bool_t rv;
998 NYD2_ENTER;
1000 rv = TRU1;
1002 if(n_poption & n_PO_DEBUG)
1003 ccp = NULL;
1004 else if(to != NULL){
1005 ccp = cp = savestr(skinned_name(to));
1006 while(*cp != '\0' && *cp != '@')
1007 ++cp;
1008 *cp = '\0';
1009 }else
1010 ccp = ok_vlook(record);
1012 if(ccp != NULL){
1013 if((cp = fexpand(ccp, FEXP_NSHELL)) == NULL)
1014 goto jbail;
1016 switch(*(ccp = cp)){
1017 case '.':
1018 if(cp[1] != '/'){ /* DIRSEP */
1019 default:
1020 if(ok_blook(outfolder)){
1021 struct str s;
1022 char const *nccp, *folder;
1024 switch(which_protocol(ccp, TRU1, FAL0, &nccp)){
1025 case PROTO_FILE:
1026 ccp = "file://";
1027 if(0){
1028 /* FALLTHRU */
1029 case PROTO_MAILDIR:
1030 ccp = "maildir://";
1032 folder = n_folder_query();
1033 #ifdef HAVE_IMAP
1034 if(which_protocol(folder, FAL0, FAL0, NULL) == PROTO_IMAP){
1035 n_err(_("(*record*): *outfolder* set, *folder* is IMAP "
1036 "based: only one protocol per file is possible\n"));
1037 goto jbail;
1039 #endif
1040 ccp = str_concat_csvl(&s, ccp, folder, nccp, NULL)->s;
1041 /* FALLTHRU */
1042 default:
1043 break;
1047 /* FALLTHRU */
1048 case '/':
1049 break;
1052 if(!a_sendout__savemail(ccp, fp, resend)){
1053 jbail:
1054 n_err(_("Failed to save message in %s - message not sent\n"),
1055 n_shexp_quote_cp(ccp, FAL0));
1056 n_exit_status |= n_EXIT_ERR;
1057 savedeadletter(fp, 1);
1058 rv = FAL0;
1061 NYD2_LEAVE;
1062 return rv;
1065 static bool_t
1066 a_sendout__savemail(char const *name, FILE *fp, bool_t resend){
1067 FILE *fo;
1068 size_t bufsize, buflen, cnt;
1069 enum n_fopen_state fs;
1070 bool_t rv, emptyline;
1071 char *buf;
1072 NYD_ENTER;
1074 buf = smalloc(bufsize = LINESIZE);
1075 rv = FAL0;
1077 if((fo = n_fopen_any(name, "a+", &fs)) == NULL){
1078 n_perr(name, 0);
1079 goto j_leave;
1082 if((fs & (n_PROTO_MASK | n_FOPEN_STATE_EXISTS)) ==
1083 (n_PROTO_FILE | n_FOPEN_STATE_EXISTS)){
1084 int xerr;
1086 /* TODO RETURN check, but be aware of protocols: v15: Mailbox->lock()!
1087 * TODO BETTER yet: should be returned in lock state already! */
1088 n_file_lock(fileno(fo), FLT_WRITE, 0,0, UIZ_MAX);
1090 if((xerr = n_folder_mbox_prepare_append(fo, NULL)) != n_ERR_NONE){
1091 n_perr(name, xerr);
1092 goto jleave;
1096 fflush_rewind(fp);
1097 rv = TRU1;
1099 fprintf(fo, "From %s %s", ok_vlook(LOGNAME), time_current.tc_ctime);
1100 for(emptyline = FAL0, buflen = 0, cnt = fsize(fp);
1101 fgetline(&buf, &bufsize, &cnt, &buflen, fp, 0) != NULL;){
1102 /* Only if we are resending it can happen that we have to quote From_
1103 * lines here; we don't generate messages which are ambiguous ourselves */
1104 if(resend){
1105 if(emptyline && is_head(buf, buflen, FAL0))
1106 putc('>', fo);
1107 }DBG(else assert(!is_head(buf, buflen, FAL0)); )
1109 emptyline = (buflen > 0 && *buf == '\n');
1110 fwrite(buf, sizeof *buf, buflen, fo);
1112 if(buflen > 0 && buf[buflen - 1] != '\n')
1113 putc('\n', fo);
1114 putc('\n', fo);
1115 fflush(fo);
1116 if(ferror(fo)){
1117 n_perr(name, 0);
1118 rv = FAL0;
1121 jleave:
1122 really_rewind(fp);
1123 if(Fclose(fo) != 0)
1124 rv = FAL0;
1125 j_leave:
1126 free(buf);
1127 NYD_LEAVE;
1128 return rv;
1131 static bool_t
1132 _transfer(struct sendbundle *sbp)
1134 struct name *np;
1135 ui32_t cnt;
1136 bool_t rv = TRU1;
1137 NYD_ENTER;
1139 for (cnt = 0, np = sbp->sb_to; np != NULL;) {
1140 char const k[] = "smime-encrypt-", *cp;
1141 size_t nl = strlen(np->n_name);
1142 char *vs = ac_alloc(sizeof(k)-1 + nl +1);
1143 memcpy(vs, k, sizeof(k) -1);
1144 memcpy(vs + sizeof(k) -1, np->n_name, nl +1);
1146 if ((cp = n_var_vlook(vs, FAL0)) != NULL) {
1147 #ifdef HAVE_SSL
1148 FILE *ef;
1150 if ((ef = smime_encrypt(sbp->sb_input, cp, np->n_name)) != NULL) {
1151 FILE *fisave = sbp->sb_input;
1152 struct name *nsave = sbp->sb_to;
1154 sbp->sb_to = ndup(np, np->n_type & ~(GFULL | GSKIN));
1155 sbp->sb_input = ef;
1156 if (!__mta_start(sbp))
1157 rv = FAL0;
1158 sbp->sb_to = nsave;
1159 sbp->sb_input = fisave;
1161 Fclose(ef);
1162 } else {
1163 #else
1164 n_err(_("No SSL support compiled in\n"));
1165 rv = FAL0;
1166 #endif
1167 n_err(_("Message not sent to: %s\n"), np->n_name);
1168 _sendout_error = TRU1;
1169 #ifdef HAVE_SSL
1171 #endif
1172 rewind(sbp->sb_input);
1174 if (np->n_flink != NULL)
1175 np->n_flink->n_blink = np->n_blink;
1176 if (np->n_blink != NULL)
1177 np->n_blink->n_flink = np->n_flink;
1178 if (np == sbp->sb_to)
1179 sbp->sb_to = np->n_flink;
1180 np = np->n_flink;
1181 } else {
1182 ++cnt;
1183 np = np->n_flink;
1185 ac_free(vs);
1188 if (cnt > 0 && (ok_blook(smime_force_encryption) || !__mta_start(sbp)))
1189 rv = FAL0;
1190 NYD_LEAVE;
1191 return rv;
1194 static bool_t
1195 __mta_start(struct sendbundle *sbp)
1197 pid_t pid;
1198 sigset_t nset;
1199 char const **args, *mta;
1200 bool_t rv;
1201 NYD_ENTER;
1203 /* Let rv mean "is smtp-based MTA" */
1204 if((mta = ok_vlook(smtp)) != NULL){
1205 n_OBSOLETE(_("please don't use *smtp*: assign a smtp:// URL to *mta*!"));
1206 /* For *smtp* the smtp:// protocol was optional; be simple: don't check
1207 * that *smtp* is misused with file:// or so */
1208 if(n_servbyname(mta, NULL) == NULL)
1209 mta = savecat("smtp://", mta);
1210 rv = TRU1;
1211 }else{
1212 char const *proto;
1214 mta = ok_vlook(mta); /* TODO v15: what solely remains in here */
1215 if((proto = ok_vlook(sendmail)) != NULL)
1216 n_OBSOLETE(_("please use *mta* instead of *sendmail*"));
1217 if(proto != NULL && !strcmp(mta, VAL_MTA))
1218 mta = proto;
1220 /* TODO for now this is pretty hacky: in v15 we should simply create
1221 * TODO an URL object; i.e., be able to do so, and it does it right
1222 * TODO I.e.,: url_creat(&url, ok_vlook(mta)); */
1223 if((proto = n_servbyname(mta, NULL)) != NULL){
1224 if(*proto == '\0'){
1225 mta += sizeof("file://") -1;
1226 rv = FAL0;
1227 }else
1228 rv = TRU1;
1229 }else
1230 rv = FAL0;
1233 if(!rv){
1234 char const *mta_base;
1236 if((mta = fexpand(mta_base = mta, FEXP_LOCAL | FEXP_NOPROTO)) == NULL){
1237 n_err(_("*mta* variable expansion failure: %s\n"),
1238 n_shexp_quote_cp(mta_base, FAL0));
1239 goto jstop;
1242 args = __mta_prepare_args(sbp->sb_to, sbp->sb_hp);
1243 if (n_poption & n_PO_DEBUG) {
1244 __mta_debug(sbp, mta, args);
1245 rv = TRU1;
1246 goto jleave;
1248 } else {
1249 n_UNINIT(args, NULL);
1250 #ifndef HAVE_SMTP
1251 n_err(_("No SMTP support compiled in\n"));
1252 goto jstop;
1253 #else
1254 /* C99 */{
1255 struct name *np;
1257 for(np = sbp->sb_to; np != NULL; np = np->n_flink)
1258 if(!(np->n_type & GDEL) && (np->n_flags & NAME_ADDRSPEC_ISNAME)){
1259 n_err(_("SMTP *mta* cannot send to alias name: %s\n"),
1260 n_shexp_quote_cp(np->n_name, FAL0));
1261 rv = FAL0;
1263 if(!rv)
1264 goto jstop;
1267 if (n_poption & n_PO_DEBUG) {
1268 (void)smtp_mta(sbp);
1269 rv = TRU1;
1270 goto jleave;
1272 #endif
1275 /* Fork, set up the temporary mail file as standard input for "mail", and
1276 * exec with the user list we generated far above */
1277 if ((pid = n_child_fork()) == -1) {
1278 n_perr("fork", 0);
1279 jstop:
1280 savedeadletter(sbp->sb_input, 0);
1281 _sendout_error = TRU1;
1282 goto jleave;
1284 if (pid == 0) {
1285 sigemptyset(&nset);
1286 sigaddset(&nset, SIGHUP);
1287 sigaddset(&nset, SIGINT);
1288 sigaddset(&nset, SIGQUIT);
1289 sigaddset(&nset, SIGTSTP);
1290 sigaddset(&nset, SIGTTIN);
1291 sigaddset(&nset, SIGTTOU);
1292 /* n_stdin = */freopen(n_path_devnull, "r", stdin);
1293 #ifdef HAVE_SMTP
1294 if (rv) {
1295 n_child_prepare(&nset, 0, 1);
1296 if (smtp_mta(sbp))
1297 _exit(n_EXIT_OK);
1298 } else
1299 #endif
1301 char const *ecp;
1302 int e;
1304 n_child_prepare(&nset, fileno(sbp->sb_input), -1);
1305 execv(mta, n_UNCONST(args));
1306 e = n_err_no;
1307 ecp = (e != n_ERR_NOENT) ? n_err_to_doc(e)
1308 : _("executable not found (adjust *mta* variable)");
1309 n_err(_("Cannot start %s: %s\n"), n_shexp_quote_cp(mta, FAL0), ecp);
1311 savedeadletter(sbp->sb_input, 1);
1312 n_err(_("... message not sent\n"));
1313 _exit(n_EXIT_ERR);
1316 if ((n_poption & n_PO_D_V) || ok_blook(sendwait)) {
1317 if (!(rv = n_child_wait(pid, NULL)))
1318 _sendout_error = TRU1;
1319 } else {
1320 n_child_free(pid);
1321 rv = TRU1;
1323 jleave:
1324 NYD_LEAVE;
1325 return rv;
1328 static char const **
1329 __mta_prepare_args(struct name *to, struct header *hp)
1331 size_t vas_cnt, i, j;
1332 char **vas;
1333 char const **args, *cp, *cp_v15compat;
1334 bool_t snda;
1335 NYD_ENTER;
1337 if((cp_v15compat = ok_vlook(sendmail_arguments)) != NULL)
1338 n_OBSOLETE(_("please use *mta-arguments*, not *sendmail-arguments*"));
1339 if((cp = ok_vlook(mta_arguments)) == NULL)
1340 cp = cp_v15compat;
1341 if ((cp /* TODO v15: = ok_vlook(mta_arguments)*/) == NULL) {
1342 vas_cnt = 0;
1343 vas = NULL;
1344 } else {
1345 /* Don't assume anything on the content but do allocate exactly j slots;
1346 * like this getrawlist will never overflow (and return -1) */
1347 j = strlen(cp);
1348 vas = n_lofi_alloc(sizeof(*vas) * j);
1349 vas_cnt = (size_t)getrawlist(TRU1, vas, j, cp, j);
1352 i = 4 + n_smopts_cnt + vas_cnt + 4 + 1 + count(to) + 1;
1353 args = salloc(i * sizeof(char*));
1355 if((cp_v15compat = ok_vlook(sendmail_progname)) != NULL)
1356 n_OBSOLETE(_("please use *mta-argv0*, not *sendmail-progname*"));
1357 cp = ok_vlook(mta_argv0);
1358 if(cp_v15compat != NULL && !strcmp(cp, VAL_MTA_ARGV0))
1359 cp = cp_v15compat;
1360 args[0] = cp/* TODO v15 only : = ok_vlook(mta_argv0) */;
1362 if ((snda = ok_blook(sendmail_no_default_arguments)))
1363 n_OBSOLETE(_("please use *mta-no-default-arguments*, "
1364 "not *sendmail-no-default-arguments*"));
1365 snda |= ok_blook(mta_no_default_arguments);
1366 if ((snda /* TODO v15: = ok_blook(mta_no_default_arguments)*/))
1367 i = 1;
1368 else {
1369 args[1] = "-i";
1370 i = 2;
1371 if (ok_blook(metoo))
1372 args[i++] = "-m";
1373 if (n_poption & n_PO_VERB)
1374 args[i++] = "-v";
1377 for (j = 0; j < n_smopts_cnt; ++j, ++i)
1378 args[i] = n_smopts[j];
1380 for (j = 0; j < vas_cnt; ++j, ++i)
1381 args[i] = vas[j];
1383 /* -r option? In conjunction with -t we act compatible to postfix(1) and
1384 * ignore it (it is -f / -F there) if the message specified From:/Sender:.
1385 * The interdependency with -t has been resolved in puthead() */
1386 if (!snda && ((n_poption & n_PO_r_FLAG) || ok_blook(r_option_implicit))) {
1387 struct name const *np;
1389 if (hp != NULL && (np = hp->h_from) != NULL) {
1390 /* However, what wasn't resolved there was the case that the message
1391 * specified multiple From: addresses and a Sender: */
1392 if ((n_psonce & n_PSO_t_FLAG) && hp->h_sender != NULL)
1393 np = hp->h_sender;
1395 if (np->n_fullextra != NULL) {
1396 args[i++] = "-F";
1397 args[i++] = np->n_fullextra;
1399 cp = np->n_name;
1400 } else {
1401 assert(n_poption_arg_r == NULL);
1402 cp = skin(myorigin(NULL));
1405 if (cp != NULL) {
1406 args[i++] = "-f";
1407 args[i++] = cp;
1411 /* Terminate option list to avoid false interpretation of system-wide
1412 * aliases that start with hyphen */
1413 if (!snda)
1414 args[i++] = "--";
1416 /* Receivers follow */
1417 if(!ok_blook(mta_no_receiver_arguments))
1418 for (; to != NULL; to = to->n_flink)
1419 if (!(to->n_type & GDEL))
1420 args[i++] = to->n_name;
1421 args[i] = NULL;
1423 if(vas != NULL)
1424 n_lofi_free(vas);
1425 NYD_LEAVE;
1426 return args;
1429 static void
1430 __mta_debug(struct sendbundle *sbp, char const *mta, char const **args)
1432 size_t cnt, bufsize, llen;
1433 char *buf;
1434 NYD_ENTER;
1436 n_err(_(">>> MTA: %s, arguments:"), n_shexp_quote_cp(mta, FAL0));
1437 for (; *args != NULL; ++args)
1438 n_err(" %s", n_shexp_quote_cp(*args, FAL0));
1439 n_err("\n");
1441 fflush_rewind(sbp->sb_input);
1443 cnt = fsize(sbp->sb_input);
1444 buf = NULL;
1445 bufsize = 0;
1446 while (fgetline(&buf, &bufsize, &cnt, &llen, sbp->sb_input, TRU1) != NULL) {
1447 buf[--llen] = '\0';
1448 n_err(">>> %s\n", buf);
1450 if (buf != NULL)
1451 free(buf);
1452 NYD_LEAVE;
1455 static char const *
1456 a_sendout_random_id(struct header *hp, bool_t msgid)
1458 static ui32_t reprocnt;
1459 struct tm *tmp;
1460 char const *h;
1461 size_t rl, i;
1462 char *rv, sep;
1463 NYD_ENTER;
1465 rv = NULL;
1467 if(msgid && hp != NULL && hp->h_message_id != NULL){
1468 rv = hp->h_message_id->n_name;
1469 goto jleave;
1472 if(ok_blook(message_id_disable))
1473 goto jleave;
1475 sep = '%';
1476 rl = 5;
1477 if((h = __sendout_ident) != NULL)
1478 goto jgen;
1479 if(ok_vlook(hostname) != NULL){
1480 h = n_nodename(TRU1);
1481 sep = '@';
1482 rl = 8;
1483 goto jgen;
1485 if(hp != NULL && (h = skin(myorigin(hp))) != NULL && strchr(h, '@') != NULL)
1486 goto jgen;
1487 goto jleave;
1489 jgen:
1490 tmp = &time_current.tc_gm;
1491 i = sizeof("%04d%02d%02d%02d%02d%02d.%s%c%s") -1 + rl + strlen(h);
1492 rv = n_autorec_alloc(i +1);
1493 snprintf(rv, i, "%04d%02d%02d%02d%02d%02d.%s%c%s",
1494 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
1495 tmp->tm_hour, tmp->tm_min, tmp->tm_sec,
1496 n_random_create_cp(rl, &reprocnt), sep, h);
1497 rv[i] = '\0'; /* Because we don't test snprintf(3) return */
1498 jleave:
1499 NYD_LEAVE;
1500 return rv;
1503 static int
1504 fmt(char const *str, struct name *np, FILE *fo, enum fmt_flags ff)
1506 enum {
1507 m_INIT = 1<<0,
1508 m_COMMA = 1<<1,
1509 m_NOPF = 1<<2,
1510 m_NONAME = 1<<3,
1511 m_CSEEN = 1<<4
1512 } m = (ff & GCOMMA) ? m_COMMA : 0;
1513 ssize_t col, len;
1514 int rv = 1;
1515 NYD_ENTER;
1517 col = strlen(str);
1518 if (col) {
1519 fwrite(str, sizeof *str, col, fo);
1520 #undef _X
1521 #define _X(S) (col == sizeof(S) -1 && !asccasecmp(str, S))
1522 if (ff & GFILES) {
1524 } else if (_X("reply-to:") || _X("mail-followup-to:") ||
1525 _X("references:") || _X("in-reply-to:") ||
1526 _X("disposition-notification-to:"))
1527 m |= m_NOPF | m_NONAME;
1528 else if (ok_blook(add_file_recipients)) {
1530 } else if (_X("to:") || _X("cc:") || _X("bcc:") || _X("resent-to:"))
1531 m |= m_NOPF;
1532 #undef _X
1535 for (; np != NULL; np = np->n_flink) {
1536 if(np->n_type & GDEL)
1537 continue;
1538 if(is_addr_invalid(np,
1539 ((ff & FMT_INC_INVADDR ? 0 : EACM_NOLOG) |
1540 (m & m_NONAME ? EACM_NONAME : EACM_NONE))) &&
1541 !(ff & FMT_INC_INVADDR))
1542 continue;
1544 /* File and pipe addresses only printed with set *add-file-recipients* */
1545 if ((m & m_NOPF) && is_fileorpipe_addr(np))
1546 continue;
1548 if ((m & (m_INIT | m_COMMA)) == (m_INIT | m_COMMA)) {
1549 if (putc(',', fo) == EOF)
1550 goto jleave;
1551 m |= m_CSEEN;
1552 ++col;
1555 len = strlen(np->n_fullname);
1556 if (np->n_type & GREF)
1557 len += 2;
1558 ++col; /* The separating space */
1559 if ((m & m_INIT) && /*col > 1 &&*/
1560 UICMP(z, col + len, >,
1561 (np->n_type & GREF ? MIME_LINELEN : 72))) {
1562 if (fputs("\n ", fo) == EOF)
1563 goto jleave;
1564 col = 1;
1565 m &= ~m_CSEEN;
1566 } else
1567 putc(' ', fo);
1568 m = (m & ~m_CSEEN) | m_INIT;
1570 /* C99 */{
1571 char *hb;
1573 /* GREF needs to be placed in angle brackets, but which are missing */
1574 hb = np->n_fullname;
1575 if(np->n_type & GREF){
1576 assert(UICMP(z, len, ==, strlen(np->n_fullname) + 2));
1577 hb = n_lofi_alloc(len +1);
1578 len -= 2;
1579 hb[0] = '<';
1580 hb[len + 1] = '>';
1581 hb[len + 2] = '\0';
1582 memcpy(&hb[1], np->n_fullname, len);
1583 len += 2;
1585 len = xmime_write(hb, len, fo,
1586 ((ff & FMT_DOMIME) ? CONV_TOHDR_A : CONV_NONE), TD_ICONV,
1587 NULL, NULL);
1588 if(np->n_type & GREF)
1589 n_lofi_free(hb);
1591 if (len < 0)
1592 goto jleave;
1593 col += len;
1596 if (putc('\n', fo) != EOF)
1597 rv = 0;
1598 jleave:
1599 NYD_LEAVE;
1600 return rv;
1603 static int
1604 infix_resend(FILE *fi, FILE *fo, struct message *mp, struct name *to,
1605 int add_resent)
1607 size_t cnt, c, bufsize = 0;
1608 char *buf = NULL;
1609 char const *cp;
1610 struct name *fromfield = NULL, *senderfield = NULL, *mdn;
1611 int rv = 1;
1612 NYD_ENTER;
1614 cnt = mp->m_size;
1616 /* Write the Resent-Fields */
1617 if (add_resent) {
1618 fputs("Resent-", fo);
1619 mkdate(fo, "Date");
1620 if ((cp = myaddrs(NULL)) != NULL) {
1621 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-From:", fo,
1622 &fromfield, 0))
1623 goto jleave;
1625 /* TODO RFC 5322: Resent-Sender SHOULD NOT be used if it's EQ -From: */
1626 if ((cp = ok_vlook(sender)) != NULL) {
1627 if (_putname(cp, GCOMMA, SEND_MBOX, NULL, "Resent-Sender:", fo,
1628 &senderfield, 0))
1629 goto jleave;
1631 if (fmt("Resent-To:", to, fo, FMT_COMMA))
1632 goto jleave;
1633 if (((cp = ok_vlook(stealthmua)) == NULL || !strcmp(cp, "noagent")) &&
1634 (cp = a_sendout_random_id(NULL, TRU1)) != NULL &&
1635 fprintf(fo, "Resent-Message-ID: <%s>\n", cp) < 0)
1636 goto jleave;
1639 if ((mdn = n_UNCONST(check_from_and_sender(fromfield, senderfield))) == NULL)
1640 goto jleave;
1641 if (!_check_dispo_notif(mdn, NULL, fo))
1642 goto jleave;
1644 /* Write the original headers */
1645 while (cnt > 0) {
1646 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1647 break;
1648 if (ascncasecmp("status:", buf, 7) &&
1649 ascncasecmp("disposition-notification-to:", buf, 28) &&
1650 !is_head(buf, c, FAL0))
1651 fwrite(buf, sizeof *buf, c, fo);
1652 if (cnt > 0 && *buf == '\n')
1653 break;
1656 /* Write the message body */
1657 while (cnt > 0) {
1658 if (fgetline(&buf, &bufsize, &cnt, &c, fi, 0) == NULL)
1659 break;
1660 if (cnt == 0 && *buf == '\n')
1661 break;
1662 fwrite(buf, sizeof *buf, c, fo);
1664 if (buf != NULL)
1665 free(buf);
1666 if (ferror(fo)) {
1667 n_perr(_("temporary mail file"), 0);
1668 goto jleave;
1670 rv = 0;
1671 jleave:
1672 NYD_LEAVE;
1673 return rv;
1676 FL int
1677 mail(struct name *to, struct name *cc, struct name *bcc, char const *subject,
1678 struct attachment *attach, char const *quotefile, int recipient_record)
1680 struct header head;
1681 struct str in, out;
1682 bool_t fullnames;
1683 NYD_ENTER;
1685 memset(&head, 0, sizeof head);
1687 /* The given subject may be in RFC1522 format. */
1688 if (subject != NULL) {
1689 in.s = n_UNCONST(subject);
1690 in.l = strlen(subject);
1691 mime_fromhdr(&in, &out, /* TODO ??? TD_ISPR |*/ TD_ICONV);
1692 head.h_subject = out.s;
1695 fullnames = ok_blook(fullnames);
1697 head.h_mailx_command = "mail";
1698 if((head.h_to = to) != NULL){
1699 if(!fullnames)
1700 head.h_to = to = a_sendout_fullnames_cleanup(to);
1701 head.h_mailx_raw_to = namelist_dup(to, to->n_type);
1703 if((head.h_cc = cc) != NULL){
1704 if(!fullnames)
1705 head.h_cc = cc = a_sendout_fullnames_cleanup(cc);
1706 head.h_mailx_raw_cc = namelist_dup(cc, cc->n_type);
1708 if((head.h_bcc = bcc) != NULL){
1709 if(!fullnames)
1710 head.h_bcc = bcc = a_sendout_fullnames_cleanup(bcc);
1711 head.h_mailx_raw_bcc = namelist_dup(bcc, bcc->n_type);
1714 head.h_attach = attach;
1716 mail1(&head, 0, NULL, quotefile, recipient_record, 0);
1718 if (subject != NULL)
1719 free(out.s);
1720 NYD_LEAVE;
1721 return 0; /* TODO only for main.c, -> n_exit_status, BUT: ARGH! */
1724 FL int
1725 c_sendmail(void *v)
1727 int rv;
1728 NYD_ENTER;
1730 rv = sendmail_internal(v, 0);
1731 NYD_LEAVE;
1732 return rv;
1735 FL int
1736 c_Sendmail(void *v)
1738 int rv;
1739 NYD_ENTER;
1741 rv = sendmail_internal(v, 1);
1742 NYD_LEAVE;
1743 return rv;
1746 FL enum okay
1747 mail1(struct header *hp, int printheaders, struct message *quote,
1748 char const *quotefile, int recipient_record, int doprefix)
1750 struct n_sigman sm;
1751 struct sendbundle sb;
1752 struct name *to;
1753 bool_t dosign;
1754 FILE * volatile mtf, *nmtf;
1755 enum okay volatile rv;
1756 NYD_ENTER;
1758 _sendout_error = FAL0;
1759 __sendout_ident = NULL;
1760 n_pstate_err_no = n_ERR_INVAL;
1761 rv = STOP;
1762 mtf = NULL;
1764 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
1765 case 0:
1766 break;
1767 default:
1768 goto jleave;
1771 /* Update some globals we likely need first */
1772 time_current_update(&time_current, TRU1);
1774 /* Collect user's mail from standard input. Get the result as mtf */
1775 mtf = collect(hp, printheaders, quote, quotefile, doprefix, &_sendout_error);
1776 if (mtf == NULL)
1777 goto jleave;
1779 dosign = TRUM1;
1781 /* */
1782 if(n_psonce & n_PSO_INTERACTIVE){
1783 if (ok_blook(asksign))
1784 dosign = getapproval(_("Sign this message"), TRU1);
1787 if(fsize(mtf) == 0){
1788 if(n_poption & n_PO_E_FLAG){
1789 n_pstate_err_no = n_ERR_NONE;
1790 rv = OKAY;
1791 goto jleave;
1794 if(hp->h_subject == NULL)
1795 n_err(_("No message, no subject; hope that's ok\n"));
1796 else if(ok_blook(bsdcompat) || ok_blook(bsdmsgs))
1797 n_err(_("Null message body; hope that's ok\n"));
1800 if (dosign == TRUM1)
1801 dosign = ok_blook(smime_sign); /* TODO USER@HOST <-> *from* +++!!! */
1802 #ifndef HAVE_SSL
1803 if (dosign) {
1804 n_err(_("No SSL support compiled in\n"));
1805 goto jleave;
1807 #endif
1809 /* XXX Update time_current again; once collect() offers editing of more
1810 * XXX headers, including Date:, this must only happen if Date: is the
1811 * XXX same that it was before collect() (e.g., postponing etc.).
1812 * XXX But *do* update otherwise because the mail seems to be backdated
1813 * XXX if the user edited some time, which looks odd and it happened
1814 * XXX to me that i got mis-dated response mails due to that... */
1815 time_current_update(&time_current, TRU1);
1817 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1818 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1819 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1820 * TODO header fields ONCE, call that ONCE after user editing etc. has
1821 * TODO completed (one edit cycle) */
1823 /* Take the user names from the combined to and cc lists and do all the
1824 * alias processing. The POSIX standard says:
1825 * The names shall be substituted when alias is used as a recipient
1826 * address specified by the user in an outgoing message (that is,
1827 * other recipients addressed indirectly through the reply command
1828 * shall not be substituted in this manner).
1829 * S-nail thus violates POSIX, as has been pointed out correctly by
1830 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1831 * disputable anyway. Go for user friendliness */
1833 to = namelist_vaporise_head(hp,
1834 (EACM_NORMAL |
1835 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
1836 TRU1, &_sendout_error);
1838 if(to == NULL){
1839 n_err(_("No recipients specified\n"));
1840 n_pstate_err_no = n_ERR_DESTADDRREQ;
1841 goto jfail_dead;
1843 if(_sendout_error < 0){
1844 n_err(_("Some addressees were classified as \"hard error\"\n"));
1845 n_pstate_err_no = n_ERR_PERM;
1846 goto jfail_dead;
1849 /* */
1850 memset(&sb, 0, sizeof sb);
1851 sb.sb_hp = hp;
1852 sb.sb_to = to;
1853 sb.sb_input = mtf;
1854 if((dosign || count_nonlocal(to) > 0) &&
1855 !_sendbundle_setup_creds(&sb, (dosign > 0))){
1856 /* TODO saving $DEAD and recovering etc is not yet well defined */
1857 assert(n_pstate_err_no == n_ERR_INVAL);
1858 goto jfail_dead;
1861 /* 'Bit ugly kind of control flow until we find a charset that does it */
1862 for (charset_iter_reset(hp->h_charset);; charset_iter_next()) {
1863 int err;
1865 if (!charset_iter_is_valid())
1866 err = n_ERR_NOENT;
1867 else if ((nmtf = infix(hp, mtf)) != NULL)
1868 break;
1869 else if ((err = n_iconv_err_no) == n_ERR_ILSEQ || err == n_ERR_INVAL ||
1870 err == n_ERR_NOENT) {
1871 rewind(mtf);
1872 continue;
1875 n_perr(_("Failed to create encoded message"), err);
1876 n_pstate_err_no = n_ERR_NOTSUP;
1877 goto jfail_dead;
1879 mtf = nmtf;
1881 /* */
1882 #ifdef HAVE_SSL
1883 if (dosign) {
1884 if ((nmtf = smime_sign(mtf, sb.sb_signer.s)) == NULL)
1885 goto jfail_dead;
1886 Fclose(mtf);
1887 mtf = nmtf;
1889 #endif
1891 /* TODO truly - i still don't get what follows: (1) we deliver file
1892 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1893 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1895 /* C99 */{
1896 ui32_t cnt;
1897 bool_t b;
1899 /* Deliver pipe and file addressees */
1900 b = (ok_blook(record_files) && count(to) > 0);
1901 to = a_sendout_file_a_pipe(to, mtf, &_sendout_error);
1903 if (_sendout_error)
1904 savedeadletter(mtf, FAL0);
1906 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
1907 cnt = count(to);
1909 if ((recipient_record || b || cnt > 0) &&
1910 !mightrecord(mtf, (recipient_record ? to : NULL), FAL0))
1911 goto jleave;
1912 if (cnt > 0) {
1913 sb.sb_hp = hp;
1914 sb.sb_to = to;
1915 sb.sb_input = mtf;
1916 if (_transfer(&sb))
1917 rv = OKAY;
1918 } else if (!_sendout_error)
1919 rv = OKAY;
1922 n_sigman_cleanup_ping(&sm);
1923 jleave:
1924 if(mtf != NULL){
1925 char const *cp;
1927 Fclose(mtf);
1929 if((cp = ok_vlook(on_compose_cleanup)) != NULL)
1930 temporary_compose_mode_hook_call(cp, NULL, NULL);
1933 temporary_compose_mode_hook_unroll();
1935 if (_sendout_error)
1936 n_exit_status |= n_EXIT_SEND_ERROR;
1937 if(rv == OKAY)
1938 n_pstate_err_no = n_ERR_NONE;
1939 NYD_LEAVE;
1940 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
1941 return rv;
1943 jfail_dead:
1944 _sendout_error = TRU1;
1945 savedeadletter(mtf, TRU1);
1946 n_err(_("... message not sent\n"));
1947 goto jleave;
1950 FL int
1951 mkdate(FILE *fo, char const *field)
1953 struct tm tmpgm, *tmptr;
1954 int tzdiff, tzdiff_hour, tzdiff_min, rv;
1955 NYD_ENTER;
1957 memcpy(&tmpgm, &time_current.tc_gm, sizeof tmpgm);
1958 tzdiff = time_current.tc_time - mktime(&tmpgm);
1959 tzdiff_hour = (int)(tzdiff / 60);
1960 tzdiff_min = tzdiff_hour % 60;
1961 tzdiff_hour /= 60;
1962 tmptr = &time_current.tc_local;
1963 if (tmptr->tm_isdst > 0)
1964 ++tzdiff_hour;
1965 rv = fprintf(fo, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1966 field,
1967 n_weekday_names[tmptr->tm_wday],
1968 tmptr->tm_mday, n_month_names[tmptr->tm_mon],
1969 tmptr->tm_year + 1900, tmptr->tm_hour,
1970 tmptr->tm_min, tmptr->tm_sec,
1971 tzdiff_hour * 100 + tzdiff_min);
1972 NYD_LEAVE;
1973 return rv;
1976 FL int
1977 puthead(bool_t nosend_msg, struct header *hp, FILE *fo, enum gfield w,
1978 enum sendaction action, enum conversion convert, char const *contenttype,
1979 char const *charset)
1981 #define FMT_CC_AND_BCC() \
1982 do {\
1983 if ((w & GCC) && (hp->h_cc != NULL || nosend_msg == TRUM1)) {\
1984 if (fmt("Cc:", hp->h_cc, fo, ff))\
1985 goto jleave;\
1986 ++gotcha;\
1988 if ((w & GBCC) && (hp->h_bcc != NULL || nosend_msg == TRUM1)) {\
1989 if (fmt("Bcc:", hp->h_bcc, fo, ff))\
1990 goto jleave;\
1991 ++gotcha;\
1993 } while (0)
1995 char const *addr;
1996 size_t gotcha;
1997 struct name *np, *fromasender = NULL;
1998 int stealthmua, rv = 1;
1999 bool_t nodisp;
2000 enum fmt_flags ff;
2001 NYD_ENTER;
2003 if ((addr = ok_vlook(stealthmua)) != NULL)
2004 stealthmua = !strcmp(addr, "noagent") ? -1 : 1;
2005 else
2006 stealthmua = 0;
2007 gotcha = 0;
2008 nodisp = (action != SEND_TODISP);
2009 ff = (w & (GCOMMA | GFILES)) | (nodisp ? FMT_DOMIME : 0);
2010 if(nosend_msg)
2011 ff |= FMT_INC_INVADDR;
2013 if (w & GDATE)
2014 mkdate(fo, "Date"), ++gotcha;
2015 if (w & GIDENT) {
2016 if (hp->h_from == NULL || hp->h_sender == NULL)
2017 setup_from_and_sender(hp);
2019 if (hp->h_from != NULL) {
2020 if (fmt("From:", hp->h_from, fo, ff))
2021 goto jleave;
2022 ++gotcha;
2025 if (hp->h_sender != NULL) {
2026 if (fmt("Sender:", hp->h_sender, fo, ff))
2027 goto jleave;
2028 ++gotcha;
2031 fromasender = n_UNCONST(check_from_and_sender(hp->h_from, hp->h_sender));
2032 if (fromasender == NULL)
2033 goto jleave;
2034 /* Note that fromasender is (NULL,) 0x1 or real sender here */
2037 #if 1
2038 if ((w & GTO) && (hp->h_to != NULL || nosend_msg == TRUM1)) {
2039 if (fmt("To:", hp->h_to, fo, ff))
2040 goto jleave;
2041 ++gotcha;
2043 #else
2044 /* TODO Thought about undisclosed recipients:;, but would be such a fake
2045 * TODO given that we cannot handle group addresses. Ridiculous */
2046 if (w & GTO) {
2047 struct name *xto;
2049 if ((xto = hp->h_to) != NULL) {
2050 char const ud[] = "To: Undisclosed recipients:;\n" /* TODO groups */;
2052 if (count_nonlocal(xto) != 0 || ok_blook(add_file_recipients) ||
2053 (hp->h_cc != NULL && count_nonlocal(hp->h_cc) > 0))
2054 goto jto_fmt;
2055 if (fwrite(ud, 1, sizeof(ud) -1, fo) != sizeof(ud) -1)
2056 goto jleave;
2057 ++gotcha;
2058 } else if (nosend_msg == TRUM1) {
2059 jto_fmt:
2060 if (fmt("To:", hp->h_to, fo, ff))
2061 goto jleave;
2062 ++gotcha;
2065 #endif
2067 if (!ok_blook(bsdcompat) && !ok_blook(bsdorder))
2068 FMT_CC_AND_BCC();
2070 if ((w & GSUBJECT) && (hp->h_subject != NULL || nosend_msg == TRUM1)) {
2071 if (fwrite("Subject: ", sizeof(char), 9, fo) != 9)
2072 goto jleave;
2073 if (hp->h_subject != NULL) {
2074 size_t sublen;
2075 char const *sub;
2077 sublen = strlen(sub = subject_re_trim(hp->h_subject));
2079 /* Trimmed something, (re-)add Re: */
2080 if (sub != hp->h_subject) {
2081 if (fwrite("Re: ", 1, 4, fo) != 4) /* RFC mandates eng. "Re: " */
2082 goto jleave;
2083 if (sublen > 0 &&
2084 xmime_write(sub, sublen, fo,
2085 (!nodisp ? CONV_NONE : CONV_TOHDR),
2086 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV), NULL, NULL) < 0)
2087 goto jleave;
2089 /* This may be, e.g., a Fwd: XXX yes, unfortunately we do like that */
2090 else if (*sub != '\0') {
2091 if (xmime_write(sub, sublen, fo, (!nodisp ? CONV_NONE : CONV_TOHDR),
2092 (!nodisp ? TD_ISPR | TD_ICONV : TD_ICONV), NULL, NULL) < 0)
2093 goto jleave;
2096 ++gotcha;
2097 putc('\n', fo);
2100 if (ok_blook(bsdcompat) || ok_blook(bsdorder))
2101 FMT_CC_AND_BCC();
2103 if ((w & GMSGID) && stealthmua <= 0 &&
2104 (addr = a_sendout_random_id(hp, TRU1)) != NULL) {
2105 if (fprintf(fo, "Message-ID: <%s>\n", addr) < 0)
2106 goto jleave;
2107 ++gotcha;
2110 if(w & GREF){
2111 struct name *xnp;
2113 if((xnp = np = hp->h_ref) != NULL){
2114 if(fmt("References:", np, fo, 0))
2115 goto jleave;
2116 ++gotcha;
2118 if((np = hp->h_in_reply_to) != NULL || xnp != NULL){
2119 if(np == NULL)
2120 for(; xnp != NULL; xnp = xnp->n_flink)
2121 np = xnp;
2122 if(fmt("In-Reply-To:", np, fo, 0))
2123 goto jleave;
2124 ++gotcha;
2128 if (w & GIDENT) {
2129 /* Reply-To:. Be careful not to destroy a possible user input, duplicate
2130 * the list first.. TODO it is a terrible codebase.. */
2131 if((np = hp->h_reply_to) != NULL)
2132 np = namelist_dup(np, np->n_type);
2133 else{
2134 char const *v15compat;
2136 if((v15compat = ok_vlook(replyto)) != NULL)
2137 n_OBSOLETE(_("please use *reply-to*, not *replyto*"));
2138 if((addr = ok_vlook(reply_to)) == NULL)
2139 addr = v15compat;
2140 np = lextract(addr, GEXTRA |
2141 (ok_blook(fullnames) ? GFULL | GSKIN : GSKIN));
2143 if (np != NULL &&
2144 (np = elide(
2145 checkaddrs(usermap(np, TRU1), EACM_STRICT | EACM_NOLOG,
2146 NULL))) != NULL) {
2147 if (fmt("Reply-To:", np, fo, ff))
2148 goto jleave;
2149 ++gotcha;
2153 if ((w & GIDENT) && !nosend_msg) {
2154 /* Mail-Followup-To: TODO factor out this huge block of code */
2155 /* Place ourselfs in there if any non-subscribed list is an addressee */
2156 if((hp->h_flags & HF_LIST_REPLY) || hp->h_mft != NULL ||
2157 ok_blook(followup_to)){
2158 enum{
2159 _ANYLIST = 1u<<(HF__NEXT_SHIFT + 0),
2160 _HADMFT = 1u<<(HF__NEXT_SHIFT + 1)
2162 struct name *mft, **mftp, *x;
2163 ui32_t f;
2165 f = hp->h_flags | (hp->h_mft != NULL ? _HADMFT : 0);
2166 mft = NULL;
2167 mftp = &mft;
2169 /* But for that, we have to remove all incarnations of ourselfs first.
2170 * TODO It is total crap that we have alternates_remove(), is_myname()
2171 * TODO or whatever; these work only with variables, not with data
2172 * TODO that is _currently_ in some header fields!!! v15.0: complete
2173 * TODO rewrite, object based, lazy evaluated, on-the-fly marked.
2174 * TODO then this should be a really cheap thing in here... */
2175 np = elide(n_alternates_remove(cat(
2176 namelist_dup(hp->h_to, GEXTRA | GFULL),
2177 namelist_dup(hp->h_cc, GEXTRA | GFULL)), FAL0));
2178 addr = hp->h_list_post;
2180 while((x = np) != NULL){
2181 si8_t ml;
2183 np = np->n_flink;
2185 /* XXX is_mlist_mp()?? */
2186 if((ml = is_mlist(x->n_name, FAL0)) == MLIST_OTHER &&
2187 addr != NULL && !asccasecmp(addr, x->n_name))
2188 ml = MLIST_KNOWN;
2190 /* Any non-subscribed list? Add ourselves */
2191 switch(ml){
2192 case MLIST_KNOWN:
2193 f |= HF_MFT_SENDER;
2194 /* FALLTHRU */
2195 case MLIST_SUBSCRIBED:
2196 f |= _ANYLIST;
2197 goto j_mft_add;
2198 case MLIST_OTHER:
2199 if(!(f & HF_LIST_REPLY)){
2200 j_mft_add:
2201 if(!is_addr_invalid(x,
2202 EACM_STRICT | EACM_NOLOG | EACM_NONAME)){
2203 x->n_blink = *mftp;
2204 x->n_flink = NULL;
2205 *mftp = x;
2206 mftp = &x->n_flink;
2207 } /* XXX write some warning? if verbose?? */
2208 continue;
2210 /* And if this is a reply that honoured a M-F-T: header then
2211 * we'll also add all members of the original M-F-T: that are
2212 * still addressed by us, regardless of other circumstances */
2213 else if(f & _HADMFT){
2214 struct name *ox;
2216 for(ox = hp->h_mft; ox != NULL; ox = ox->n_flink)
2217 if(!asccasecmp(ox->n_name, x->n_name))
2218 goto j_mft_add;
2220 break;
2224 if((f & (_ANYLIST | _HADMFT)) && mft != NULL){
2225 if(((f & HF_MFT_SENDER) ||
2226 ((f & (_ANYLIST | _HADMFT)) == _HADMFT)) &&
2227 (np = fromasender) != NULL && np != (struct name*)0x1)
2228 *mftp = ndup(np, (np->n_type & ~GMASK) | GEXTRA | GFULL);
2230 if(fmt("Mail-Followup-To:", mft, fo, ff))
2231 goto jleave;
2232 ++gotcha;
2236 if (!_check_dispo_notif(fromasender, hp, fo))
2237 goto jleave;
2240 if ((w & GUA) && stealthmua == 0) {
2241 if (fprintf(fo, "User-Agent: %s %s\n", n_uagent,
2242 (n_psonce & n_PSO_REPRODUCIBLE
2243 ? n_reproducible_name : ok_vlook(version))) < 0)
2244 goto jleave;
2245 ++gotcha;
2248 /* The user may have placed headers when editing */
2249 if(1){
2250 struct n_header_field *hfp;
2252 if((hfp = hp->h_user_headers) != NULL){
2253 if(!_sendout_header_list(fo, hfp, nodisp))
2254 goto jleave;
2255 ++gotcha;
2259 /* Custom headers, as via *customhdr* */
2260 if(!nosend_msg){
2261 struct n_header_field *hfp;
2263 /* With iconv support we likely have a cached result */
2264 if((hfp = hp->h_custom_headers) == NULL)
2265 hp->h_custom_headers = hfp = n_customhdr_query();
2266 if(hfp != NULL){
2267 if(!_sendout_header_list(fo, hfp, nodisp))
2268 goto jleave;
2269 ++gotcha;
2273 /* We don't need MIME unless.. we need MIME?! */
2274 if ((w & GMIME) && ((n_pstate & n_PS_HEADER_NEEDED_MIME) ||
2275 hp->h_attach != NULL ||
2276 ((n_poption & n_PO_Mm_FLAG) && n_poption_arg_Mm != NULL) ||
2277 convert != CONV_7BIT || asccasecmp(charset, "US-ASCII"))) {
2278 ++gotcha;
2279 if (fputs("MIME-Version: 1.0\n", fo) == EOF)
2280 goto jleave;
2281 if (hp->h_attach != NULL) {
2282 _sendout_boundary = mime_param_boundary_create();/*TODO carrier*/
2283 if (fprintf(fo,
2284 "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
2285 _sendout_boundary) < 0)
2286 goto jleave;
2287 } else {
2288 if(a_sendout_put_ct(fo, contenttype, charset) < 0 ||
2289 a_sendout_put_cte(fo, convert) < 0)
2290 goto jleave;
2294 if (gotcha && (w & GNL))
2295 if (putc('\n', fo) == EOF)
2296 goto jleave;
2297 rv = 0;
2298 jleave:
2299 NYD_LEAVE;
2300 return rv;
2301 #undef FMT_CC_AND_BCC
2304 FL enum okay
2305 resend_msg(struct message *mp, struct header *hp, bool_t add_resent)
2307 struct n_sigman sm;
2308 struct sendbundle sb;
2309 FILE * volatile ibuf, *nfo, * volatile nfi;
2310 char *tempMail;
2311 struct name *to;
2312 enum okay volatile rv;
2313 NYD_ENTER;
2315 _sendout_error = FAL0;
2316 __sendout_ident = NULL;
2317 n_pstate_err_no = n_ERR_INVAL;
2318 rv = STOP;
2319 to = hp->h_to;
2320 nfi = ibuf = NULL;
2322 n_SIGMAN_ENTER_SWITCH(&sm, n_SIGMAN_ALL) {
2323 case 0:
2324 break;
2325 default:
2326 goto jleave;
2329 /* Update some globals we likely need first */
2330 time_current_update(&time_current, TRU1);
2332 /* If we fail we delay that a bit until we can write $DEAD! */
2334 if((to = checkaddrs(to,
2335 (EACM_NORMAL |
2336 (!(expandaddr_to_eaf() & EAF_NAME) ? EACM_NONAME : EACM_NONE)),
2337 &_sendout_error)) == NULL){
2338 n_err(_("No recipients specified\n"));
2339 n_pstate_err_no = n_ERR_DESTADDRREQ;
2340 }else if(_sendout_error < 0){
2341 n_err(_("Some addressees were classified as \"hard error\"\n"));
2342 n_pstate_err_no = n_ERR_PERM;
2345 if((nfo = Ftmp(&tempMail, "resend", OF_WRONLY | OF_HOLDSIGS | OF_REGISTER)
2346 ) == NULL) {
2347 _sendout_error = TRU1;
2348 n_perr(_("temporary mail file"), 0);
2349 n_pstate_err_no = n_ERR_IO;
2350 goto jleave;
2352 if((nfi = Fopen(tempMail, "r")) == NULL){
2353 n_perr(tempMail, 0);
2354 n_pstate_err_no = n_ERR_IO;
2356 Ftmp_release(&tempMail);
2357 if(nfi == NULL)
2358 goto jerr_o;
2360 if((ibuf = setinput(&mb, mp, NEED_BODY)) == NULL){
2361 n_pstate_err_no = n_ERR_IO;
2362 goto jerr_io;
2365 /* C99 */{
2366 char const *cp;
2368 if((cp = ok_vlook(on_resend_enter)) != NULL){
2369 /*setup_from_and_sender(hp);*/
2370 temporary_compose_mode_hook_call(cp, &n_temporary_compose_hook_varset,
2371 hp);
2375 memset(&sb, 0, sizeof sb);
2376 sb.sb_to = to;
2377 sb.sb_input = nfi;
2378 if(!_sendout_error &&
2379 count_nonlocal(to) > 0 && !_sendbundle_setup_creds(&sb, FAL0)){
2380 /* ..wait until we can write DEAD */
2381 _sendout_error = -1;
2384 if(infix_resend(ibuf, nfo, mp, to, add_resent) != 0){
2385 jfail_dead:
2386 savedeadletter(nfi, TRU1);
2387 n_err(_("... message not sent\n"));
2388 jerr_io:
2389 Fclose(nfi);
2390 nfi = NULL;
2391 jerr_o:
2392 Fclose(nfo);
2393 _sendout_error = TRU1;
2394 goto jleave;
2397 if(_sendout_error < 0)
2398 goto jfail_dead;
2400 Fclose(nfo);
2401 rewind(nfi);
2403 /* C99 */{
2404 bool_t b, c;
2406 /* Deliver pipe and file addressees */
2407 b = (ok_blook(record_files) && count(to) > 0);
2408 to = a_sendout_file_a_pipe(to, nfi, &_sendout_error);
2410 if(_sendout_error)
2411 savedeadletter(nfi, FAL0);
2413 to = elide(to); /* XXX only to drop GDELs due a_sendout_file_a_pipe()! */
2414 c = (count(to) > 0);
2416 if(b || c){
2417 if(!ok_blook(record_resent) || mightrecord(nfi, NULL, TRU1)){
2418 sb.sb_to = to;
2419 /*sb.sb_input = nfi;*/
2420 if(!c || _transfer(&sb))
2421 rv = OKAY;
2423 }else if(!_sendout_error)
2424 rv = OKAY;
2427 n_sigman_cleanup_ping(&sm);
2428 jleave:
2429 if(nfi != NULL){
2430 char const *cp;
2432 Fclose(nfi);
2434 if(ibuf != NULL){
2435 if((cp = ok_vlook(on_resend_cleanup)) != NULL)
2436 temporary_compose_mode_hook_call(cp, NULL, NULL);
2438 temporary_compose_mode_hook_unroll();
2442 if (_sendout_error)
2443 n_exit_status |= n_EXIT_SEND_ERROR;
2444 if(rv == OKAY)
2445 n_pstate_err_no = n_ERR_NONE;
2446 NYD_LEAVE;
2447 n_sigman_leave(&sm, n_SIGMAN_VIPSIGS_NTTYOUT);
2448 return rv;
2451 FL void
2452 savedeadletter(FILE *fp, bool_t fflush_rewind_first){
2453 struct n_string line;
2454 int c;
2455 enum {a_NONE, a_INIT = 1<<0, a_BODY = 1<<1, a_NL = 1<<2} flags;
2456 ul_i bytes, lines;
2457 FILE *dbuf;
2458 char const *cp, *cpq;
2459 NYD_ENTER;
2461 if(!ok_blook(save))
2462 goto jleave;
2464 if(fflush_rewind_first){
2465 fflush(fp);
2466 rewind(fp);
2468 if(fsize(fp) == 0)
2469 goto jleave;
2471 cp = n_getdeadletter();
2472 cpq = n_shexp_quote_cp(cp, FAL0);
2474 if(n_poption & n_PO_DEBUG){
2475 n_err(_(">>> Would (try to) write $DEAD %s\n"), cpq);
2476 goto jleave;
2479 if((dbuf = Fopen(cp, "w")) == NULL){
2480 n_perr(_("Cannot save to $DEAD"), 0);
2481 goto jleave;
2483 n_file_lock(fileno(dbuf), FLT_WRITE, 0,0, UIZ_MAX); /* XXX Natomic */
2485 fprintf(n_stdout, "%s ", cpq);
2486 fflush(n_stdout);
2488 /* TODO savedeadletter() non-conforming: should check whether we have any
2489 * TODO headers, if not we need to place "something", anything will do.
2490 * TODO MIME is completely missing, we use MBOXO quoting!! Yuck.
2491 * TODO I/O error handling missing. Yuck! */
2492 n_string_reserve(n_string_creat_auto(&line), 2 * SEND_LINESIZE);
2493 bytes = (ul_i)fprintf(dbuf, "From %s %s",
2494 ok_vlook(LOGNAME), time_current.tc_ctime);
2495 lines = 1;
2496 for(flags = a_NONE, c = '\0'; c != EOF; bytes += line.s_len, ++lines){
2497 n_string_trunc(&line, 0);
2498 while((c = getc(fp)) != EOF && c != '\n')
2499 n_string_push_c(&line, c);
2501 /* TODO It may be that we have only some plain text. It may be that we
2502 * TODO have a complete MIME encoded message. We don't know, and we
2503 * TODO have no usable mechanism to dig it!! We need v15! */
2504 if(!(flags & a_INIT)){
2505 size_t i;
2507 /* Throw away leading empty lines! */
2508 if(line.s_len == 0)
2509 continue;
2510 for(i = 0; i < line.s_len; ++i){
2511 if(fieldnamechar(line.s_dat[i]))
2512 continue;
2513 if(line.s_dat[i] == ':'){
2514 flags |= a_INIT;
2515 break;
2516 }else{
2517 /* We have no headers, this is already a body line! */
2518 flags |= a_INIT | a_BODY;
2519 break;
2522 /* Well, i had to check whether the RFC allows this. Assume we've
2523 * passed the headers, too, then! */
2524 if(i == line.s_len)
2525 flags |= a_INIT | a_BODY;
2527 if(flags & a_BODY){
2528 if(line.s_len >= 5 && !memcmp(line.s_dat, "From ", 5))
2529 n_string_unshift_c(&line, '>');
2531 if(line.s_len == 0)
2532 flags |= a_BODY | a_NL;
2533 else
2534 flags &= ~a_NL;
2536 n_string_push_c(&line, '\n');
2537 fwrite(line.s_dat, sizeof *line.s_dat, line.s_len, dbuf);
2539 if(!(flags & a_NL)){
2540 putc('\n', dbuf);
2541 ++bytes;
2542 ++lines;
2544 n_string_gut(&line);
2546 Fclose(dbuf);
2547 fprintf(n_stdout, "%lu/%lu\n", lines, bytes);
2548 fflush(n_stdout);
2550 rewind(fp);
2551 jleave:
2552 NYD_LEAVE;
2555 #undef SEND_LINESIZE
2557 /* s-it-mode */