'ct_auto_mail_hooks']; public function __construct(ILogger $logger, IConfig $nextCloudConfiguration) { $this->logger = $logger; $this->appConfiguration = $nextCloudConfiguration->getSystemValue(self::CONFIG_KEY); } public function getGlesysKeys() { return $this->getConfValue(self::CONFIG_KEY_GLESYS_KEYS); } public function getEmailAddressSuffix() { return $this->getConfValue(self::CONFIG_KEY_EMAIL_ADDR_SUFFIX); } private function getConfValue($configKey) { return $this->appConfiguration[$configKey]; } }