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 8926fcd..736acbf 100644
--- a/config/config.go
+++ b/config/config.go
@@ -29,6 +29,7 @@ const (
)
type AccountConfig struct {
+ CopyTo string
Default string
From string
Name string
@@ -118,6 +119,8 @@ func loadAccountConfig(path string) ([]AccountConfig, error) {
account.Outgoing = val
} else if key == "from" {
account.From = val
+ } else if key == "copy-to" {
+ account.CopyTo = val
} else if key != "name" {
account.Params[key] = val
}