In autoreply, treat an empty string for "once" the same as unset.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 15 Nov 2005 11:23:43 +0000 (11:23 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 15 Nov 2005 11:23:43 +0000 (11:23 +0000)
doc/doc-txt/ChangeLog
src/src/transports/autoreply.c

index fdc52d7dd07894844036e3dbf4e8985c317a617b..8dce076fa2879c30e0b9fa5a78317e0825403e8d 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.263 2005/11/15 11:19:38 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.264 2005/11/15 11:23:43 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -134,6 +134,8 @@ PH/15 If the first argument of "${if match_address" was not empty, but did not
       contain an "@" character, Exim crashed. Now it writes a panic log message
       and treats the condition as false.
 
+PH/16 In autoreply, treat an empty string for "once" the same as unset.
+
 
 Exim version 4.54
 -----------------
index 1b867d240be5477f69f7cd6b54b4d390a776784e..6ff2f34152f3c4fe7466f9153f64cbb46ef9935e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/transports/autoreply.c,v 1.6 2005/11/14 11:32:16 ph10 Exp $ */
+/* $Cambridge: exim/src/src/transports/autoreply.c,v 1.7 2005/11/15 11:23:43 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -420,7 +420,7 @@ recipient, the effect might not be quite as envisaged. If once_file_size is
 set, instead of a dbm file, we use a regular file containing a circular buffer
 recipient cache. */
 
-if (oncelog != NULL && to != NULL)
+if (oncelog != NULL && *oncelog != 0 && to != NULL)
   {
   time_t then = 0;