]> diplodocus.org Git - nmh/blob - uip/post.c
lock_file.c: close(2) file descriptor on failure, avoiding leak.
[nmh] / uip / post.c
1 /* post.c -- enter messages into the mail transport system
2 *
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
6 */
7
8 #include <h/mh.h>
9 #include <fcntl.h>
10 #include <h/signals.h>
11 #include <h/addrsbr.h>
12 #include <h/aliasbr.h>
13 #include <h/dropsbr.h>
14 #include <h/mime.h>
15 #include <h/utils.h>
16 #include <h/tws.h>
17 #include <h/mts.h>
18 #include "sbr/m_mktemp.h"
19 #include "sbr/message_id.h"
20
21 #ifdef HAVE_SYS_TIME_H
22 # include <sys/time.h>
23 #endif
24 #include <time.h>
25
26 #include <mts/smtp/smtp.h>
27
28 #ifndef CYRUS_SASL
29 # define SASLminc(a) (a)
30 #else /* CYRUS_SASL */
31 # define SASLminc(a) 0
32 #endif /* CYRUS_SASL */
33
34 #ifndef TLS_SUPPORT
35 # define TLSminc(a) (a)
36 #else /* TLS_SUPPORT */
37 # define TLSminc(a) 0
38 #endif /* TLS_SUPPORT */
39
40 #ifndef OAUTH_SUPPORT
41 # define OAUTHminc(a) (a)
42 #else /* OAUTH_SUPPORT */
43 # define OAUTHminc(a) 0
44 #endif /* OAUTH_SUPPORT */
45
46 #define FCCS 10 /* max number of fccs allowed */
47
48 /* In the following array of structures, the numeric second field of the
49 structures (minchars) is apparently used like this:
50
51 -# : Switch can be abbreviated to # characters; switch hidden in -help.
52 0 : Switch can't be abbreviated; switch shown in -help.
53 # : Switch can be abbreviated to # characters; switch shown in -help. */
54
55 #define POST_SWITCHES \
56 X("alias aliasfile", 0, ALIASW) \
57 X("check", -5, CHKSW) /* interface from whom */ \
58 X("nocheck", -7, NCHKSW) /* interface from whom */ \
59 X("debug", -5, DEBUGSW) \
60 X("dist", -4, DISTSW) /* interface from dist */ \
61 X("filter filterfile", 0, FILTSW) \
62 X("nofilter", 0, NFILTSW) \
63 X("format", 0, FRMTSW) \
64 X("noformat", 0, NFRMTSW) \
65 X("library directory", -7, LIBSW) /* interface from send, whom */ \
66 X("mime", 0, MIMESW) \
67 X("nomime", 0, NMIMESW) \
68 X("msgid", 0, MSGDSW) \
69 X("nomsgid", 0, NMSGDSW) \
70 X("verbose", 0, VERBSW) \
71 X("noverbose", 0, NVERBSW) \
72 X("watch", 0, WATCSW) \
73 X("nowatch", 0, NWATCSW) \
74 X("whom", -4, WHOMSW) /* interface from whom */ \
75 X("width columns", 0, WIDTHSW) \
76 X("version", 0, VERSIONSW) \
77 X("help", 0, HELPSW) \
78 X("dashstuffing", -12, BITSTUFFSW) /* should we dashstuff BCC messages? */ \
79 X("nodashstuffing", -14, NBITSTUFFSW) \
80 X("idanno number", -6, ANNOSW) /* interface from send */ \
81 X("client host", -6, CLIESW) \
82 X("server host", 6, SERVSW) /* specify alternate SMTP server */ \
83 X("snoop", -5, SNOOPSW) /* snoop the SMTP transaction */ \
84 X("partno", -6, PARTSW) \
85 X("sasl", SASLminc(4), SASLSW) \
86 X("nosasl", SASLminc(6), NOSASLSW) \
87 X("saslmech", SASLminc(5), SASLMECHSW) \
88 X("user", SASLminc(-4), USERSW) \
89 X("port server submission port name/number", 4, PORTSW) \
90 X("tls", TLSminc(-3), TLSSW) \
91 X("initialtls", TLSminc(-10), INITTLSSW) \
92 X("notls", TLSminc(-5), NTLSSW) \
93 X("certverify", TLSminc(-10), CERTVERSW) \
94 X("nocertverify", TLSminc(-12), NOCERTVERSW) \
95 X("fileproc", -4, FILEPROCSW) \
96 X("mhlproc", -3, MHLPROCSW) \
97 X("sendmail program", 0, MTSSM) \
98 X("mts smtp|sendmail/smtp|sendmail/pipe", 2, MTSSW) \
99 X("credentials legacy|file:filename", 0, CREDENTIALSSW) \
100 X("messageid localname|random", 2, MESSAGEIDSW) \
101 X("authservice auth-service-name", OAUTHminc(-11), AUTHSERVICESW) \
102 X("oauthcredfile credential-file", OAUTHminc(-7), OAUTHCREDFILESW) \
103 X("oauthclientid client-id", OAUTHminc(-12), OAUTHCLIDSW) \
104 X("oauthclientsecret client-secret", OAUTHminc(-12), OAUTHCLSECSW) \
105 X("oauthauthendpoint authentication-endpoint", OAUTHminc(-6), OAUTHAUTHENDSW) \
106 X("oauthredirect redirect-uri", OAUTHminc(-6), OAUTHREDIRSW) \
107 X("oauthtokenendpoint token-endpoint", OAUTHminc(-6), OAUTHTOKENDSW) \
108 X("oauthscope scope", OAUTHminc(-6), OAUTHSCOPESW) \
109
110 #define X(sw, minchars, id) id,
111 DEFINE_SWITCH_ENUM(POST);
112 #undef X
113
114 #define X(sw, minchars, id) { sw, minchars, id },
115 DEFINE_SWITCH_ARRAY(POST, switches);
116 #undef X
117
118
119 /*
120 * Mapping between command-line switches and profile entries, communicated
121 * from 'send'. We use a service name of 'post' internally.
122 */
123
124 static struct {
125 const char *profname;
126 int switchnum;
127 const char *value;
128 } oauthswitches[] = {
129 { "oauth-%s-credential-file", OAUTHCREDFILESW, NULL },
130 { "oauth-%s-client_id", OAUTHCLIDSW, NULL },
131 { "oauth-%s-client_secret", OAUTHCLSECSW, NULL },
132 { "oauth-%s-auth_endpoint", OAUTHAUTHENDSW, NULL },
133 { "oauth-%s-redirect_uri", OAUTHREDIRSW, NULL },
134 { "oauth-%s-token_endpoint", OAUTHTOKENDSW, NULL },
135 { "oauth-%s-scope", OAUTHSCOPESW, NULL },
136 { NULL, 0, NULL }
137 };
138
139 struct headers {
140 char *value;
141 unsigned int flags;
142 unsigned int set;
143 };
144
145 /*
146 * flags for headers->flags
147 */
148 #define HNOP 0x0000 /* just used to keep .set around */
149 #define HBAD 0x0001 /* bad header - don't let it through */
150 #define HADR 0x0002 /* header has an address field */
151 #define HSUB 0x0004 /* Subject: header */
152 #define HTRY 0x0008 /* try to send to addrs on header */
153 #define HBCC 0x0010 /* don't output this header, unless MTS_SENDMAIL_PIPE */
154 #define HMNG 0x0020 /* munge this header */
155 #define HNGR 0x0040 /* no groups allowed in this header */
156 #define HFCC 0x0080 /* FCC: type header */
157 #define HNIL 0x0100 /* okay for this header not to have addrs */
158 #define HIGN 0x0200 /* ignore this header */
159 #define HDCC 0x0400 /* another undocumented feature */
160 #define HONE 0x0800 /* Only (zero or) one address allowed */
161 #define HEFM 0x1000 /* Envelope-From: header */
162 #define HMIM 0x2000 /* MIME-Version: header */
163 #define HCTE 0x4000 /* Content-Transfer-Encoding: header */
164
165 /*
166 * flags for headers->set
167 */
168 #define MFRM 0x0001 /* we've seen a From: */
169 #define MDAT 0x0002 /* we've seen a Date: */
170 #define MRFM 0x0004 /* we've seen a Resent-From: */
171 #define MVIS 0x0008 /* we've seen sighted addrs */
172 #define MINV 0x0010 /* we've seen blind addrs */
173 #define MSND 0x0020 /* we've seen a Sender: */
174 #define MRSN 0x0040 /* We've seen a Resent-Sender: */
175 #define MEFM 0x0080 /* We've seen Envelope-From: */
176 #define MMIM 0x0100 /* We've seen Mime-Version: */
177
178 static struct headers NHeaders[] = {
179 { "Return-Path", HBAD, 0 },
180 { "Received", HBAD, 0 },
181 { "Reply-To", HADR|HNGR, 0 },
182 { "From", HADR|HNGR, MFRM },
183 { "Sender", HADR|HNGR|HONE, MSND },
184 { "Date", HBAD, 0 },
185 { "Subject", HSUB, 0 },
186 { "To", HADR|HTRY, MVIS },
187 { "cc", HADR|HTRY, MVIS },
188 { "Bcc", HADR|HTRY|HBCC|HNIL, MINV },
189 { "Dcc", HADR|HTRY|HDCC|HNIL, MVIS }, /* sorta cc & bcc combined */
190 { "Message-ID", HBAD, 0 },
191 { "Fcc", HFCC, 0 },
192 { "Envelope-From", HADR|HONE|HEFM, MEFM },
193 { "MIME-Version", HMIM, MMIM },
194 { "Content-Transfer-Encoding", HCTE, 0 },
195 { NULL, 0, 0 }
196 };
197
198 static struct headers RHeaders[] = {
199 { "Resent-Reply-To", HADR|HNGR, 0 },
200 { "Resent-From", HADR|HNGR, MRFM },
201 { "Resent-Sender", HADR|HNGR, MRSN },
202 { "Resent-Date", HBAD, 0 },
203 { "Resent-Subject", HSUB, 0 },
204 { "Resent-To", HADR|HTRY, MVIS },
205 { "Resent-cc", HADR|HTRY, MVIS },
206 { "Resent-Bcc", HADR|HTRY|HBCC, MINV },
207 { "Resent-Message-ID", HBAD, 0 },
208 { "Resent-Fcc", HFCC, 0 },
209 { "Reply-To", HADR, 0 },
210 { "From", HADR|HNGR, MFRM },
211 { "Sender", HADR|HNGR, MSND },
212 { "Date", HNOP, MDAT },
213 { "To", HADR|HNIL, 0 },
214 { "cc", HADR|HNIL, 0 },
215 { "Bcc", HADR|HTRY|HBCC|HNIL, 0 },
216 { "Fcc", HIGN, 0 },
217 { "Envelope-From", HADR|HONE|HEFM, MEFM },
218 { "MIME-Version", HMIM, MMIM },
219 { "Content-Transfer-Encoding", HCTE, 0 },
220 { NULL, 0, 0 }
221 };
222
223 static short fccind = 0; /* index into fccfold[] */
224 static short outputlinelen = OUTPUTLINELEN;
225
226 static int pfd = NOTOK; /* fd to write annotation list to */
227 static int recipients = 0; /* how many people will get a copy */
228 static int unkadr = 0; /* how many of those were unknown */
229 static int badadr = 0; /* number of bad addrs */
230 static int badmsg = 0; /* message has bad semantics */
231 static int verbose = 0; /* spell it out */
232 static int format = 1; /* format addresses */
233 static int mime = 0; /* use MIME-style encapsulations for Bcc */
234 static int msgid = 0; /* add msgid */
235 static int debug = 0; /* debugging post */
236 static int watch = 0; /* watch the delivery process */
237 static int whomsw = 0; /* we are whom not post */
238 static int checksw = 0; /* whom -check */
239 static int linepos=0; /* putadr()'s position on the line */
240 static int nameoutput=0; /* putadr() has output header name */
241 static int sasl=0; /* Use SASL auth for SMTP */
242 static char *saslmech=NULL; /* Force use of particular SASL mech */
243 static char *user=NULL; /* Authenticate as this user */
244 static char *port="submission"; /* Name of server port for SMTP submission */
245 static int tlsflag=0; /* Flags to control TLS settings */
246 static int fromcount=0; /* Count of addresses on From: header */
247 static int seensender=0; /* Have we seen a Sender: header? */
248
249 static unsigned msgflags = 0; /* what we've seen */
250
251 #define NORMAL 0
252 #define RESENT 1
253 static int msgstate = NORMAL;
254
255 static time_t tclock = 0; /* the time we started (more or less) */
256
257 static SIGNAL_HANDLER hstat, istat, qstat, tstat;
258
259 static char tmpfil[BUFSIZ];
260 static char bccfil[BUFSIZ];
261
262 static char from[BUFSIZ]; /* my network address */
263 static char sender[BUFSIZ]; /* my Sender: header */
264 static char efrom[BUFSIZ]; /* my Envelope-From: header */
265 static char fullfrom[BUFSIZ]; /* full contents of From header */
266 static char *filter = NULL; /* the filter for BCC'ing */
267 static char *subject = NULL; /* the subject field for BCC'ing */
268 static char *fccfold[FCCS]; /* foldernames for FCC'ing */
269 enum encoding { UNKNOWN = 0, BINARY = 1, SEVENBIT = 7, EIGHTBIT = 8 };
270 static enum encoding cte = UNKNOWN;
271
272 static struct headers *hdrtab; /* table for the message we're doing */
273
274 static struct mailname localaddrs; /* local addrs */
275 static struct mailname netaddrs; /* network addrs */
276 static struct mailname uuaddrs; /* uucp addrs */
277 static struct mailname tmpaddrs; /* temporary queue */
278
279 static int snoop = 0;
280 static char *clientsw = NULL;
281 static char *serversw = NULL;
282
283 static char prefix[] = "----- =_aaaaaaaaaa";
284
285 static char *partno = NULL;
286
287 /*
288 * static prototypes
289 */
290 static void putfmt (char *, char *, int *, FILE *);
291 static void start_headers (void);
292 static void finish_headers (FILE *);
293 static int get_header (char *, struct headers *) PURE;
294 static int putadr (char *, char *, struct mailname *, FILE *, unsigned int,
295 char *, unsigned int);
296 static void putgrp (char *, char *, FILE *, unsigned int);
297 static int insert (struct mailname *);
298 static void pl (void);
299 static void anno (void);
300 static int annoaux (struct mailname *);
301 static void insert_fcc (struct headers *, char *);
302 static void make_bcc_file (int);
303 static void verify_all_addresses (int, int, char *, int, char *);
304 static void chkadr (void) PURE;
305 static void sigon (void);
306 static void sigoff (void);
307 static void p_refile (char *);
308 static void fcc (char *, char *);
309 static void fatal (char *, char *, ...) CHECK_PRINTF(2, 3);
310 static void post (char *, int, int, int, char *, int, char *);
311 static void do_text (char *file, int fd);
312 static void do_an_address (struct mailname *, int);
313 static void do_addresses (int, int);
314 static int find_prefix (void);
315
316
317 int
318 main (int argc, char **argv)
319 {
320 int state, compnum, dashstuff = 0, swnum, oauth_flag = 0, tls = -1;
321 int noverify = 0;
322 int eai = 0; /* use Email Address Internationalization (EAI) (SMTPUTF8) */
323 char *cp, *msg = NULL, **argp, **arguments, *envelope;
324 char buf[NMH_BUFSIZ], name[NAMESZ], *auth_svc = NULL;
325 FILE *in, *out;
326 m_getfld_state_t gstate;
327
328 if (nmh_init(argv[0], 0 /* use context_foil() */)) { return 1; }
329
330 mts_init ();
331 arguments = getarguments (invo_name, argc, argv, 0);
332 argp = arguments;
333
334 while ((cp = *argp++)) {
335 if (*cp == '-') {
336 switch ((swnum = smatch (++cp, switches))) {
337 case AMBIGSW:
338 ambigsw (cp, switches);
339 done (1);
340 case UNKWNSW:
341 adios (NULL, "-%s unknown", cp);
342
343 case HELPSW:
344 snprintf (buf, sizeof(buf), "%s [switches] file", invo_name);
345 print_help (buf, switches, 0);
346 done (0);
347 case VERSIONSW:
348 print_version(invo_name);
349 done (0);
350
351 case LIBSW:
352 if (!(cp = *argp++) || *cp == '-')
353 adios (NULL, "missing argument to %s", argp[-2]);
354 /* create a minimal context */
355 if (context_foil (cp) == -1)
356 done (1);
357 continue;
358
359 case ALIASW:
360 if (!(cp = *argp++) || *cp == '-')
361 adios (NULL, "missing argument to %s", argp[-2]);
362 if ((state = alias (cp)) != AK_OK)
363 adios (NULL, "aliasing error in %s - %s",
364 cp, akerror (state));
365 continue;
366
367 case CHKSW:
368 checksw++;
369 continue;
370 case NCHKSW:
371 checksw = 0;
372 continue;
373
374 case DEBUGSW:
375 debug++;
376 continue;
377
378 case DISTSW:
379 msgstate = RESENT;
380 continue;
381
382 case FILTSW:
383 if (!(filter = *argp++) || *filter == '-')
384 adios (NULL, "missing argument to %s", argp[-2]);
385 mime = 0;
386 continue;
387 case NFILTSW:
388 filter = NULL;
389 continue;
390
391 case FRMTSW:
392 format++;
393 continue;
394 case NFRMTSW:
395 format = 0;
396 continue;
397
398 case BITSTUFFSW:
399 dashstuff = 1;
400 continue;
401 case NBITSTUFFSW:
402 dashstuff = -1;
403 continue;
404
405 case MIMESW:
406 mime++;
407 filter = NULL;
408 continue;
409 case NMIMESW:
410 mime = 0;
411 continue;
412
413 case MSGDSW:
414 msgid++;
415 continue;
416 case NMSGDSW:
417 msgid = 0;
418 continue;
419
420 case VERBSW:
421 verbose++;
422 continue;
423 case NVERBSW:
424 verbose = 0;
425 continue;
426
427 case WATCSW:
428 watch++;
429 continue;
430 case NWATCSW:
431 watch = 0;
432 continue;
433
434 case WHOMSW:
435 whomsw++;
436 continue;
437
438 case WIDTHSW:
439 if (!(cp = *argp++) || *cp == '-')
440 adios (NULL, "missing argument to %s", argp[-2]);
441 if ((outputlinelen = atoi (cp)) < 10)
442 adios (NULL, "impossible width %d", outputlinelen);
443 continue;
444
445 case ANNOSW:
446 if (!(cp = *argp++) || *cp == '-')
447 adios (NULL, "missing argument to %s", argp[-2]);
448 if ((pfd = atoi (cp)) <= 2)
449 adios (NULL, "bad argument %s %s", argp[-2], cp);
450 continue;
451
452 case CLIESW:
453 if (!(clientsw = *argp++) || *clientsw == '-')
454 adios (NULL, "missing argument to %s", argp[-2]);
455 continue;
456 case SERVSW:
457 if (!(serversw = *argp++) || *serversw == '-')
458 adios (NULL, "missing argument to %s", argp[-2]);
459 continue;
460 case SNOOPSW:
461 snoop++;
462 continue;
463
464 case PARTSW:
465 if (!(partno = *argp++) || *partno == '-')
466 adios (NULL, "missing argument to %s", argp[-2]);
467 continue;
468
469 case SASLSW:
470 sasl++;
471 continue;
472
473 case NOSASLSW:
474 sasl = 0;
475 continue;
476
477 case SASLMECHSW:
478 if (!(saslmech = *argp++) || *saslmech == '-')
479 adios (NULL, "missing argument to %s", argp[-2]);
480 continue;
481
482 case AUTHSERVICESW:
483 if (!(auth_svc = *argp++) || *auth_svc == '-')
484 adios (NULL, "missing argument to %s", argp[-2]);
485 oauth_flag++;
486 continue;
487
488 case OAUTHCREDFILESW:
489 case OAUTHCLIDSW:
490 case OAUTHCLSECSW:
491 case OAUTHAUTHENDSW:
492 case OAUTHREDIRSW:
493 case OAUTHTOKENDSW:
494 case OAUTHSCOPESW:
495 {
496 int i;
497
498 if (!(cp = *argp++) || *cp == '-')
499 adios (NULL, "missing argument to %s", argp[-2]);
500
501 for (i = 0; oauthswitches[i].profname != NULL; i++) {
502 if (oauthswitches[i].switchnum == swnum) {
503 oauthswitches[i].value = cp;
504 break;
505 }
506 }
507
508 if (oauthswitches[i].profname == NULL)
509 adios (NULL, "internal error: cannot map switch %s "
510 "to profile entry", argp[-2]);
511
512 oauth_flag++;
513 continue;
514 }
515
516 case USERSW:
517 if (!(user = *argp++) || *user == '-')
518 adios (NULL, "missing argument to %s", argp[-2]);
519 continue;
520
521 case PORTSW:
522 if (!(port = *argp++) || *port == '-')
523 adios (NULL, "missing argument to %s", argp[-2]);
524 continue;
525
526 case TLSSW:
527 tls = 1;
528 continue;
529
530 case INITTLSSW:
531 tls = 2;
532 continue;
533
534 case NTLSSW:
535 tls = 0;
536 continue;
537
538 case CERTVERSW:
539 noverify = 0;
540 continue;
541
542 case NOCERTVERSW:
543 noverify++;
544 continue;
545
546 case FILEPROCSW:
547 if (!(cp = *argp++) || *cp == '-')
548 adios (NULL, "missing argument to %s", argp[-2]);
549 fileproc = cp;
550 continue;
551
552 case MHLPROCSW:
553 if (!(cp = *argp++) || *cp == '-')
554 adios (NULL, "missing argument to %s", argp[-2]);
555 mhlproc = cp;
556 continue;
557
558 case MTSSM:
559 if (!(cp = *argp++) || *cp == '-')
560 adios (NULL, "missing argument to %s", argp[-2]);
561 sendmail = cp;
562 continue;
563
564 case MTSSW:
565 if (!(cp = *argp++) || *cp == '-')
566 adios (NULL, "missing argument to %s", argp[-2]);
567 save_mts_method (cp);
568 continue;
569
570 case CREDENTIALSSW: {
571 if (!(cp = *argp++) || *cp == '-')
572 adios (NULL, "missing argument to %s", argp[-2]);
573 add_profile_entry ("credentials", cp);
574 continue;
575 }
576
577 case MESSAGEIDSW:
578 if (!(cp = *argp++) || *cp == '-')
579 adios (NULL, "missing argument to %s", argp[-2]);
580 if (save_message_id_style (cp) != 0)
581 adios (NULL, "unsupported messageid \"%s\"", cp);
582 continue;
583 }
584 }
585 if (msg)
586 adios (NULL, "only one message at a time!");
587 msg = cp;
588 }
589
590 alias (AliasFile);
591
592 if (!msg)
593 adios (NULL, "usage: %s [switches] file", invo_name);
594
595 if (outputlinelen < 10)
596 adios (NULL, "impossible width %d", outputlinelen);
597
598 if ((in = fopen (msg, "r")) == NULL)
599 adios (msg, "unable to open");
600
601 start_headers ();
602 if (debug) {
603 verbose++;
604 out = stdout;
605 } else {
606 if (whomsw) {
607 if ((out = fopen ("/dev/null", "w")) == NULL)
608 adios ("/dev/null", "unable to open");
609 } else {
610 char *cp = m_mktemp2(NULL, invo_name, NULL, &out);
611 if (cp == NULL) {
612 adios(NULL, "unable to create temporary file in %s",
613 get_temp_dir());
614 }
615 strncpy(tmpfil, cp, sizeof(tmpfil));
616 }
617 }
618
619 hdrtab = msgstate == NORMAL ? NHeaders : RHeaders;
620
621 gstate = m_getfld_state_init(in);
622 for (compnum = 1;;) {
623 int bufsz = sizeof buf;
624 switch (state = m_getfld2(&gstate, name, buf, &bufsz)) {
625 case FLD:
626 case FLDPLUS:
627 compnum++;
628 cp = mh_xstrdup(buf);
629 while (state == FLDPLUS) {
630 bufsz = sizeof buf;
631 state = m_getfld2(&gstate, name, buf, &bufsz);
632 cp = add (buf, cp);
633 }
634 putfmt (name, cp, &eai, out);
635 free (cp);
636 continue;
637
638 case BODY:
639 finish_headers (out);
640 if (whomsw)
641 break;
642 fprintf (out, "\n%s", buf);
643 while (state == BODY) {
644 bufsz = sizeof buf;
645 state = m_getfld2(&gstate, name, buf, &bufsz);
646 fputs (buf, out);
647 }
648 break;
649
650 case FILEEOF:
651 finish_headers (out);
652 break;
653
654 case LENERR:
655 case FMTERR:
656 adios (NULL, "message format error in component #%d", compnum);
657
658 default:
659 adios (NULL, "getfld() returned %d", state);
660 }
661 break;
662 }
663 m_getfld_state_destroy (&gstate);
664
665 if (pfd != NOTOK)
666 anno ();
667 fclose (in);
668
669 if (debug) {
670 pl ();
671 done (0);
672 }
673 fclose (out);
674
675 /*
676 * Here's how we decide which address to use as the envelope-from
677 * address for SMTP.
678 *
679 * - If we were given an Envelope-From header, use that.
680 * - If we were given a Sender: address, use that.
681 * - Otherwise, use the address on the From: line
682 */
683
684 if (msgflags & MEFM) {
685 envelope = efrom;
686 } else if (seensender) {
687 envelope = sender;
688 } else {
689 envelope = from;
690 }
691
692 if (tls == -1) {
693 #ifdef TLS_SUPPORT
694 /*
695 * The user didn't specify any of the tls switches. Try to
696 * help them by implying -initialtls if they're using port 465
697 * (smtps, until IANA revoked that registration in 1998).
698 */
699 tls = ! strcmp (port, "465") || ! strcasecmp (port, "smtps")
700 ? 2
701 : 0;
702 #else /* ! TLS_SUPPORT */
703 tls = 0;
704 #endif /* ! TLS_SUPPORT */
705 }
706
707 if (tls == 1)
708 tlsflag = S_STARTTLS;
709 else if (tls == 2)
710 tlsflag = S_INITTLS;
711 else
712 tlsflag = 0;
713
714 if (noverify)
715 tlsflag |= S_NOVERIFY;
716
717 /*
718 * If we were given any oauth flags, store the appropriate profile
719 * entries and make sure an authservice was given (we have to do this
720 * here because we aren't guaranteed the authservice will be given on
721 * the command line before the other OAuth flags are given).
722 */
723
724 if (oauth_flag) {
725 int i;
726 char sbuf[128];
727
728 if (auth_svc == NULL) {
729 adios(NULL, "No authentication service given with -authservice");
730 }
731
732 for (i = 0; oauthswitches[i].profname != NULL; i++) {
733 if (oauthswitches[i].value != NULL) {
734 snprintf(sbuf, sizeof(sbuf),
735 oauthswitches[i].profname, auth_svc);
736 sbuf[sizeof(sbuf) - 1] = '\0';
737 add_profile_entry(sbuf, oauthswitches[i].value);
738 }
739 }
740 }
741
742 /* If we are doing a "whom" check */
743 if (whomsw) {
744 /* This won't work with MTS_SENDMAIL_PIPE. */
745 verify_all_addresses (1, eai, envelope, oauth_flag, auth_svc);
746 done (0);
747 }
748
749 if (msgflags & MINV) {
750 make_bcc_file (dashstuff);
751 if (msgflags & MVIS) {
752 if (sm_mts != MTS_SENDMAIL_PIPE) {
753 /* It would be nice to have support to call
754 verify_all_addresses with MTS_SENDMAIL_PIPE, but
755 that might require running sendmail as root. Note
756 that spost didn't verify addresses. */
757 verify_all_addresses (verbose, eai, envelope, oauth_flag,
758 auth_svc);
759 }
760 post (tmpfil, 0, verbose, eai, envelope, oauth_flag, auth_svc);
761 }
762 post (bccfil, 1, verbose, eai, envelope, oauth_flag, auth_svc);
763 (void) m_unlink (bccfil);
764 } else {
765 post (tmpfil, 0, isatty (1), eai, envelope, oauth_flag, auth_svc);
766 }
767
768 p_refile (tmpfil);
769 (void) m_unlink (tmpfil);
770
771 if (verbose) {
772 if (partno)
773 printf ("Partial Message #%s Processed\n", partno);
774 else
775 puts("Message Processed");
776 }
777
778 done (0);
779 return 1;
780 }
781
782
783 /*
784 * DRAFT GENERATION
785 */
786
787 static void
788 putfmt (char *name, char *str, int *eai, FILE *out)
789 {
790 int count, grp, i, keep;
791 char *cp, *pp, *qp;
792 char namep[BUFSIZ], error[BUFSIZ];
793 char *savehdr = NULL;
794 unsigned int savehdrlen = 0;
795 struct mailname *mp = NULL, *np = NULL;
796 struct headers *hdr;
797
798 while (*str == ' ' || *str == '\t')
799 str++;
800
801 if (msgstate == NORMAL && uprf (name, "resent")) {
802 inform("illegal header line -- %s:", name);
803 badmsg++;
804 return;
805 }
806
807 if (! *eai) {
808 /* Check each header field value to see if it has any 8-bit characters.
809 If it does, enable EAI support. */
810 if (contains8bit(str, NULL)) {
811 if (verbose) {
812 puts("EAI/SMTPUTF8 enabled");
813 }
814
815 /* Enable SMTPUTF8. */
816 *eai = 1;
817
818 /* Enable passing of utf-8 setting to getname()/getadrx(). */
819 enable_eai();
820 }
821 }
822
823 if ((i = get_header (name, hdrtab)) == NOTOK) {
824 if (strncasecmp (name, "nmh-", 4)) {
825 fprintf (out, "%s: %s", name, str);
826 } else {
827 /* Filter out all Nmh-* headers, because Norm asked. They
828 should never have reached this point. Warn about any
829 that are non-empty. */
830 if (strcmp (str, "\n")) {
831 trim_suffix_c(str, '\n');
832 if (! whomsw) {
833 inform("ignoring header line -- %s: %s", name, str);
834 }
835 }
836 }
837
838 return;
839 }
840
841 hdr = &hdrtab[i];
842 if (hdr->flags & HIGN) {
843 return;
844 }
845 if (hdr->flags & HBAD) {
846 inform("illegal header line -- %s:", name);
847 badmsg++;
848 return;
849 }
850 msgflags |= (hdr->set & ~(MVIS | MINV));
851
852 if (hdr->flags & HSUB)
853 subject = subject ? add (str, add ("\t", subject)) : mh_xstrdup(str);
854 if (hdr->flags & HFCC) {
855 if ((cp = strrchr(str, '\n')))
856 *cp = 0;
857 for (pp = str; (cp = strchr(pp, ',')); pp = cp) {
858 *cp++ = 0;
859 insert_fcc (hdr, pp);
860 }
861 insert_fcc (hdr, pp);
862 return;
863 }
864 if (hdr->flags & HCTE) {
865 if (strncasecmp (str, "7bit", 4) == 0) {
866 cte = SEVENBIT;
867 } else if (strncasecmp (str, "8bit", 4) == 0) {
868 cte = EIGHTBIT;
869 } else if (strncasecmp (str, "binary", 6) == 0) {
870 cte = BINARY;
871 }
872 }
873 if (!(hdr->flags & HADR)) {
874 fprintf (out, "%s: %s", name, str);
875 return;
876 }
877
878 /*
879 * If this is a From:/Resent-From: header, save the full thing for
880 * later in case we need it for use when constructing a Bcc draft message.
881 * Because we want to capture the results of alias expansion, save
882 * the output from putadr().
883 */
884
885 if ((msgstate == RESENT) ? (hdr->set & MRFM) : (hdr->set & MFRM)) {
886 savehdr = fullfrom;
887 savehdr[0] = '\0';
888 savehdrlen = sizeof(fullfrom);
889 }
890
891 tmpaddrs.m_next = NULL;
892
893 for (count = 0; (cp = getname (str)); count++) {
894 if ((mp = getm (cp, NULL, 0, error, sizeof(error)))) {
895 if (tmpaddrs.m_next)
896 np->m_next = mp;
897 else
898 tmpaddrs.m_next = mp;
899 np = mp;
900 }
901 else {
902 admonish(cp, "%s", error);
903 if (hdr->flags & HTRY)
904 badadr++;
905 else
906 badmsg++;
907 }
908 }
909
910 if (count < 1) {
911 if (hdr->flags & HNIL)
912 fprintf (out, "%s: %s", name, str);
913 else {
914 /*
915 * Sender (or Resent-Sender) can have only one address
916 */
917 if ((msgstate == RESENT) ? (hdr->set & MRSN)
918 : (hdr->set & MSND)) {
919 inform("%s: field requires one address", name);
920 badmsg++;
921 }
922 #ifdef notdef
923 inform("%s: field requires at least one address", name);
924 badmsg++;
925 #endif /* notdef */
926 }
927 return;
928 }
929
930 if (count > 1 && (hdr->flags & HONE)) {
931 inform("%s: field only permits one address", name);
932 badmsg++;
933 return;
934 }
935
936 nameoutput = linepos = 0;
937 snprintf (namep, sizeof(namep), "%s%s",
938 (hdr->flags & HMNG) ? "Original-" : "", name);
939
940 for (grp = 0, mp = tmpaddrs.m_next; mp; mp = np)
941 if (mp->m_nohost) { /* also used to test (hdr->flags & HTRY) */
942 /* The address doesn't include a host, so it might be an alias. */
943 pp = akvalue (mp->m_mbox); /* do mh alias substitution */
944 qp = akvisible () ? mp->m_mbox : "";
945 np = mp;
946 if (np->m_gname)
947 putgrp (namep, np->m_gname, out, hdr->flags);
948 while ((cp = getname (pp))) {
949 if (!(mp = getm (cp, NULL, 0, error, sizeof(error)))) {
950 admonish(cp, "%s", error);
951 badadr++;
952 continue;
953 }
954
955 /*
956 * If it's a From: or Resent-From: header, save the address
957 * for later possible use (as the envelope address for SMTP)
958 */
959
960 if ((msgstate == RESENT) ? (hdr->set & MRFM)
961 : (hdr->set & MFRM)) {
962 strncpy(from, auxformat(mp, 0), sizeof(from) - 1);
963 from[sizeof(from) - 1] = '\0';
964 fromcount = count;
965 }
966
967 /*
968 * Also save the Sender: or Resent-Sender: header as well
969 */
970
971 if ((msgstate == RESENT) ? (hdr->set & MRSN)
972 : (hdr->set & MSND)) {
973 strncpy(sender, auxformat(mp, 0), sizeof(sender) - 1);
974 sender[sizeof(sender) - 1] = '\0';
975 seensender++;
976 }
977
978 /*
979 * ALSO ... save Envelope-From
980 */
981
982 if (hdr->set & MEFM) {
983 strncpy(efrom, auxformat(mp, 0), sizeof(efrom) - 1);
984 efrom[sizeof(efrom) - 1] = '\0';
985 }
986
987 if (hdr->flags & HBCC)
988 mp->m_bcc++;
989 if (np->m_ingrp)
990 mp->m_ingrp = np->m_ingrp;
991 else if (mp->m_gname)
992 putgrp (namep, mp->m_gname, out, hdr->flags);
993 if (mp->m_ingrp) {
994 if (sm_mts == MTS_SENDMAIL_PIPE) {
995 /* Catch this before sendmail chokes with:
996 "553 List:; syntax illegal for recipient
997 addresses".
998 If we wanted to, we could expand out blind
999 aliases and put them in Bcc:, but then
1000 they'd have the Blind-Carbon-Copy
1001 indication. */
1002 adios (NULL,
1003 "blind lists not compatible with"
1004 " sendmail/pipe");
1005 }
1006
1007 grp++;
1008 }
1009 if (putadr (namep, qp, mp, out, hdr->flags, savehdr,
1010 savehdrlen))
1011 msgflags |= (hdr->set & (MVIS | MINV));
1012 else
1013 mnfree (mp);
1014 }
1015 mp = np;
1016 np = np->m_next;
1017 mnfree (mp);
1018 }
1019 else {
1020 /* Address includes a host, so no alias substitution is needed. */
1021
1022 /*
1023 * If it's a From: or Resent-From header, save the address
1024 * for later possible use (as the envelope address for SMTP)
1025 */
1026
1027 if ((msgstate == RESENT) ? (hdr->set & MRFM)
1028 : (hdr->set & MFRM)) {
1029 strncpy(from, auxformat(mp, 0), sizeof(from) - 1);
1030 fromcount = count;
1031 }
1032
1033 /*
1034 * Also save the Sender: header as well
1035 */
1036
1037 if ((msgstate == RESENT) ? (hdr->set & MRSN)
1038 : (hdr->set & MSND)) {
1039 strncpy(sender, auxformat(mp, 0), sizeof(sender) - 1);
1040 sender[sizeof(sender) - 1] = '\0';
1041 seensender++;
1042 }
1043
1044 /*
1045 * ALSO ... save Envelope-From
1046 */
1047
1048 if (hdr->set & MEFM) {
1049 strncpy(efrom, auxformat(mp, 0), sizeof(efrom) - 1);
1050 efrom[sizeof(efrom) - 1] = '\0';
1051 }
1052
1053 if (hdr->flags & HBCC)
1054 mp->m_bcc++;
1055 if (mp->m_gname)
1056 putgrp (namep, mp->m_gname, out, hdr->flags);
1057 if (mp->m_ingrp)
1058 grp++;
1059 keep = putadr (namep, "", mp, out, hdr->flags, savehdr, savehdrlen);
1060 np = mp->m_next;
1061 if (keep) {
1062 mp->m_next = NULL;
1063 msgflags |= (hdr->set & (MVIS | MINV));
1064 }
1065 else
1066 mnfree (mp);
1067 }
1068
1069 /*
1070 * If it was a From header, strip off any trailing newlines from
1071 * the alias-expanded From line.
1072 */
1073
1074 if ((msgstate == RESENT) ? (hdr->set & MRFM) : (hdr->set & MFRM)) {
1075 while (*fullfrom && fullfrom[strlen(fullfrom) - 1] == '\n') {
1076 fullfrom[strlen(fullfrom) - 1] = '\0';
1077 }
1078 }
1079
1080 if (grp > 0 && (hdr->flags & HNGR)) {
1081 inform("%s: field does not allow groups", name);
1082 badmsg++;
1083 }
1084 if (linepos) {
1085 putc ('\n', out);
1086 }
1087 }
1088
1089
1090 static void
1091 start_headers (void)
1092 {
1093 time (&tclock);
1094
1095 /*
1096 * Probably not necessary, but just in case ...
1097 */
1098
1099 from[0] = '\0';
1100 efrom[0] = '\0';
1101 sender[0] = '\0';
1102 fullfrom[0] = '\0';
1103 }
1104
1105
1106 /*
1107 * Now that we've outputted the header fields in the draft
1108 * message, we will now output any remaining header fields
1109 * that we need to add/create.
1110 */
1111
1112 static void
1113 finish_headers (FILE *out)
1114 {
1115 switch (msgstate) {
1116 case NORMAL:
1117 if (!(msgflags & MFRM)) {
1118 /*
1119 * A From: header is now required in the draft.
1120 */
1121 inform("message has no From: header");
1122 inform("See default components files for examples");
1123 badmsg++;
1124 break;
1125 }
1126
1127 if (fromcount > 1 && (seensender == 0 && !(msgflags & MEFM))) {
1128 inform("A Sender: or Envelope-From: header is required "
1129 "with multiple\nFrom: addresses");
1130 badmsg++;
1131 break;
1132 }
1133
1134 if (whomsw)
1135 break;
1136
1137 fprintf (out, "Date: %s\n", dtime (&tclock, 0));
1138 if (msgid)
1139 fprintf (out, "Message-ID: %s\n", message_id (tclock, 0));
1140 /*
1141 * If we have multiple From: addresses, make sure we have an
1142 * Sender: header. If we don't have one, then generate one
1143 * from Envelope-From: (which in this case, cannot be blank)
1144 */
1145
1146 if (fromcount > 1 && seensender == 0) {
1147 if (efrom[0] == '\0') {
1148 inform("Envelope-From cannot be blank when there "
1149 "is multiple From: addresses\nand no Sender: "
1150 "header");
1151 badmsg++;
1152 } else {
1153 fprintf (out, "Sender: %s\n", efrom);
1154 }
1155 }
1156
1157 if (!(msgflags & MVIS))
1158 fprintf (out, "Bcc: Blind Distribution List: ;\n");
1159 break;
1160
1161 case RESENT:
1162 if (!(msgflags & MDAT)) {
1163 inform("message has no Date: header");
1164 badmsg++;
1165 }
1166 if (!(msgflags & MFRM)) {
1167 inform("message has no From: header");
1168 badmsg++;
1169 }
1170 if (!(msgflags & MRFM)) {
1171 inform("message has no Resent-From: header");
1172 inform("See default components files for examples");
1173 badmsg++;
1174 break;
1175 }
1176 if (fromcount > 1 && (seensender == 0 && !(msgflags & MEFM))) {
1177 inform("A Resent-Sender: or Envelope-From: header is "
1178 "required with multiple\nResent-From: addresses");
1179 badmsg++;
1180 break;
1181 }
1182
1183 if (whomsw)
1184 break;
1185
1186 fprintf (out, "Resent-Date: %s\n", dtime (&tclock, 0));
1187 if (msgid)
1188 fprintf (out, "Resent-Message-ID: %s\n",
1189 message_id (tclock, 0));
1190 /*
1191 * If we have multiple Resent-From: addresses, make sure we have an
1192 * Resent-Sender: header. If we don't have one, then generate one
1193 * from Envelope-From (which in this case, cannot be blank)
1194 */
1195
1196 if (fromcount > 1 && seensender == 0) {
1197 if (efrom[0] == '\0') {
1198 inform("Envelope-From cannot be blank when there "
1199 "is multiple Resent-From: addresses and no "
1200 "Resent-Sender: header");
1201 badmsg++;
1202 } else {
1203 fprintf (out, "Resent-Sender: %s\n", efrom);
1204 }
1205 }
1206
1207 if (!(msgflags & MVIS))
1208 fprintf (out, "Resent-Bcc: Blind Re-Distribution List: ;\n");
1209 break;
1210 }
1211
1212 if (badmsg)
1213 adios (NULL, "re-format message and try again");
1214 if (!recipients)
1215 adios (NULL, "no addressees");
1216 }
1217
1218
1219 static int
1220 get_header (char *header, struct headers *table)
1221 {
1222 struct headers *h;
1223
1224 for (h = table; h->value; h++)
1225 if (!strcasecmp (FENDNULL(header), FENDNULL(h->value)))
1226 return (h - table);
1227
1228 return NOTOK;
1229 }
1230
1231
1232 static int
1233 putadr (char *name, char *aka, struct mailname *mp, FILE *out,
1234 unsigned int flags, char *savehdr, unsigned int savehdrsize)
1235 {
1236 int len, saveappend = 0;
1237 unsigned int shlen;
1238 char *cp;
1239 char buffer[BUFSIZ];
1240
1241 if (mp->m_mbox == NULL || ((flags & HTRY) && !insert (mp)))
1242 return 0;
1243 if (sm_mts != MTS_SENDMAIL_PIPE &&
1244 ((flags & (HBCC | HDCC | HEFM)) || mp->m_ingrp))
1245 return 1;
1246
1247 if (!nameoutput) {
1248 fprintf (out, "%s: ", name);
1249 linepos += (nameoutput = strlen (name) + 2);
1250 }
1251
1252 if (savehdr) {
1253 shlen = strlen(savehdr);
1254 saveappend = 1;
1255 }
1256
1257 if (*aka && mp->m_type != UUCPHOST && !mp->m_pers)
1258 mp->m_pers = mh_xstrdup(aka);
1259 if (format) {
1260 if (mp->m_gname) {
1261 snprintf (buffer, sizeof(buffer), "%s;", mp->m_gname);
1262 cp = buffer;
1263 } else {
1264 cp = adrformat (mp);
1265 }
1266 } else {
1267 cp = mp->m_text;
1268 }
1269 len = strlen (cp);
1270
1271 if (linepos != nameoutput) {
1272 if (len + linepos + 2 > outputlinelen) {
1273 fprintf (out, ",\n%*s", linepos = nameoutput, "");
1274 if (saveappend) {
1275 if (shlen + 2 + nameoutput + len >= savehdrsize) {
1276 saveappend = 0;
1277 } else {
1278 snprintf(savehdr + shlen, savehdrsize - shlen, ",\n%*s",
1279 linepos, "");
1280 }
1281 }
1282 } else {
1283 fputs (", ", out);
1284 linepos += 2;
1285 if (saveappend) {
1286 if (shlen + 2 + len >= savehdrsize) {
1287 saveappend = 0;
1288 } else {
1289 strncat(savehdr, ", ", savehdrsize - shlen);
1290 }
1291 }
1292 }
1293 }
1294
1295 fputs (cp, out);
1296
1297 if (saveappend && shlen + len < savehdrsize)
1298 strncat(savehdr, cp, savehdrsize - shlen + len);
1299
1300 linepos += len;
1301
1302 return (flags & HTRY);
1303 }
1304
1305
1306 static void
1307 putgrp (char *name, char *group, FILE *out, unsigned int flags)
1308 {
1309 int len;
1310 char *cp;
1311
1312 if (sm_mts != MTS_SENDMAIL_PIPE && (flags & HBCC))
1313 return;
1314
1315 if (!nameoutput) {
1316 fprintf (out, "%s: ", name);
1317 linepos += (nameoutput = strlen (name) + 2);
1318 }
1319
1320 cp = concat (group, ";", NULL);
1321 len = strlen (cp);
1322
1323 if (linepos > nameoutput) {
1324 if (len + linepos + 2 > outputlinelen) {
1325 fprintf (out, ",\n%*s", nameoutput, "");
1326 linepos = nameoutput;
1327 }
1328 else {
1329 fputs (", ", out);
1330 linepos += 2;
1331 }
1332 }
1333
1334 fputs (cp, out);
1335 linepos += len;
1336 }
1337
1338
1339 static int
1340 insert (struct mailname *np)
1341 {
1342 struct mailname *mp;
1343
1344 if (np->m_mbox == NULL)
1345 return 0;
1346
1347 for (mp = np->m_type == LOCALHOST ? &localaddrs
1348 : np->m_type == UUCPHOST ? &uuaddrs
1349 : &netaddrs;
1350 mp->m_next;
1351 mp = mp->m_next)
1352 if (!strcasecmp (FENDNULL(np->m_host),
1353 FENDNULL(mp->m_next->m_host)) &&
1354 !strcasecmp (FENDNULL(np->m_mbox),
1355 FENDNULL(mp->m_next->m_mbox)) &&
1356 np->m_bcc == mp->m_next->m_bcc)
1357 return 0;
1358
1359 mp->m_next = np;
1360 recipients++;
1361 return 1;
1362 }
1363
1364
1365 static void
1366 pl (void)
1367 {
1368 int i;
1369 struct mailname *mp;
1370
1371 printf ("-------\n\t-- Addresses --\nlocal:\t");
1372 for (mp = localaddrs.m_next; mp; mp = mp->m_next)
1373 printf ("%s%s%s", mp->m_mbox,
1374 mp->m_bcc ? "[BCC]" : "",
1375 mp->m_next ? ",\n\t" : "");
1376
1377 printf ("\nnet:\t");
1378 for (mp = netaddrs.m_next; mp; mp = mp->m_next)
1379 printf ("%s%s@%s%s%s", FENDNULL(mp->m_path),
1380 mp->m_mbox, mp->m_host,
1381 mp->m_bcc ? "[BCC]" : "",
1382 mp->m_next ? ",\n\t" : "");
1383
1384 printf ("\nuucp:\t");
1385 for (mp = uuaddrs.m_next; mp; mp = mp->m_next)
1386 printf ("%s!%s%s%s", mp->m_host, mp->m_mbox,
1387 mp->m_bcc ? "[BCC]" : "",
1388 mp->m_next ? ",\n\t" : "");
1389
1390 printf ("\n\t-- Folder Copies --\nfcc:\t");
1391 for (i = 0; i < fccind; i++)
1392 printf ("%s%s", fccfold[i], i + 1 < fccind ? ",\n\t" : "");
1393 putchar('\n');
1394 }
1395
1396
1397 static void
1398 anno (void)
1399 {
1400 struct mailname *mp;
1401
1402 for (mp = localaddrs.m_next; mp; mp = mp->m_next)
1403 if (annoaux (mp) == NOTOK)
1404 goto oops;
1405
1406 for (mp = netaddrs.m_next; mp; mp = mp->m_next)
1407 if (annoaux (mp) == NOTOK)
1408 goto oops;
1409
1410 for (mp = uuaddrs.m_next; mp; mp = mp->m_next)
1411 if (annoaux (mp) == NOTOK)
1412 break;
1413
1414 oops: ;
1415 close (pfd);
1416 pfd = NOTOK;
1417 }
1418
1419
1420 static int
1421 annoaux (struct mailname *mp)
1422 {
1423 int i;
1424 char buffer[BUFSIZ];
1425
1426 snprintf (buffer, sizeof(buffer), "%s\n", adrformat (mp));
1427 i = strlen (buffer);
1428
1429 return (write (pfd, buffer, i) == i ? OK : NOTOK);
1430 }
1431
1432
1433 static void
1434 insert_fcc (struct headers *hdr, char *pp)
1435 {
1436 char *cp;
1437
1438 for (cp = pp; isspace ((unsigned char) *cp); cp++)
1439 continue;
1440 for (pp += strlen (pp) - 1; pp > cp && isspace ((unsigned char) *pp); pp--)
1441 continue;
1442 if (pp >= cp)
1443 *++pp = 0;
1444 if (*cp == 0)
1445 return;
1446
1447 if (fccind >= FCCS)
1448 adios (NULL, "too many %ss", hdr->value);
1449 fccfold[fccind++] = mh_xstrdup(cp);
1450 }
1451
1452 /*
1453 * BCC GENERATION
1454 */
1455
1456 static void
1457 make_bcc_file (int dashstuff)
1458 {
1459 int fd, i;
1460 pid_t child_id;
1461 char **vec;
1462 FILE *out;
1463 char *tfile = NULL, *program;
1464
1465 if ((tfile = m_mktemp2(NULL, "bccs", NULL, &out)) == NULL) {
1466 adios(NULL, "unable to create temporary file in %s", get_temp_dir());
1467 }
1468 strncpy (bccfil, tfile, sizeof(bccfil));
1469
1470 fprintf (out, "From: %s\n", fullfrom);
1471 fprintf (out, "Date: %s\n", dtime (&tclock, 0));
1472 if (msgid)
1473 fprintf (out, "Message-ID: %s\n", message_id (tclock, 0));
1474 if (subject)
1475 fprintf (out, "Subject: %s", subject);
1476 fprintf (out, "BCC:\n");
1477
1478 /*
1479 * Use MIME encapsulation for Bcc messages
1480 */
1481 if (mime) {
1482 char *cp;
1483
1484 /*
1485 * Check if any lines in the message clash with the
1486 * prefix for the MIME multipart separator. If there
1487 * is a clash, increment one of the letters in the
1488 * prefix and check again.
1489 */
1490 if ((cp = strchr(prefix, 'a')) == NULL)
1491 adios (NULL, "lost prefix start");
1492 while (find_prefix () == NOTOK) {
1493 if (*cp < 'z')
1494 (*cp)++;
1495 else if (*++cp == 0)
1496 adios (NULL, "can't find a unique delimiter string");
1497 else
1498 (*cp)++;
1499 }
1500
1501 fprintf (out, "%s: %s\n%s: multipart/digest; boundary=\"",
1502 VRSN_FIELD, VRSN_VALUE, TYPE_FIELD);
1503 fprintf (out, "%s\"\n\n--%s\n\n", prefix, prefix);
1504 } else {
1505 fprintf (out, "\n------- Blind-Carbon-Copy\n\n");
1506 }
1507
1508 fflush (out);
1509
1510 /*
1511 * Do mhl filtering of Bcc messages instead
1512 * of MIME encapsulation.
1513 */
1514 if (filter != NULL) {
1515 child_id = fork();
1516 switch (child_id) {
1517 case NOTOK:
1518 adios ("fork", "unable to");
1519
1520 case OK:
1521 dup2 (fileno (out), 1);
1522
1523 vec = argsplit(mhlproc, &program, &i);
1524 vec[i++] = "-forward";
1525 vec[i++] = "-form";
1526 vec[i++] = filter;
1527 vec[i++] = tmpfil;
1528
1529 /* was the flag -[no]dashstuffing specified? */
1530 if (dashstuff > 0)
1531 vec[i++] = "-dashstuffing";
1532 else if (dashstuff < 0)
1533 vec[i++] = "-nodashstuffing";
1534 vec[i] = NULL;
1535
1536 execvp (program, vec);
1537 fprintf (stderr, "unable to exec ");
1538 perror (mhlproc);
1539 _exit (-1);
1540
1541 default:
1542 pidXwait (child_id, mhlproc);
1543 break;
1544 }
1545 } else {
1546 if ((fd = open (tmpfil, O_RDONLY)) == NOTOK)
1547 adios (tmpfil, "unable to re-open");
1548
1549 /*
1550 * If using MIME encapsulation, or if the -nodashstuffing
1551 * flag was given, then just copy message. Else do
1552 * RFC934 quoting (dashstuffing).
1553 */
1554 if (mime || dashstuff < 0)
1555 cpydata (fd, fileno (out), tmpfil, bccfil);
1556 else
1557 cpydgst (fd, fileno (out), tmpfil, bccfil);
1558 close (fd);
1559 }
1560
1561 fseek (out, 0L, SEEK_END);
1562 if (mime)
1563 fprintf (out, "\n--%s--\n", prefix);
1564 else
1565 fprintf (out, "\n------- End of Blind-Carbon-Copy\n");
1566 fclose (out);
1567 }
1568
1569
1570 /*
1571 * Scan message to check if any lines clash with
1572 * the prefix of the MIME multipart separator.
1573 */
1574
1575 static int
1576 find_prefix (void)
1577 {
1578 int result = OK;
1579 char buffer[BUFSIZ];
1580 FILE *in;
1581
1582 if ((in = fopen (tmpfil, "r")) == NULL)
1583 adios (tmpfil, "unable to re-open");
1584
1585 while (fgets (buffer, sizeof buffer, in))
1586 if (buffer[0] == '-' && buffer[1] == '-') {
1587 char *cp;
1588
1589 for (cp = buffer + strlen (buffer) - 1; cp >= buffer; cp--)
1590 if (!isspace ((unsigned char) *cp))
1591 break;
1592 *++cp = '\0';
1593 if (strcmp (buffer + 2, prefix) == 0) {
1594 result = NOTOK;
1595 break;
1596 }
1597 }
1598
1599 fclose (in);
1600 return result;
1601 }
1602
1603
1604 static void
1605 chkadr (void)
1606 {
1607 if (badadr && unkadr)
1608 fatal (NULL, "%d address%s unparsable, %d addressee%s undeliverable",
1609 badadr, PLURALS(badadr), unkadr, PLURALS(badadr));
1610 if (badadr)
1611 fatal (NULL, "%d address%s unparsable", badadr, PLURALS(badadr));
1612 if (unkadr)
1613 fatal (NULL, "%d addressee%s undeliverable", unkadr, PLURALS(unkadr));
1614 }
1615
1616
1617 static void
1618 do_addresses (int bccque, int talk)
1619 {
1620 int retval;
1621 int state;
1622 struct mailname *lp;
1623
1624 state = 0;
1625 for (lp = localaddrs.m_next; lp; lp = lp->m_next)
1626 if (lp->m_bcc ? bccque : !bccque) {
1627 if (talk && !state)
1628 puts(" -- Local Recipients --");
1629 do_an_address (lp, talk);
1630 state++;
1631 }
1632
1633 state = 0;
1634 for (lp = uuaddrs.m_next; lp; lp = lp->m_next)
1635 if (lp->m_bcc ? bccque : !bccque) {
1636 if (talk && !state)
1637 puts(" -- UUCP Recipients --");
1638 do_an_address (lp, talk);
1639 state++;
1640 }
1641
1642 state = 0;
1643 for (lp = netaddrs.m_next; lp; lp = lp->m_next)
1644 if (lp->m_bcc ? bccque : !bccque) {
1645 if (talk && !state)
1646 puts(" -- Network Recipients --");
1647 do_an_address (lp, talk);
1648 state++;
1649 }
1650
1651 chkadr ();
1652
1653 if (rp_isbad (retval = sm_waend ()))
1654 fatal (NULL, "problem ending addresses; %s", rp_string (retval));
1655 }
1656
1657
1658 /*
1659 * MTS-SPECIFIC INTERACTION
1660 */
1661
1662
1663 /*
1664 * SENDMAIL/SMTP routines
1665 */
1666
1667 static void
1668 post (char *file, int bccque, int talk, int eai, char *envelope,
1669 int oauth_flag, char *auth_svc)
1670 {
1671 int retval;
1672 pid_t child_id;
1673
1674 if (verbose) {
1675 if (msgflags & MINV)
1676 printf (" -- Posting for %s Recipients --\n",
1677 bccque ? "Blind" : "Sighted");
1678 else
1679 puts(" -- Posting for All Recipients --");
1680 }
1681
1682 sigon ();
1683
1684 if (sm_mts == MTS_SENDMAIL_PIPE) {
1685 char **argp, *program;
1686 int argc;
1687
1688 child_id = fork();
1689 switch (child_id) {
1690 case NOTOK:
1691 adios ("fork", "unable to");
1692
1693 case OK:
1694 if (freopen( file, "r", stdin) == NULL) {
1695 adios (file, "can't reopen for sendmail");
1696 }
1697
1698 argp = argsplit(sendmail, &program, &argc);
1699 argp[argc++] = "-t"; /* read msg for recipients */
1700 argp[argc++] = "-i"; /* don't stop on "." */
1701 if (whomsw)
1702 argp[argc++] = "-bv";
1703 if (snoop)
1704 argp[argc++] = "-v";
1705 argp[argc] = NULL;
1706
1707 execv (program, argp);
1708 adios (sendmail, "can't exec");
1709
1710 default:
1711 pidXwait (child_id, NULL);
1712 break;
1713 }
1714 } else {
1715 const int fd = open (file, O_RDONLY);
1716 int eightbit = 0;
1717
1718 if (fd == NOTOK) {
1719 fatal (file, "unable to re-open");
1720 }
1721
1722 if (msgflags & MMIM && cte != UNKNOWN) {
1723 /* MIME message with C-T-E header. (BINARYMIME isn't
1724 supported, use 8BITMIME instead for binary.) */
1725 eightbit = cte != SEVENBIT;
1726 } else {
1727 if (scan_input (fd, &eightbit) == NOTOK) {
1728 close (fd);
1729 fatal (file, "problem reading from");
1730 }
1731 }
1732
1733 if (rp_isbad (retval = sm_init (clientsw, serversw, port, watch,
1734 verbose, snoop, sasl, saslmech, user,
1735 oauth_flag ? auth_svc : NULL, tlsflag))
1736 || rp_isbad (retval = sm_winit (envelope, eai, eightbit))) {
1737 close (fd);
1738 fatal (NULL, "problem initializing server; %s", rp_string (retval));
1739 }
1740
1741 do_addresses (bccque, talk && verbose);
1742 do_text (file, fd);
1743 close (fd);
1744 fflush (stdout);
1745
1746 sm_end (!(msgflags & MINV) || bccque ? OK : DONE);
1747 sigoff ();
1748
1749 if (verbose) {
1750 if (msgflags & MINV)
1751 printf (" -- %s Recipient Copies Posted --\n",
1752 bccque ? "Blind" : "Sighted");
1753 else
1754 puts(" -- Recipient Copies Posted --");
1755 }
1756
1757 fflush (stdout);
1758 }
1759 }
1760
1761
1762 /* Address Verification */
1763
1764 static void
1765 verify_all_addresses (int talk, int eai, char *envelope, int oauth_flag,
1766 char *auth_svc)
1767 {
1768 int retval;
1769 struct mailname *lp;
1770
1771 sigon ();
1772
1773 if (!whomsw || checksw) {
1774 /* Not sending message body, so don't need to use 8BITMIME. */
1775 const int eightbit = 0;
1776
1777 if (rp_isbad (retval = sm_init (clientsw, serversw, port, watch,
1778 verbose, snoop, sasl, saslmech, user,
1779 oauth_flag ? auth_svc : NULL, tlsflag))
1780 || rp_isbad (retval = sm_winit (envelope, eai, eightbit))) {
1781 fatal (NULL, "problem initializing server; %s", rp_string (retval));
1782 }
1783 }
1784
1785 if (talk && !whomsw)
1786 puts(" -- Address Verification --");
1787 if (talk && localaddrs.m_next)
1788 puts(" -- Local Recipients --");
1789 for (lp = localaddrs.m_next; lp; lp = lp->m_next)
1790 do_an_address (lp, talk);
1791
1792 if (talk && uuaddrs.m_next)
1793 puts(" -- UUCP Recipients --");
1794 for (lp = uuaddrs.m_next; lp; lp = lp->m_next)
1795 do_an_address (lp, talk);
1796
1797 if (talk && netaddrs.m_next)
1798 puts(" -- Network Recipients --");
1799 for (lp = netaddrs.m_next; lp; lp = lp->m_next)
1800 do_an_address (lp, talk);
1801
1802 chkadr ();
1803 if (talk && !whomsw)
1804 puts(" -- Address Verification Successful --");
1805
1806 if (!whomsw || checksw)
1807 sm_end (whomsw ? OK : DONE);
1808
1809 fflush (stdout);
1810 sigoff ();
1811 }
1812
1813
1814 static void
1815 do_an_address (struct mailname *lp, int talk)
1816 {
1817 int retval;
1818 char *mbox, *host;
1819 char addr[BUFSIZ];
1820
1821 switch (lp->m_type) {
1822 case LOCALHOST:
1823 mbox = lp->m_mbox;
1824 host = lp->m_host;
1825 strncpy (addr, mbox, sizeof(addr));
1826 break;
1827
1828 case UUCPHOST:
1829 mbox = auxformat (lp, 0);
1830 host = NULL;
1831 snprintf (addr, sizeof(addr), "%s!%s", lp->m_host, lp->m_mbox);
1832 break;
1833
1834 default: /* let SendMail decide if the host is bad */
1835 mbox = lp->m_mbox;
1836 host = lp->m_host;
1837 snprintf (addr, sizeof(addr), "%s at %s", mbox, host);
1838 break;
1839 }
1840
1841 if (talk)
1842 printf (" %s%s", addr, whomsw && lp->m_bcc ? "[BCC]" : "");
1843
1844 if (whomsw && !checksw) {
1845 putchar ('\n');
1846 return;
1847 }
1848 if (talk)
1849 printf (": ");
1850 fflush (stdout);
1851
1852 switch (retval = sm_wadr (mbox, host,
1853 lp->m_type != UUCPHOST ? lp->m_path : NULL)) {
1854 case RP_OK:
1855 if (talk)
1856 puts("address ok");
1857 break;
1858
1859 case RP_NO:
1860 case RP_USER:
1861 if (!talk)
1862 fprintf (stderr, " %s: ", addr);
1863 fprintf (talk ? stdout : stderr, "loses; %s\n",
1864 rp_string (retval));
1865 unkadr++;
1866 break;
1867
1868 default:
1869 if (!talk)
1870 fprintf (stderr, " %s: ", addr);
1871 fatal (NULL, "unexpected response; %s", rp_string (retval));
1872 }
1873
1874 fflush (stdout);
1875 }
1876
1877
1878 static void
1879 do_text (char *file, int fd)
1880 {
1881 int retval, state;
1882 char buf[BUFSIZ];
1883
1884 lseek(fd, 0, SEEK_SET);
1885
1886 while ((state = read (fd, buf, sizeof(buf))) > 0) {
1887 if (rp_isbad (retval = sm_wtxt (buf, state)))
1888 fatal (NULL, "problem writing text; %s\n", rp_string (retval));
1889 }
1890
1891 if (state == NOTOK)
1892 fatal (file, "problem reading from");
1893
1894 switch (retval = sm_wtend ()) {
1895 case RP_OK:
1896 break;
1897
1898 case RP_NO:
1899 case RP_NDEL:
1900 fatal (NULL, "posting failed; %s", rp_string (retval));
1901 break;
1902
1903 default:
1904 fatal (NULL, "unexpected response; %s", rp_string (retval));
1905 }
1906 }
1907
1908
1909 /*
1910 * SIGNAL HANDLING
1911 */
1912
1913 static void
1914 sigser (int i)
1915 {
1916 NMH_UNUSED (i);
1917
1918 (void) m_unlink (tmpfil);
1919 if (msgflags & MINV)
1920 (void) m_unlink (bccfil);
1921
1922 if (!whomsw || checksw)
1923 sm_end (NOTOK);
1924
1925 done (1);
1926 }
1927
1928
1929 static void
1930 sigon (void)
1931 {
1932 if (debug)
1933 return;
1934
1935 hstat = SIGNAL2 (SIGHUP, sigser);
1936 istat = SIGNAL2 (SIGINT, sigser);
1937 qstat = SIGNAL2 (SIGQUIT, sigser);
1938 tstat = SIGNAL2 (SIGTERM, sigser);
1939 }
1940
1941
1942 static void
1943 sigoff (void)
1944 {
1945 if (debug)
1946 return;
1947
1948 SIGNAL (SIGHUP, hstat);
1949 SIGNAL (SIGINT, istat);
1950 SIGNAL (SIGQUIT, qstat);
1951 SIGNAL (SIGTERM, tstat);
1952 }
1953
1954 /*
1955 * FCC INTERACTION
1956 */
1957
1958 static void
1959 p_refile (char *file)
1960 {
1961 int i;
1962
1963 if (fccind == 0)
1964 return;
1965
1966 if (verbose)
1967 puts(" -- Filing Folder Copies --");
1968 for (i = 0; i < fccind; i++)
1969 fcc (file, fccfold[i]);
1970 if (verbose)
1971 puts(" -- Folder Copies Filed --");
1972 }
1973
1974
1975 /*
1976 * Call the `fileproc' to add the file to the folder.
1977 */
1978
1979 static void
1980 fcc (char *file, char *folder)
1981 {
1982 pid_t child_id;
1983 int status, argp;
1984 char fold[BUFSIZ];
1985 char **arglist, *program;
1986
1987 if (verbose)
1988 printf (" %sFcc %s: ", msgstate == RESENT ? "Resent-" : "", folder);
1989 fflush (stdout);
1990
1991 child_id = fork();
1992 switch (child_id) {
1993 case NOTOK:
1994 if (!verbose)
1995 fprintf (stderr, " %sFcc %s: ",
1996 msgstate == RESENT ? "Resent-" : "", folder);
1997 fprintf (verbose ? stdout : stderr, "no forks, so not ok\n");
1998 break;
1999
2000 case OK:
2001 /* see if we need to add `+' */
2002 snprintf (fold, sizeof(fold), "%s%s",
2003 *folder == '+' || *folder == '@' ? "" : "+", folder);
2004
2005 /* now exec the fileproc */
2006
2007 arglist = argsplit(fileproc, &program, &argp);
2008 arglist[argp++] = "-link";
2009 arglist[argp++] = "-file";
2010 arglist[argp++] = file;
2011 arglist[argp++] = fold;
2012 arglist[argp] = NULL;
2013 execvp (program, arglist);
2014 _exit (-1);
2015
2016 default:
2017 if ((status = pidwait (child_id, OK))) {
2018 if (!verbose)
2019 fprintf (stderr, " %sFcc %s: ",
2020 msgstate == RESENT ? "Resent-" : "", folder);
2021 pidstatus (status, verbose ? stdout : stderr, fileproc);
2022 } else {
2023 if (verbose)
2024 puts("folder ok");
2025 }
2026 }
2027
2028 fflush (stdout);
2029 }
2030
2031 /*
2032 * TERMINATION
2033 */
2034
2035 static void
2036 fatal (char *what, char *fmt, ...)
2037 {
2038 int err;
2039 va_list ap;
2040
2041 err = errno;
2042
2043 (void) m_unlink (tmpfil);
2044 if (msgflags & MINV)
2045 (void) m_unlink (bccfil);
2046
2047 if (!whomsw || checksw)
2048 sm_end (NOTOK);
2049
2050 va_start(ap, fmt);
2051 errno = err;
2052 advertise (what, NULL, fmt, ap);
2053 va_end(ap);
2054 done (1);
2055 }