]>
diplodocus.org Git - nmh/blob - uip/replsbr.c
1 /* replsbr.c -- routines to help repl along...
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/fmt_scan.h>
13 #include <sys/file.h> /* L_SET */
23 static char *badaddrs
= NULL
;
24 static char *dfhost
= NULL
;
26 static struct mailname mq
;
27 static bool nodupcheck
; /* If set, no check for duplicates */
29 static char *addrcomps
[] = {
48 static int insert (struct mailname
*);
49 static void replfilter (FILE *, FILE *, char *, int);
50 static char *replformataddr(char *, char *);
51 static char *replconcataddr(char *, char *);
52 static char *fix_addresses (char *);
56 replout (FILE *inb
, char *msg
, char *drft
, struct msgs
*mp
, int outputlinelen
,
57 int mime
, char *form
, char *filter
, char *fcc
, int fmtproc
)
61 char tmpbuf
[NMH_BUFSIZ
];
64 int char_read
= 0, format_len
, mask
;
65 char name
[NAMESZ
], *cp
;
67 static int dat
[5]; /* aux. data for format routine */
68 m_getfld_state_t gstate
;
69 struct fmt_callbacks cb
;
74 mask
= umask(~m_gmprot());
75 if ((out
= fopen (drft
, "w")) == NULL
)
76 adios (drft
, "unable to create");
80 /* get new format string */
81 cp
= new_fs (form
, NULL
, NULL
);
82 format_len
= strlen (cp
);
84 /* compile format string */
85 fmt_compile (cp
, &fmt
, 1);
87 for (ap
= addrcomps
; *ap
; ap
++) {
88 cptr
= fmt_findcomp (*ap
);
90 cptr
->c_type
|= CT_ADDR
;
94 * ignore any components killed by command line switches
96 * This prevents the component from being found via fmt_findcomp(),
97 * which makes sure no text gets added to it when the message is processed.
100 cptr
= fmt_findcomp ("to");
102 cptr
->c_name
= mh_xstrdup("");
105 cptr
= fmt_findcomp("cc");
107 cptr
->c_name
= mh_xstrdup("");
113 * pick any interesting stuff out of msg "inb"
115 gstate
= m_getfld_state_init(inb
);
117 int msg_count
= sizeof tmpbuf
;
118 state
= m_getfld2(&gstate
, name
, tmpbuf
, &msg_count
);
123 * if we're interested in this component, save a pointer
124 * to the component text, then start using our next free
125 * buffer as the component temp buffer (buffer switching
126 * saves an extra copy of the component text).
129 i
= fmt_addcomptext(name
, tmpbuf
);
131 char_read
+= msg_count
;
132 while (state
== FLDPLUS
) {
133 msg_count
= sizeof tmpbuf
;
134 state
= m_getfld2(&gstate
, name
, tmpbuf
, &msg_count
);
135 fmt_appendcomp(i
, name
, tmpbuf
);
136 char_read
+= msg_count
;
140 while (state
== FLDPLUS
) {
141 msg_count
= sizeof tmpbuf
;
142 state
= m_getfld2(&gstate
, name
, tmpbuf
, &msg_count
);
153 die("m_getfld2() returned %d", state
);
158 * format and output the header lines.
161 m_getfld_state_destroy (&gstate
);
163 /* set up the "fcc" pseudo-component */
164 cptr
= fmt_findcomp ("fcc");
168 cptr
->c_text
= mh_xstrdup(fcc
);
172 cptr
= fmt_findcomp ("user");
175 if ((cp
= getenv("USER")))
176 cptr
->c_text
= mh_xstrdup(cp
);
182 * if there's a "Subject" component, strip any "Re:"s off it
184 cptr
= fmt_findcomp ("subject");
185 if (cptr
&& (cp
= cptr
->c_text
)) {
189 while (isspace((unsigned char) *cp
))
197 if (sp
!= cptr
->c_text
) {
199 cptr
->c_text
= mh_xstrdup(sp
);
203 i
= format_len
+ char_read
+ 256;
204 scanl
= charstring_create (i
+ 2);
208 dat
[3] = outputlinelen
;
211 cb
.formataddr
= replformataddr
;
212 cb
.concataddr
= replconcataddr
;
213 fmt_scan (fmt
, scanl
, i
, dat
, &cb
);
214 fputs (charstring_buffer (scanl
), out
);
216 fputs ("\nrepl: bad addresses:\n", out
);
217 fputs ( badaddrs
, out
);
221 * Check if we should filter the message
222 * or add mhn directives
227 adios (drft
, "error writing");
229 replfilter (inb
, out
, filter
, fmtproc
);
230 } else if (mime
&& mp
) {
231 fprintf (out
, "#forw [original message] +%s %s\n",
232 mp
->foldpath
, m_name (mp
->lowsel
));
237 adios (drft
, "error writing");
240 /* return dynamically allocated buffers */
241 charstring_free (scanl
);
245 static char *buf
; /* our current working buffer */
246 static char *bufend
; /* end of working buffer */
247 static char *last_dst
; /* buf ptr at end of last call */
248 static unsigned int bufsiz
=0; /* current size of buf */
250 #define BUFINCR 512 /* how much to expand buf when if fills */
252 #define CPY(s) { cp = (s); while ((*dst++ = *cp++)) ; --dst; }
255 * check if there's enough room in buf for str.
256 * add more mem if needed
258 #define CHECKMEM(str) \
259 if ((len = strlen (str)) >= bufend - dst) {\
261 int n = last_dst - buf;\
262 bufsiz += ((dst + len - bufend) / BUFINCR + 1) * BUFINCR;\
263 buf = mh_xrealloc (buf, bufsiz);\
266 bufend = buf + bufsiz;\
271 * fmt_scan will call this routine if the user includes the function
272 * "(formataddr {component})" in a format string. "orig" is the
273 * original contents of the string register. "str" is the address
274 * string to be formatted and concatenated onto orig. This routine
275 * returns a pointer to the concatenated address string.
277 * We try to not do a lot of malloc/copy/free's (which is why we
278 * don't call "getcpy") but still place no upper limit on the
279 * length of the result string.
282 replformataddr (char *orig
, char *str
)
285 char baddr
[BUFSIZ
], error
[BUFSIZ
];
290 struct mailname
*mp
= NULL
;
291 char *fixed_str
= fix_addresses (str
);
293 /* if we don't have a buffer yet, get one */
295 buf
= mh_xmalloc (BUFINCR
);
296 last_dst
= buf
; /* XXX */
297 bufsiz
= BUFINCR
- 6; /* leave some slop */
298 bufend
= buf
+ bufsiz
;
301 * If "orig" points to our buffer we can just pick up where we
302 * left off. Otherwise we have to copy orig into our buffer.
306 else if (!orig
|| !*orig
) {
310 dst
= last_dst
; /* XXX */
315 /* concatenate all the new addresses onto 'buf' */
316 for (isgroup
= false; (cp
= getname (fixed_str
)); ) {
317 if ((mp
= getm (cp
, dfhost
, dftype
, error
, sizeof(error
))) == NULL
) {
318 snprintf (baddr
, sizeof(baddr
), "\t%s -- %s\n", cp
, error
);
319 badaddrs
= add (baddr
, badaddrs
);
322 if (isgroup
&& (mp
->m_gname
|| !mp
->m_ingrp
)) {
327 /* if we get here we're going to add an address */
333 CHECKMEM (mp
->m_gname
);
355 * fmt_scan will call this routine if the user includes the function
356 * "(concataddr {component})" in a format string. This behaves exactly
357 * like formataddr, except that it does NOT suppress duplicate addresses
360 * As an implementation detail: I thought about splitting out replformataddr()
361 * into the generic part and duplicate-suppressing part, but the call to
362 * insert() was buried deep within a couple of loops and I didn't see a
363 * way to do it easily. So instead we simply set a special flag to stop
364 * the duplicate check and call replformataddr().
367 replconcataddr(char *orig
, char *str
)
372 cp
= replformataddr(orig
, str
);
378 insert (struct mailname
*np
)
386 if (np
->m_mbox
== NULL
)
389 for (mp
= &mq
; mp
->m_next
; mp
= mp
->m_next
) {
390 if (!strcasecmp (FENDNULL(np
->m_host
),
391 FENDNULL(mp
->m_next
->m_host
)) &&
392 !strcasecmp (FENDNULL(np
->m_mbox
),
393 FENDNULL(mp
->m_next
->m_mbox
)))
396 if (!ccme
&& ismymbox (np
))
400 snprintf (buffer
, sizeof(buffer
), "Reply to %s? ", adrformat (np
));
401 if (!read_switch (buffer
, anoyes
))
413 * This function expects that argument out has been fflushed by the caller.
417 replfilter (FILE *in
, FILE *out
, char *filter
, int fmtproc
)
428 if (access (filter
, R_OK
) == NOTOK
)
429 adios (filter
, "unable to read");
432 lseek(fileno(in
), 0, SEEK_SET
);
434 arglist
= argsplit(mhlproc
, &mhl
, &argnum
);
436 switch (pid
= fork()) {
438 adios ("fork", "unable to");
441 dup2 (fileno (in
), fileno (stdin
));
442 dup2 (fileno (out
), fileno (stdout
));
446 * We're not allocating the memory for the extra arguments,
447 * because we never call arglist_free(). But if we ever change
448 * that be sure to use getcpy() for the extra arguments.
450 arglist
[argnum
++] = "-form";
451 arglist
[argnum
++] = filter
;
452 arglist
[argnum
++] = "-noclear";
456 arglist
[argnum
++] = "-fmtproc";
457 arglist
[argnum
++] = formatproc
;
460 arglist
[argnum
++] = "-nofmtproc";
464 arglist
[argnum
++] = NULL
;
466 execvp (mhl
, arglist
);
467 errstr
= strerror(errno
);
468 if (write(2, "unable to exec ", 15) < 0 ||
469 write(2, mhlproc
, strlen(mhlproc
)) < 0 ||
470 write(2, ": ", 2) < 0 ||
471 write(2, errstr
, strlen(errstr
)) < 0 ||
472 write(2, "\n", 1) < 0) {
473 advise ("stderr", "write");
478 if (pidXwait (pid
, mhl
))
480 fseek (out
, 0L, SEEK_END
);
481 arglist_free(mhl
, arglist
);
488 fix_addresses (char *str
)
490 char *fixed_str
= NULL
;
491 bool fixed_address
= false;
495 * Attempt to parse each of the addresses in str. If any fail
496 * and can be fixed with escape_local_part(), do that. This
497 * is extra ugly because getm()'s state can only be reset by
498 * call getname(), and getname() needs to be called repeatedly
499 * until it returns NULL to reset its state.
503 int escape_local_part
;
505 struct adr_node
*next
;
507 struct adr_node
*np
= adrs
;
511 * First, put each of the addresses in a linked list. Note
512 * invalid addresses that might be fixed by escaping the
515 while ((cp
= getname (str
))) {
516 struct adr_node
*adr_nodep
;
521 adr_nodep
->adr
= mh_xstrdup (cp
);
522 adr_nodep
->escape_local_part
= 0;
523 adr_nodep
->fixed
= 0;
524 adr_nodep
->next
= NULL
;
526 /* With AD_NAME, errors are not reported to user. */
527 if ((mp
= getm (cp
, dfhost
, dftype
, error
,
528 sizeof(error
))) == NULL
) {
529 const char *no_at_sign
= "no at-sign after local-part";
531 adr_nodep
->escape_local_part
=
532 has_prefix(error
, no_at_sign
);
538 np
= np
->next
= adr_nodep
;
540 np
= adrs
= adr_nodep
;
545 * Walk the list and try to fix broken addresses.
547 for (np
= adrs
; np
; np
= np
->next
) {
548 char *display_name
= mh_xstrdup (np
->adr
);
549 size_t len
= strlen (display_name
);
551 if (np
->escape_local_part
) {
552 char *local_part_end
= strrchr (display_name
, '<');
553 char *angle_addr
= mh_xstrdup (local_part_end
);
557 *local_part_end
= '\0';
558 /* Trim any trailing whitespace. */
559 while (local_part_end
> display_name
&&
560 isspace ((unsigned char) *--local_part_end
)) {
561 *local_part_end
= '\0';
563 escape_local_part (display_name
, len
);
564 new_adr
= concat (display_name
, " ", angle_addr
, NULL
);
565 adr
= getname (new_adr
);
567 (mp
= getm (adr
, dfhost
, dftype
, NULL
, 0)) != NULL
) {
568 fixed_address
= true;
574 np
->adr
= mh_xstrdup (adr
);
576 /* Need to flush getname() */
577 while ((cp
= getname (""))) continue;
578 } /* else the np->adr is OK, so use it as-is. */
584 * If any addresses were repaired, build new address string,
585 * replacing broken addresses.
587 for (np
= adrs
; np
; ) {
588 struct adr_node
*next
= np
->next
;
592 char *new_str
= concat (fixed_str
, ", ", np
->adr
, NULL
);
597 fixed_str
= mh_xstrdup (np
->adr
);
611 return str
? mh_xstrdup (str
) : NULL
;