]>
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
*) PURE
;
294 static int putadr (char *, char *, struct mailname
*, FILE *, unsigned int,
295 char *, unsigned int);
296 static void putgrp (char *, char *, FILE *, unsigned int);
297 static int insert (struct mailname
*);
298 static void pl (void);
299 static void anno (void);
300 static int annoaux (struct mailname
*);
301 static void insert_fcc (struct headers
*, char *);
302 static void make_bcc_file (int);
303 static void verify_all_addresses (int, int, char *, int, char *);
304 static void chkadr (void) PURE
;
305 static void sigon (void);
306 static void sigoff (void);
307 static void p_refile (char *);
308 static void fcc (char *, char *);
309 static void fatal (char *, char *, ...) CHECK_PRINTF(2, 3);
310 static void post (char *, int, int, int, char *, int, char *);
311 static void do_text (char *file
, int fd
);
312 static void do_an_address (struct mailname
*, int);
313 static void do_addresses (int, int);
314 static int find_prefix (void);
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!");
593 adios (NULL
, "usage: %s [switches] file", invo_name
);
595 if (outputlinelen
< 10)
596 adios (NULL
, "impossible width %d", outputlinelen
);
598 if ((in
= fopen (msg
, "r")) == NULL
)
599 adios (msg
, "unable to open");
607 if ((out
= fopen ("/dev/null", "w")) == NULL
)
608 adios ("/dev/null", "unable to open");
610 char *cp
= m_mktemp2(NULL
, invo_name
, NULL
, &out
);
612 adios(NULL
, "unable to create temporary file in %s",
615 strncpy(tmpfil
, cp
, sizeof(tmpfil
));
619 hdrtab
= msgstate
== NORMAL
? NHeaders
: RHeaders
;
621 gstate
= m_getfld_state_init(in
);
622 for (compnum
= 1;;) {
623 int bufsz
= sizeof buf
;
624 switch (state
= m_getfld2(&gstate
, name
, buf
, &bufsz
)) {
628 cp
= mh_xstrdup(buf
);
629 while (state
== FLDPLUS
) {
631 state
= m_getfld2(&gstate
, name
, buf
, &bufsz
);
634 putfmt (name
, cp
, &eai
, out
);
639 finish_headers (out
);
642 fprintf (out
, "\n%s", buf
);
643 while (state
== BODY
) {
645 state
= m_getfld2(&gstate
, name
, buf
, &bufsz
);
651 finish_headers (out
);
656 adios (NULL
, "message format error in component #%d", compnum
);
659 adios (NULL
, "getfld() returned %d", state
);
663 m_getfld_state_destroy (&gstate
);
676 * Here's how we decide which address to use as the envelope-from
679 * - If we were given an Envelope-From header, use that.
680 * - If we were given a Sender: address, use that.
681 * - Otherwise, use the address on the From: line
684 if (msgflags
& MEFM
) {
686 } else if (seensender
) {
695 * The user didn't specify any of the tls switches. Try to
696 * help them by implying -initialtls if they're using port 465
697 * (smtps, until IANA revoked that registration in 1998).
699 tls
= ! strcmp (port
, "465") || ! strcasecmp (port
, "smtps")
702 #else /* ! TLS_SUPPORT */
704 #endif /* ! TLS_SUPPORT */
708 tlsflag
= S_STARTTLS
;
715 tlsflag
|= S_NOVERIFY
;
718 * If we were given any oauth flags, store the appropriate profile
719 * entries and make sure an authservice was given (we have to do this
720 * here because we aren't guaranteed the authservice will be given on
721 * the command line before the other OAuth flags are given).
728 if (auth_svc
== NULL
) {
729 adios(NULL
, "No authentication service given with -authservice");
732 for (i
= 0; oauthswitches
[i
].profname
!= NULL
; i
++) {
733 if (oauthswitches
[i
].value
!= NULL
) {
734 snprintf(sbuf
, sizeof(sbuf
),
735 oauthswitches
[i
].profname
, auth_svc
);
736 sbuf
[sizeof(sbuf
) - 1] = '\0';
737 add_profile_entry(sbuf
, oauthswitches
[i
].value
);
742 /* If we are doing a "whom" check */
744 /* This won't work with MTS_SENDMAIL_PIPE. */
745 verify_all_addresses (1, eai
, envelope
, oauth_flag
, auth_svc
);
749 if (msgflags
& MINV
) {
750 make_bcc_file (dashstuff
);
751 if (msgflags
& MVIS
) {
752 if (sm_mts
!= MTS_SENDMAIL_PIPE
) {
753 /* It would be nice to have support to call
754 verify_all_addresses with MTS_SENDMAIL_PIPE, but
755 that might require running sendmail as root. Note
756 that spost didn't verify addresses. */
757 verify_all_addresses (verbose
, eai
, envelope
, oauth_flag
,
760 post (tmpfil
, 0, verbose
, eai
, envelope
, oauth_flag
, auth_svc
);
762 post (bccfil
, 1, verbose
, eai
, envelope
, oauth_flag
, auth_svc
);
763 (void) m_unlink (bccfil
);
765 post (tmpfil
, 0, isatty (1), eai
, envelope
, oauth_flag
, auth_svc
);
769 (void) m_unlink (tmpfil
);
773 printf ("Partial Message #%s Processed\n", partno
);
775 puts("Message Processed");
788 putfmt (char *name
, char *str
, int *eai
, FILE *out
)
790 int count
, grp
, i
, keep
;
792 char namep
[BUFSIZ
], error
[BUFSIZ
];
793 char *savehdr
= NULL
;
794 unsigned int savehdrlen
= 0;
795 struct mailname
*mp
= NULL
, *np
= NULL
;
798 while (*str
== ' ' || *str
== '\t')
801 if (msgstate
== NORMAL
&& uprf (name
, "resent")) {
802 inform("illegal header line -- %s:", name
);
808 /* Check each header field value to see if it has any 8-bit characters.
809 If it does, enable EAI support. */
810 if (contains8bit(str
, NULL
)) {
812 puts("EAI/SMTPUTF8 enabled");
815 /* Enable SMTPUTF8. */
818 /* Enable passing of utf-8 setting to getname()/getadrx(). */
823 if ((i
= get_header (name
, hdrtab
)) == NOTOK
) {
824 if (strncasecmp (name
, "nmh-", 4)) {
825 fprintf (out
, "%s: %s", name
, str
);
827 /* Filter out all Nmh-* headers, because Norm asked. They
828 should never have reached this point. Warn about any
829 that are non-empty. */
830 if (strcmp (str
, "\n")) {
831 trim_suffix_c(str
, '\n');
833 inform("ignoring header line -- %s: %s", name
, str
);
842 if (hdr
->flags
& HIGN
) {
845 if (hdr
->flags
& HBAD
) {
846 inform("illegal header line -- %s:", name
);
850 msgflags
|= (hdr
->set
& ~(MVIS
| MINV
));
852 if (hdr
->flags
& HSUB
)
853 subject
= subject
? add (str
, add ("\t", subject
)) : mh_xstrdup(str
);
854 if (hdr
->flags
& HFCC
) {
855 if ((cp
= strrchr(str
, '\n')))
857 for (pp
= str
; (cp
= strchr(pp
, ',')); pp
= cp
) {
859 insert_fcc (hdr
, pp
);
861 insert_fcc (hdr
, pp
);
864 if (hdr
->flags
& HCTE
) {
865 if (strncasecmp (str
, "7bit", 4) == 0) {
867 } else if (strncasecmp (str
, "8bit", 4) == 0) {
869 } else if (strncasecmp (str
, "binary", 6) == 0) {
873 if (!(hdr
->flags
& HADR
)) {
874 fprintf (out
, "%s: %s", name
, str
);
879 * If this is a From:/Resent-From: header, save the full thing for
880 * later in case we need it for use when constructing a Bcc draft message.
881 * Because we want to capture the results of alias expansion, save
882 * the output from putadr().
885 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
) : (hdr
->set
& MFRM
)) {
888 savehdrlen
= sizeof(fullfrom
);
891 tmpaddrs
.m_next
= NULL
;
893 for (count
= 0; (cp
= getname (str
)); count
++) {
894 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
)))) {
898 tmpaddrs
.m_next
= mp
;
902 admonish(cp
, "%s", error
);
903 if (hdr
->flags
& HTRY
)
911 if (hdr
->flags
& HNIL
)
912 fprintf (out
, "%s: %s", name
, str
);
915 * Sender (or Resent-Sender) can have only one address
917 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
918 : (hdr
->set
& MSND
)) {
919 inform("%s: field requires one address", name
);
923 inform("%s: field requires at least one address", name
);
930 if (count
> 1 && (hdr
->flags
& HONE
)) {
931 inform("%s: field only permits one address", name
);
936 nameoutput
= linepos
= 0;
937 snprintf (namep
, sizeof(namep
), "%s%s",
938 (hdr
->flags
& HMNG
) ? "Original-" : "", name
);
940 for (grp
= 0, mp
= tmpaddrs
.m_next
; mp
; mp
= np
)
941 if (mp
->m_nohost
) { /* also used to test (hdr->flags & HTRY) */
942 /* The address doesn't include a host, so it might be an alias. */
943 pp
= akvalue (mp
->m_mbox
); /* do mh alias substitution */
944 qp
= akvisible () ? mp
->m_mbox
: "";
947 putgrp (namep
, np
->m_gname
, out
, hdr
->flags
);
948 while ((cp
= getname (pp
))) {
949 if (!(mp
= getm (cp
, NULL
, 0, error
, sizeof(error
)))) {
950 admonish(cp
, "%s", error
);
956 * If it's a From: or Resent-From: header, save the address
957 * for later possible use (as the envelope address for SMTP)
960 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
961 : (hdr
->set
& MFRM
)) {
962 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
963 from
[sizeof(from
) - 1] = '\0';
968 * Also save the Sender: or Resent-Sender: header as well
971 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
972 : (hdr
->set
& MSND
)) {
973 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
974 sender
[sizeof(sender
) - 1] = '\0';
979 * ALSO ... save Envelope-From
982 if (hdr
->set
& MEFM
) {
983 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
984 efrom
[sizeof(efrom
) - 1] = '\0';
987 if (hdr
->flags
& HBCC
)
990 mp
->m_ingrp
= np
->m_ingrp
;
991 else if (mp
->m_gname
)
992 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
994 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
995 /* Catch this before sendmail chokes with:
996 "553 List:; syntax illegal for recipient
998 If we wanted to, we could expand out blind
999 aliases and put them in Bcc:, but then
1000 they'd have the Blind-Carbon-Copy
1003 "blind lists not compatible with"
1009 if (putadr (namep
, qp
, mp
, out
, hdr
->flags
, savehdr
,
1011 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
1020 /* Address includes a host, so no alias substitution is needed. */
1023 * If it's a From: or Resent-From header, save the address
1024 * for later possible use (as the envelope address for SMTP)
1027 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
)
1028 : (hdr
->set
& MFRM
)) {
1029 strncpy(from
, auxformat(mp
, 0), sizeof(from
) - 1);
1034 * Also save the Sender: header as well
1037 if ((msgstate
== RESENT
) ? (hdr
->set
& MRSN
)
1038 : (hdr
->set
& MSND
)) {
1039 strncpy(sender
, auxformat(mp
, 0), sizeof(sender
) - 1);
1040 sender
[sizeof(sender
) - 1] = '\0';
1045 * ALSO ... save Envelope-From
1048 if (hdr
->set
& MEFM
) {
1049 strncpy(efrom
, auxformat(mp
, 0), sizeof(efrom
) - 1);
1050 efrom
[sizeof(efrom
) - 1] = '\0';
1053 if (hdr
->flags
& HBCC
)
1056 putgrp (namep
, mp
->m_gname
, out
, hdr
->flags
);
1059 keep
= putadr (namep
, "", mp
, out
, hdr
->flags
, savehdr
, savehdrlen
);
1063 msgflags
|= (hdr
->set
& (MVIS
| MINV
));
1070 * If it was a From header, strip off any trailing newlines from
1071 * the alias-expanded From line.
1074 if ((msgstate
== RESENT
) ? (hdr
->set
& MRFM
) : (hdr
->set
& MFRM
)) {
1075 while (*fullfrom
&& fullfrom
[strlen(fullfrom
) - 1] == '\n') {
1076 fullfrom
[strlen(fullfrom
) - 1] = '\0';
1080 if (grp
> 0 && (hdr
->flags
& HNGR
)) {
1081 inform("%s: field does not allow groups", name
);
1091 start_headers (void)
1096 * Probably not necessary, but just in case ...
1107 * Now that we've outputted the header fields in the draft
1108 * message, we will now output any remaining header fields
1109 * that we need to add/create.
1113 finish_headers (FILE *out
)
1117 if (!(msgflags
& MFRM
)) {
1119 * A From: header is now required in the draft.
1121 inform("message has no From: header");
1122 inform("See default components files for examples");
1127 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1128 inform("A Sender: or Envelope-From: header is required "
1129 "with multiple\nFrom: addresses");
1137 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1139 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1141 * If we have multiple From: addresses, make sure we have an
1142 * Sender: header. If we don't have one, then generate one
1143 * from Envelope-From: (which in this case, cannot be blank)
1146 if (fromcount
> 1 && seensender
== 0) {
1147 if (efrom
[0] == '\0') {
1148 inform("Envelope-From cannot be blank when there "
1149 "is multiple From: addresses\nand no Sender: "
1153 fprintf (out
, "Sender: %s\n", efrom
);
1157 if (!(msgflags
& MVIS
))
1158 fprintf (out
, "Bcc: Blind Distribution List: ;\n");
1162 if (!(msgflags
& MDAT
)) {
1163 inform("message has no Date: header");
1166 if (!(msgflags
& MFRM
)) {
1167 inform("message has no From: header");
1170 if (!(msgflags
& MRFM
)) {
1171 inform("message has no Resent-From: header");
1172 inform("See default components files for examples");
1176 if (fromcount
> 1 && (seensender
== 0 && !(msgflags
& MEFM
))) {
1177 inform("A Resent-Sender: or Envelope-From: header is "
1178 "required with multiple\nResent-From: addresses");
1186 fprintf (out
, "Resent-Date: %s\n", dtime (&tclock
, 0));
1188 fprintf (out
, "Resent-Message-ID: %s\n",
1189 message_id (tclock
, 0));
1191 * If we have multiple Resent-From: addresses, make sure we have an
1192 * Resent-Sender: header. If we don't have one, then generate one
1193 * from Envelope-From (which in this case, cannot be blank)
1196 if (fromcount
> 1 && seensender
== 0) {
1197 if (efrom
[0] == '\0') {
1198 inform("Envelope-From cannot be blank when there "
1199 "is multiple Resent-From: addresses and no "
1200 "Resent-Sender: header");
1203 fprintf (out
, "Resent-Sender: %s\n", efrom
);
1207 if (!(msgflags
& MVIS
))
1208 fprintf (out
, "Resent-Bcc: Blind Re-Distribution List: ;\n");
1213 adios (NULL
, "re-format message and try again");
1215 adios (NULL
, "no addressees");
1220 get_header (char *header
, struct headers
*table
)
1224 for (h
= table
; h
->value
; h
++)
1225 if (!strcasecmp (FENDNULL(header
), FENDNULL(h
->value
)))
1233 putadr (char *name
, char *aka
, struct mailname
*mp
, FILE *out
,
1234 unsigned int flags
, char *savehdr
, unsigned int savehdrsize
)
1236 int len
, saveappend
= 0;
1239 char buffer
[BUFSIZ
];
1241 if (mp
->m_mbox
== NULL
|| ((flags
& HTRY
) && !insert (mp
)))
1243 if (sm_mts
!= MTS_SENDMAIL_PIPE
&&
1244 ((flags
& (HBCC
| HDCC
| HEFM
)) || mp
->m_ingrp
))
1248 fprintf (out
, "%s: ", name
);
1249 linepos
+= (nameoutput
= strlen (name
) + 2);
1253 shlen
= strlen(savehdr
);
1257 if (*aka
&& mp
->m_type
!= UUCPHOST
&& !mp
->m_pers
)
1258 mp
->m_pers
= mh_xstrdup(aka
);
1261 snprintf (buffer
, sizeof(buffer
), "%s;", mp
->m_gname
);
1264 cp
= adrformat (mp
);
1271 if (linepos
!= nameoutput
) {
1272 if (len
+ linepos
+ 2 > outputlinelen
) {
1273 fprintf (out
, ",\n%*s", linepos
= nameoutput
, "");
1275 if (shlen
+ 2 + nameoutput
+ len
>= savehdrsize
) {
1278 snprintf(savehdr
+ shlen
, savehdrsize
- shlen
, ",\n%*s",
1286 if (shlen
+ 2 + len
>= savehdrsize
) {
1289 strncat(savehdr
, ", ", savehdrsize
- shlen
);
1297 if (saveappend
&& shlen
+ len
< savehdrsize
)
1298 strncat(savehdr
, cp
, savehdrsize
- shlen
+ len
);
1302 return (flags
& HTRY
);
1307 putgrp (char *name
, char *group
, FILE *out
, unsigned int flags
)
1312 if (sm_mts
!= MTS_SENDMAIL_PIPE
&& (flags
& HBCC
))
1316 fprintf (out
, "%s: ", name
);
1317 linepos
+= (nameoutput
= strlen (name
) + 2);
1320 cp
= concat (group
, ";", NULL
);
1323 if (linepos
> nameoutput
) {
1324 if (len
+ linepos
+ 2 > outputlinelen
) {
1325 fprintf (out
, ",\n%*s", nameoutput
, "");
1326 linepos
= nameoutput
;
1340 insert (struct mailname
*np
)
1342 struct mailname
*mp
;
1344 if (np
->m_mbox
== NULL
)
1347 for (mp
= np
->m_type
== LOCALHOST
? &localaddrs
1348 : np
->m_type
== UUCPHOST
? &uuaddrs
1352 if (!strcasecmp (FENDNULL(np
->m_host
),
1353 FENDNULL(mp
->m_next
->m_host
)) &&
1354 !strcasecmp (FENDNULL(np
->m_mbox
),
1355 FENDNULL(mp
->m_next
->m_mbox
)) &&
1356 np
->m_bcc
== mp
->m_next
->m_bcc
)
1369 struct mailname
*mp
;
1371 printf ("-------\n\t-- Addresses --\nlocal:\t");
1372 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1373 printf ("%s%s%s", mp
->m_mbox
,
1374 mp
->m_bcc
? "[BCC]" : "",
1375 mp
->m_next
? ",\n\t" : "");
1377 printf ("\nnet:\t");
1378 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1379 printf ("%s%s@%s%s%s", FENDNULL(mp
->m_path
),
1380 mp
->m_mbox
, mp
->m_host
,
1381 mp
->m_bcc
? "[BCC]" : "",
1382 mp
->m_next
? ",\n\t" : "");
1384 printf ("\nuucp:\t");
1385 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1386 printf ("%s!%s%s%s", mp
->m_host
, mp
->m_mbox
,
1387 mp
->m_bcc
? "[BCC]" : "",
1388 mp
->m_next
? ",\n\t" : "");
1390 printf ("\n\t-- Folder Copies --\nfcc:\t");
1391 for (i
= 0; i
< fccind
; i
++)
1392 printf ("%s%s", fccfold
[i
], i
+ 1 < fccind
? ",\n\t" : "");
1400 struct mailname
*mp
;
1402 for (mp
= localaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1403 if (annoaux (mp
) == NOTOK
)
1406 for (mp
= netaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1407 if (annoaux (mp
) == NOTOK
)
1410 for (mp
= uuaddrs
.m_next
; mp
; mp
= mp
->m_next
)
1411 if (annoaux (mp
) == NOTOK
)
1421 annoaux (struct mailname
*mp
)
1424 char buffer
[BUFSIZ
];
1426 snprintf (buffer
, sizeof(buffer
), "%s\n", adrformat (mp
));
1427 i
= strlen (buffer
);
1429 return (write (pfd
, buffer
, i
) == i
? OK
: NOTOK
);
1434 insert_fcc (struct headers
*hdr
, char *pp
)
1438 for (cp
= pp
; isspace ((unsigned char) *cp
); cp
++)
1440 for (pp
+= strlen (pp
) - 1; pp
> cp
&& isspace ((unsigned char) *pp
); pp
--)
1448 adios (NULL
, "too many %ss", hdr
->value
);
1449 fccfold
[fccind
++] = mh_xstrdup(cp
);
1457 make_bcc_file (int dashstuff
)
1463 char *tfile
= NULL
, *program
;
1465 if ((tfile
= m_mktemp2(NULL
, "bccs", NULL
, &out
)) == NULL
) {
1466 adios(NULL
, "unable to create temporary file in %s", get_temp_dir());
1468 strncpy (bccfil
, tfile
, sizeof(bccfil
));
1470 fprintf (out
, "From: %s\n", fullfrom
);
1471 fprintf (out
, "Date: %s\n", dtime (&tclock
, 0));
1473 fprintf (out
, "Message-ID: %s\n", message_id (tclock
, 0));
1475 fprintf (out
, "Subject: %s", subject
);
1476 fprintf (out
, "BCC:\n");
1479 * Use MIME encapsulation for Bcc messages
1485 * Check if any lines in the message clash with the
1486 * prefix for the MIME multipart separator. If there
1487 * is a clash, increment one of the letters in the
1488 * prefix and check again.
1490 if ((cp
= strchr(prefix
, 'a')) == NULL
)
1491 adios (NULL
, "lost prefix start");
1492 while (find_prefix () == NOTOK
) {
1495 else if (*++cp
== 0)
1496 adios (NULL
, "can't find a unique delimiter string");
1501 fprintf (out
, "%s: %s\n%s: multipart/digest; boundary=\"",
1502 VRSN_FIELD
, VRSN_VALUE
, TYPE_FIELD
);
1503 fprintf (out
, "%s\"\n\n--%s\n\n", prefix
, prefix
);
1505 fprintf (out
, "\n------- Blind-Carbon-Copy\n\n");
1511 * Do mhl filtering of Bcc messages instead
1512 * of MIME encapsulation.
1514 if (filter
!= NULL
) {
1518 adios ("fork", "unable to");
1521 dup2 (fileno (out
), 1);
1523 vec
= argsplit(mhlproc
, &program
, &i
);
1524 vec
[i
++] = "-forward";
1529 /* was the flag -[no]dashstuffing specified? */
1531 vec
[i
++] = "-dashstuffing";
1532 else if (dashstuff
< 0)
1533 vec
[i
++] = "-nodashstuffing";
1536 execvp (program
, vec
);
1537 fprintf (stderr
, "unable to exec ");
1542 pidXwait (child_id
, mhlproc
);
1546 if ((fd
= open (tmpfil
, O_RDONLY
)) == NOTOK
)
1547 adios (tmpfil
, "unable to re-open");
1550 * If using MIME encapsulation, or if the -nodashstuffing
1551 * flag was given, then just copy message. Else do
1552 * RFC934 quoting (dashstuffing).
1554 if (mime
|| dashstuff
< 0)
1555 cpydata (fd
, fileno (out
), tmpfil
, bccfil
);
1557 cpydgst (fd
, fileno (out
), tmpfil
, bccfil
);
1561 fseek (out
, 0L, SEEK_END
);
1563 fprintf (out
, "\n--%s--\n", prefix
);
1565 fprintf (out
, "\n------- End of Blind-Carbon-Copy\n");
1571 * Scan message to check if any lines clash with
1572 * the prefix of the MIME multipart separator.
1579 char buffer
[BUFSIZ
];
1582 if ((in
= fopen (tmpfil
, "r")) == NULL
)
1583 adios (tmpfil
, "unable to re-open");
1585 while (fgets (buffer
, sizeof buffer
, in
))
1586 if (buffer
[0] == '-' && buffer
[1] == '-') {
1589 for (cp
= buffer
+ strlen (buffer
) - 1; cp
>= buffer
; cp
--)
1590 if (!isspace ((unsigned char) *cp
))
1593 if (strcmp (buffer
+ 2, prefix
) == 0) {
1607 if (badadr
&& unkadr
)
1608 fatal (NULL
, "%d address%s unparsable, %d addressee%s undeliverable",
1609 badadr
, PLURALS(badadr
), unkadr
, PLURALS(badadr
));
1611 fatal (NULL
, "%d address%s unparsable", badadr
, PLURALS(badadr
));
1613 fatal (NULL
, "%d addressee%s undeliverable", unkadr
, PLURALS(unkadr
));
1618 do_addresses (int bccque
, int talk
)
1622 struct mailname
*lp
;
1625 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1626 if (lp
->m_bcc
? bccque
: !bccque
) {
1628 puts(" -- Local Recipients --");
1629 do_an_address (lp
, talk
);
1634 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1635 if (lp
->m_bcc
? bccque
: !bccque
) {
1637 puts(" -- UUCP Recipients --");
1638 do_an_address (lp
, talk
);
1643 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1644 if (lp
->m_bcc
? bccque
: !bccque
) {
1646 puts(" -- Network Recipients --");
1647 do_an_address (lp
, talk
);
1653 if (rp_isbad (retval
= sm_waend ()))
1654 fatal (NULL
, "problem ending addresses; %s", rp_string (retval
));
1659 * MTS-SPECIFIC INTERACTION
1664 * SENDMAIL/SMTP routines
1668 post (char *file
, int bccque
, int talk
, int eai
, char *envelope
,
1669 int oauth_flag
, char *auth_svc
)
1675 if (msgflags
& MINV
)
1676 printf (" -- Posting for %s Recipients --\n",
1677 bccque
? "Blind" : "Sighted");
1679 puts(" -- Posting for All Recipients --");
1684 if (sm_mts
== MTS_SENDMAIL_PIPE
) {
1685 char **argp
, *program
;
1691 adios ("fork", "unable to");
1694 if (freopen( file
, "r", stdin
) == NULL
) {
1695 adios (file
, "can't reopen for sendmail");
1698 argp
= argsplit(sendmail
, &program
, &argc
);
1699 argp
[argc
++] = "-t"; /* read msg for recipients */
1700 argp
[argc
++] = "-i"; /* don't stop on "." */
1702 argp
[argc
++] = "-bv";
1704 argp
[argc
++] = "-v";
1707 execv (program
, argp
);
1708 adios (sendmail
, "can't exec");
1711 pidXwait (child_id
, NULL
);
1715 const int fd
= open (file
, O_RDONLY
);
1719 fatal (file
, "unable to re-open");
1722 if (msgflags
& MMIM
&& cte
!= UNKNOWN
) {
1723 /* MIME message with C-T-E header. (BINARYMIME isn't
1724 supported, use 8BITMIME instead for binary.) */
1725 eightbit
= cte
!= SEVENBIT
;
1727 if (scan_input (fd
, &eightbit
) == NOTOK
) {
1729 fatal (file
, "problem reading from");
1733 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1734 verbose
, snoop
, sasl
, saslmech
, user
,
1735 oauth_flag
? auth_svc
: NULL
, tlsflag
))
1736 || rp_isbad (retval
= sm_winit (envelope
, eai
, eightbit
))) {
1738 fatal (NULL
, "problem initializing server; %s", rp_string (retval
));
1741 do_addresses (bccque
, talk
&& verbose
);
1746 sm_end (!(msgflags
& MINV
) || bccque
? OK
: DONE
);
1750 if (msgflags
& MINV
)
1751 printf (" -- %s Recipient Copies Posted --\n",
1752 bccque
? "Blind" : "Sighted");
1754 puts(" -- Recipient Copies Posted --");
1762 /* Address Verification */
1765 verify_all_addresses (int talk
, int eai
, char *envelope
, int oauth_flag
,
1769 struct mailname
*lp
;
1773 if (!whomsw
|| checksw
) {
1774 /* Not sending message body, so don't need to use 8BITMIME. */
1775 const int eightbit
= 0;
1777 if (rp_isbad (retval
= sm_init (clientsw
, serversw
, port
, watch
,
1778 verbose
, snoop
, sasl
, saslmech
, user
,
1779 oauth_flag
? auth_svc
: NULL
, tlsflag
))
1780 || rp_isbad (retval
= sm_winit (envelope
, eai
, eightbit
))) {
1781 fatal (NULL
, "problem initializing server; %s", rp_string (retval
));
1785 if (talk
&& !whomsw
)
1786 puts(" -- Address Verification --");
1787 if (talk
&& localaddrs
.m_next
)
1788 puts(" -- Local Recipients --");
1789 for (lp
= localaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1790 do_an_address (lp
, talk
);
1792 if (talk
&& uuaddrs
.m_next
)
1793 puts(" -- UUCP Recipients --");
1794 for (lp
= uuaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1795 do_an_address (lp
, talk
);
1797 if (talk
&& netaddrs
.m_next
)
1798 puts(" -- Network Recipients --");
1799 for (lp
= netaddrs
.m_next
; lp
; lp
= lp
->m_next
)
1800 do_an_address (lp
, talk
);
1803 if (talk
&& !whomsw
)
1804 puts(" -- Address Verification Successful --");
1806 if (!whomsw
|| checksw
)
1807 sm_end (whomsw
? OK
: DONE
);
1815 do_an_address (struct mailname
*lp
, int talk
)
1821 switch (lp
->m_type
) {
1825 strncpy (addr
, mbox
, sizeof(addr
));
1829 mbox
= auxformat (lp
, 0);
1831 snprintf (addr
, sizeof(addr
), "%s!%s", lp
->m_host
, lp
->m_mbox
);
1834 default: /* let SendMail decide if the host is bad */
1837 snprintf (addr
, sizeof(addr
), "%s at %s", mbox
, host
);
1842 printf (" %s%s", addr
, whomsw
&& lp
->m_bcc
? "[BCC]" : "");
1844 if (whomsw
&& !checksw
) {
1852 switch (retval
= sm_wadr (mbox
, host
,
1853 lp
->m_type
!= UUCPHOST
? lp
->m_path
: NULL
)) {
1862 fprintf (stderr
, " %s: ", addr
);
1863 fprintf (talk
? stdout
: stderr
, "loses; %s\n",
1864 rp_string (retval
));
1870 fprintf (stderr
, " %s: ", addr
);
1871 fatal (NULL
, "unexpected response; %s", rp_string (retval
));
1879 do_text (char *file
, int fd
)
1884 lseek(fd
, 0, SEEK_SET
);
1886 while ((state
= read (fd
, buf
, sizeof(buf
))) > 0) {
1887 if (rp_isbad (retval
= sm_wtxt (buf
, state
)))
1888 fatal (NULL
, "problem writing text; %s\n", rp_string (retval
));
1892 fatal (file
, "problem reading from");
1894 switch (retval
= sm_wtend ()) {
1900 fatal (NULL
, "posting failed; %s", rp_string (retval
));
1904 fatal (NULL
, "unexpected response; %s", rp_string (retval
));
1918 (void) m_unlink (tmpfil
);
1919 if (msgflags
& MINV
)
1920 (void) m_unlink (bccfil
);
1922 if (!whomsw
|| checksw
)
1935 hstat
= SIGNAL2 (SIGHUP
, sigser
);
1936 istat
= SIGNAL2 (SIGINT
, sigser
);
1937 qstat
= SIGNAL2 (SIGQUIT
, sigser
);
1938 tstat
= SIGNAL2 (SIGTERM
, sigser
);
1948 SIGNAL (SIGHUP
, hstat
);
1949 SIGNAL (SIGINT
, istat
);
1950 SIGNAL (SIGQUIT
, qstat
);
1951 SIGNAL (SIGTERM
, tstat
);
1959 p_refile (char *file
)
1967 puts(" -- Filing Folder Copies --");
1968 for (i
= 0; i
< fccind
; i
++)
1969 fcc (file
, fccfold
[i
]);
1971 puts(" -- Folder Copies Filed --");
1976 * Call the `fileproc' to add the file to the folder.
1980 fcc (char *file
, char *folder
)
1985 char **arglist
, *program
;
1988 printf (" %sFcc %s: ", msgstate
== RESENT
? "Resent-" : "", folder
);
1995 fprintf (stderr
, " %sFcc %s: ",
1996 msgstate
== RESENT
? "Resent-" : "", folder
);
1997 fprintf (verbose
? stdout
: stderr
, "no forks, so not ok\n");
2001 /* see if we need to add `+' */
2002 snprintf (fold
, sizeof(fold
), "%s%s",
2003 *folder
== '+' || *folder
== '@' ? "" : "+", folder
);
2005 /* now exec the fileproc */
2007 arglist
= argsplit(fileproc
, &program
, &argp
);
2008 arglist
[argp
++] = "-link";
2009 arglist
[argp
++] = "-file";
2010 arglist
[argp
++] = file
;
2011 arglist
[argp
++] = fold
;
2012 arglist
[argp
] = NULL
;
2013 execvp (program
, arglist
);
2017 if ((status
= pidwait (child_id
, OK
))) {
2019 fprintf (stderr
, " %sFcc %s: ",
2020 msgstate
== RESENT
? "Resent-" : "", folder
);
2021 pidstatus (status
, verbose
? stdout
: stderr
, fileproc
);
2036 fatal (char *what
, char *fmt
, ...)
2043 (void) m_unlink (tmpfil
);
2044 if (msgflags
& MINV
)
2045 (void) m_unlink (bccfil
);
2047 if (!whomsw
|| checksw
)
2052 advertise (what
, NULL
, fmt
, ap
);