mirror of
https://github.com/MailScanner/v5.git
synced 2024-11-10 17:35:06 +08:00
Issue #62 Fix
This commit is contained in:
parent
7d595f481d
commit
8385adac35
1 changed files with 4 additions and 1 deletions
|
@ -1111,7 +1111,10 @@ sub KickMessage {
|
|||
my $idlist = join(' ', @ThisBatch);
|
||||
$idlist .= ' &' if MailScanner::Config::Value('deliverinbackground');
|
||||
#print STDERR "About to do \"Sendmail2 -Mc $idlist\"\n";
|
||||
system(MailScanner::Config::Value('sendmail2') . ' -Mc ' . $idlist);
|
||||
# Change out of the current working directory that no longer exists
|
||||
# before calling exim
|
||||
system('cd ' . MailScanner::Config::Value('outqueuedir') . ' && ' .
|
||||
MailScanner::Config::Value('sendmail2') . ' -Mc ' . $idlist);
|
||||
|
||||
#JJH # JJH's version
|
||||
#JJH if(MailScanner::Config::Value('deliverinbackground')) {
|
||||
|
|
Loading…
Reference in a new issue