From 9497c12286fe6bbcdd2cdd201d9758a78e24dd53 Mon Sep 17 00:00:00 2001 From: grueneedv Date: Fri, 27 Oct 2017 12:14:51 +0200 Subject: [PATCH] Update autoconfig.settings.sample.php When reduced to a single domain PHP will error because of unexpected ] in line 19 and the base file is annoyed at line 15 of the missing array. $cfg->domains = array( 'example.com', 'example.net', 'example.org' ); and $cfg->domains = array( 'example.com' ); are valid arrays. Thx for the Project, works like a charm. --- src/autoconfig.settings.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autoconfig.settings.sample.php b/src/autoconfig.settings.sample.php index 90e4b10..89fc83b 100644 --- a/src/autoconfig.settings.sample.php +++ b/src/autoconfig.settings.sample.php @@ -16,7 +16,7 @@ $cfg->nameShort = 'Example'; // Domains for which these settings apply, in lowercase. -$cfg->domains = [ 'example.com', 'example.net', 'example.org' ]; +$cfg->domains = array( 'example.com', 'example.net', 'example.org' ); // This is the username associated with the email address. If some kind of lookup // needs to occur to map the email address to a username, this can be done by