Skip to content

Commit

Permalink
Fix syntax error and update release (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
shawniverson authored Dec 27, 2023
1 parent 61bbc81 commit 2a750c3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.5.1-2
5.5.1-3
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
12/27/2023 Changes in v5.5.1-3
==================================
- Fix Exim code block

12/27/2023 Changes in v5.5.1-2
==================================
- Fix 7z/xz/bz2 etc. decompression
Expand Down
10 changes: 5 additions & 5 deletions common/usr/sbin/MailScanner
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,11 @@ if (/exim/i) {
if ($eximcommand eq "") {
# try to find exim
eval {
$eximcommand = `which exim`;
}
$eximcommand = `which exim`;
};
if ($@ || $eximcommand eq "") {
print STDERR "Exim binary not found. Please supply the full path to Exim Command in MailScanner.conf";
exit 1;
print STDERR "Exim binary not found. Please supply the full path to Exim Command in MailScanner.conf";
exit 1;
}
}
# Get exim version
Expand All @@ -394,7 +394,7 @@ if (/exim/i) {
@line = split(/ /, $out[0]);
$ver = $line[2];
$ver =~ /\d+\.\d+/;
}
};
if ($@) {
print STDERR "Unable to obtain version of Exim. Please check the path to Exim Command in MailScanner.conf";
exit 1;
Expand Down

0 comments on commit 2a750c3

Please sign in to comment.