Hide QMail when not selected and hide sendmail when not available on the server
Fix #7559
This commit is contained in:
parent
36d7c0b6a7
commit
0285d5b6e2
2 changed files with 12 additions and 3 deletions
|
@ -20,6 +20,11 @@ $htaccessworking=OC_Util::isHtAccessWorking();
|
|||
$entries=OC_Log_Owncloud::getEntries(3);
|
||||
$entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3;
|
||||
|
||||
// Should we display sendmail as an option?
|
||||
if (ini_get('sendmail_path') || file_exists('/usr/sbin/sendmail') || file_exists('/var/qmail/bin/sendmail')) {
|
||||
$tmpl->assign('sendmail_is_available', true);
|
||||
}
|
||||
|
||||
$tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 ));
|
||||
$tmpl->assign('mail_domain', OC_Config::getValue( "mail_domain", '' ));
|
||||
$tmpl->assign('mail_from_address', OC_Config::getValue( "mail_from_address", '' ));
|
||||
|
|
|
@ -26,11 +26,15 @@ $mail_smtpsecure = array(
|
|||
);
|
||||
|
||||
$mail_smtpmode = array(
|
||||
'sendmail',
|
||||
'smtp',
|
||||
'qmail',
|
||||
'php',
|
||||
'smtp',
|
||||
);
|
||||
if ($_['sendmail_is_available']) {
|
||||
$mail_smtpmode[] = 'sendmail';
|
||||
}
|
||||
if ($_['mail_smtpmode'] == 'qmail') {
|
||||
$mail_smtpmode[] = 'qmail';
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
|
Loading…
Reference in a new issue