diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 12096baf..3ae26c12 100644 --- a/config/config.go +++ b/config/config.go @@ -75,6 +75,7 @@ type AccountConfig struct { Default string Postpone string From string + Aliases string Name string Source string SourceCredCmd string @@ -202,6 +203,8 @@ func loadAccountConfig(path string) ([]AccountConfig, error) { account.OutgoingCredCmd = val } else if key == "from" { account.From = val + } else if key == "aliases" { + account.Aliases = val } else if key == "copy-to" { account.CopyTo = val } else if key == "archive" { |