From cb7d7a043892e9911491c3acc32a36b61d891ea7 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 10 Nov 2019 11:00:21 -0500 Subject: Add some defaults for template options --- config/config.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'config') diff --git a/config/config.go b/config/config.go index f46af09..32d07fc 100644 --- a/config/config.go +++ b/config/config.go @@ -319,7 +319,9 @@ func (config *AercConfig) LoadConfig(file *ini.File) error { return err } templateDirs := templatesSec.Key("template-dirs").String() - config.Templates.TemplateDirs = strings.Split(templateDirs, ":") + if templateDirs != "" { + config.Templates.TemplateDirs = strings.Split(templateDirs, ":") + } for key, val := range templatesSec.KeysHash() { if key == "template-dirs" { continue @@ -404,6 +406,12 @@ func LoadConfigFromFile(root *string, sharedir string) (*AercConfig, error) { {"Subject"}, }, }, + + Templates: TemplateConfig{ + TemplateDirs: []string{path.Join(sharedir, "templates")}, + QuotedReply: "quoted_reply", + Forwards: "forward_as_body", + }, } // These bindings are not configurable config.Bindings.AccountWizard.ExKey = KeyStroke{ -- cgit v1.2.3