4 * This file is part of the TYPO3 CMS project.
6 * It is free software; you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License, either version 2
8 * of the License, or any later version.
10 * For the full copyright and license information, please read the
11 * LICENSE.txt file that was distributed with this source code.
13 * The TYPO3 project - inspiring people to share!
16 namespace TYPO3\CMS\Install\Configuration\Mail
;
18 use TYPO3\CMS\Install\Configuration
;
19 use TYPO3\CMS\Install\Configuration\AbstractCustomPreset
;
20 use TYPO3\CMS\Install\Configuration\CustomPresetInterface
;
23 * Custom preset is a fallback if no other preset fits
24 * @internal only to be used within EXT:install
26 class CustomPreset
extends AbstractCustomPreset
implements CustomPresetInterface
29 * @var array Configuration values handled by this preset
31 protected $configurationValues = [
32 'MAIL/transport' => '',
33 'MAIL/transport_sendmail_command' => '',
34 'MAIL/transport_smtp_server' => '',
35 'MAIL/transport_smtp_encrypt' => '',
36 'MAIL/transport_smtp_username' => '',
37 'MAIL/transport_smtp_password' => '',