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

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Philip Hazel
日付:  
To: exim-cvs
題目: [exim-cvs] cvs commit: exim/exim-doc/doc-txt ChangeLog NewStuff exim/exim-src/src globals.h local_scan.h
ph10 2007/06/14 14:27:11 BST

  Modified files:
    exim-doc/doc-txt     ChangeLog NewStuff 
    exim-src/src         globals.h local_scan.h 
  Log:
  Export body_linecount and body_zerocount in the local_scan API.


  Revision  Changes    Path
  1.511     +3 -0      exim/exim-doc/doc-txt/ChangeLog
  1.147     +7 -0      exim/exim-doc/doc-txt/NewStuff
  1.53      +0 -2      exim/exim-src/src/globals.h
  1.11      +2 -0      exim/exim-src/src/local_scan.h


  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
  retrieving revision 1.510
  retrieving revision 1.511
  diff -u -r1.510 -r1.511
  --- ChangeLog    31 May 2007 12:41:49 -0000    1.510
  +++ ChangeLog    14 Jun 2007 13:27:11 -0000    1.511
  @@ -1,4 +1,4 @@
  -$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.510 2007/05/31 12:41:49 magnus Exp $
  +$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.511 2007/06/14 13:27:11 ph10 Exp $


   Change log file for Exim from version 4.21
   -------------------------------------------
  @@ -44,6 +44,9 @@
         Exim lacked permissions to read, a lookup for a key matching that
         symlink would fail. Now it is enough that a matching directory entry
         exists, symlink or not. (Bugzilla 503.)
  +
  +PH/03 The body_linecount and body_zerocount variables are now exported in the
  +      local_scan API.



Exim version 4.67

  Index: NewStuff
  ===================================================================
  RCS file: /home/cvs/exim/exim-doc/doc-txt/NewStuff,v
  retrieving revision 1.146
  retrieving revision 1.147
  diff -u -r1.146 -r1.147
  --- NewStuff    17 Apr 2007 13:06:10 -0000    1.146
  +++ NewStuff    14 Jun 2007 13:27:11 -0000    1.147
  @@ -1,4 +1,4 @@
  -$Cambridge: exim/exim-doc/doc-txt/NewStuff,v 1.146 2007/04/17 13:06:10 ph10 Exp $
  +$Cambridge: exim/exim-doc/doc-txt/NewStuff,v 1.147 2007/06/14 13:27:11 ph10 Exp $


   New Features in Exim
   --------------------
  @@ -7,6 +7,13 @@
   Before a formal release, there may be quite a lot of detail so that people can
   test from the snapshots or the CVS before the documentation is updated. Once
   the documentation is updated, this file is reduced to a short list.
  +
  +Version 4.68
  +------------
  +
  + 1. The body_linecount and body_zerocount C variables are now exported in the
  +    local_scan API.
  +


Version 4.67
------------

  Index: globals.h
  ===================================================================
  RCS file: /home/cvs/exim/exim-src/src/globals.h,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- globals.h    13 Apr 2007 15:13:47 -0000    1.52
  +++ globals.h    14 Jun 2007 13:27:11 -0000    1.53
  @@ -1,4 +1,4 @@
  -/* $Cambridge: exim/exim-src/src/globals.h,v 1.52 2007/04/13 15:13:47 ph10 Exp $ */
  +/* $Cambridge: exim/exim-src/src/globals.h,v 1.53 2007/06/14 13:27:11 ph10 Exp $ */


   /*************************************************
   *     Exim - an Internet mail transport agent    *
  @@ -184,8 +184,6 @@
   extern int     bmi_run;                /* Flag that determines if message should be run through Brightmail server */
   extern uschar *bmi_verdicts;           /* BASE64-encoded verdicts with recipient lists */
   #endif
  -extern int     body_linecount;         /* Line count in body */
  -extern int     body_zerocount;         /* Binary zero count in body */
   extern uschar *bounce_message_file;    /* Template file */
   extern uschar *bounce_message_text;    /* One-liner */
   extern uschar *bounce_recipient;       /* When writing an errmsg */


  Index: local_scan.h
  ===================================================================
  RCS file: /home/cvs/exim/exim-src/src/local_scan.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- local_scan.h    8 Jan 2007 10:50:18 -0000    1.10
  +++ local_scan.h    14 Jun 2007 13:27:11 -0000    1.11
  @@ -1,4 +1,4 @@
  -/* $Cambridge: exim/exim-src/src/local_scan.h,v 1.10 2007/01/08 10:50:18 ph10 Exp $ */
  +/* $Cambridge: exim/exim-src/src/local_scan.h,v 1.11 2007/06/14 13:27:11 ph10 Exp $ */


   /*************************************************
   *     Exim - an Internet mail transport agent    *
  @@ -139,6 +139,8 @@


   extern unsigned int debug_selector;    /* Debugging bits */


  +extern int     body_linecount;         /* Line count in body */
  +extern int     body_zerocount;         /* Binary zero count in body */
   extern uschar *expand_string_message;  /* Error info for failing expansion */
   extern uschar *headers_charset;        /* Charset for RFC 2047 decoding */
   extern header_line *header_last;       /* Final header */