]>
diplodocus.org Git - nmh/blob - uip/post.c
3 * post.c -- enter messages into the mail transport system
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.
12 #include <h/signals.h>
13 #include <h/addrsbr.h>
14 #include <h/aliasbr.h>
15 #include <h/dropsbr.h>
25 #ifdef HAVE_SYS_TIME_H
26 # include <sys/time.h>
30 #include <mts/smtp/smtp.h>
33 # define SASLminc(a) (a)
34 #else /* CYRUS_SASL */
35 # define SASLminc(a) 0
36 #endif /* CYRUS_SASL */
39 # define TLSminc(a) (a)
40 #else /* TLS_SUPPORT */
42 #endif /* TLS_SUPPORT */
44 #define FCCS 10 /* max number of fccs allowed */
46 /* In the following array of structures, the numeric second field of the
47 structures (minchars) is apparently used like this:
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. */
53 static struct swit switches
[] = {
55 { "alias aliasfile", 0 },
57 { "check", -5 }, /* interface from whom */
59 { "nocheck", -7 }, /* interface from whom */
63 { "dist", -4 }, /* interface from dist */
65 { "filter filterfile", 0 },
73 { "library directory", -7 }, /* interface from send, whom */
91 { "whom", -4 }, /* interface from whom */
93 { "width columns", 0 },
99 { "dashstuffing", -12 }, /* should we dashstuff BCC messages? */
100 #define NBITSTUFFSW 23
101 { "nodashstuffing", -14 },
103 { "idanno number", -6 }, /* interface from send */
105 { "client host", -6 },
107 { "server host", 6 }, /* specify alternate SMTP server */
109 { "snoop", -5 }, /* snoop the SMTP transaction */
115 { "sasl", SASLminc(-4) },
117 { "nosasl", SASLminc(-6) },
118 #define SASLMXSSFSW 32
119 { "saslmaxssf", SASLminc(-10) },
120 #define SASLMECHSW 33
121 { "saslmech", SASLminc(-5) },
123 { "user", SASLminc(-4) },
125 { "port server port name/number", 4 },
127 { "tls", TLSminc(-3) },
129 { "notls", TLSminc(-5) },
130 #define FILEPROCSW 38
135 { "mts smtp|sendmail/smtp|sendmail/pipe", 2 },
136 #define MESSAGEIDSW 41
137 { "messageid localname|random", 2 },
149 * flags for headers->flags
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 */
167 * flags for headers->set
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: */
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
},
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 },
193 { "Envelope-From", HADR
|HONE
|HEFM
, MEFM
},
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 },
216 { "Envelope-From", HADR
|HONE
|HEFM
, MEFM
},
220 static short fccind
= 0; /* index into fccfold[] */
221 static short outputlinelen
= OUTPUTLINELEN
;
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? */
249 static unsigned msgflags
= 0; /* what we've seen */
253 static int msgstate
= NORMAL
;
255 static time_t tclock
= 0; /* the time we started (more or less) */
257 static SIGNAL_HANDLER hstat
, istat
, qstat
, tstat
;
259 static char tmpfil
[BUFSIZ
];
260 static char bccfil
[BUFSIZ
];
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 signature
[BUFSIZ
]; /* my signature */
267 static char *filter
= NULL
; /* the filter for BCC'ing */
268 static char *subject
= NULL
; /* the subject field for BCC'ing */
269 static char *fccfold
[FCCS
]; /* foldernames for FCC'ing */
271 static struct headers
*hdrtab
; /* table for the message we're doing */
273 static struct mailname localaddrs
; /* local addrs */
274 static struct mailname netaddrs
; /* network addrs */
275 static struct mailname uuaddrs
; /* uucp addrs */
276 static struct mailname tmpaddrs
; /* temporary queue */
278 static int snoop
= 0;
279 static char *clientsw
= NULL
;
280 static char *serversw
= NULL
;
282 extern struct smtp sm_reply
;
284 static char prefix
[] = "----- =_aaaaaaaaaa";
286 static char *partno
= NULL
;
287 static int queued
= 0;
292 static void putfmt (char *, char *, FILE *);
293 static void start_headers (void);
294 static void finish_headers (FILE *);
295 static int get_header (char *, struct headers
*);
296 static int putadr (char *, char *, struct mailname
*, FILE *, unsigned int);
297 static void putgrp (char *, char *, FILE *, unsigned int);
298 static int insert (struct mailname
*);
299 static void pl (void);
300 static void anno (void);
301 static int annoaux (struct mailname
*);
302 static void insert_fcc (struct headers
*, unsigned char *);
303 static void make_bcc_file (int);
304 static void verify_all_addresses (int, char *);
305 static void chkadr (void);
306 static void sigon (void);
307 static void sigoff (void);
308 static void p_refile (char *);
309 static void fcc (char *, char *);
310 static void die (char *, char *, ...);
311 static void post (char *, int, int, char *);
312 static void do_text (char *file
, int fd
);
313 static void do_an_address (struct mailname
*, int);
314 static void do_addresses (int, int);
315 static int find_prefix (void);
319 main (int argc
, char **argv
)
321 int state
, compnum
, dashstuff
= 0;
322 char *cp
, *msg
= NULL
, **argp
, **arguments
, *envelope
;
323 char buf
[BUFSIZ
], name
[NAMESZ
];
327 setlocale(LC_ALL
, "");
329 invo_name
= r1bindex (argv
[0], '/');
331 /* foil search of user profile/context */
332 if (context_foil (NULL
) == -1)
335 mts_init (invo_name
);
336 arguments
= getarguments (invo_name
, argc
, argv
, 0);
339 while ((cp
= *argp
++)) {
341 switch (smatch (++cp
, switches
)) {
343 ambigsw (cp
, switches
);
346 adios (NULL
, "-%s unknown", cp
);
349 snprintf (buf
, sizeof(buf
), "%s [switches] file", invo_name
);
350 print_help (buf
, switches
, 0);
353 print_version(invo_name
);
357 if (!(cp
= *argp
++) || *cp
== '-')
358 adios (NULL
, "missing argument to %s", argp
[-2]);
359 /* create a minimal context */
360 if (context_foil (cp
) == -1)
365 if (!(cp
= *argp
++) || *cp
== '-')
366 adios (NULL
, "missing argument to %s", argp
[-2]);
367 if ((state
= alias (cp
)) != AK_OK
)
368 adios (NULL
, "aliasing error in %s - %s",
369 cp
, akerror (state
));
388 if (!(filter
= *argp
++) || *filter
== '-')
389 adios (NULL
, "missing argument to %s", argp
[-2]);
444 if (!(cp
= *argp
++) || *cp
== '-')
445 adios (NULL
, "missing argument to %s", argp
[-2]);
446 if ((outputlinelen
= atoi (cp
)) < 10)
447 adios (NULL
, "impossible width %d", outputlinelen
);
451 if (!(cp
= *argp
++) || *cp
== '-')
452 adios (NULL
, "missing argument to %s", argp
[-2]);
453 if ((pfd
= atoi (cp
)) <= 2)
454 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
458 if (!(clientsw
= *argp
++) || *clientsw
== '-')
459 adios (NULL
, "missing argument to %s", argp
[-2]);
462 if (!(serversw
= *argp
++) || *serversw
== '-')
463 adios (NULL
, "missing argument to %s", argp
[-2]);
470 if (!(partno
= *argp
++) || *partno
== '-')
471 adios (NULL
, "missing argument to %s", argp
[-2]);
487 if (!(cp
= *argp
++) || *cp
== '-')
488 adios (NULL
, "missing argument to %s", argp
[-2]);
493 if (!(saslmech
= *argp
++) || *saslmech
== '-')
494 adios (NULL
, "missing argument to %s", argp
[-2]);
498 if (!(user
= *argp
++) || *user
== '-')
499 adios (NULL
, "missing argument to %s", argp
[-2]);
503 if (!(port
= *argp
++) || *port
== '-')
504 adios (NULL
, "missing argument to %s", argp
[-2]);
516 if (!(cp
= *argp
++) || *cp
== '-')
517 adios (NULL
, "missing argument to %s", argp
[-2]);
522 if (!(cp
= *argp
++) || *cp
== '-')
523 adios (NULL
, "missing argument to %s", argp
[-2]);
528 if (!(cp
= *argp
++) || *cp
== '-')
529 adios (NULL
, "missing argument to %s", argp
[-2]);
530 save_mts_method (cp
);
534 if (!(cp
= *argp
++) || *cp
== '-')
535 adios (NULL
, "missing argument to %s", argp
[-2]);
536 if (save_message_id_style (cp
) != 0)
537 adios (NULL
, "unsupported messageid \"%s\"", cp
);
542 adios (NULL
, "only one message at a time!");
550 adios (NULL
, "usage: %s [switches] file", invo_name
);
552 if (outputlinelen
< 10)
553 adios (NULL
, "impossible width %d", outputlinelen
);
555 if ((in
= fopen (msg
, "r")) == NULL
)
556 adios (msg
, "unable to open");
564 if ((out
= fopen ("/dev/null", "w")) == NULL
)
565 adios ("/dev/null", "unable to open");
567 char *cp
= m_mktemp(m_maildir(invo_name
), NULL
, &out
);
569 cp
= m_mktemp2(NULL
, invo_name
, NULL
, &out
);
571 adios ("post", "unable to create temporary file");
574 strncpy(tmpfil
, cp
, sizeof(tmpfil
));
575 chmod (tmpfil
, 0600);
579 hdrtab
= msgstate
== NORMAL
? NHeaders
: RHeaders
;
581 for (compnum
= 1, state
= FLD
;;) {
582 int bufsz
= sizeof buf
;
583 switch (state
= m_getfld (state
, name
, buf
, &bufsz
, in
)) {
588 cp
= add (buf
, NULL
);
589 while (state
== FLDPLUS
) {
591 state
= m_getfld (state
, name
, buf
, &bufsz
, in
);
594 putfmt (name
, cp
, out
);
598 finish_headers (out
);
603 finish_headers (out
);
606 fprintf (out
, "\n%s", buf
);
607 while (state
== BODY
) {
609 state
= m_getfld (state
, name
, buf
, &bufsz
, in
);
615 finish_headers (out
);
620 adios (NULL
, "message format error in component #%d", compnum
);
623 adios (NULL
, "getfld() returned %d", state
);
640 * Here's how we decide which address to use as the envelope-from
643 * - If we were given an Envelope-From header, use that.
644 * - If we were given a Sender: address, use that.
645 * - Otherwise, use the address on the From: line
648 if (msgflags
& MEFM
) {
650 } else if (seensender
) {
656 /* If we are doing a "whom" check */
658 /* This won't work with MTS_SENDMAIL_PIPE. */
659 verify_all_addresses (1, envelope
);
663 if (msgflags
& MINV
) {
664 make_bcc_file (dashstuff
);
665 if (msgflags
& MVIS
) {
666 if (sm_mts
!= MTS_SENDMAIL_PIPE
) {
667 /* It would be nice to have support to call
668 verify_all_addresses with MTS_SENDMAIL_PIPE, but
669 that might require running sendmail as root. Note
670 that spost didn't verify addresses. */
671 verify_all_addresses (verbose
, envelope
);
673 post (tmpfil
, 0, verbose
, envelope
);
675 post (bccfil
, 1, verbose
, envelope
);
678 post (tmpfil
, 0, isatty (1), envelope
);
685 printf (partno
? "Partial Message #%s Processed\n" : "Message Processed\n",
697 putfmt (char *name
, char *str
, FILE *out
)
699 int count
, grp
, i
, keep
;
702 struct mailname
*mp
= NULL
, *np
= NULL
;
705 while (*str
== ' ' || *str
== '\t')
708 if (msgstate
== NORMAL
&& uprf (name
, "resent")) {
709 advise (NULL
, "illegal header line -- %s:", name
);
714 if ((i
= get_header (name
, hdrtab
)) == NOTOK
) {
715 if (strncasecmp (name
, "nmh-", 4)) {
716 fprintf (out
, "%s: %s", name
, str
);
718 /* Filter out all Nmh-* headers, because Norm asked. They
719 should never have reached this point. Warn about any
720 that are non-empty. */
721 if (strcmp (str
, "\n")) {
722 char *newline
= strchr (str
, '\n');
723 if (newline
) *newline
= '\0';
725 advise (NULL
, "ignoring header line -- %s: %s", name
, str
);
734 if (hdr
->flags
& HIGN
) {
737 if (hdr
->flags
& HBAD
) {
738 advise (NULL
, "illegal header line -- %s:", name
);
742 msgflags
|= (hdr
->set
& ~(MVIS
| MINV
));
744 if (hdr
->flags
& HSUB
)
745 subject
= subject
? add (str
, add ("\t", subject
)) : getcpy (str
);
746 if (hdr
->flags
& HFCC
) {
747 if ((cp
= strrchr(str
, '\n')))
749 for (cp
= pp
= str
; (cp
= strchr(pp
, ',')); pp
= cp
) {
751 insert_fcc (hdr
, pp
);
753 insert_fcc (hdr
, pp
);
757 if (!(hdr
->flags
& HADR
)) {
758 fprintf (out
, "%s: %s", name
, str
);
762 tmpaddrs
.m_next
= NULL
;
763 for (count
= 0; (cp
= getname (str
)); count
++)
764 if ((mp
= getm (cp
, NULL
, 0, AD_HOST
, NULL
))) {
768 tmpaddrs
.m_next
= mp
;
772 if (hdr
->flags
& HTRY
)
778 if (hdr
->flags
& HNIL
)
779 fprintf (out
, "%s: %s", name
, str
);
782 * Sender (or Resent-Sender) can have only one address
784 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
785 : (hdr
->set
& MSND
)) {
786 advise (NULL
, "%s: field requires one address", name
);
790 advise (NULL
, "%s: field requires at least one address", name
);
797 if (count
> 1 && (hdr
->flags
& HONE
)) {
798 advise (NULL
, "%s: field only permits one address", name
);
803 nameoutput
= linepos
= 0;
804 snprintf (namep
, sizeof(namep
), "%s%s",
805 (hdr
->flags
& HMNG
) ? "Original-" : "", name
);
807 for (grp
= 0, mp
= tmpaddrs
.m_next
; mp
; mp
= np
)
808 if (mp
->m_nohost
) { /* also used to test (hdr->flags & HTRY) */
809 /* The address doesn't include a host, so it might be an alias. */
810 pp
= akvalue (mp
->m_mbox
); /* do mh alias substitution */
811 qp
= akvisible () ? mp
->m_mbox
: "";
814 putgrp (namep
, np
->m_gname
, out
, hdr
->flags
);
815 while ((cp
= getname (pp
))) {
816 if (!(mp
= getm (cp
, NULL
, 0, AD_HOST
, NULL
))) {
822 * If it's a From: or Resent-From: header, save the address
823 * for later possible use (as the envelope address for SMTP)
826 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
827 : (hdr
->set
& MFRM
)) {
828 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
829 from
[sizeof(from
) - 1] = '\0';
834 * Also save the Sender: or Resent-Sender: header as well
837 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
838 : (hdr
->set
& MSND
)) {
839 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
840 sender
[sizeof(sender
) - 1] = '\0';
845 * ALSO ... save Envelope-From
848 if (hdr
->set
& MEFM
) {
849 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
850 efrom
[sizeof(efrom
) - 1] = '\0';
853 if (hdr
->flags
& HBCC
)
856 mp
->m_ingrp
= np
->m_ingrp
;
859 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
861 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
862 /* Catch this before sendmail chokes with:
863 "553 List:; syntax illegal for recipient
865 If we wanted to, we could expand out blind
866 aliases and put them in Bcc:, but then
867 they'd have the Blind-Carbon-Copy
870 "blind lists not compatible with"
876 if (putadr (namep
, qp
, mp
, out
, hdr
->flags
))
877 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
886 /* Address includes a host, so no alias substitution is needed. */
889 * If it's a From: or Resent-From header, save the address
890 * for later possible use (as the envelope address for SMTP)
893 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
894 : (hdr
->set
& MFRM
)) {
895 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
900 * Also save the Sender: header as well
903 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
904 : (hdr
->set
& MSND
)) {
905 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
906 sender
[sizeof(sender
) - 1] = '\0';
911 * ALSO ... save Envelope-From
914 if (hdr
->set
& MEFM
) {
915 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
916 efrom
[sizeof(efrom
) - 1] = '\0';
919 if (hdr
->flags
& HBCC
)
922 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
925 keep
= putadr (namep
, "", mp
, out
, hdr
->flags
);
929 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
936 * If this is a From:/Resent-From: header, save the full thing for
937 * later in case we need it for use when constructing a Bcc draft message
940 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
) : (hdr
->set
& MFRM
)) {
941 strncpy(fullfrom
, str
, sizeof(fullfrom
));
942 fullfrom
[sizeof(fullfrom
) - 1] = 0;
944 * Strip off any trailing newlines
947 while (strlen(fullfrom
) > 0 && fullfrom
[strlen(fullfrom
) - 1] == '\n') {
948 fullfrom
[strlen(fullfrom
) - 1] = '\0';
952 if (grp
> 0 && (hdr
->flags
& HNGR
)) {
953 advise (NULL
, "%s: field does not allow groups", name
);
974 * Probably not necessary, but just in case ...
982 if ((cp
= getfullname ()) && *cp
) {
983 strncpy (sigbuf
, cp
, sizeof(sigbuf
));
984 snprintf (signature
, sizeof(signature
), "%s <%s>",
985 sigbuf
, getlocaladdr());
986 if ((cp
= getname (signature
)) == NULL
)
987 adios (NULL
, "getname () failed -- you lose extraordinarily big");
988 if ((mp
= getm (cp
, NULL
, 0, AD_HOST
, NULL
)) == NULL
)
989 adios (NULL
, "bad signature '%s'", sigbuf
);
994 strncpy (signature
, getlocaladdr(), sizeof(signature
));
1000 * Now that we've outputted the header fields in the draft
1001 * message, we will now output any remaining header fields
1002 * that we need to add/create.
1006 finish_headers (FILE *out
)
1010 if (!(msgflags
& MFRM
)) {
1012 * A From: header is now required in the draft.
1014 advise (NULL
, "message has no From: header");
1015 advise (NULL
, "See default components files for examples");
1020 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1021 advise (NULL
, "A Sender: or Envelope-From: header is required "
1022 "with multiple\nFrom: addresses");
1030 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1032 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1034 * If we have multiple From: addresses, make sure we have an
1035 * Sender: header. If we don't have one, then generate one
1036 * from Envelope-From: (which in this case, cannot be blank)
1039 if (fromcount
> 1 && seensender
== 0) {
1040 if (efrom
[0] == '\0') {
1041 advise (NULL
, "Envelope-From cannot be blank when there "
1042 "is multiple From: addresses\nand no Sender: "
1046 fprintf (out
, "Sender: %s\n", efrom
);
1050 if (!(msgflags
& MVIS
))
1051 fprintf (out
, "Bcc: Blind Distribution List: ;\n");
1055 if (!(msgflags
& MDAT
)) {
1056 advise (NULL
, "message has no Date: header");
1059 if (!(msgflags
& MFRM
)) {
1060 advise (NULL
, "message has no From: header");
1063 if (!(msgflags
& MRFM
)) {
1064 advise (NULL
, "message has no Resent-From: header");
1065 advise (NULL
, "See default components files for examples");
1069 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1070 advise (NULL
, "A Resent-Sender: or Envelope-From: header is "
1071 "required with multiple\nResent-From: addresses");
1079 fprintf (out
, "Resent-Date: %s\n", dtime (&tclock
, 0));
1081 fprintf (out
, "Resent-Message-ID: %s\n",
1082 message_id (tclock
, 0));
1084 * If we have multiple Resent-From: addresses, make sure we have an
1085 * Resent-Sender: header. If we don't have one, then generate one
1086 * from Envelope-From (which in this case, cannot be blank)
1089 if (fromcount
> 1 && seensender
== 0) {
1090 if (efrom
[0] == '\0') {
1091 advise (NULL
, "Envelope-From cannot be blank when there "
1092 "is multiple Resent-From: addresses and no "
1093 "Resent-Sender: header");
1096 fprintf (out
, "Resent-Sender: %s\n", efrom
);
1100 if (!(msgflags
& MVIS
))
1101 fprintf (out
, "Resent-Bcc: Blind Re-Distribution List: ;\n");
1106 adios (NULL
, "re-format message and try again");
1108 adios (NULL
, "no addressees");
1113 get_header (char *header
, struct headers
*table
)
1117 for (h
= table
; h
->value
; h
++)
1118 if (!mh_strcasecmp (header
, h
->value
))
1126 putadr (char *name
, char *aka
, struct mailname
*mp
, FILE *out
, unsigned int flags
)
1130 char buffer
[BUFSIZ
];
1132 if (mp
->m_mbox
== NULL
|| ((flags
& HTRY
) && !insert (mp
)))
1134 if (sm_mts
!= MTS_SENDMAIL_PIPE
&&
1135 ((flags
& (HBCC
| HDCC
| HEFM
)) || mp
->m_ingrp
))
1139 fprintf (out
, "%s: ", name
);
1140 linepos
+= (nameoutput
= strlen (name
) + 2);
1143 if (*aka
&& mp
->m_type
!= UUCPHOST
&& !mp
->m_pers
)
1144 mp
->m_pers
= getcpy (aka
);
1147 snprintf (buffer
, sizeof(buffer
), "%s;", mp
->m_gname
);
1150 cp
= adrformat (mp
);
1157 if (linepos
!= nameoutput
) {
1158 if (len
+ linepos
+ 2 > outputlinelen
)
1159 fprintf (out
, ",\n%*s", linepos
= nameoutput
, "");
1169 return (flags
& HTRY
);
1174 putgrp (char *name
, char *group
, FILE *out
, unsigned int flags
)
1179 if (sm_mts
!= MTS_SENDMAIL_PIPE
&& (flags
& HBCC
))
1183 fprintf (out
, "%s: ", name
);
1184 linepos
+= (nameoutput
= strlen (name
) + 2);
1187 cp
= concat (group
, ";", NULL
);
1190 if (linepos
> nameoutput
) {
1191 if (len
+ linepos
+ 2 > outputlinelen
) {
1192 fprintf (out
, ",\n%*s", nameoutput
, "");
1193 linepos
= nameoutput
;
1207 insert (struct mailname
*np
)
1209 struct mailname
*mp
;
1211 if (np
->m_mbox
== NULL
)
1214 for (mp
= np
->m_type
== LOCALHOST
? &localaddrs
1215 : np
->m_type
== UUCPHOST
? &uuaddrs
1219 if (!mh_strcasecmp (np
->m_host
, mp
->m_next
->m_host
)
1220 && !mh_strcasecmp (np
->m_mbox
, mp
->m_next
->m_mbox
)
1221 && np
->m_bcc
== mp
->m_next
->m_bcc
)
1234 struct mailname
*mp
;
1236 printf ("-------\n\t-- Addresses --\nlocal:\t");
1237 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1238 printf ("%s%s%s", mp
->m_mbox
,
1239 mp
->m_bcc
? "[BCC]" : "",
1240 mp
->m_next
? ",\n\t" : "");
1242 printf ("\nnet:\t");
1243 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1244 printf ("%s%s@%s%s%s", mp
->m_path
? mp
->m_path
: "",
1245 mp
->m_mbox
, mp
->m_host
,
1246 mp
->m_bcc
? "[BCC]" : "",
1247 mp
->m_next
? ",\n\t" : "");
1249 printf ("\nuucp:\t");
1250 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1251 printf ("%s!%s%s%s", mp
->m_host
, mp
->m_mbox
,
1252 mp
->m_bcc
? "[BCC]" : "",
1253 mp
->m_next
? ",\n\t" : "");
1255 printf ("\n\t-- Folder Copies --\nfcc:\t");
1256 for (i
= 0; i
< fccind
; i
++)
1257 printf ("%s%s", fccfold
[i
], i
+ 1 < fccind
? ",\n\t" : "");
1265 struct mailname
*mp
;
1267 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1268 if (annoaux (mp
) == NOTOK
)
1271 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1272 if (annoaux (mp
) == NOTOK
)
1275 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1276 if (annoaux (mp
) == NOTOK
)
1286 annoaux (struct mailname
*mp
)
1289 char buffer
[BUFSIZ
];
1291 snprintf (buffer
, sizeof(buffer
), "%s\n", adrformat (mp
));
1292 i
= strlen (buffer
);
1294 return (write (pfd
, buffer
, i
) == i
? OK
: NOTOK
);
1299 insert_fcc (struct headers
*hdr
, unsigned char *pp
)
1303 for (cp
= pp
; isspace (*cp
); cp
++)
1305 for (pp
+= strlen (pp
) - 1; pp
> cp
&& isspace (*pp
); pp
--)
1313 adios (NULL
, "too many %ss", hdr
->value
);
1314 fccfold
[fccind
++] = getcpy (cp
);
1322 make_bcc_file (int dashstuff
)
1330 tfile
= m_mktemp2(NULL
, "bccs", NULL
, &out
);
1331 if (tfile
== NULL
) adios("bcc", "unable to create temporary file");
1332 strncpy (bccfil
, tfile
, sizeof(bccfil
));
1334 fprintf (out
, "From: %s\n", fullfrom
);
1335 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1337 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1339 fprintf (out
, "Subject: %s", subject
);
1340 fprintf (out
, "BCC:\n");
1343 * Use MIME encapsulation for Bcc messages
1349 * Check if any lines in the message clash with the
1350 * prefix for the MIME multipart separator. If there
1351 * is a clash, increment one of the letters in the
1352 * prefix and check again.
1354 if ((cp
= strchr(prefix
, 'a')) == NULL
)
1355 adios (NULL
, "lost prefix start");
1356 while (find_prefix () == NOTOK
) {
1361 adios (NULL
, "can't find a unique delimiter string");
1366 fprintf (out
, "%s: %s\n%s: multipart/digest; boundary=\"",
1367 VRSN_FIELD
, VRSN_VALUE
, TYPE_FIELD
);
1368 fprintf (out
, "%s\"\n\n--%s\n\n", prefix
, prefix
);
1370 fprintf (out
, "\n------- Blind-Carbon-Copy\n\n");
1376 * Do mhl filtering of Bcc messages instead
1377 * of MIME encapsulation.
1379 if (filter
!= NULL
) {
1380 vec
[0] = r1bindex (mhlproc
, '/');
1382 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
1386 adios ("fork", "unable to");
1389 dup2 (fileno (out
), 1);
1392 vec
[i
++] = "-forward";
1397 /* was the flag -[no]dashstuffing specified? */
1399 vec
[i
++] = "-dashstuffing";
1400 else if (dashstuff
< 0)
1401 vec
[i
++] = "-nodashstuffing";
1404 execvp (mhlproc
, vec
);
1405 fprintf (stderr
, "unable to exec ");
1410 pidXwait (child_id
, mhlproc
);
1414 if ((fd
= open (tmpfil
, O_RDONLY
)) == NOTOK
)
1415 adios (tmpfil
, "unable to re-open");
1418 * If using MIME encapsulation, or if the -nodashstuffing
1419 * flag was given, then just copy message. Else do
1420 * RFC934 quoting (dashstuffing).
1422 if (mime
|| dashstuff
< 0)
1423 cpydata (fd
, fileno (out
), tmpfil
, bccfil
);
1425 cpydgst (fd
, fileno (out
), tmpfil
, bccfil
);
1429 fseek (out
, 0L, SEEK_END
);
1431 fprintf (out
, "\n--%s--\n", prefix
);
1433 fprintf (out
, "\n------- End of Blind-Carbon-Copy\n");
1439 * Scan message to check if any lines clash with
1440 * the prefix of the MIME multipart separator.
1447 unsigned char buffer
[BUFSIZ
];
1450 if ((in
= fopen (tmpfil
, "r")) == NULL
)
1451 adios (tmpfil
, "unable to re-open");
1453 while (fgets (buffer
, sizeof(buffer
) - 1, in
))
1454 if (buffer
[0] == '-' && buffer
[1] == '-') {
1457 for (cp
= buffer
+ strlen (buffer
) - 1; cp
>= buffer
; cp
--)
1461 if (strcmp (buffer
+ 2, prefix
) == 0) {
1472 #define plural(x) (x == 1 ? "" : "s")
1477 if (badadr
&& unkadr
)
1478 die (NULL
, "%d address%s unparsable, %d addressee%s undeliverable",
1479 badadr
, plural (badadr
), unkadr
, plural (badadr
));
1481 die (NULL
, "%d address%s unparsable", badadr
, plural (badadr
));
1483 die (NULL
, "%d addressee%s undeliverable", unkadr
, plural (unkadr
));
1488 do_addresses (int bccque
, int talk
)
1492 struct mailname
*lp
;
1495 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1496 if (lp
->m_bcc
? bccque
: !bccque
) {
1498 printf (" -- Local Recipients --\n");
1499 do_an_address (lp
, talk
);
1504 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1505 if (lp
->m_bcc
? bccque
: !bccque
) {
1507 printf (" -- UUCP Recipients --\n");
1508 do_an_address (lp
, talk
);
1513 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1514 if (lp
->m_bcc
? bccque
: !bccque
) {
1516 printf (" -- Network Recipients --\n");
1517 do_an_address (lp
, talk
);
1523 if (rp_isbad (retval
= sm_waend ()))
1524 die (NULL
, "problem ending addresses; %s", rp_string (retval
));
1529 * MTS-SPECIFIC INTERACTION
1534 * SENDMAIL/SMTP routines
1538 post (char *file
, int bccque
, int talk
, char *envelope
)
1545 if (msgflags
& MINV
)
1546 printf (" -- Posting for %s Recipients --\n",
1547 bccque
? "Blind" : "Sighted");
1549 printf (" -- Posting for All Recipients --\n");
1554 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
1555 char *sargv
[16], **argp
;
1557 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
1561 adios ("fork", "unable to");
1564 if (freopen( file
, "r", stdin
) == NULL
) {
1565 adios (file
, "can't reopen for sendmail");
1569 *argp
++ = "sendmail";
1570 *argp
++ = "-t"; /* read msg for recipients */
1571 *argp
++ = "-i"; /* don't stop on "." */
1578 execv (sendmail
, sargv
);
1579 adios (sendmail
, "can't exec");
1582 pidXwait (child_id
, NULL
);
1586 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1587 verbose
, snoop
, queued
, sasl
,
1588 saslssf
, saslmech
, user
, tls
)) ||
1589 rp_isbad (retval
= sm_winit (envelope
)))
1590 die (NULL
, "problem initializing server; %s", rp_string (retval
));
1592 do_addresses (bccque
, talk
&& verbose
);
1593 if ((fd
= open (file
, O_RDONLY
)) == NOTOK
)
1594 die (file
, "unable to re-open");
1599 sm_end (!(msgflags
& MINV
) || bccque
? OK
: DONE
);
1603 if (msgflags
& MINV
)
1604 printf (" -- %s Recipient Copies Posted --\n",
1605 bccque
? "Blind" : "Sighted");
1607 printf (" -- Recipient Copies Posted --\n");
1615 /* Address Verification */
1618 verify_all_addresses (int talk
, char *envelope
)
1621 struct mailname
*lp
;
1625 if (!whomsw
|| checksw
)
1626 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1627 verbose
, snoop
, queued
, sasl
,
1628 saslssf
, saslmech
, user
, tls
))
1629 || rp_isbad (retval
= sm_winit (envelope
)))
1630 die (NULL
, "problem initializing server; %s", rp_string (retval
));
1632 if (talk
&& !whomsw
)
1633 printf (" -- Address Verification --\n");
1634 if (talk
&& localaddrs
.m_next
)
1635 printf (" -- Local Recipients --\n");
1636 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1637 do_an_address (lp
, talk
);
1639 if (talk
&& uuaddrs
.m_next
)
1640 printf (" -- UUCP Recipients --\n");
1641 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1642 do_an_address (lp
, talk
);
1644 if (talk
&& netaddrs
.m_next
)
1645 printf (" -- Network Recipients --\n");
1646 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1647 do_an_address (lp
, talk
);
1650 if (talk
&& !whomsw
)
1651 printf (" -- Address Verification Successful --\n");
1653 if (!whomsw
|| checksw
)
1662 do_an_address (struct mailname
*lp
, int talk
)
1668 switch (lp
->m_type
) {
1672 strncpy (addr
, mbox
, sizeof(addr
));
1676 mbox
= auxformat (lp
, 0);
1678 snprintf (addr
, sizeof(addr
), "%s!%s", lp
->m_host
, lp
->m_mbox
);
1681 default: /* let SendMail decide if the host is bad */
1684 snprintf (addr
, sizeof(addr
), "%s at %s", mbox
, host
);
1689 printf (" %s%s", addr
, whomsw
&& lp
->m_bcc
? "[BCC]" : "");
1691 if (whomsw
&& !checksw
) {
1699 switch (retval
= sm_wadr (mbox
, host
,
1700 lp
->m_type
!= UUCPHOST
? lp
->m_path
: NULL
)) {
1703 printf ("address ok\n");
1709 fprintf (stderr
, " %s: ", addr
);
1710 fprintf (talk
? stdout
: stderr
, "loses; %s\n",
1711 rp_string (retval
));
1717 fprintf (stderr
, " %s: ", addr
);
1718 die (NULL
, "unexpected response; %s", rp_string (retval
));
1726 do_text (char *file
, int fd
)
1731 lseek (fd
, (off_t
) 0, SEEK_SET
);
1733 while ((state
= read (fd
, buf
, sizeof(buf
))) > 0) {
1734 if (rp_isbad (retval
= sm_wtxt (buf
, state
)))
1735 die (NULL
, "problem writing text; %s\n", rp_string (retval
));
1739 die (file
, "problem reading from");
1741 switch (retval
= sm_wtend ()) {
1747 die (NULL
, "posting failed; %s", rp_string (retval
));
1750 die (NULL
, "unexpected response; %s", rp_string (retval
));
1765 if (msgflags
& MINV
)
1768 if (!whomsw
|| checksw
)
1781 hstat
= SIGNAL2 (SIGHUP
, sigser
);
1782 istat
= SIGNAL2 (SIGINT
, sigser
);
1783 qstat
= SIGNAL2 (SIGQUIT
, sigser
);
1784 tstat
= SIGNAL2 (SIGTERM
, sigser
);
1794 SIGNAL (SIGHUP
, hstat
);
1795 SIGNAL (SIGINT
, istat
);
1796 SIGNAL (SIGQUIT
, qstat
);
1797 SIGNAL (SIGTERM
, tstat
);
1805 p_refile (char *file
)
1813 printf (" -- Filing Folder Copies --\n");
1814 for (i
= 0; i
< fccind
; i
++)
1815 fcc (file
, fccfold
[i
]);
1817 printf (" -- Folder Copies Filed --\n");
1822 * Call the `fileproc' to add the file to the folder.
1826 fcc (char *file
, char *folder
)
1833 printf (" %sFcc %s: ", msgstate
== RESENT
? "Resent-" : "", folder
);
1836 for (i
= 0; (child_id
= fork ()) == NOTOK
&& i
< 5; i
++)
1842 fprintf (stderr
, " %sFcc %s: ",
1843 msgstate
== RESENT
? "Resent-" : "", folder
);
1844 fprintf (verbose
? stdout
: stderr
, "no forks, so not ok\n");
1848 /* see if we need to add `+' */
1849 snprintf (fold
, sizeof(fold
), "%s%s",
1850 *folder
== '+' || *folder
== '@' ? "" : "+", folder
);
1852 /* now exec the fileproc */
1853 execlp (fileproc
, r1bindex (fileproc
, '/'),
1854 "-link", "-file", file
, fold
, NULL
);
1858 if ((status
= pidwait (child_id
, OK
))) {
1860 fprintf (stderr
, " %sFcc %s: ",
1861 msgstate
== RESENT
? "Resent-" : "", folder
);
1862 pidstatus (status
, verbose
? stdout
: stderr
, NULL
);
1865 printf ("folder ok\n");
1877 die (char *what
, char *fmt
, ...)
1882 if (msgflags
& MINV
)
1885 if (!whomsw
|| checksw
)
1889 advertise (what
, NULL
, fmt
, ap
);