File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed 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
+
1
5
12/27/2023 Changes in v5.5.1-2
2
6
==================================
3
7
- Fix 7z/xz/bz2 etc. decompression
Original file line number Diff line number Diff line change @@ -378,11 +378,11 @@ if (/exim/i) {
378
378
if ($eximcommand eq " " ) {
379
379
# try to find exim
380
380
eval {
381
- $eximcommand = ` which exim` ;
382
- }
381
+ $eximcommand = ` which exim` ;
382
+ };
383
383
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;
386
386
}
387
387
}
388
388
# Get exim version
@@ -394,7 +394,7 @@ if (/exim/i) {
394
394
@line = split (/ / , $out [0]);
395
395
$ver = $line [2];
396
396
$ver =~ / \d +\.\d +/ ;
397
- }
397
+ };
398
398
if ($@ ) {
399
399
print STDERR " Unable to obtain version of Exim. Please check the path to Exim Command in MailScanner.conf" ;
400
400
exit 1;
You can’t perform that action at this time.
0 commit comments