aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup/config/config_appservice.go16
1 files changed, 15 insertions, 1 deletions
diff --git a/setup/config/config_appservice.go b/setup/config/config_appservice.go
index ff328771..9b89fc9a 100644
--- a/setup/config/config_appservice.go
+++ b/setup/config/config_appservice.go
@@ -187,7 +187,7 @@ func loadAppServices(config *AppServiceAPI, derived *Derived) error {
}
// Load the config data into our struct
- if err = yaml.UnmarshalStrict(configData, &appservice); err != nil {
+ if err = yaml.Unmarshal(configData, &appservice); err != nil {
return err
}
@@ -315,6 +315,20 @@ func checkErrors(config *AppServiceAPI, derived *Derived) (err error) {
}
}
+ // Check required fields
+ if appservice.ID == "" {
+ return ConfigErrors([]string{"Application service ID is required"})
+ }
+ if appservice.ASToken == "" {
+ return ConfigErrors([]string{"Application service Token is required"})
+ }
+ if appservice.HSToken == "" {
+ return ConfigErrors([]string{"Homeserver Token is required"})
+ }
+ if appservice.SenderLocalpart == "" {
+ return ConfigErrors([]string{"Sender Localpart is required"})
+ }
+
// Check if the url has trailing /'s. If so, remove them
appservice.URL = strings.TrimRight(appservice.URL, "/")