I'll get an updated build done soon including this patch after I've investigated further.
On Thu, Jun 5, 2008 at 4:24 PM, Lars Ellenberg <[EMAIL PROTECTED]> wrote: > tag 294231 patch > thanks. > > the patch given in > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294231#5 > is incorrect, imho. > > mbox->next was intentionally set to NULL. > the bug was a copy'n'paste error from elsewhere, > the correct patch against libesmtp 1.0.4 is: > > --- headers.c.orig 2008-05-07 12:33:23.485256941 +0200 > +++ headers.c 2008-05-05 03:32:30.574634072 +0200 > @@ -334,7 +334,7 @@ > mbox->mailbox = strdup (mailbox); > mbox->next = NULL; > > - mbox->next = header->value; > + header->value = mbox; > return 1; > } > > thanks, > > Lars > > >