[exim-cvs] cvs commit: exim/exim-src/src/routers redirect.c

Pàgina inicial
Delete this message
Reply to this message
Autor: Michael Haardt
Data:  
A: exim-cvs
Assumpte: [exim-cvs] cvs commit: exim/exim-src/src/routers redirect.c
michael 2008/12/18 13:42:26 GMT

  Modified files:
    exim-src/src/routers redirect.c 
  Log:
  Patch to previously committed patch that sorts the new option correctly.


  Revision  Changes    Path
  1.22      +2 -2      exim/exim-src/src/routers/redirect.c


  Index: redirect.c
  ===================================================================
  RCS file: /home/cvs/exim/exim-src/src/routers/redirect.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- redirect.c    18 Dec 2008 13:13:54 -0000    1.21
  +++ redirect.c    18 Dec 2008 13:42:26 -0000    1.22
  @@ -1,4 +1,4 @@
  -/* $Cambridge: exim/exim-src/src/routers/redirect.c,v 1.21 2008/12/18 13:13:54 michael Exp $ */
  +/* $Cambridge: exim/exim-src/src/routers/redirect.c,v 1.22 2008/12/18 13:42:26 michael Exp $ */


   /*************************************************
   *     Exim - an Internet mail transport agent    *
  @@ -101,14 +101,14 @@
         (void *)offsetof(redirect_router_options_block, reply_transport_name) },
     { "rewrite",            opt_bit | (RDON_REWRITE << 16),
         (void *)offsetof(redirect_router_options_block, bit_options) },
  +  { "sieve_enotify_mailto_owner", opt_stringptr,
  +      (void *)offsetof(redirect_router_options_block, sieve_enotify_mailto_owner) },
     { "sieve_subaddress", opt_stringptr,
         (void *)offsetof(redirect_router_options_block, sieve_subaddress) },
     { "sieve_useraddress", opt_stringptr,
         (void *)offsetof(redirect_router_options_block, sieve_useraddress) },
     { "sieve_vacation_directory", opt_stringptr,
         (void *)offsetof(redirect_router_options_block, sieve_vacation_directory) },
  -  { "sieve_enotify_mailto_owner", opt_stringptr,
  -      (void *)offsetof(redirect_router_options_block, sieve_enotify_mailto_owner) },
     { "skip_syntax_errors", opt_bool,
         (void *)offsetof(redirect_router_options_block, skip_syntax_errors) },
   #ifdef EXPERIMENTAL_SRS