On Mon, 5 Oct 1998 (earlier today), I wrote:
> On Tue, 29 Sep 1998, mark david mcCreary wrote:
>
> > Does anybody have the one_time feature working with Exim for dispersal of
> > mailing lists.
>
> I tested it when I implemented it, but I am not using it in service.
I just tested it again, and it is broken in 2.04. Looks like a typo
crept in. Sorry about that. Trivial patch below.
--
Philip Hazel University of Cambridge Computing Service,
ph10@??? Cambridge, England. Phone: +44 1223 334714.
*** exim-2.04/src/directors/forwardfile.c Fri Sep 18 12:13:12 1998
--- directors/forwardfile.c Mon Oct 5 15:28:20 1998
***************
*** 805,813 ****
if (ob->one_time)
{
! for (parent = addr; parent->parent != NULL; parent = parent->parent)
next->onetime_parent = parent->orig;
}
if (ob->check_ancestor)
{
--- 805,816 ----
if (ob->one_time)
{
! for (parent = addr; parent->parent != NULL; parent = parent->parent);
next->onetime_parent = parent->orig;
}
if (ob->check_ancestor)
--
*** Exim information can be found at
http://www.exim.org/ ***