aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Settings/Admin/Server.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-13 00:59:04 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-13 01:02:25 +0200
commit158d78e1abf150faf122ae91a9965605a413ffe5 (patch)
tree1574de4a85a19c862e10560fddbc2a37b26846cc /lib/private/Settings/Admin/Server.php
parentd2fcac8300ba18e001fa3a2ae4d422331b24c953 (diff)
downloadnextcloud-server-158d78e1abf150faf122ae91a9965605a413ffe5.tar.gz
nextcloud-server-158d78e1abf150faf122ae91a9965605a413ffe5.zip
move mail settings and file handling to additional ones, thus files_external gets its own section
Diffstat (limited to 'lib/private/Settings/Admin/Server.php')
-rw-r--r--lib/private/Settings/Admin/Server.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/private/Settings/Admin/Server.php b/lib/private/Settings/Admin/Server.php
index 0c72983a887..20c3a6d7557 100644
--- a/lib/private/Settings/Admin/Server.php
+++ b/lib/private/Settings/Admin/Server.php
@@ -119,19 +119,6 @@ class Server implements ISettings {
'cron_log' => $this->config->getSystemValue('cron_log', true),
'lastcron' => $this->config->getAppValue('core', 'lastcron', false),
'cronErrors' => $this->config->getAppValue('core', 'cronErrors'),
-
- // Mail
- 'sendmail_is_available' => (bool) \OC_Helper::findBinaryPath('sendmail'),
- 'mail_domain' => $this->config->getSystemValue('mail_domain', ''),
- 'mail_from_address' => $this->config->getSystemValue('mail_from_address', ''),
- 'mail_smtpmode' => $this->config->getSystemValue('mail_smtpmode', ''),
- 'mail_smtpsecure' => $this->config->getSystemValue('mail_smtpsecure', ''),
- 'mail_smtphost' => $this->config->getSystemValue('mail_smtphost', ''),
- 'mail_smtpport' => $this->config->getSystemValue('mail_smtpport', ''),
- 'mail_smtpauthtype' => $this->config->getSystemValue('mail_smtpauthtype', ''),
- 'mail_smtpauth' => $this->config->getSystemValue('mail_smtpauth', false),
- 'mail_smtpname' => $this->config->getSystemValue('mail_smtpname', ''),
- 'mail_smtppassword' => $this->config->getSystemValue('mail_smtppassword', ''),
];
return new TemplateResponse('settings', 'admin/server', $parameters, '');