From 17bd2dc4dbb3b43b1917c942100834c1341f2194 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 13 May 2019 16:04:01 -0400 Subject: Populate "From" header from config for new emails --- config/accounts.conf | 2 ++ config/config.go | 3 +++ 2 files changed, 5 insertions(+) (limited to 'config') diff --git a/config/accounts.conf b/config/accounts.conf index 03846db..96c5e2b 100644 --- a/config/accounts.conf +++ b/config/accounts.conf @@ -8,10 +8,12 @@ # [Personal] # source=imaps://username[:password]@hostname[:port] # outgoing=smtps+plain://username[:password]@hostname[:port] +# from=Joe Bloe # # [Work] # source=imaps://username[:password]@hostname[:port] # outgoing=/usr/bin/sendmail +# from=Jane Plain # folders=INBOX,Sent,Archives # default=Archives # 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 } -- cgit v1.2.3