mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
Add "-i" to sendmail's pipe
Signed-off-by: FedericoHeichou <federicoheichou@gmail.com>
This commit is contained in:
parent
e5b0941c64
commit
3cf66ae156
2 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ if ($_['mail_smtpmode'] === 'qmail') {
|
|||
|
||||
$mail_sendmailmode = [
|
||||
'smtp' => 'smtp (-bs)',
|
||||
'pipe' => 'pipe (-t)'
|
||||
'pipe' => 'pipe (-t -i)'
|
||||
];
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ class Mailer implements IMailer {
|
|||
}
|
||||
|
||||
$binaryParam = match ($this->config->getSystemValueString('mail_sendmailmode', 'smtp')) {
|
||||
'pipe' => ' -t',
|
||||
'pipe' => ' -t -i',
|
||||
default => ' -bs',
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue