From 77c76ba46296f57f88c591a420e929a059a55d3e Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 15 Mar 2019 21:33:08 -0400 Subject: Implement default in accounts.conf --- config/config.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index 867c6fa..537626f 100644 --- a/config/config.go +++ b/config/config.go @@ -22,6 +22,7 @@ type UIConfig struct { } type AccountConfig struct { + Default string Name string Source string Folders []string @@ -63,14 +64,16 @@ func loadAccountConfig(path string) ([]AccountConfig, error) { continue } sec := file.Section(_sec) - account := AccountConfig{Name: _sec} + account := AccountConfig{ + Default: "INBOX", + Name: _sec, + Params: make(map[string]string), + } if err = sec.MapTo(&account); err != nil { return nil, err } for key, val := range sec.KeysHash() { - if key == "source" { - account.Source = val - } else if key == "folders" { + if key == "folders" { account.Folders = strings.Split(val, ",") } else if key != "name" { account.Params[key] = val -- cgit v1.2.3