[exim-cvs] cvs commit: exim/exim-doc/doc-txt ChangeLog exim…

Página Inicial
Delete this message
Reply to this message
Autor: Philip Hazel
Data:  
Para: exim-cvs
Assunto: [exim-cvs] cvs commit: exim/exim-doc/doc-txt ChangeLog exim/exim-src/src macros.h
ph10 2005/06/27 11:21:38 BST

  Modified files:
    exim-doc/doc-txt     ChangeLog 
    exim-src/src         macros.h 
  Log:
  Remove "memory" from -d+all; it's voluminous and rarely useful.


  Revision  Changes    Path
  1.171     +4 -0      exim/exim-doc/doc-txt/ChangeLog
  1.15      +2 -2      exim/exim-src/src/macros.h


  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
  retrieving revision 1.170
  retrieving revision 1.171
  diff -u -r1.170 -r1.171
  --- ChangeLog    23 Jun 2005 10:02:13 -0000    1.170
  +++ ChangeLog    27 Jun 2005 10:21:38 -0000    1.171
  @@ -1,4 +1,4 @@
  -$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.170 2005/06/23 10:02:13 ph10 Exp $
  +$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.171 2005/06/27 10:21:38 ph10 Exp $


   Change log file for Exim from version 4.21
   -------------------------------------------
  @@ -193,6 +193,10 @@
         read the rcpt_include_affixes from the non-existent transport. Now it
         just assumes that the setting of that option is false. This bug was
         introduced by 4.51/PH/31.
  +
  +PH/28 Changed -d+all to exclude +memory, because that information is very
  +      rarely of interest, but it makes the output a lot bigger. People tend to
  +      do -d+all out of habit.



Exim version 4.51

  Index: macros.h
  ===================================================================
  RCS file: /home/cvs/exim/exim-src/src/macros.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- macros.h    31 May 2005 10:58:18 -0000    1.14
  +++ macros.h    27 Jun 2005 10:21:38 -0000    1.15
  @@ -1,4 +1,4 @@
  -/* $Cambridge: exim/exim-src/src/macros.h,v 1.14 2005/05/31 10:58:18 ph10 Exp $ */
  +/* $Cambridge: exim/exim-src/src/macros.h,v 1.15 2005/06/27 10:21:38 ph10 Exp $ */


   /*************************************************
   *     Exim - an Internet mail transport agent    *
  @@ -318,14 +318,14 @@
   #define D_uid                        0x20000000
   #define D_verify                     0x40000000


  -#define D_all                        0xffffffff
  +#define D_all                        (0xffffffff & ~D_memory)


   #define D_any                        (D_all & \
                                          ~(D_v           | \
                                            D_pid         | \
                                            D_timestamp)  )


  -#define D_default                    (D_all & \
  +#define D_default                    (0xffffffff & \
                                          ~(D_expand      | \
                                            D_filter      | \
                                            D_interface   | \