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\AbstractFeature
;
19 use TYPO3\CMS\Install\Configuration\FeatureInterface
;
22 * Mail feature detects sendmail settings
23 * @internal only to be used within EXT:install
25 class MailFeature
extends AbstractFeature
implements FeatureInterface
28 * @var string Name of feature
30 protected $name = 'Mail';
33 * @var array List of preset classes
35 protected $presetRegistry = [
36 SendmailPreset
::class,