aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go13
1 files changed, 8 insertions, 5 deletions
diff --git a/config/config.go b/config/config.go
index a63b7e8..88986e3 100644
--- a/config/config.go
+++ b/config/config.go
@@ -29,11 +29,12 @@ const (
)
type AccountConfig struct {
- Default string
- Name string
- Source string
- Folders []string
- Params map[string]string
+ Default string
+ Name string
+ Source string
+ Folders []string
+ Params map[string]string
+ Outgoing string
}
type BindingConfig struct {
@@ -105,6 +106,8 @@ func loadAccountConfig(path string) ([]AccountConfig, error) {
for key, val := range sec.KeysHash() {
if key == "folders" {
account.Folders = strings.Split(val, ",")
+ } else if key == "outgoing" {
+ account.Outgoing = val
} else if key != "name" {
account.Params[key] = val
}