aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go
index 88986e3..79d1810 100644
--- a/config/config.go
+++ b/config/config.go
@@ -30,6 +30,7 @@ const (
type AccountConfig struct {
Default string
+ From string
Name string
Source string
Folders []string
@@ -108,6 +109,8 @@ func loadAccountConfig(path string) ([]AccountConfig, error) {
account.Folders = strings.Split(val, ",")
} else if key == "outgoing" {
account.Outgoing = val
+ } else if key == "from" {
+ account.From = val
} else if key != "name" {
account.Params[key] = val
}