Re: [EXIM] Inserting a replyto header for mailling list

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Philip Hazel
Fecha:  
A: Daniel ANDRE
Cc: EXIM users list
Asunto: Re: [EXIM] Inserting a replyto header for mailling list
On Wed, 9 Dec 1998, I wrote:

> I may be able to send you a patch for 1.92.


The fix isn't simple; this was a nasty can of worms caused by an
oversight on my part. It will be fixed in the 2.10 release, but in the
meantime, the patch below is a workaround for 1.92 which I hope will
work for you.

-- 
Philip Hazel            University of Cambridge Computing Service,
ph10@???      Cambridge, England. Phone: +44 1223 334714.



*** exim-1.92/src/directors/forwardfile.c   Wed Apr 29 09:55:08 1998
--- src/directors/forwardfile.c   Thu Dec 10 10:16:16 1998
***************
*** 785,795 ****
    return ERROR;
    }


- /* Set up the errors address for the children of this address. */
-
- rc = direct_get_errors_address(addr, dblock, "director", verify, &errors_to);
- if (rc != OK) return rc;
-
/* Set up the additional and removeable headers for the children of this
address. */

--- 785,790 ----
***************
*** 797,802 ****
--- 792,802 ----
    &remove_headers);
  if (rc != OK) return rc;


+ /* Set up the errors address for the children of this address. */
+
+ rc = direct_get_errors_address(addr, dblock, "director", verify, &errors_to);
+ if (rc != OK) return rc;
+
/* Add the new addresses to the list of new addresses, copying in the
uid, gid and permission flags for use by pipes and files and autoreplies,
setting the parent, and or-ing its ignore_error flag.



--
*** Exim information can be found at http://www.exim.org/ ***