about summary refs log tree commit diff stats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go
index 12096ba..3ae26c1 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" {
d='n104' href='#n104'>104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131