File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 5.5.1-2
1+ 5.5.1-3
Original file line number Diff line number Diff line change 1+ 12/27/2023 Changes in v5.5.1-3
2+ ==================================
3+ - Fix Exim code block
4+
1512/27/2023 Changes in v5.5.1-2
26==================================
37- Fix 7z/xz/bz2 etc. decompression
Original file line number Diff line number Diff line change @@ -378,11 +378,11 @@ if (/exim/i) {
378378 if ($eximcommand eq " " ) {
379379 # try to find exim
380380 eval {
381- $eximcommand = ` which exim` ;
382- }
381+ $eximcommand = ` which exim` ;
382+ };
383383 if ($@ || $eximcommand eq " " ) {
384- print STDERR " Exim binary not found. Please supply the full path to Exim Command in MailScanner.conf" ;
385- exit 1;
384+ print STDERR " Exim binary not found. Please supply the full path to Exim Command in MailScanner.conf" ;
385+ exit 1;
386386 }
387387 }
388388 # Get exim version
@@ -394,7 +394,7 @@ if (/exim/i) {
394394 @line = split (/ / , $out [0]);
395395 $ver = $line [2];
396396 $ver =~ / \d +\.\d +/ ;
397- }
397+ };
398398 if ($@ ) {
399399 print STDERR " Unable to obtain version of Exim. Please check the path to Exim Command in MailScanner.conf" ;
400400 exit 1;
You can’t perform that action at this time.
0 commit comments