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