]>
diplodocus.org Git - nmh/blob - uip/rcvdist.c
3 * rcvdist.c -- asynchronously redistribute messages
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.
11 #include <h/fmt_scan.h>
12 #include <h/rcvmail.h>
17 #define RCVDIST_SWITCHES \
18 X("form formfile", 4, FORMSW) \
19 X("version", 0, VERSIONSW) \
20 X("help", 0, HELPSW) \
22 #define X(sw, minchars, id) id,
23 DEFINE_SWITCH_ENUM(RCVDIST
);
26 #define X(sw, minchars, id) { sw, minchars, id },
27 DEFINE_SWITCH_ARRAY(RCVDIST
, switches
);
30 static char backup
[BUFSIZ
] = "";
31 static char drft
[BUFSIZ
] = "";
32 static char tmpfil
[BUFSIZ
] = "";
37 static void rcvdistout (FILE *, char *, char *);
38 static void unlink_done (int) NORETURN
;
42 main (int argc
, char **argv
)
46 char *addrs
= NULL
, *cp
, *form
= NULL
, buf
[BUFSIZ
], *program
;
47 char **argp
, **arguments
, **vec
;
54 setlocale(LC_ALL
, "");
56 invo_name
= r1bindex (argv
[0], '/');
58 /* read user profile/context */
62 * Configure this now, since any unknown switches to rcvdist get
66 vec
= argsplit(postproc
, &program
, &vecp
);
69 arguments
= getarguments (invo_name
, argc
, argv
, 1);
72 while ((cp
= *argp
++)) {
74 switch (smatch (++cp
, switches
)) {
76 ambigsw (cp
, switches
);
83 snprintf (buf
, sizeof(buf
),
84 "%s [switches] [switches for postproc] address ...",
86 print_help (buf
, switches
, 1);
89 print_version(invo_name
);
93 if (!(form
= *argp
++) || *form
== '-')
94 adios (NULL
, "missing argument to %s", argp
[-2]);
98 addrs
= addrs
? add (cp
, add (", ", addrs
)) : getcpy (cp
);
102 adios (NULL
, "usage: %s [switches] [switches for postproc] address ...",
105 umask (~m_gmprot ());
107 tfile
= m_mktemp2(NULL
, invo_name
, NULL
, &fp
);
108 if (tfile
== NULL
) adios("rcvdist", "unable to create temporary file");
109 strncpy (tmpfil
, tfile
, sizeof(tmpfil
));
111 cpydata (fileno (stdin
), fileno (fp
), "message", tmpfil
);
112 fseek (fp
, 0L, SEEK_SET
);
114 tfile
= m_mktemp2(NULL
, invo_name
, NULL
, NULL
);
115 if (tfile
== NULL
) adios("forw", "unable to create temporary file");
116 strncpy (drft
, tfile
, sizeof(tmpfil
));
118 rcvdistout (fp
, form
, addrs
);
121 if (distout (drft
, tmpfil
, backup
) == NOTOK
)
124 vec
[vecp
++] = "-dist";
126 if ((cp
= context_find ("mhlproc"))) {
127 vec
[vecp
++] = "-mhlproc";
132 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
136 admonish (NULL
, "unable to fork");/* fall */
138 execvp (program
, vec
);
139 fprintf (stderr
, "unable to exec ");
144 done (pidXwait(child_id
, postproc
));
147 return 0; /* dead code to satisfy the compiler */
150 /* very similar to routine in replsbr.c */
154 static int outputlinelen
= OUTPUTLINELEN
;
156 static struct format
*fmt
;
160 static char *addrcomps
[] = {
178 rcvdistout (FILE *inb
, char *form
, char *addrs
)
180 register int char_read
= 0, format_len
, i
, state
;
182 char *cp
, *scanl
, name
[NAMESZ
], tmpbuf
[SBUFSIZ
];
183 register struct comp
*cptr
;
185 m_getfld_state_t gstate
= 0;
187 if (!(out
= fopen (drft
, "w")))
188 adios (drft
, "unable to create");
190 /* get new format string */
191 cp
= new_fs (form
? form
: rcvdistcomps
, NULL
, NULL
);
192 format_len
= strlen (cp
);
193 fmt_compile (cp
, &fmt
, 1);
195 for (ap
= addrcomps
; *ap
; ap
++) {
196 cptr
= fmt_findcomp (*ap
);
198 cptr
->c_type
|= CT_ADDR
;
201 cptr
= fmt_findcomp ("addresses");
203 cptr
->c_text
= addrs
;
206 int msg_count
= SBUFSIZ
;
207 switch (state
= m_getfld (&gstate
, name
, tmpbuf
, &msg_count
, inb
)) {
210 i
= fmt_addcomptext(name
, tmpbuf
);
212 char_read
+= msg_count
;
213 while (state
== FLDPLUS
) {
215 state
= m_getfld (&gstate
, name
, tmpbuf
, &msg_count
, inb
);
216 fmt_appendcomp(i
, name
, tmpbuf
);
217 char_read
+= msg_count
;
221 while (state
== FLDPLUS
) {
223 state
= m_getfld (&gstate
, name
, tmpbuf
, &msg_count
, inb
);
234 adios (NULL
, "m_getfld() returned %d", state
);
238 m_getfld_state_destroy (&gstate
);
240 i
= format_len
+ char_read
+ 256;
241 scanl
= mh_xmalloc ((size_t) i
+ 2);
242 dat
[0] = dat
[1] = dat
[2] = dat
[4] = 0;
243 dat
[3] = outputlinelen
;
244 fmt_scan (fmt
, scanl
, i
+ 1, i
, dat
, NULL
);
248 adios (drft
, "error writing");
257 unlink_done (int status
)
266 exit (status
? RCV_MBX
: RCV_MOK
);