Give an error for the use of * and *@ with a query-style lookup.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 4 Dec 2006 15:00:19 +0000 (15:00 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 4 Dec 2006 15:00:19 +0000 (15:00 +0000)
doc/doc-txt/ChangeLog
src/src/search.c
test/scripts/3200-testdb/3200
test/stderr/3200 [new file with mode: 0644]
test/stdout/3200

index 2629276fe68c836f7042c57cc89b681aae10202a..f429b15d8134607dc773f5038001df827e08b128 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.439 2006/11/20 14:29:31 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.440 2006/12/04 15:00:19 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -334,6 +334,10 @@ PH/48 When a host name was looked up from an IP address, and the subsequent
       forward lookup of the name timed out, the host name was left in
       $sender_host_name, contrary to the specification.
 
+PH/49 Although default lookup types such as lsearch* or cdb*@ have always been
+      restricted to single-key lookups, Exim was not diagnosing an error if
+      * or *@ was used with a query-style lookup.
+
 
 Exim version 4.63
 -----------------
index 364cb3cb71bc35fe9e86c0ec1201001cd7d4d606..3dac52eafa7e9ec2a6ee7441a6b517685331c156 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/search.c,v 1.3 2006/02/07 11:19:00 ph10 Exp $ */
+/* $Cambridge: exim/src/src/search.c,v 1.4 2006/12/04 15:00:20 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -184,18 +184,26 @@ else if (len >= 1 && ss[len-1]  == '*')
   }
 
 /* Check for the individual search type. Only those that are actually in the
-binary are valid. For query-style types, "partial" is an error. */
+binary are valid. For query-style types, "partial" and default types are
+erroneous. */
 
 stype = search_findtype(ss, len);
-if (pv >= 0 && mac_islookup(stype, lookup_querystyle))
+if (stype >= 0 && mac_islookup(stype, lookup_querystyle))
   {
-  search_error_message = string_sprintf("\"partial\" is not permitted "
-    "for lookup type \"%s\"", ss);
-  return -1;
+  if (pv >= 0)
+    {
+    search_error_message = string_sprintf("\"partial\" is not permitted "
+      "for lookup type \"%s\"", ss);
+    return -1;
+    }
+  if ((*starflags & (SEARCH_STAR|SEARCH_STARAT)) != 0)
+    {
+    search_error_message = string_sprintf("defaults using \"*\" or \"*@\" are "
+      "not permitted for lookup type \"%s\"", ss);
+    return -1;
+    }
   }
 
-/* All is well; pass back the partial type and return the lookup type. */
-
 *ptypeptr = pv;
 return stype;
 }
index cd02ab5bce81228b9ba978de5158bf2d7761486f..f5b12972ddb874ec2f2e0d518a9e09caa9e8d8f5 100644 (file)
@@ -1,6 +1,11 @@
 # testdb lookups
-
+1
 exim -be
 match_ip:        12 ${if match_ip{10.11.12.13}{testdb;something}}
 match_ip:        13 ${if match_ip{10.11.12.13}{testdb;fail}}
+match_domain:    14 ${if match_domain{a.b.c.d}{testdb*;fail}}
+bad default:     ${lookup testdb*{abcd}}
+bad default:     ${lookup testdb*@{abcd}}
+bad default:     ${lookup testdb*{fail}}
+bad default:     ${lookup testdb*@{fail}}
 ****
diff --git a/test/stderr/3200 b/test/stderr/3200
new file mode 100644 (file)
index 0000000..2f416ad
--- /dev/null
@@ -0,0 +1 @@
+1999-03-02 09:44:33 defaults using "*" or "*@" are not permitted for lookup type "testdb*"
index 8c339832640caf2580f1897a838f078ce58f1004..04ff51884dc33f3cbe95676a375f127b128feec5 100644 (file)
@@ -1,3 +1,3 @@
 > match_ip:        12 true
 > match_ip:        13 
-> 
+> 
\ No newline at end of file