Bug 1495: Exiqgrep -C check configfile readability
authorAndrew Colin Kissa <andrew@topdog.za.net>
Wed, 2 Jul 2014 14:00:46 +0000 (07:00 -0700)
committerTodd Lyons <tlyons@exim.org>
Wed, 2 Jul 2014 14:00:46 +0000 (07:00 -0700)
doc/doc-txt/ChangeLog
src/src/exiqgrep.src

index 606c8201f999d4683414c60d6fb0794c6d59e66d..cafc8fa2d3634c84cff3c721ed908d40ef1e01dd 100644 (file)
@@ -135,6 +135,9 @@ JH/26 Port service names are now accepted for tls_on_connect_ports, to
 TF/03 Fix udpsend. The ip_connectedsocket() function's socket type
       support and error reporting did not work properly.
 
+TL/13 Bug 1495: Exiqgrep check if -C config file specified on cli exists
+      and is readable.  Patch from Andrew Colin Kissa.
+
 
 Exim version 4.82
 -----------------
index 94b17f58bbcf2b999591167178446727f06f4a43..afecbffeec250e8183f2eaed80cecf0957fa1fa5 100644 (file)
@@ -46,7 +46,7 @@ if ($^O eq 'darwin') { # aka MacOS X
 getopts('hf:r:y:o:s:C:zxlibRca',\%opt);
 if ($opt{h}) { &help; exit;}
 if ($opt{a}) { $eargs = '-bp'; }
-if ($opt{C}) { $eargs .= ' -C '.$opt{C}; }
+if ($opt{C} && -e $opt{C} && -f $opt{C} && -R $opt{C}) { $eargs .= ' -C '.$opt{C}; }
 
 # Read message queue output into hash
 &collect();