]>
diplodocus.org Git - nmh/blob - uip/post.c
1 /* post.c -- enter messages into the mail transport system
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
10 #include <h/signals.h>
11 #include <h/addrsbr.h>
12 #include <h/aliasbr.h>
13 #include <h/dropsbr.h>
18 #include "../sbr/m_mktemp.h"
19 #include "../sbr/message_id.h"
21 #ifdef HAVE_SYS_TIME_H
22 # include <sys/time.h>
26 #include <mts/smtp/smtp.h>
29 # define SASLminc(a) (a)
30 #else /* CYRUS_SASL */
31 # define SASLminc(a) 0
32 #endif /* CYRUS_SASL */
35 # define TLSminc(a) (a)
36 #else /* TLS_SUPPORT */
38 #endif /* TLS_SUPPORT */
41 # define OAUTHminc(a) (a)
42 #else /* OAUTH_SUPPORT */
43 # define OAUTHminc(a) 0
44 #endif /* OAUTH_SUPPORT */
46 #define FCCS 10 /* max number of fccs allowed */
48 /* In the following array of structures, the numeric second field of the
49 structures (minchars) is apparently used like this:
51 -# : Switch can be abbreviated to # characters; switch hidden in -help.
52 0 : Switch can't be abbreviated; switch shown in -help.
53 # : Switch can be abbreviated to # characters; switch shown in -help. */
55 #define POST_SWITCHES \
56 X("alias aliasfile", 0, ALIASW) \
57 X("check", -5, CHKSW) /* interface from whom */ \
58 X("nocheck", -7, NCHKSW) /* interface from whom */ \
59 X("debug", -5, DEBUGSW) \
60 X("dist", -4, DISTSW) /* interface from dist */ \
61 X("filter filterfile", 0, FILTSW) \
62 X("nofilter", 0, NFILTSW) \
63 X("format", 0, FRMTSW) \
64 X("noformat", 0, NFRMTSW) \
65 X("library directory", -7, LIBSW) /* interface from send, whom */ \
66 X("mime", 0, MIMESW) \
67 X("nomime", 0, NMIMESW) \
68 X("msgid", 0, MSGDSW) \
69 X("nomsgid", 0, NMSGDSW) \
70 X("verbose", 0, VERBSW) \
71 X("noverbose", 0, NVERBSW) \
72 X("watch", 0, WATCSW) \
73 X("nowatch", 0, NWATCSW) \
74 X("whom", -4, WHOMSW) /* interface from whom */ \
75 X("width columns", 0, WIDTHSW) \
76 X("version", 0, VERSIONSW) \
77 X("help", 0, HELPSW) \
78 X("dashstuffing", -12, BITSTUFFSW) /* should we dashstuff BCC messages? */ \
79 X("nodashstuffing", -14, NBITSTUFFSW) \
80 X("idanno number", -6, ANNOSW) /* interface from send */ \
81 X("client host", -6, CLIESW) \
82 X("server host", 6, SERVSW) /* specify alternate SMTP server */ \
83 X("snoop", -5, SNOOPSW) /* snoop the SMTP transaction */ \
84 X("partno", -6, PARTSW) \
85 X("sasl", SASLminc(4), SASLSW) \
86 X("nosasl", SASLminc(6), NOSASLSW) \
87 X("saslmech", SASLminc(5), SASLMECHSW) \
88 X("user", SASLminc(-4), USERSW) \
89 X("port server submission port name/number", 4, PORTSW) \
90 X("tls", TLSminc(-3), TLSSW) \
91 X("initialtls", TLSminc(-10), INITTLSSW) \
92 X("notls", TLSminc(-5), NTLSSW) \
93 X("certverify", TLSminc(-10), CERTVERSW) \
94 X("nocertverify", TLSminc(-12), NOCERTVERSW) \
95 X("fileproc", -4, FILEPROCSW) \
96 X("mhlproc", -3, MHLPROCSW) \
97 X("sendmail program", 0, MTSSM) \
98 X("mts smtp|sendmail/smtp|sendmail/pipe", 2, MTSSW) \
99 X("credentials legacy|file:filename", 0, CREDENTIALSSW) \
100 X("messageid localname|random", 2, MESSAGEIDSW) \
101 X("authservice auth-service-name", OAUTHminc(-11), AUTHSERVICESW) \
102 X("oauthcredfile credential-file", OAUTHminc(-7), OAUTHCREDFILESW) \
103 X("oauthclientid client-id", OAUTHminc(-12), OAUTHCLIDSW) \
104 X("oauthclientsecret client-secret", OAUTHminc(-12), OAUTHCLSECSW) \
105 X("oauthauthendpoint authentication-endpoint", OAUTHminc(-6), OAUTHAUTHENDSW) \
106 X("oauthredirect redirect-uri", OAUTHminc(-6), OAUTHREDIRSW) \
107 X("oauthtokenendpoint token-endpoint", OAUTHminc(-6), OAUTHTOKENDSW) \
108 X("oauthscope scope", OAUTHminc(-6), OAUTHSCOPESW) \
110 #define X(sw, minchars, id) id,
111 DEFINE_SWITCH_ENUM(POST
);
114 #define X(sw, minchars, id) { sw, minchars, id },
115 DEFINE_SWITCH_ARRAY(POST
, switches
);
120 * Mapping between command-line switches and profile entries, communicated
121 * from 'send'. We use a service name of 'post' internally.
125 const char *profname
;
128 } oauthswitches
[] = {
129 { "oauth-%s-credential-file", OAUTHCREDFILESW
, NULL
},
130 { "oauth-%s-client_id", OAUTHCLIDSW
, NULL
},
131 { "oauth-%s-client_secret", OAUTHCLSECSW
, NULL
},
132 { "oauth-%s-auth_endpoint", OAUTHAUTHENDSW
, NULL
},
133 { "oauth-%s-redirect_uri", OAUTHREDIRSW
, NULL
},
134 { "oauth-%s-token_endpoint", OAUTHTOKENDSW
, NULL
},
135 { "oauth-%s-scope", OAUTHSCOPESW
, NULL
},
146 * flags for headers->flags
148 #define HNOP 0x0000 /* just used to keep .set around */
149 #define HBAD 0x0001 /* bad header - don't let it through */
150 #define HADR 0x0002 /* header has an address field */
151 #define HSUB 0x0004 /* Subject: header */
152 #define HTRY 0x0008 /* try to send to addrs on header */
153 #define HBCC 0x0010 /* don't output this header, unless MTS_SENDMAIL_PIPE */
154 #define HMNG 0x0020 /* munge this header */
155 #define HNGR 0x0040 /* no groups allowed in this header */
156 #define HFCC 0x0080 /* FCC: type header */
157 #define HNIL 0x0100 /* okay for this header not to have addrs */
158 #define HIGN 0x0200 /* ignore this header */
159 #define HDCC 0x0400 /* another undocumented feature */
160 #define HONE 0x0800 /* Only (zero or) one address allowed */
161 #define HEFM 0x1000 /* Envelope-From: header */
162 #define HMIM 0x2000 /* MIME-Version: header */
163 #define HCTE 0x4000 /* Content-Transfer-Encoding: header */
166 * flags for headers->set
168 #define MFRM 0x0001 /* we've seen a From: */
169 #define MDAT 0x0002 /* we've seen a Date: */
170 #define MRFM 0x0004 /* we've seen a Resent-From: */
171 #define MVIS 0x0008 /* we've seen sighted addrs */
172 #define MINV 0x0010 /* we've seen blind addrs */
173 #define MSND 0x0020 /* we've seen a Sender: */
174 #define MRSN 0x0040 /* We've seen a Resent-Sender: */
175 #define MEFM 0x0080 /* We've seen Envelope-From: */
176 #define MMIM 0x0100 /* We've seen Mime-Version: */
178 static struct headers NHeaders
[] = {
179 { "Return-Path", HBAD
, 0 },
180 { "Received", HBAD
, 0 },
181 { "Reply-To", HADR
|HNGR
, 0 },
182 { "From", HADR
|HNGR
, MFRM
},
183 { "Sender", HADR
|HNGR
|HONE
, MSND
},
185 { "Subject", HSUB
, 0 },
186 { "To", HADR
|HTRY
, MVIS
},
187 { "cc", HADR
|HTRY
, MVIS
},
188 { "Bcc", HADR
|HTRY
|HBCC
|HNIL
, MINV
},
189 { "Dcc", HADR
|HTRY
|HDCC
|HNIL
, MVIS
}, /* sorta cc & bcc combined */
190 { "Message-ID", HBAD
, 0 },
192 { "Envelope-From", HADR
|HONE
|HEFM
, MEFM
},
193 { "MIME-Version", HMIM
, MMIM
},
194 { "Content-Transfer-Encoding", HCTE
, 0 },
198 static struct headers RHeaders
[] = {
199 { "Resent-Reply-To", HADR
|HNGR
, 0 },
200 { "Resent-From", HADR
|HNGR
, MRFM
},
201 { "Resent-Sender", HADR
|HNGR
, MRSN
},
202 { "Resent-Date", HBAD
, 0 },
203 { "Resent-Subject", HSUB
, 0 },
204 { "Resent-To", HADR
|HTRY
, MVIS
},
205 { "Resent-cc", HADR
|HTRY
, MVIS
},
206 { "Resent-Bcc", HADR
|HTRY
|HBCC
, MINV
},
207 { "Resent-Message-ID", HBAD
, 0 },
208 { "Resent-Fcc", HFCC
, 0 },
209 { "Reply-To", HADR
, 0 },
210 { "From", HADR
|HNGR
, MFRM
},
211 { "Sender", HADR
|HNGR
, MSND
},
212 { "Date", HNOP
, MDAT
},
213 { "To", HADR
|HNIL
, 0 },
214 { "cc", HADR
|HNIL
, 0 },
215 { "Bcc", HADR
|HTRY
|HBCC
|HNIL
, 0 },
217 { "Envelope-From", HADR
|HONE
|HEFM
, MEFM
},
218 { "MIME-Version", HMIM
, MMIM
},
219 { "Content-Transfer-Encoding", HCTE
, 0 },
223 static short fccind
= 0; /* index into fccfold[] */
224 static short outputlinelen
= OUTPUTLINELEN
;
226 static int pfd
= NOTOK
; /* fd to write annotation list to */
227 static int recipients
= 0; /* how many people will get a copy */
228 static int unkadr
= 0; /* how many of those were unknown */
229 static int badadr
= 0; /* number of bad addrs */
230 static int badmsg
= 0; /* message has bad semantics */
231 static int verbose
= 0; /* spell it out */
232 static int format
= 1; /* format addresses */
233 static int mime
= 0; /* use MIME-style encapsulations for Bcc */
234 static int msgid
= 0; /* add msgid */
235 static int debug
= 0; /* debugging post */
236 static int watch
= 0; /* watch the delivery process */
237 static int whomsw
= 0; /* we are whom not post */
238 static int checksw
= 0; /* whom -check */
239 static int linepos
=0; /* putadr()'s position on the line */
240 static int nameoutput
=0; /* putadr() has output header name */
241 static int sasl
=0; /* Use SASL auth for SMTP */
242 static char *saslmech
=NULL
; /* Force use of particular SASL mech */
243 static char *user
=NULL
; /* Authenticate as this user */
244 static char *port
="submission"; /* Name of server port for SMTP submission */
245 static int tlsflag
=0; /* Flags to control TLS settings */
246 static int fromcount
=0; /* Count of addresses on From: header */
247 static int seensender
=0; /* Have we seen a Sender: header? */
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 *filter
= NULL
; /* the filter for BCC'ing */
267 static char *subject
= NULL
; /* the subject field for BCC'ing */
268 static char *fccfold
[FCCS
]; /* foldernames for FCC'ing */
269 enum encoding
{ UNKNOWN
= 0, BINARY
= 1, SEVENBIT
= 7, EIGHTBIT
= 8 };
270 static enum encoding cte
= UNKNOWN
;
272 static struct headers
*hdrtab
; /* table for the message we're doing */
274 static struct mailname localaddrs
; /* local addrs */
275 static struct mailname netaddrs
; /* network addrs */
276 static struct mailname uuaddrs
; /* uucp addrs */
277 static struct mailname tmpaddrs
; /* temporary queue */
279 static int snoop
= 0;
280 static char *clientsw
= NULL
;
281 static char *serversw
= NULL
;
283 static char prefix
[] = "----- =_aaaaaaaaaa";
285 static char *partno
= NULL
;
290 static void putfmt (char *, char *, int *, FILE *);
291 static void start_headers (void);
292 static void finish_headers (FILE *);
293 static int get_header (char *, struct headers
*);
294 static int putadr (char *, char *, struct mailname
*, FILE *, unsigned int,
295 char *, unsigned int);
296 static void putgrp (char *, char *, FILE *, unsigned int);
297 static int insert (struct mailname
*);
298 static void pl (void);
299 static void anno (void);
300 static int annoaux (struct mailname
*);
301 static void insert_fcc (struct headers
*, char *);
302 static void make_bcc_file (int);
303 static void verify_all_addresses (int, int, char *, int, char *);
304 static void chkadr (void);
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, int, char *, int, char *);
311 static void do_text (char *file
, int fd
);
312 static void do_an_address (struct mailname
*, int);
313 static void do_addresses (int, int);
314 static int find_prefix (void);
318 main (int argc
, char **argv
)
320 int state
, compnum
, dashstuff
= 0, swnum
, oauth_flag
= 0, tls
= -1;
322 int eai
= 0; /* use Email Address Internationalization (EAI) (SMTPUTF8) */
323 char *cp
, *msg
= NULL
, **argp
, **arguments
, *envelope
;
324 char buf
[NMH_BUFSIZ
], name
[NAMESZ
], *auth_svc
= NULL
;
326 m_getfld_state_t gstate
;
328 if (nmh_init(argv
[0], 0 /* use context_foil() */)) { return 1; }
331 arguments
= getarguments (invo_name
, argc
, argv
, 0);
334 while ((cp
= *argp
++)) {
336 switch ((swnum
= smatch (++cp
, switches
))) {
338 ambigsw (cp
, switches
);
341 adios (NULL
, "-%s unknown", cp
);
344 snprintf (buf
, sizeof(buf
), "%s [switches] file", invo_name
);
345 print_help (buf
, switches
, 0);
348 print_version(invo_name
);
352 if (!(cp
= *argp
++) || *cp
== '-')
353 adios (NULL
, "missing argument to %s", argp
[-2]);
354 /* create a minimal context */
355 if (context_foil (cp
) == -1)
360 if (!(cp
= *argp
++) || *cp
== '-')
361 adios (NULL
, "missing argument to %s", argp
[-2]);
362 if ((state
= alias (cp
)) != AK_OK
)
363 adios (NULL
, "aliasing error in %s - %s",
364 cp
, akerror (state
));
383 if (!(filter
= *argp
++) || *filter
== '-')
384 adios (NULL
, "missing argument to %s", argp
[-2]);
439 if (!(cp
= *argp
++) || *cp
== '-')
440 adios (NULL
, "missing argument to %s", argp
[-2]);
441 if ((outputlinelen
= atoi (cp
)) < 10)
442 adios (NULL
, "impossible width %d", outputlinelen
);
446 if (!(cp
= *argp
++) || *cp
== '-')
447 adios (NULL
, "missing argument to %s", argp
[-2]);
448 if ((pfd
= atoi (cp
)) <= 2)
449 adios (NULL
, "bad argument %s %s", argp
[-2], cp
);
453 if (!(clientsw
= *argp
++) || *clientsw
== '-')
454 adios (NULL
, "missing argument to %s", argp
[-2]);
457 if (!(serversw
= *argp
++) || *serversw
== '-')
458 adios (NULL
, "missing argument to %s", argp
[-2]);
465 if (!(partno
= *argp
++) || *partno
== '-')
466 adios (NULL
, "missing argument to %s", argp
[-2]);
478 if (!(saslmech
= *argp
++) || *saslmech
== '-')
479 adios (NULL
, "missing argument to %s", argp
[-2]);
483 if (!(auth_svc
= *argp
++) || *auth_svc
== '-')
484 adios (NULL
, "missing argument to %s", argp
[-2]);
488 case OAUTHCREDFILESW
:
498 if (!(cp
= *argp
++) || *cp
== '-')
499 adios (NULL
, "missing argument to %s", argp
[-2]);
501 for (i
= 0; oauthswitches
[i
].profname
!= NULL
; i
++) {
502 if (oauthswitches
[i
].switchnum
== swnum
) {
503 oauthswitches
[i
].value
= cp
;
508 if (oauthswitches
[i
].profname
== NULL
)
509 adios (NULL
, "internal error: cannot map switch %s "
510 "to profile entry", argp
[-2]);
517 if (!(user
= *argp
++) || *user
== '-')
518 adios (NULL
, "missing argument to %s", argp
[-2]);
522 if (!(port
= *argp
++) || *port
== '-')
523 adios (NULL
, "missing argument to %s", argp
[-2]);
547 if (!(cp
= *argp
++) || *cp
== '-')
548 adios (NULL
, "missing argument to %s", argp
[-2]);
553 if (!(cp
= *argp
++) || *cp
== '-')
554 adios (NULL
, "missing argument to %s", argp
[-2]);
559 if (!(cp
= *argp
++) || *cp
== '-')
560 adios (NULL
, "missing argument to %s", argp
[-2]);
565 if (!(cp
= *argp
++) || *cp
== '-')
566 adios (NULL
, "missing argument to %s", argp
[-2]);
567 save_mts_method (cp
);
570 case CREDENTIALSSW
: {
571 if (!(cp
= *argp
++) || *cp
== '-')
572 adios (NULL
, "missing argument to %s", argp
[-2]);
573 add_profile_entry ("credentials", cp
);
578 if (!(cp
= *argp
++) || *cp
== '-')
579 adios (NULL
, "missing argument to %s", argp
[-2]);
580 if (save_message_id_style (cp
) != 0)
581 adios (NULL
, "unsupported messageid \"%s\"", cp
);
586 adios (NULL
, "only one message at a time!");
594 adios (NULL
, "usage: %s [switches] file", invo_name
);
596 if (outputlinelen
< 10)
597 adios (NULL
, "impossible width %d", outputlinelen
);
599 if ((in
= fopen (msg
, "r")) == NULL
)
600 adios (msg
, "unable to open");
608 if ((out
= fopen ("/dev/null", "w")) == NULL
)
609 adios ("/dev/null", "unable to open");
611 char *cp
= m_mktemp2(NULL
, invo_name
, NULL
, &out
);
613 adios(NULL
, "unable to create temporary file in %s",
616 strncpy(tmpfil
, cp
, sizeof(tmpfil
));
620 hdrtab
= msgstate
== NORMAL
? NHeaders
: RHeaders
;
622 gstate
= m_getfld_state_init(in
);
623 for (compnum
= 1;;) {
624 int bufsz
= sizeof buf
;
625 switch (state
= m_getfld2(&gstate
, name
, buf
, &bufsz
)) {
629 cp
= mh_xstrdup(buf
);
630 while (state
== FLDPLUS
) {
632 state
= m_getfld2(&gstate
, name
, buf
, &bufsz
);
635 putfmt (name
, cp
, &eai
, out
);
640 finish_headers (out
);
643 fprintf (out
, "\n%s", buf
);
644 while (state
== BODY
) {
646 state
= m_getfld2(&gstate
, name
, buf
, &bufsz
);
652 finish_headers (out
);
657 adios (NULL
, "message format error in component #%d", compnum
);
660 adios (NULL
, "getfld() returned %d", state
);
664 m_getfld_state_destroy (&gstate
);
678 * Here's how we decide which address to use as the envelope-from
681 * - If we were given an Envelope-From header, use that.
682 * - If we were given a Sender: address, use that.
683 * - Otherwise, use the address on the From: line
686 if (msgflags
& MEFM
) {
688 } else if (seensender
) {
697 * The user didn't specify any of the tls switches. Try to
698 * help them by implying -initialtls if they're using port 465
699 * (smtps, until IANA revoked that registration in 1998).
701 tls
= ! strcmp (port
, "465") || ! strcasecmp (port
, "smtps")
704 #else /* ! TLS_SUPPORT */
706 #endif /* ! TLS_SUPPORT */
710 tlsflag
= S_STARTTLS
;
717 tlsflag
|= S_NOVERIFY
;
720 * If we were given any oauth flags, store the appropriate profile
721 * entries and make sure an authservice was given (we have to do this
722 * here because we aren't guaranteed the authservice will be given on
723 * the command line before the other OAuth flags are given).
730 if (auth_svc
== NULL
) {
731 adios(NULL
, "No authentication service given with -authservice");
734 for (i
= 0; oauthswitches
[i
].profname
!= NULL
; i
++) {
735 if (oauthswitches
[i
].value
!= NULL
) {
736 snprintf(sbuf
, sizeof(sbuf
),
737 oauthswitches
[i
].profname
, auth_svc
);
738 sbuf
[sizeof(sbuf
) - 1] = '\0';
739 add_profile_entry(sbuf
, oauthswitches
[i
].value
);
744 /* If we are doing a "whom" check */
746 /* This won't work with MTS_SENDMAIL_PIPE. */
747 verify_all_addresses (1, eai
, envelope
, oauth_flag
, auth_svc
);
751 if (msgflags
& MINV
) {
752 make_bcc_file (dashstuff
);
753 if (msgflags
& MVIS
) {
754 if (sm_mts
!= MTS_SENDMAIL_PIPE
) {
755 /* It would be nice to have support to call
756 verify_all_addresses with MTS_SENDMAIL_PIPE, but
757 that might require running sendmail as root. Note
758 that spost didn't verify addresses. */
759 verify_all_addresses (verbose
, eai
, envelope
, oauth_flag
,
762 post (tmpfil
, 0, verbose
, eai
, envelope
, oauth_flag
, auth_svc
);
764 post (bccfil
, 1, verbose
, eai
, envelope
, oauth_flag
, auth_svc
);
765 (void) m_unlink (bccfil
);
767 post (tmpfil
, 0, isatty (1), eai
, envelope
, oauth_flag
, auth_svc
);
771 (void) m_unlink (tmpfil
);
775 printf ("Partial Message #%s Processed\n", partno
);
777 puts("Message Processed");
790 putfmt (char *name
, char *str
, int *eai
, FILE *out
)
792 int count
, grp
, i
, keep
;
794 char namep
[BUFSIZ
], error
[BUFSIZ
];
795 char *savehdr
= NULL
;
796 unsigned int savehdrlen
= 0;
797 struct mailname
*mp
= NULL
, *np
= NULL
;
800 while (*str
== ' ' || *str
== '\t')
803 if (msgstate
== NORMAL
&& uprf (name
, "resent")) {
804 inform("illegal header line -- %s:", name
);
810 /* Check each header field value to see if it has any 8-bit characters.
811 If it does, enable EAI support. */
812 if (contains8bit(str
, NULL
)) {
814 puts("EAI/SMTPUTF8 enabled");
817 /* Enable SMTPUTF8. */
820 /* Enable passing of utf-8 setting to getname()/getadrx(). */
825 if ((i
= get_header (name
, hdrtab
)) == NOTOK
) {
826 if (strncasecmp (name
, "nmh-", 4)) {
827 fprintf (out
, "%s: %s", name
, str
);
829 /* Filter out all Nmh-* headers, because Norm asked. They
830 should never have reached this point. Warn about any
831 that are non-empty. */
832 if (strcmp (str
, "\n")) {
833 trim_suffix_c(str
, '\n');
835 inform("ignoring header line -- %s: %s", name
, str
);
844 if (hdr
->flags
& HIGN
) {
847 if (hdr
->flags
& HBAD
) {
848 inform("illegal header line -- %s:", name
);
852 msgflags
|= (hdr
->set
& ~(MVIS
| MINV
));
854 if (hdr
->flags
& HSUB
)
855 subject
= subject
? add (str
, add ("\t", subject
)) : mh_xstrdup(str
);
856 if (hdr
->flags
& HFCC
) {
857 if ((cp
= strrchr(str
, '\n')))
859 for (pp
= str
; (cp
= strchr(pp
, ',')); pp
= cp
) {
861 insert_fcc (hdr
, pp
);
863 insert_fcc (hdr
, pp
);
866 if (hdr
->flags
& HCTE
) {
867 if (strncasecmp (str
, "7bit", 4) == 0) {
869 } else if (strncasecmp (str
, "8bit", 4) == 0) {
871 } else if (strncasecmp (str
, "binary", 6) == 0) {
875 if (!(hdr
->flags
& HADR
)) {
876 fprintf (out
, "%s: %s", name
, str
);
881 * If this is a From:/Resent-From: header, save the full thing for
882 * later in case we need it for use when constructing a Bcc draft message.
883 * Because we want to capture the results of alias expansion, save
884 * the output from putadr().
887 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
) : (hdr
->set
& MFRM
)) {
890 savehdrlen
= sizeof(fullfrom
);
893 tmpaddrs
.m_next
= NULL
;
895 for (count
= 0; (cp
= getname (str
)); count
++) {
896 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
)))) {
900 tmpaddrs
.m_next
= mp
;
904 admonish(cp
, "%s", error
);
905 if (hdr
->flags
& HTRY
)
913 if (hdr
->flags
& HNIL
)
914 fprintf (out
, "%s: %s", name
, str
);
917 * Sender (or Resent-Sender) can have only one address
919 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
920 : (hdr
->set
& MSND
)) {
921 inform("%s: field requires one address", name
);
925 inform("%s: field requires at least one address", name
);
932 if (count
> 1 && (hdr
->flags
& HONE
)) {
933 inform("%s: field only permits one address", name
);
938 nameoutput
= linepos
= 0;
939 snprintf (namep
, sizeof(namep
), "%s%s",
940 (hdr
->flags
& HMNG
) ? "Original-" : "", name
);
942 for (grp
= 0, mp
= tmpaddrs
.m_next
; mp
; mp
= np
)
943 if (mp
->m_nohost
) { /* also used to test (hdr->flags & HTRY) */
944 /* The address doesn't include a host, so it might be an alias. */
945 pp
= akvalue (mp
->m_mbox
); /* do mh alias substitution */
946 qp
= akvisible () ? mp
->m_mbox
: "";
949 putgrp (namep
, np
->m_gname
, out
, hdr
->flags
);
950 while ((cp
= getname (pp
))) {
951 if (!(mp
= getm (cp
, NULL
, 0, error
, sizeof(error
)))) {
952 admonish(cp
, "%s", error
);
958 * If it's a From: or Resent-From: header, save the address
959 * for later possible use (as the envelope address for SMTP)
962 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
963 : (hdr
->set
& MFRM
)) {
964 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
965 from
[sizeof(from
) - 1] = '\0';
970 * Also save the Sender: or Resent-Sender: header as well
973 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
974 : (hdr
->set
& MSND
)) {
975 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
976 sender
[sizeof(sender
) - 1] = '\0';
981 * ALSO ... save Envelope-From
984 if (hdr
->set
& MEFM
) {
985 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
986 efrom
[sizeof(efrom
) - 1] = '\0';
989 if (hdr
->flags
& HBCC
)
992 mp
->m_ingrp
= np
->m_ingrp
;
995 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
997 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
998 /* Catch this before sendmail chokes with:
999 "553 List:; syntax illegal for recipient
1001 If we wanted to, we could expand out blind
1002 aliases and put them in Bcc:, but then
1003 they'd have the Blind-Carbon-Copy
1006 "blind lists not compatible with"
1012 if (putadr (namep
, qp
, mp
, out
, hdr
->flags
, savehdr
,
1014 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
1023 /* Address includes a host, so no alias substitution is needed. */
1026 * If it's a From: or Resent-From header, save the address
1027 * for later possible use (as the envelope address for SMTP)
1030 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
1031 : (hdr
->set
& MFRM
)) {
1032 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
1037 * Also save the Sender: header as well
1040 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
1041 : (hdr
->set
& MSND
)) {
1042 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
1043 sender
[sizeof(sender
) - 1] = '\0';
1048 * ALSO ... save Envelope-From
1051 if (hdr
->set
& MEFM
) {
1052 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
1053 efrom
[sizeof(efrom
) - 1] = '\0';
1056 if (hdr
->flags
& HBCC
)
1059 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
1062 keep
= putadr (namep
, "", mp
, out
, hdr
->flags
, savehdr
, savehdrlen
);
1066 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
1073 * If it was a From header, strip off any trailing newlines from
1074 * the alias-expanded From line.
1077 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
) : (hdr
->set
& MFRM
)) {
1078 while (*fullfrom
&& fullfrom
[strlen(fullfrom
) - 1] == '\n') {
1079 fullfrom
[strlen(fullfrom
) - 1] = '\0';
1083 if (grp
> 0 && (hdr
->flags
& HNGR
)) {
1084 inform("%s: field does not allow groups", name
);
1094 start_headers (void)
1099 * Probably not necessary, but just in case ...
1110 * Now that we've outputted the header fields in the draft
1111 * message, we will now output any remaining header fields
1112 * that we need to add/create.
1116 finish_headers (FILE *out
)
1120 if (!(msgflags
& MFRM
)) {
1122 * A From: header is now required in the draft.
1124 inform("message has no From: header");
1125 inform("See default components files for examples");
1130 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1131 inform("A Sender: or Envelope-From: header is required "
1132 "with multiple\nFrom: addresses");
1140 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1142 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1144 * If we have multiple From: addresses, make sure we have an
1145 * Sender: header. If we don't have one, then generate one
1146 * from Envelope-From: (which in this case, cannot be blank)
1149 if (fromcount
> 1 && seensender
== 0) {
1150 if (efrom
[0] == '\0') {
1151 inform("Envelope-From cannot be blank when there "
1152 "is multiple From: addresses\nand no Sender: "
1156 fprintf (out
, "Sender: %s\n", efrom
);
1160 if (!(msgflags
& MVIS
))
1161 fprintf (out
, "Bcc: Blind Distribution List: ;\n");
1165 if (!(msgflags
& MDAT
)) {
1166 inform("message has no Date: header");
1169 if (!(msgflags
& MFRM
)) {
1170 inform("message has no From: header");
1173 if (!(msgflags
& MRFM
)) {
1174 inform("message has no Resent-From: header");
1175 inform("See default components files for examples");
1179 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1180 inform("A Resent-Sender: or Envelope-From: header is "
1181 "required with multiple\nResent-From: addresses");
1189 fprintf (out
, "Resent-Date: %s\n", dtime (&tclock
, 0));
1191 fprintf (out
, "Resent-Message-ID: %s\n",
1192 message_id (tclock
, 0));
1194 * If we have multiple Resent-From: addresses, make sure we have an
1195 * Resent-Sender: header. If we don't have one, then generate one
1196 * from Envelope-From (which in this case, cannot be blank)
1199 if (fromcount
> 1 && seensender
== 0) {
1200 if (efrom
[0] == '\0') {
1201 inform("Envelope-From cannot be blank when there "
1202 "is multiple Resent-From: addresses and no "
1203 "Resent-Sender: header");
1206 fprintf (out
, "Resent-Sender: %s\n", efrom
);
1210 if (!(msgflags
& MVIS
))
1211 fprintf (out
, "Resent-Bcc: Blind Re-Distribution List: ;\n");
1216 adios (NULL
, "re-format message and try again");
1218 adios (NULL
, "no addressees");
1223 get_header (char *header
, struct headers
*table
)
1227 for (h
= table
; h
->value
; h
++)
1228 if (!strcasecmp (FENDNULL(header
), FENDNULL(h
->value
)))
1236 putadr (char *name
, char *aka
, struct mailname
*mp
, FILE *out
,
1237 unsigned int flags
, char *savehdr
, unsigned int savehdrsize
)
1239 int len
, saveappend
= 0;
1242 char buffer
[BUFSIZ
];
1244 if (mp
->m_mbox
== NULL
|| ((flags
& HTRY
) && !insert (mp
)))
1246 if (sm_mts
!= MTS_SENDMAIL_PIPE
&&
1247 ((flags
& (HBCC
| HDCC
| HEFM
)) || mp
->m_ingrp
))
1251 fprintf (out
, "%s: ", name
);
1252 linepos
+= (nameoutput
= strlen (name
) + 2);
1256 shlen
= strlen(savehdr
);
1260 if (*aka
&& mp
->m_type
!= UUCPHOST
&& !mp
->m_pers
)
1261 mp
->m_pers
= mh_xstrdup(aka
);
1264 snprintf (buffer
, sizeof(buffer
), "%s;", mp
->m_gname
);
1267 cp
= adrformat (mp
);
1274 if (linepos
!= nameoutput
) {
1275 if (len
+ linepos
+ 2 > outputlinelen
) {
1276 fprintf (out
, ",\n%*s", linepos
= nameoutput
, "");
1278 if (shlen
+ 2 + nameoutput
+ len
>= savehdrsize
) {
1281 snprintf(savehdr
+ shlen
, savehdrsize
- shlen
, ",\n%*s",
1289 if (shlen
+ 2 + len
>= savehdrsize
) {
1292 strncat(savehdr
, ", ", savehdrsize
- shlen
);
1300 if (saveappend
&& shlen
+ len
< savehdrsize
)
1301 strncat(savehdr
, cp
, savehdrsize
- shlen
+ len
);
1305 return (flags
& HTRY
);
1310 putgrp (char *name
, char *group
, FILE *out
, unsigned int flags
)
1315 if (sm_mts
!= MTS_SENDMAIL_PIPE
&& (flags
& HBCC
))
1319 fprintf (out
, "%s: ", name
);
1320 linepos
+= (nameoutput
= strlen (name
) + 2);
1323 cp
= concat (group
, ";", NULL
);
1326 if (linepos
> nameoutput
) {
1327 if (len
+ linepos
+ 2 > outputlinelen
) {
1328 fprintf (out
, ",\n%*s", nameoutput
, "");
1329 linepos
= nameoutput
;
1343 insert (struct mailname
*np
)
1345 struct mailname
*mp
;
1347 if (np
->m_mbox
== NULL
)
1350 for (mp
= np
->m_type
== LOCALHOST
? &localaddrs
1351 : np
->m_type
== UUCPHOST
? &uuaddrs
1355 if (!strcasecmp (FENDNULL(np
->m_host
),
1356 FENDNULL(mp
->m_next
->m_host
)) &&
1357 !strcasecmp (FENDNULL(np
->m_mbox
),
1358 FENDNULL(mp
->m_next
->m_mbox
)) &&
1359 np
->m_bcc
== mp
->m_next
->m_bcc
)
1372 struct mailname
*mp
;
1374 printf ("-------\n\t-- Addresses --\nlocal:\t");
1375 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1376 printf ("%s%s%s", mp
->m_mbox
,
1377 mp
->m_bcc
? "[BCC]" : "",
1378 mp
->m_next
? ",\n\t" : "");
1380 printf ("\nnet:\t");
1381 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1382 printf ("%s%s@%s%s%s", FENDNULL(mp
->m_path
),
1383 mp
->m_mbox
, mp
->m_host
,
1384 mp
->m_bcc
? "[BCC]" : "",
1385 mp
->m_next
? ",\n\t" : "");
1387 printf ("\nuucp:\t");
1388 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1389 printf ("%s!%s%s%s", mp
->m_host
, mp
->m_mbox
,
1390 mp
->m_bcc
? "[BCC]" : "",
1391 mp
->m_next
? ",\n\t" : "");
1393 printf ("\n\t-- Folder Copies --\nfcc:\t");
1394 for (i
= 0; i
< fccind
; i
++)
1395 printf ("%s%s", fccfold
[i
], i
+ 1 < fccind
? ",\n\t" : "");
1403 struct mailname
*mp
;
1405 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1406 if (annoaux (mp
) == NOTOK
)
1409 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1410 if (annoaux (mp
) == NOTOK
)
1413 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1414 if (annoaux (mp
) == NOTOK
)
1424 annoaux (struct mailname
*mp
)
1427 char buffer
[BUFSIZ
];
1429 snprintf (buffer
, sizeof(buffer
), "%s\n", adrformat (mp
));
1430 i
= strlen (buffer
);
1432 return (write (pfd
, buffer
, i
) == i
? OK
: NOTOK
);
1437 insert_fcc (struct headers
*hdr
, char *pp
)
1441 for (cp
= pp
; isspace ((unsigned char) *cp
); cp
++)
1443 for (pp
+= strlen (pp
) - 1; pp
> cp
&& isspace ((unsigned char) *pp
); pp
--)
1451 adios (NULL
, "too many %ss", hdr
->value
);
1452 fccfold
[fccind
++] = mh_xstrdup(cp
);
1460 make_bcc_file (int dashstuff
)
1466 char *tfile
= NULL
, *program
;
1468 if ((tfile
= m_mktemp2(NULL
, "bccs", NULL
, &out
)) == NULL
) {
1469 adios(NULL
, "unable to create temporary file in %s", get_temp_dir());
1471 strncpy (bccfil
, tfile
, sizeof(bccfil
));
1473 fprintf (out
, "From: %s\n", fullfrom
);
1474 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1476 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1478 fprintf (out
, "Subject: %s", subject
);
1479 fprintf (out
, "BCC:\n");
1482 * Use MIME encapsulation for Bcc messages
1488 * Check if any lines in the message clash with the
1489 * prefix for the MIME multipart separator. If there
1490 * is a clash, increment one of the letters in the
1491 * prefix and check again.
1493 if ((cp
= strchr(prefix
, 'a')) == NULL
)
1494 adios (NULL
, "lost prefix start");
1495 while (find_prefix () == NOTOK
) {
1500 adios (NULL
, "can't find a unique delimiter string");
1505 fprintf (out
, "%s: %s\n%s: multipart/digest; boundary=\"",
1506 VRSN_FIELD
, VRSN_VALUE
, TYPE_FIELD
);
1507 fprintf (out
, "%s\"\n\n--%s\n\n", prefix
, prefix
);
1509 fprintf (out
, "\n------- Blind-Carbon-Copy\n\n");
1515 * Do mhl filtering of Bcc messages instead
1516 * of MIME encapsulation.
1518 if (filter
!= NULL
) {
1519 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
1523 adios ("fork", "unable to");
1526 dup2 (fileno (out
), 1);
1528 vec
= argsplit(mhlproc
, &program
, &i
);
1529 vec
[i
++] = "-forward";
1534 /* was the flag -[no]dashstuffing specified? */
1536 vec
[i
++] = "-dashstuffing";
1537 else if (dashstuff
< 0)
1538 vec
[i
++] = "-nodashstuffing";
1541 execvp (program
, vec
);
1542 fprintf (stderr
, "unable to exec ");
1547 pidXwait (child_id
, mhlproc
);
1551 if ((fd
= open (tmpfil
, O_RDONLY
)) == NOTOK
)
1552 adios (tmpfil
, "unable to re-open");
1555 * If using MIME encapsulation, or if the -nodashstuffing
1556 * flag was given, then just copy message. Else do
1557 * RFC934 quoting (dashstuffing).
1559 if (mime
|| dashstuff
< 0)
1560 cpydata (fd
, fileno (out
), tmpfil
, bccfil
);
1562 cpydgst (fd
, fileno (out
), tmpfil
, bccfil
);
1566 fseek (out
, 0L, SEEK_END
);
1568 fprintf (out
, "\n--%s--\n", prefix
);
1570 fprintf (out
, "\n------- End of Blind-Carbon-Copy\n");
1576 * Scan message to check if any lines clash with
1577 * the prefix of the MIME multipart separator.
1584 char buffer
[BUFSIZ
];
1587 if ((in
= fopen (tmpfil
, "r")) == NULL
)
1588 adios (tmpfil
, "unable to re-open");
1590 while (fgets (buffer
, sizeof buffer
, in
))
1591 if (buffer
[0] == '-' && buffer
[1] == '-') {
1594 for (cp
= buffer
+ strlen (buffer
) - 1; cp
>= buffer
; cp
--)
1595 if (!isspace ((unsigned char) *cp
))
1598 if (strcmp (buffer
+ 2, prefix
) == 0) {
1612 if (badadr
&& unkadr
)
1613 die (NULL
, "%d address%s unparsable, %d addressee%s undeliverable",
1614 badadr
, PLURALS(badadr
), unkadr
, PLURALS(badadr
));
1616 die (NULL
, "%d address%s unparsable", badadr
, PLURALS(badadr
));
1618 die (NULL
, "%d addressee%s undeliverable", unkadr
, PLURALS(unkadr
));
1623 do_addresses (int bccque
, int talk
)
1627 struct mailname
*lp
;
1630 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1631 if (lp
->m_bcc
? bccque
: !bccque
) {
1633 puts(" -- Local Recipients --");
1634 do_an_address (lp
, talk
);
1639 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1640 if (lp
->m_bcc
? bccque
: !bccque
) {
1642 puts(" -- UUCP Recipients --");
1643 do_an_address (lp
, talk
);
1648 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1649 if (lp
->m_bcc
? bccque
: !bccque
) {
1651 puts(" -- Network Recipients --");
1652 do_an_address (lp
, talk
);
1658 if (rp_isbad (retval
= sm_waend ()))
1659 die (NULL
, "problem ending addresses; %s", rp_string (retval
));
1664 * MTS-SPECIFIC INTERACTION
1669 * SENDMAIL/SMTP routines
1673 post (char *file
, int bccque
, int talk
, int eai
, char *envelope
,
1674 int oauth_flag
, char *auth_svc
)
1680 if (msgflags
& MINV
)
1681 printf (" -- Posting for %s Recipients --\n",
1682 bccque
? "Blind" : "Sighted");
1684 puts(" -- Posting for All Recipients --");
1689 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
1690 char **argp
, *program
;
1693 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
1697 adios ("fork", "unable to");
1700 if (freopen( file
, "r", stdin
) == NULL
) {
1701 adios (file
, "can't reopen for sendmail");
1704 argp
= argsplit(sendmail
, &program
, &argc
);
1705 argp
[argc
++] = "-t"; /* read msg for recipients */
1706 argp
[argc
++] = "-i"; /* don't stop on "." */
1708 argp
[argc
++] = "-bv";
1710 argp
[argc
++] = "-v";
1713 execv (program
, argp
);
1714 adios (sendmail
, "can't exec");
1717 pidXwait (child_id
, NULL
);
1721 const int fd
= open (file
, O_RDONLY
);
1725 die (file
, "unable to re-open");
1728 if (msgflags
& MMIM
&& cte
!= UNKNOWN
) {
1729 /* MIME message with C-T-E header. (BINARYMIME isn't
1730 supported, use 8BITMIME instead for binary.) */
1731 eightbit
= cte
!= SEVENBIT
;
1733 if (scan_input (fd
, &eightbit
) == NOTOK
) {
1735 die (file
, "problem reading from");
1739 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1740 verbose
, snoop
, sasl
, saslmech
, user
,
1741 oauth_flag
? auth_svc
: NULL
, tlsflag
))
1742 || rp_isbad (retval
= sm_winit (envelope
, eai
, eightbit
))) {
1744 die (NULL
, "problem initializing server; %s", rp_string (retval
));
1747 do_addresses (bccque
, talk
&& verbose
);
1752 sm_end (!(msgflags
& MINV
) || bccque
? OK
: DONE
);
1756 if (msgflags
& MINV
)
1757 printf (" -- %s Recipient Copies Posted --\n",
1758 bccque
? "Blind" : "Sighted");
1760 puts(" -- Recipient Copies Posted --");
1768 /* Address Verification */
1771 verify_all_addresses (int talk
, int eai
, char *envelope
, int oauth_flag
,
1775 struct mailname
*lp
;
1779 if (!whomsw
|| checksw
) {
1780 /* Not sending message body, so don't need to use 8BITMIME. */
1781 const int eightbit
= 0;
1783 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1784 verbose
, snoop
, sasl
, saslmech
, user
,
1785 oauth_flag
? auth_svc
: NULL
, tlsflag
))
1786 || rp_isbad (retval
= sm_winit (envelope
, eai
, eightbit
))) {
1787 die (NULL
, "problem initializing server; %s", rp_string (retval
));
1791 if (talk
&& !whomsw
)
1792 puts(" -- Address Verification --");
1793 if (talk
&& localaddrs
.m_next
)
1794 puts(" -- Local Recipients --");
1795 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1796 do_an_address (lp
, talk
);
1798 if (talk
&& uuaddrs
.m_next
)
1799 puts(" -- UUCP Recipients --");
1800 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1801 do_an_address (lp
, talk
);
1803 if (talk
&& netaddrs
.m_next
)
1804 puts(" -- Network Recipients --");
1805 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1806 do_an_address (lp
, talk
);
1809 if (talk
&& !whomsw
)
1810 puts(" -- Address Verification Successful --");
1812 if (!whomsw
|| checksw
)
1821 do_an_address (struct mailname
*lp
, int talk
)
1827 switch (lp
->m_type
) {
1831 strncpy (addr
, mbox
, sizeof(addr
));
1835 mbox
= auxformat (lp
, 0);
1837 snprintf (addr
, sizeof(addr
), "%s!%s", lp
->m_host
, lp
->m_mbox
);
1840 default: /* let SendMail decide if the host is bad */
1843 snprintf (addr
, sizeof(addr
), "%s at %s", mbox
, host
);
1848 printf (" %s%s", addr
, whomsw
&& lp
->m_bcc
? "[BCC]" : "");
1850 if (whomsw
&& !checksw
) {
1858 switch (retval
= sm_wadr (mbox
, host
,
1859 lp
->m_type
!= UUCPHOST
? lp
->m_path
: NULL
)) {
1868 fprintf (stderr
, " %s: ", addr
);
1869 fprintf (talk
? stdout
: stderr
, "loses; %s\n",
1870 rp_string (retval
));
1876 fprintf (stderr
, " %s: ", addr
);
1877 die (NULL
, "unexpected response; %s", rp_string (retval
));
1885 do_text (char *file
, int fd
)
1890 lseek(fd
, 0, SEEK_SET
);
1892 while ((state
= read (fd
, buf
, sizeof(buf
))) > 0) {
1893 if (rp_isbad (retval
= sm_wtxt (buf
, state
)))
1894 die (NULL
, "problem writing text; %s\n", rp_string (retval
));
1898 die (file
, "problem reading from");
1900 switch (retval
= sm_wtend ()) {
1906 die (NULL
, "posting failed; %s", rp_string (retval
));
1910 die (NULL
, "unexpected response; %s", rp_string (retval
));
1924 (void) m_unlink (tmpfil
);
1925 if (msgflags
& MINV
)
1926 (void) m_unlink (bccfil
);
1928 if (!whomsw
|| checksw
)
1941 hstat
= SIGNAL2 (SIGHUP
, sigser
);
1942 istat
= SIGNAL2 (SIGINT
, sigser
);
1943 qstat
= SIGNAL2 (SIGQUIT
, sigser
);
1944 tstat
= SIGNAL2 (SIGTERM
, sigser
);
1954 SIGNAL (SIGHUP
, hstat
);
1955 SIGNAL (SIGINT
, istat
);
1956 SIGNAL (SIGQUIT
, qstat
);
1957 SIGNAL (SIGTERM
, tstat
);
1965 p_refile (char *file
)
1973 puts(" -- Filing Folder Copies --");
1974 for (i
= 0; i
< fccind
; i
++)
1975 fcc (file
, fccfold
[i
]);
1977 puts(" -- Folder Copies Filed --");
1982 * Call the `fileproc' to add the file to the folder.
1986 fcc (char *file
, char *folder
)
1989 int i
, status
, argp
;
1991 char **arglist
, *program
;
1994 printf (" %sFcc %s: ", msgstate
== RESENT
? "Resent-" : "", folder
);
1997 for (i
= 0; (child_id
= fork ()) == NOTOK
&& i
< 5; i
++)
2003 fprintf (stderr
, " %sFcc %s: ",
2004 msgstate
== RESENT
? "Resent-" : "", folder
);
2005 fprintf (verbose
? stdout
: stderr
, "no forks, so not ok\n");
2009 /* see if we need to add `+' */
2010 snprintf (fold
, sizeof(fold
), "%s%s",
2011 *folder
== '+' || *folder
== '@' ? "" : "+", folder
);
2013 /* now exec the fileproc */
2015 arglist
= argsplit(fileproc
, &program
, &argp
);
2016 arglist
[argp
++] = "-link";
2017 arglist
[argp
++] = "-file";
2018 arglist
[argp
++] = file
;
2019 arglist
[argp
++] = fold
;
2020 arglist
[argp
] = NULL
;
2021 execvp (program
, arglist
);
2025 if ((status
= pidwait (child_id
, OK
))) {
2027 fprintf (stderr
, " %sFcc %s: ",
2028 msgstate
== RESENT
? "Resent-" : "", folder
);
2029 pidstatus (status
, verbose
? stdout
: stderr
, fileproc
);
2044 die (char *what
, char *fmt
, ...)
2051 (void) m_unlink (tmpfil
);
2052 if (msgflags
& MINV
)
2053 (void) m_unlink (bccfil
);
2055 if (!whomsw
|| checksw
)
2060 advertise (what
, NULL
, fmt
, ap
);