From b5b66c02b8c3c6d910f47afcb188855dedf0301e Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Sun, 25 Aug 2019 22:53:05 +0200 Subject: [PATCH] Fixed invite sender address Otherwise, fresh installations use `From: ` --- Core/Frameworks/Baikal/Model/Config/Standard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Frameworks/Baikal/Model/Config/Standard.php b/Core/Frameworks/Baikal/Model/Config/Standard.php index 92c2bada..daab958f 100644 --- a/Core/Frameworks/Baikal/Model/Config/Standard.php +++ b/Core/Frameworks/Baikal/Model/Config/Standard.php @@ -189,7 +189,7 @@ protected static function getDefaultConfig() { define("BAIKAL_CAL_ENABLED", TRUE); # CalDAV invite From: mail address (comment or leave blank to disable notifications) -define("BAIKAL_INVITE_FROM", "noreply@\$_SERVER[SERVER_NAME]"); +define("BAIKAL_INVITE_FROM", "noreply@$_SERVER[SERVER_NAME]"); # WebDAV authentication type; default Digest define("BAIKAL_DAV_AUTH_TYPE", "Digest");