1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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
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. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #ifndef HAVE_AMALGAMATION
47 #define SEND_LINESIZE \
48 ((1024 / B64_ENCODE_INPUT_PER_LINE) * B64_ENCODE_INPUT_PER_LINE)
50 static char const *__sendout_ident
; /* TODO temporary hack; rewrite puthead() */
51 static char * _sendout_boundary
;
52 static bool_t _sendout_error
;
54 static enum okay
_putname(char const *line
, enum gfield w
,
55 enum sendaction action
, size_t *gotcha
,
56 char const *prefix
, FILE *fo
, struct name
**xp
);
58 /* Get an encoding flag based on the given string */
59 static char const * _get_encoding(const enum conversion convert
);
61 /* Write an attachment to the file buffer, converting to MIME */
62 static int _attach_file(struct attachment
*ap
, FILE *fo
);
63 static int __attach_file(struct attachment
*ap
, FILE *fo
);
65 /* There are non-local receivers, collect credentials etc. */
66 static bool_t
_sendbundle_setup_creds(struct sendbundle
*sbpm
,
69 /* Prepare arguments for the MTA (non *smtp* mode) */
70 static char const ** _prepare_mta_args(struct name
*to
, struct header
*hp
);
72 /* Fix the header by glopping all of the expanded names from the distribution
73 * list into the appropriate fields */
74 static struct name
* fixhead(struct header
*hp
, struct name
*tolist
);
76 /* Put the signature file at fo. TODO layer rewrite: *integrate in body*!! */
77 static int put_signature(FILE *fo
, int convert
);
79 /* Attach a message to the file buffer */
80 static int attach_message(struct attachment
*ap
, FILE *fo
);
82 /* Generate the body of a MIME multipart message */
83 static int make_multipart(struct header
*hp
, int convert
, FILE *fi
,
84 FILE *fo
, char const *contenttype
, char const *charset
);
86 /* Prepend a header in front of the collected stuff and return the new file */
87 static FILE * infix(struct header
*hp
, FILE *fi
);
89 /* Save the outgoing mail on the passed file */
90 static int savemail(char const *name
, FILE *fi
);
92 /* Send mail to a bunch of user names. The interface is through mail() */
93 static int sendmail_internal(void *v
, int recipient_record
);
96 static bool_t
_transfer(struct sendbundle
*sbp
);
98 /* Start the MTA mailing */
99 static bool_t
start_mta(struct sendbundle
*sbp
);
101 /* Record outgoing mail if instructed to do so; in *record* unless to is set */
102 static bool_t
mightrecord(FILE *fp
, struct name
*to
);
104 /* Create a Message-Id: header field. Use either host name or from address */
105 static void _message_id(FILE *fo
, struct header
*hp
);
107 /* Format the given header line to not exceed 72 characters */
108 static int fmt(char const *str
, struct name
*np
, FILE *fo
, int comma
,
109 int dropinvalid
, int domime
);
111 /* Rewrite a message for resending, adding the Resent-Headers */
112 static int infix_resend(FILE *fi
, FILE *fo
, struct message
*mp
,
113 struct name
*to
, int add_resent
);
116 _putname(char const *line
, enum gfield w
, enum sendaction action
,
117 size_t *gotcha
, char const *prefix
, FILE *fo
, struct name
**xp
)
123 np
= lextract(line
, GEXTRA
| GFULL
);
128 else if (fmt(prefix
, np
, fo
, w
& GCOMMA
, 0, (action
!= SEND_TODISP
)))
130 else if (gotcha
!= NULL
)
137 _get_encoding(enum conversion
const convert
)
143 case CONV_7BIT
: rv
= "7bit"; break;
144 case CONV_8BIT
: rv
= "8bit"; break;
145 case CONV_TOQP
: rv
= "quoted-printable"; break;
146 case CONV_TOB64
: rv
= "base64"; break;
147 default: rv
= NULL
; break;
154 _attach_file(struct attachment
*ap
, FILE *fo
)
156 /* TODO of course, the MIME classification needs to performed once
157 * TODO only, not for each and every charset anew ... ;-// */
158 char *charset_iter_orig
[2];
163 /* Is this already in target charset? Simply copy over */
164 if (ap
->a_conv
== AC_TMPFILE
) {
165 err
= __attach_file(ap
, fo
);
167 DBG( ap
->a_tmpf
= NULL
; )
171 /* If we don't apply charset conversion at all (fixed input=ouput charset)
172 * we also simply copy over, since it's the users desire */
173 if (ap
->a_conv
== AC_FIX_INCS
) {
174 ap
->a_charset
= ap
->a_input_charset
;
175 err
= __attach_file(ap
, fo
);
179 /* Otherwise we need to iterate over all possible output charsets */
180 if ((offs
= ftell(fo
)) == -1) {
184 charset_iter_recurse(charset_iter_orig
);
185 for (charset_iter_reset(NULL
);; charset_iter_next()) {
186 if (!charset_iter_is_valid()) {
190 err
= __attach_file(ap
, fo
);
191 if (err
== 0 || (err
!= EILSEQ
&& err
!= EINVAL
))
194 if (fseek(fo
, offs
, SEEK_SET
) == -1) {
198 if (ap
->a_conv
!= AC_DEFAULT
) {
202 ap
->a_charset
= NULL
;
204 charset_iter_restore(charset_iter_orig
);
211 __attach_file(struct attachment
*ap
, FILE *fo
) /* XXX linelength */
213 int err
= 0, do_iconv
;
216 enum conversion convert
;
218 size_t bufsize
, lncnt
, inlen
;
221 /* Either charset-converted temporary file, or plain path */
222 if (ap
->a_conv
== AC_TMPFILE
) {
224 assert(ftell(fi
) == 0);
225 } else if ((fi
= Fopen(ap
->a_name
, "r")) == NULL
) {
231 /* MIME part header for attachment */
232 { char const *bn
= ap
->a_name
, *ct
;
234 if ((ct
= strrchr(bn
, '/')) != NULL
)
236 ct
= ap
->a_content_type
;
237 charset
= ap
->a_charset
;
238 convert
= mime_classify_file(fi
, (char const**)&ct
, &charset
, &do_iconv
);
239 if (charset
== NULL
|| ap
->a_conv
== AC_FIX_INCS
||
240 ap
->a_conv
== AC_TMPFILE
)
243 if (fprintf(fo
, "\n--%s\nContent-Type: %s", _sendout_boundary
, ct
) == -1)
246 if (charset
== NULL
) {
247 if (putc('\n', fo
) == EOF
)
249 } else if (fprintf(fo
, "; charset=%s\n", charset
) == -1)
252 if (fprintf(fo
, "Content-Transfer-Encoding: %s\n"
253 "Content-Disposition: %s;\n filename=\"",
254 _get_encoding(convert
), ap
->a_content_disposition
) == -1)
256 if (xmime_write(bn
, strlen(bn
), fo
, CONV_TOHDR
, TD_NONE
, NULL
) < 0)
258 if (fwrite("\"\n", sizeof(char), 2, fo
) != 2 * sizeof(char))
261 if ((bn
= ap
->a_content_id
) != NULL
&&
262 fprintf(fo
, "Content-ID: %s\n", bn
) == -1)
265 if ((bn
= ap
->a_content_description
) != NULL
&&
266 fprintf(fo
, "Content-Description: %s\n", bn
) == -1)
269 if (putc('\n', fo
) == EOF
) {
277 if (iconvd
!= (iconv_t
)-1)
278 n_iconv_close(iconvd
);
280 char const *tcs
= charset_get_lc();
281 if (asccasecmp(charset
, tcs
) &&
282 (iconvd
= n_iconv_open(charset
, tcs
)) == (iconv_t
)-1 &&
283 (err
= errno
) != 0) {
285 fprintf(stderr
, tr(179, "Cannot convert from %s to %s\n"),
288 perror("iconv_open");
294 bufsize
= SEND_LINESIZE
;
295 buf
= smalloc(bufsize
);
296 if (convert
== CONV_TOQP
298 || iconvd
!= (iconv_t
)-1
303 if (convert
== CONV_TOQP
305 || iconvd
!= (iconv_t
)-1
308 if (fgetline(&buf
, &bufsize
, &lncnt
, &inlen
, fi
, 0) == NULL
)
310 } else if ((inlen
= fread(buf
, sizeof *buf
, bufsize
, fi
)) == 0)
312 if (xmime_write(buf
, inlen
, fo
, convert
, TD_ICONV
, NULL
) < 0) {
322 if (ap
->a_conv
!= AC_TMPFILE
)
330 _sendbundle_setup_creds(struct sendbundle
*sbp
, bool_t signing_caps
)
332 bool_t v15
, rv
= FAL0
;
333 char *shost
, *from
, *smtp
;
336 v15
= ok_blook(v15_compat
);
337 shost
= (v15
? ok_vlook(smtp_hostname
) : NULL
);
338 from
= ((signing_caps
|| !v15
|| shost
== NULL
)
339 ? skin(myorigin(sbp
->sb_hp
)) : NULL
);
344 fprintf(stderr
, tr(531, "No *from* address for signing specified\n"));
348 sbp
->sb_signer
.l
= strlen(sbp
->sb_signer
.s
= from
);
351 if ((smtp
= ok_vlook(smtp
)) == NULL
) {
356 if (!url_parse(&sbp
->sb_url
, CPROTO_SMTP
, smtp
))
361 assert(from
!= NULL
);
362 sbp
->sb_url
.url_uh
.l
= strlen(sbp
->sb_url
.url_uh
.s
= from
);
365 __sendout_ident
= sbp
->sb_url
.url_uh
.s
;
366 if (!ccred_lookup(&sbp
->sb_ccred
, &sbp
->sb_url
))
369 if (sbp
->sb_url
.url_had_user
|| sbp
->sb_url
.url_pass
.s
!= NULL
) {
370 fprintf(stderr
, "New-style URL used without *v15-compat* being set\n");
373 if (!ccred_lookup_old(&sbp
->sb_ccred
, CPROTO_SMTP
, smtp
))
375 assert(from
!= NULL
);
376 sbp
->sb_url
.url_uh
.l
= strlen(sbp
->sb_url
.url_uh
.s
= from
);
386 _prepare_mta_args(struct name
*to
, struct header
*hp
)
392 i
= 4 + smopts_count
+ 2 + count(to
) + 1;
393 args
= salloc(i
* sizeof(char*));
395 args
[0] = ok_vlook(sendmail_progname
);
396 if (args
[0] == NULL
|| *args
[0] == '\0')
397 args
[0] = SENDMAIL_PROGNAME
;
403 if (options
& OPT_VERB
)
406 for (j
= 0; j
< smopts_count
; ++j
, ++i
)
409 /* -r option? We may only pass skinned addresses */
410 if (options
& OPT_r_FLAG
) {
413 if (option_r_arg
[0] != '\0')
414 froma
= option_r_arg
;
415 else if (hp
!= NULL
) {
416 /* puthead() did it, then */
417 assert(hp
->h_from
!= NULL
);
418 froma
= hp
->h_from
->n_name
;
420 froma
= skin(myorigin(NULL
)); /* XXX ugh! ugh!! */
421 if (froma
!= NULL
) { /* XXX ugh! */
427 /* Receivers follow */
428 for (; to
!= NULL
; to
= to
->n_flink
)
429 if (!(to
->n_type
& GDEL
))
430 args
[i
++] = to
->n_name
;
437 fixhead(struct header
*hp
, struct name
*tolist
)
439 struct name
**npp
, *np
;
442 tolist
= elide(tolist
);
444 hp
->h_to
= hp
->h_cc
= hp
->h_bcc
= NULL
;
445 for (np
= tolist
; np
!= NULL
; np
= np
->n_flink
) {
446 switch (np
->n_type
& (GDEL
| GMASK
)) {
447 case GTO
: npp
= &hp
->h_to
; break;
448 case GCC
: npp
= &hp
->h_cc
; break;
449 case GBCC
: npp
= &hp
->h_bcc
; break;
452 *npp
= cat(*npp
, ndup(np
, np
->n_type
| GFULL
));
459 put_signature(FILE *fo
, int convert
)
461 char buf
[SEND_LINESIZE
], *sig
, c
= '\n';
467 if ((sig
= ok_vlook(signature
)) == NULL
|| *sig
== '\0') {
473 if ((sig
= file_expand(sig
)) == NULL
)
476 if ((fsig
= Fopen(sig
, "r")) == NULL
) {
480 while ((sz
= fread(buf
, sizeof *buf
, SEND_LINESIZE
, fsig
)) != 0) {
482 if (xmime_write(buf
, sz
, fo
, convert
, TD_NONE
, NULL
) < 0)
502 attach_message(struct attachment
*ap
, FILE *fo
)
509 fprintf(fo
, "\n--%s\nContent-Type: message/rfc822\n"
510 "Content-Disposition: inline\n", _sendout_boundary
);
511 if ((ccp
= ap
->a_content_description
) != NULL
)
512 fprintf(fo
, "Content-Description: %s\n", ccp
);
515 mp
= message
+ ap
->a_msgno
- 1;
517 rv
= (sendmp(mp
, fo
, 0, NULL
, SEND_RFC822
, NULL
) < 0) ? -1 : 0;
523 make_multipart(struct header
*hp
, int convert
, FILE *fi
, FILE *fo
,
524 char const *contenttype
, char const *charset
)
526 struct attachment
*att
;
530 fputs("This is a multi-part message in MIME format.\n", fo
);
531 if (fsize(fi
) != 0) {
533 size_t sz
, bufsize
, cnt
;
535 fprintf(fo
, "\n--%s\n", _sendout_boundary
);
536 fprintf(fo
, "Content-Type: %s", contenttype
);
538 fprintf(fo
, "; charset=%s", charset
);
539 fprintf(fo
, "\nContent-Transfer-Encoding: %s\n"
540 "Content-Disposition: inline\n\n", _get_encoding(convert
));
542 buf
= smalloc(bufsize
= SEND_LINESIZE
);
543 if (convert
== CONV_TOQP
545 || iconvd
!= (iconv_t
)-1
552 if (convert
== CONV_TOQP
554 || iconvd
!= (iconv_t
)-1
557 if (fgetline(&buf
, &bufsize
, &cnt
, &sz
, fi
, 0) == NULL
)
559 } else if ((sz
= fread(buf
, sizeof *buf
, bufsize
, fi
)) == 0)
562 if (xmime_write(buf
, sz
, fo
, convert
, TD_ICONV
, NULL
) < 0) {
572 put_signature(fo
, convert
);
575 for (att
= hp
->h_attach
; att
!= NULL
; att
= att
->a_flink
) {
577 if (attach_message(att
, fo
) != 0)
579 } else if (_attach_file(att
, fo
) != 0)
583 /* the final boundary with two attached dashes */
584 fprintf(fo
, "\n--%s--\n", _sendout_boundary
);
592 infix(struct header
*hp
, FILE *fi
) /* TODO check */
594 FILE *nfo
, *nfi
= NULL
;
596 char const *contenttype
, *charset
= NULL
;
597 enum conversion convert
;
598 int do_iconv
= 0, err
;
600 char const *tcs
, *convhdr
= NULL
;
604 if ((nfo
= Ftmp(&tempMail
, "infix", OF_WRONLY
| OF_HOLDSIGS
| OF_REGISTER
,
606 perror(tr(178, "temporary mail file"));
609 if ((nfi
= Fopen(tempMail
, "r")) == NULL
) {
613 Ftmp_release(&tempMail
);
617 contenttype
= "text/plain"; /* XXX mail body - always text/plain, want XX? */
618 convert
= mime_classify_file(fi
, &contenttype
, &charset
, &do_iconv
);
621 tcs
= charset_get_lc();
622 if ((convhdr
= need_hdrconv(hp
, GTO
| GSUBJECT
| GCC
| GBCC
| GIDENT
))) {
623 if (iconvd
!= (iconv_t
)-1) /* XXX */
624 n_iconv_close(iconvd
);
625 if (asccasecmp(convhdr
, tcs
) != 0 &&
626 (iconvd
= n_iconv_open(convhdr
, tcs
)) == (iconv_t
)-1 &&
632 (GTO
| GSUBJECT
| GCC
| GBCC
| GNL
| GCOMMA
| GUA
| GMIME
| GMSGID
|
633 GIDENT
| GREF
| GDATE
), SEND_MBOX
, convert
, contenttype
, charset
))
636 if (iconvd
!= (iconv_t
)-1)
637 n_iconv_close(iconvd
);
641 if (do_iconv
&& charset
!= NULL
) { /*TODO charset->mime_classify_file*/
642 if (asccasecmp(charset
, tcs
) != 0 &&
643 (iconvd
= n_iconv_open(charset
, tcs
)) == (iconv_t
)-1 &&
644 (err
= errno
) != 0) {
647 fprintf(stderr
, tr(179, "Cannot convert from %s to %s\n"),
650 perror("iconv_open");
656 if (hp
->h_attach
!= NULL
) {
657 if (make_multipart(hp
, convert
, fi
, nfo
, contenttype
, charset
) != 0)
660 size_t sz
, bufsize
, cnt
;
663 if (convert
== CONV_TOQP
665 || iconvd
!= (iconv_t
)-1
671 buf
= smalloc(bufsize
= SEND_LINESIZE
);
673 if (convert
== CONV_TOQP
675 || iconvd
!= (iconv_t
)-1
678 if (fgetline(&buf
, &bufsize
, &cnt
, &sz
, fi
, 0) == NULL
)
680 } else if ((sz
= fread(buf
, sizeof *buf
, bufsize
, fi
)) == 0)
682 if (xmime_write(buf
, sz
, nfo
, convert
, TD_ICONV
, NULL
) < 0) {
689 if (err
|| ferror(fi
)) {
694 if (iconvd
!= (iconv_t
)-1)
695 n_iconv_close(iconvd
);
701 put_signature(nfo
, convert
); /* XXX if (text/) !! */
705 if (iconvd
!= (iconv_t
)-1)
706 n_iconv_close(iconvd
);
710 if ((err
= ferror(nfo
)))
711 perror(tr(180, "temporary mail file"));
726 savemail(char const *name
, FILE *fi
)
730 size_t bufsize
, buflen
, cnt
;
731 int prependnl
= 0, rv
= -1;
734 buf
= smalloc(bufsize
= LINESIZE
);
736 if ((fo
= Zopen(name
, "a+", NULL
)) == NULL
) {
737 if ((fo
= Zopen(name
, "wx", NULL
)) == NULL
) {
742 if (fseek(fo
, -2L, SEEK_END
) == 0) {
743 switch (fread(buf
, sizeof *buf
, 2, fo
)) {
745 if (buf
[1] != '\n') {
767 fprintf(fo
, "From %s %s", myname
, time_current
.tc_ctime
);
771 while (fgetline(&buf
, &bufsize
, &cnt
, &buflen
, fi
, 0) != NULL
) {
772 #ifdef HAVE_DEBUG /* TODO assert legacy */
773 assert(!is_head(buf
, buflen
));
775 if (is_head(buf
, buflen
))
778 fwrite(buf
, sizeof *buf
, buflen
, fo
);
780 if (buflen
&& *(buf
+ buflen
- 1) != '\n')
800 sendmail_internal(void *v
, int recipient_record
)
807 memset(&head
, 0, sizeof head
);
808 head
.h_to
= lextract(str
, GTO
| GFULL
);
809 rv
= mail1(&head
, 0, NULL
, NULL
, recipient_record
, 0);
815 _transfer(struct sendbundle
*sbp
)
822 for (cnt
= 0, np
= sbp
->sb_to
; np
!= NULL
;) {
823 char const k
[] = "smime-encrypt-";
824 size_t nl
= strlen(np
->n_name
);
825 char *cp
, *vs
= ac_alloc(sizeof(k
)-1 + nl
+1);
826 memcpy(vs
, k
, sizeof(k
) -1);
827 memcpy(vs
+ sizeof(k
) -1, np
->n_name
, nl
+1);
829 if ((cp
= vok_vlook(vs
)) != NULL
) {
833 if ((ef
= smime_encrypt(sbp
->sb_input
, cp
, np
->n_name
)) != NULL
) {
834 FILE *fisave
= sbp
->sb_input
;
835 struct name
*nsave
= sbp
->sb_to
;
837 sbp
->sb_to
= ndup(np
, np
->n_type
& ~(GFULL
| GSKIN
));
842 sbp
->sb_input
= fisave
;
847 fprintf(stderr
, tr(225, "No SSL support compiled in.\n"));
850 fprintf(stderr
, tr(38, "Message not sent to <%s>\n"), np
->n_name
);
851 _sendout_error
= TRU1
;
855 rewind(sbp
->sb_input
);
857 if (np
->n_flink
!= NULL
)
858 np
->n_flink
->n_blink
= np
->n_blink
;
859 if (np
->n_blink
!= NULL
)
860 np
->n_blink
->n_flink
= np
->n_flink
;
861 if (np
== sbp
->sb_to
)
862 sbp
->sb_to
= np
->n_flink
;
871 if (cnt
> 0 && (ok_blook(smime_force_encryption
) || !start_mta(sbp
)))
878 start_mta(struct sendbundle
*sbp
)
880 char const **args
= NULL
, **t
, *mta
;
887 if ((smtp
= ok_vlook(smtp
)) == NULL
) {
888 if ((mta
= ok_vlook(sendmail
)) != NULL
) {
889 if ((mta
= file_expand(mta
)) == NULL
)
894 args
= _prepare_mta_args(sbp
->sb_to
, sbp
->sb_hp
);
895 if (options
& OPT_DEBUG
) {
896 printf(tr(181, "Sendmail arguments:"));
897 for (t
= args
; *t
!= NULL
; ++t
)
898 printf(" \"%s\"", *t
);
904 mta
= NULL
; /* Silence cc */
906 fputs(tr(194, "No SMTP support compiled in.\n"), stderr
);
909 /* XXX assert that sendbundle is setup? */
913 /* Fork, set up the temporary mail file as standard input for "mail", and
914 * exec with the user list we generated far above */
915 if ((pid
= fork()) == -1) {
918 savedeadletter(sbp
->sb_input
, 0);
919 _sendout_error
= TRU1
;
924 sigaddset(&nset
, SIGHUP
);
925 sigaddset(&nset
, SIGINT
);
926 sigaddset(&nset
, SIGQUIT
);
927 sigaddset(&nset
, SIGTSTP
);
928 sigaddset(&nset
, SIGTTIN
);
929 sigaddset(&nset
, SIGTTOU
);
930 freopen("/dev/null", "r", stdin
);
933 prepare_child(&nset
, 0, 1);
938 prepare_child(&nset
, fileno(sbp
->sb_input
), -1);
939 /* If *record* is set then savemail() will move the file position;
940 * it'll call rewind(), but that may optimize away the systemcall if
941 * possible, and since dup2() shares the position with the original FD
942 * the MTA may end up reading nothing */
943 lseek(0, 0, SEEK_SET
);
944 execv(mta
, UNCONST(args
));
949 savedeadletter(sbp
->sb_input
, 1);
950 fputs(tr(182, "... message not sent.\n"), stderr
);
953 if ((options
& (OPT_DEBUG
| OPT_VERB
| OPT_BATCH_FLAG
)) ||
954 ok_blook(sendwait
)) {
955 if (wait_child(pid
, NULL
))
958 _sendout_error
= TRU1
;
969 mightrecord(FILE *fp
, struct name
*to
)
977 cp
= savestr(skinned_name(to
));
978 for (cq
= cp
; *cq
!= '\0' && *cq
!= '@'; ++cq
)
982 cp
= ok_vlook(record
);
985 if ((ep
= expand(cp
)) == NULL
) {
990 if (*ep
!= '/' && *ep
!= '+' && ok_blook(outfolder
) &&
991 which_protocol(ep
) == PROTO_FILE
) {
992 size_t i
= strlen(cp
);
993 cq
= salloc(i
+ 1 +1);
995 memcpy(cq
+ 1, cp
, i
+1);
997 if ((ep
= file_expand(cp
)) == NULL
) {
1003 if (savemail(ep
, fp
) != 0) {
1005 fprintf(stderr
, tr(285, "Failed to save message in %s - "
1006 "message not sent\n"), ep
);
1007 exit_status
|= EXIT_ERR
;
1008 savedeadletter(fp
, 1);
1017 _message_id(FILE *fo
, struct header
*hp
)
1024 if (ok_blook(message_id_disable
))
1027 if ((h
= __sendout_ident
) != NULL
)
1029 else if ((h
= ok_vlook(hostname
)) != NULL
)
1031 else if ((h
= skin(myorigin(hp
))) != NULL
&& strchr(h
, '@') != NULL
)
1037 tmp
= &time_current
.tc_gm
;
1038 fprintf(fo
, "Message-ID: <%04d%02d%02d%02d%02d%02d.%s%c%s>\n",
1039 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
1040 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
,
1041 getrandstring(rl
), (rl
== 8 ? '%' : '@'), h
);
1043 __sendout_ident
= NULL
;
1048 fmt(char const *str
, struct name
*np
, FILE *fo
, int flags
, int dropinvalid
,
1056 } m
= (flags
& GCOMMA
) ? m_COMMA
: 0;
1063 fwrite(str
, sizeof *str
, col
, fo
);
1066 if (col
== 9 && !asccasecmp(str
, "reply-to:")) {
1070 if (ok_blook(add_file_recipients
))
1072 if ((col
== 3 && (!asccasecmp(str
, "to:") || !asccasecmp(str
, "cc:"))) ||
1073 (col
== 4 && !asccasecmp(str
, "bcc:")) ||
1074 (col
== 10 && !asccasecmp(str
, "Resent-To:")))
1078 for (; np
!= NULL
; np
= np
->n_flink
) {
1079 if ((m
& m_NOPF
) && is_fileorpipe_addr(np
))
1081 if (is_addr_invalid(np
, !dropinvalid
)) {
1087 if ((m
& (m_INIT
| m_COMMA
)) == (m_INIT
| m_COMMA
)) {
1092 len
= strlen(np
->n_fullname
);
1093 ++col
; /* The separating space */
1094 if ((m
& m_INIT
) && /*col > 1 &&*/ UICMP(z
, col
+ len
, >, 72)) {
1100 m
= (m
& ~m_CSEEN
) | m_INIT
;
1101 len
= xmime_write(np
->n_fullname
, len
, fo
,
1102 (domime
? CONV_TOHDR_A
: CONV_NONE
), TD_ICONV
, NULL
);
1115 infix_resend(FILE *fi
, FILE *fo
, struct message
*mp
, struct name
*to
,
1118 size_t cnt
, c
, bufsize
= 0;
1121 struct name
*fromfield
= NULL
, *senderfield
= NULL
;
1127 /* Write the Resent-Fields */
1129 fputs("Resent-", fo
);
1131 if ((cp
= myaddrs(NULL
)) != NULL
) {
1132 if (_putname(cp
, GCOMMA
, SEND_MBOX
, NULL
, "Resent-From:", fo
,
1136 if ((cp
= ok_vlook(sender
)) != NULL
) {
1137 if (_putname(cp
, GCOMMA
, SEND_MBOX
, NULL
, "Resent-Sender:", fo
,
1141 if (fmt("Resent-To:", to
, fo
, 1, 1, 0))
1143 if ((cp
= ok_vlook(stealthmua
)) == NULL
|| !strcmp(cp
, "noagent")) {
1144 fputs("Resent-", fo
);
1145 _message_id(fo
, NULL
);
1148 if (check_from_and_sender(fromfield
, senderfield
))
1151 /* Write the original headers */
1153 if (fgetline(&buf
, &bufsize
, &cnt
, &c
, fi
, 0) == NULL
)
1155 /* XXX more checks: The From_ line may be seen when resending */
1156 /* During headers is_head() is actually overkill, so ^From_ is sufficient
1157 * && !is_head(buf, c) */
1158 if (ascncasecmp("status: ", buf
, 8) && strncmp("From ", buf
, 5))
1159 fwrite(buf
, sizeof *buf
, c
, fo
);
1160 if (cnt
> 0 && *buf
== '\n')
1164 /* Write the message body */
1166 if (fgetline(&buf
, &bufsize
, &cnt
, &c
, fi
, 0) == NULL
)
1168 if (cnt
== 0 && *buf
== '\n')
1170 fwrite(buf
, sizeof *buf
, c
, fo
);
1175 perror(tr(188, "temporary mail file"));
1185 mail(struct name
*to
, struct name
*cc
, struct name
*bcc
, char *subject
,
1186 struct attachment
*attach
, char *quotefile
, int recipient_record
)
1192 memset(&head
, 0, sizeof head
);
1194 /* The given subject may be in RFC1522 format. */
1195 if (subject
!= NULL
) {
1197 in
.l
= strlen(subject
);
1198 mime_fromhdr(&in
, &out
, /* TODO ??? TD_ISPR |*/ TD_ICONV
);
1199 head
.h_subject
= out
.s
;
1201 if (!(options
& OPT_t_FLAG
)) {
1206 head
.h_attach
= attach
;
1208 mail1(&head
, 0, NULL
, quotefile
, recipient_record
, 0);
1210 if (subject
!= NULL
)
1222 rv
= sendmail_internal(v
, 0);
1233 rv
= sendmail_internal(v
, 1);
1239 mail1(struct header
*hp
, int printheaders
, struct message
*quote
,
1240 char *quotefile
, int recipient_record
, int doprefix
)
1242 struct sendbundle sb
;
1245 int dosign
= -1, err
;
1247 enum okay rv
= STOP
;
1250 _sendout_error
= FAL0
;
1252 /* Update some globals we likely need first */
1253 time_current_update(&time_current
, TRU1
);
1256 if ((cp
= ok_vlook(autocc
)) != NULL
&& *cp
!= '\0')
1257 hp
->h_cc
= cat(hp
->h_cc
, checkaddrs(lextract(cp
, GCC
| GFULL
)));
1258 if ((cp
= ok_vlook(autobcc
)) != NULL
&& *cp
!= '\0')
1259 hp
->h_bcc
= cat(hp
->h_bcc
, checkaddrs(lextract(cp
, GBCC
| GFULL
)));
1261 /* Collect user's mail from standard input. Get the result as mtf */
1262 mtf
= collect(hp
, printheaders
, quote
, quotefile
, doprefix
);
1266 if (options
& OPT_INTERACTIVE
) {
1267 err
= (ok_blook(bsdcompat
) || ok_blook(askatend
));
1270 if (ok_blook(askcc
))
1271 ++err
, grab_headers(hp
, GCC
, 1);
1272 if (ok_blook(askbcc
))
1273 ++err
, grab_headers(hp
, GBCC
, 1);
1274 if (ok_blook(askattach
))
1275 ++err
, edit_attachments(&hp
->h_attach
);
1276 if (ok_blook(asksign
))
1277 ++err
, dosign
= getapproval(tr(35, "Sign this message (y/n)? "), TRU1
);
1280 printf(tr(183, "EOT\n"));
1285 if (fsize(mtf
) == 0) {
1286 if (options
& OPT_E_FLAG
)
1288 if (hp
->h_subject
== NULL
)
1289 printf(tr(184, "No message, no subject; hope that's ok\n"));
1290 else if (ok_blook(bsdcompat
) || ok_blook(bsdmsgs
))
1291 printf(tr(185, "Null message body; hope that's ok\n"));
1295 dosign
= ok_blook(smime_sign
);
1298 fprintf(stderr
, tr(225, "No SSL support compiled in.\n"));
1303 /* XXX Update time_current again; once collect() offers editing of more
1304 * XXX headers, including Date:, this must only happen if Date: is the
1305 * XXX same that it was before collect() (e.g., postponing etc.).
1306 * XXX But *do* update otherwise because the mail seems to be backdated
1307 * XXX if the user edited some time, which looks odd and it happened
1308 * XXX to me that i got mis-dated response mails due to that... */
1309 time_current_update(&time_current
, TRU1
);
1311 /* TODO hrmpf; the MIME/send layer rewrite MUST address the init crap:
1312 * TODO setup the header ONCE; note this affects edit.c, collect.c ...,
1313 * TODO but: offer a hook that rebuilds/expands/checks/fixates all
1314 * TODO header fields ONCE, call that ONCE after user editing etc. has
1315 * TODO completed (one edit cycle) */
1317 /* Take the user names from the combined to and cc lists and do all the
1318 * alias processing. The POSIX standard says:
1319 * The names shall be substituted when alias is used as a recipient
1320 * address specified by the user in an outgoing message (that is,
1321 * other recipients addressed indirectly through the reply command
1322 * shall not be substituted in this manner).
1323 * S-nail thus violates POSIX, as has been pointed out correctly by
1324 * Martin Neitzel, but logic and usability of POSIX standards is not seldom
1325 * disputable anyway. Go for user friendliness */
1327 /* Do alias expansion on Reply-To: members, too */
1328 /* TODO puthead() YET (!!! see ONCE note above) expands the value, but
1329 * TODO doesn't perform alias expansion; encapsulate in the ONCE-o */
1330 if (hp
->h_replyto
== NULL
&& (cp
= ok_vlook(replyto
)) != NULL
)
1331 hp
->h_replyto
= checkaddrs(lextract(cp
, GEXTRA
| GFULL
));
1332 if (hp
->h_replyto
!= NULL
)
1333 hp
->h_replyto
= elide(usermap(hp
->h_replyto
, TRU1
));
1335 /* TODO what happens now is that all recipients are merged into
1336 * TODO a duplicated list with expanded aliases, then this list is
1337 * TODO splitted again into the three individual recipient lists (with
1338 * TODO duplicates removed).
1339 * TODO later on we use the merged list for outof() pipe/file saving,
1340 * TODO then we eliminate duplicates (again) and then we use that one
1341 * TODO for mightrecord() and _transfer(), and again. ... Please ... */
1343 /* NOTE: Due to elide() in fixhead(), ENSURE to,cc,bcc order of to!,
1344 * because otherwise the recipients will be "degraded" if they occur
1346 to
= usermap(cat(hp
->h_to
, cat(hp
->h_cc
, hp
->h_bcc
)), FAL0
);
1348 fprintf(stderr
, tr(186, "No recipients specified\n"));
1349 _sendout_error
= TRU1
;
1351 to
= fixhead(hp
, to
);
1354 memset(&sb
, 0, sizeof sb
);
1358 if ((dosign
|| count_nonlocal(to
) > 0) &&
1359 !_sendbundle_setup_creds(&sb
, (dosign
> 0)))
1360 /* TODO saving $DEAD and recovering etc is not yet well defined */
1363 /* 'Bit ugly kind of control flow until we find a charset that does it */
1364 for (charset_iter_reset(hp
->h_charset
);; charset_iter_next()) {
1365 if (!charset_iter_is_valid())
1367 else if ((nmtf
= infix(hp
, mtf
)) != NULL
)
1369 else if ((err
= errno
) == EILSEQ
|| err
== EINVAL
) {
1376 _sendout_error
= TRU1
;
1377 savedeadletter(mtf
, TRU1
);
1378 fputs(tr(182, "... message not sent.\n"), stderr
);
1386 if ((nmtf
= smime_sign(mtf
, sb
.sb_signer
.s
)) == NULL
)
1393 /* TODO truly - i still don't get what follows: (1) we deliver file
1394 * TODO and pipe addressees, (2) we mightrecord() and (3) we transfer
1395 * TODO even if (1) savedeadletter() etc. To me this doesn't make sense? */
1397 /* Deliver pipe and file addressees */
1398 to
= outof(to
, mtf
, &_sendout_error
);
1400 savedeadletter(mtf
, FAL0
);
1402 to
= elide(to
); /* XXX needed only to drop GDELs due to outof()! */
1403 { ui32_t cnt
= count(to
);
1404 if ((!recipient_record
|| cnt
> 0) &&
1405 !mightrecord(mtf
, (recipient_record
? to
: NULL
)))
1413 } else if (!_sendout_error
)
1420 exit_status
|= EXIT_SEND_ERROR
;
1426 mkdate(FILE *fo
, char const *field
)
1429 int tzdiff
, tzdiff_hour
, tzdiff_min
, rv
;
1432 tzdiff
= time_current
.tc_time
- mktime(&time_current
.tc_gm
);
1433 tzdiff_hour
= (int)(tzdiff
/ 60);
1434 tzdiff_min
= tzdiff_hour
% 60;
1436 tmptr
= &time_current
.tc_local
;
1437 if (tmptr
->tm_isdst
> 0)
1439 rv
= fprintf(fo
, "%s: %s, %02d %s %04d %02d:%02d:%02d %+05d\n",
1441 weekday_names
[tmptr
->tm_wday
],
1442 tmptr
->tm_mday
, month_names
[tmptr
->tm_mon
],
1443 tmptr
->tm_year
+ 1900, tmptr
->tm_hour
,
1444 tmptr
->tm_min
, tmptr
->tm_sec
,
1445 tzdiff_hour
* 100 + tzdiff_min
);
1451 puthead(struct header
*hp
, FILE *fo
, enum gfield w
, enum sendaction action
,
1452 enum conversion convert
, char const *contenttype
, char const *charset
)
1454 #define FMT_CC_AND_BCC() \
1456 if (hp->h_cc != NULL && (w & GCC)) {\
1457 if (fmt("Cc:", hp->h_cc, fo, (w & (GCOMMA | GFILES)), 0,\
1458 (action != SEND_TODISP)))\
1462 if (hp->h_bcc != NULL && (w & GBCC)) {\
1463 if (fmt("Bcc:", hp->h_bcc, fo, (w & (GCOMMA | GFILES)), 0,\
1464 (action != SEND_TODISP)))\
1472 struct name
*np
, *fromfield
= NULL
, *senderfield
= NULL
;
1473 int stealthmua
, rv
= 1;
1477 if ((addr
= ok_vlook(stealthmua
)) != NULL
)
1478 stealthmua
= !strcmp(addr
, "noagent") ? -1 : 1;
1482 nodisp
= (action
!= SEND_TODISP
);
1485 mkdate(fo
, "Date"), ++gotcha
;
1487 if (hp
->h_from
!= NULL
) {
1488 if (fmt("From:", hp
->h_from
, fo
, (w
& (GCOMMA
| GFILES
)), 0, nodisp
))
1491 fromfield
= hp
->h_from
;
1492 } else if ((addr
= myaddrs(hp
)) != NULL
) {
1493 if (_putname(addr
, w
, action
, &gotcha
, "From:", fo
, &fromfield
))
1495 hp
->h_from
= fromfield
;
1498 if (((addr
= hp
->h_organization
) != NULL
||
1499 (addr
= ok_vlook(ORGANIZATION
)) != NULL
) &&
1500 (l
= strlen(addr
)) > 0) {
1501 fwrite("Organization: ", sizeof(char), 14, fo
);
1502 if (xmime_write(addr
, l
, fo
, (!nodisp
? CONV_NONE
: CONV_TOHDR
),
1503 (!nodisp
? TD_ISPR
| TD_ICONV
: TD_ICONV
), NULL
) < 0)
1509 /* TODO see the ONCE TODO note somewhere around this file;
1510 * TODO but anyway, do NOT perform alias expansion UNLESS
1511 * TODO we are actually sending out! */
1512 if (hp
->h_replyto
!= NULL
) {
1513 if (fmt("Reply-To:", hp
->h_replyto
, fo
, w
& GCOMMA
, 0, nodisp
))
1516 } else if ((addr
= ok_vlook(replyto
)) != NULL
)
1517 if (_putname(addr
, w
, action
, &gotcha
, "Reply-To:", fo
, NULL
))
1520 if (hp
->h_sender
!= NULL
) {
1521 if (fmt("Sender:", hp
->h_sender
, fo
, w
& GCOMMA
, 0, nodisp
))
1524 senderfield
= hp
->h_sender
;
1525 } else if ((addr
= ok_vlook(sender
)) != NULL
)
1526 if (_putname(addr
, w
, action
, &gotcha
, "Sender:", fo
, &senderfield
))
1529 if (check_from_and_sender(fromfield
, senderfield
))
1533 if (hp
->h_to
!= NULL
&& w
& GTO
) {
1534 if (fmt("To:", hp
->h_to
, fo
, (w
& (GCOMMA
| GFILES
)), 0, nodisp
))
1539 if (!ok_blook(bsdcompat
) && !ok_blook(bsdorder
))
1542 if (hp
->h_subject
!= NULL
&& (w
& GSUBJECT
)) {
1543 fwrite("Subject: ", sizeof (char), 9, fo
);
1544 if (!ascncasecmp(hp
->h_subject
, "re: ", 4)) {/* TODO localizable */
1545 fwrite("Re: ", sizeof(char), 4, fo
);
1546 if (strlen(hp
->h_subject
+ 4) > 0 &&
1547 xmime_write(hp
->h_subject
+ 4, strlen(hp
->h_subject
+ 4), fo
,
1548 (!nodisp
? CONV_NONE
: CONV_TOHDR
),
1549 (!nodisp
? TD_ISPR
| TD_ICONV
: TD_ICONV
), NULL
) < 0)
1551 } else if (*hp
->h_subject
!= '\0') {
1552 if (xmime_write(hp
->h_subject
, strlen(hp
->h_subject
), fo
,
1553 (!nodisp
? CONV_NONE
: CONV_TOHDR
),
1554 (!nodisp
? TD_ISPR
| TD_ICONV
: TD_ICONV
), NULL
) < 0)
1558 fwrite("\n", sizeof (char), 1, fo
);
1561 if (ok_blook(bsdcompat
) || ok_blook(bsdorder
))
1564 if ((w
& GMSGID
) && stealthmua
<= 0)
1565 _message_id(fo
, hp
), ++gotcha
;
1567 if ((np
= hp
->h_ref
) != NULL
&& (w
& GREF
)) {
1568 fmt("References:", np
, fo
, 0, 1, 0);
1569 if (np
->n_name
!= NULL
) {
1570 while (np
->n_flink
!= NULL
)
1572 if (!is_addr_invalid(np
, 0)) {
1573 fprintf(fo
, "In-Reply-To: %s\n", np
->n_name
);
1579 if ((w
& GUA
) && stealthmua
== 0)
1580 fprintf(fo
, "User-Agent: %s %s\n", uagent
, version
), ++gotcha
;
1583 fputs("MIME-Version: 1.0\n", fo
), ++gotcha
;
1584 if (hp
->h_attach
!= NULL
) {
1585 _sendout_boundary
= mime_create_boundary();/*TODO carrier*/
1586 fprintf(fo
, "Content-Type: multipart/mixed;\n boundary=\"%s\"\n",
1589 fprintf(fo
, "Content-Type: %s", contenttype
);
1590 if (charset
!= NULL
)
1591 fprintf(fo
, "; charset=%s", charset
);
1592 fprintf(fo
, "\nContent-Transfer-Encoding: %s\n",
1593 _get_encoding(convert
));
1597 if (gotcha
&& (w
& GNL
))
1603 #undef FMT_CC_AND_BCC
1607 resend_msg(struct message
*mp
, struct name
*to
, int add_resent
) /* TODO check */
1609 struct sendbundle sb
;
1610 FILE *ibuf
, *nfo
, *nfi
;
1612 enum okay rv
= STOP
;
1615 _sendout_error
= FAL0
;
1617 /* Update some globals we likely need first */
1618 time_current_update(&time_current
, TRU1
);
1620 if ((to
= checkaddrs(to
)) == NULL
) {
1621 _sendout_error
= TRU1
;
1625 if ((nfo
= Ftmp(&tempMail
, "resend", OF_WRONLY
| OF_HOLDSIGS
| OF_REGISTER
,
1627 _sendout_error
= TRU1
;
1628 perror(tr(189, "temporary mail file"));
1631 if ((nfi
= Fopen(tempMail
, "r")) == NULL
) {
1632 _sendout_error
= TRU1
;
1635 Ftmp_release(&tempMail
);
1639 if ((ibuf
= setinput(&mb
, mp
, NEED_BODY
)) == NULL
)
1642 memset(&sb
, 0, sizeof sb
);
1645 if (count_nonlocal(to
) > 0 && !_sendbundle_setup_creds(&sb
, FAL0
))
1646 /* TODO saving $DEAD and recovering etc is not yet well defined */
1649 if (infix_resend(ibuf
, nfo
, mp
, to
, add_resent
) != 0) {
1650 savedeadletter(nfi
, TRU1
);
1651 fputs(tr(182, "... message not sent.\n"), stderr
);
1656 _sendout_error
= TRU1
;
1662 to
= outof(to
, nfi
, &_sendout_error
);
1664 savedeadletter(nfi
, FAL0
);
1666 to
= elide(to
); /* TODO should have been done in fixhead()? */
1667 if (count(to
) != 0) {
1668 if (!ok_blook(record_resent
) || mightrecord(nfi
, to
)) {
1670 /*sb.sb_input = nfi;*/
1674 } else if (!_sendout_error
)
1680 exit_status
|= EXIT_SEND_ERROR
;
1685 #undef SEND_LINESIZE
1687 /* vim:set fenc=utf-8:s-it-mode */