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

Góra strony
Delete this message
Reply to this message
Autor: Philip Hazel
Data:  
Dla: exim-cvs
Temat: [exim-cvs] cvs commit: exim/exim-doc/doc-txt ChangeLog exim/exim-src/src/routers dnslookup.c
ph10 2005/06/17 15:20:49 BST

  Modified files:
    exim-doc/doc-txt     ChangeLog 
    exim-src/src/routers dnslookup.c 
  Log:
  Allow the message "All relevant MX records point to non-existent hosts"
  to be included in bounce messages, as it doesn't seem to be a security
  risk.


  Revision  Changes    Path
  1.164     +3 -0      exim/exim-doc/doc-txt/ChangeLog
  1.4       +1 -0      exim/exim-src/src/routers/dnslookup.c


  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
  retrieving revision 1.163
  retrieving revision 1.164
  diff -u -r1.163 -r1.164
  --- ChangeLog    17 Jun 2005 13:52:14 -0000    1.163
  +++ ChangeLog    17 Jun 2005 14:20:48 -0000    1.164
  @@ -1,4 +1,4 @@
  -$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.163 2005/06/17 13:52:14 ph10 Exp $
  +$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.164 2005/06/17 14:20:48 ph10 Exp $


   Change log file for Exim from version 4.21
   -------------------------------------------
  @@ -159,6 +159,9 @@
         rework some of the code of TK/09 above to avoid the hardwired use of
         "%lld" and "long long". Replaced the call to snprintf() with a call to
         string_vformat().
  +
  +PH/21 Added another message to those in 4.51/PH/42, namely "All relevant MX
  +      records point to non-existent hosts".



Exim version 4.51

  Index: dnslookup.c
  ===================================================================
  RCS file: /home/cvs/exim/exim-src/src/routers/dnslookup.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dnslookup.c    11 Jan 2005 15:51:03 -0000    1.3
  +++ dnslookup.c    17 Jun 2005 14:20:48 -0000    1.4
  @@ -1,4 +1,4 @@
  -/* $Cambridge: exim/exim-src/src/routers/dnslookup.c,v 1.3 2005/01/11 15:51:03 ph10 Exp $ */
  +/* $Cambridge: exim/exim-src/src/routers/dnslookup.c,v 1.4 2005/06/17 14:20:48 ph10 Exp $ */


   /*************************************************
   *     Exim - an Internet mail transport agent    *
  @@ -300,6 +300,7 @@


     if (h.mx >= 0 && h.address == NULL)
       {
  +    setflag(addr, af_pass_message);   /* This is not a security risk */
       if (h.name[0] == 0)
         addr->message = US"an SRV record indicated no SMTP service";
       else