config->getAppValue('sharebymail', 'sendpasswordmail', $this->sendPasswordByMailDefault); return $sendPasswordByMail === 'yes'; } /** * should add reply to with initiator mail * * @return bool */ public function replyToInitiator(): bool { $replyToInitiator = $this->config->getAppValue('sharebymail', 'replyToInitiator', $this->replyToInitiatorDefault); return $replyToInitiator === 'yes'; } }