From db00accb574190d1d33d7c57e2677781a015b301 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 11 Jul 2022 11:11:37 +0200 Subject: config: allow per-account address-book-cmd When using multiple accounts, the contacts may be different. Allow using specific address book commands per account. Signed-off-by: Robin Jarry Acked-by: Moritz Poldrack --- config/aerc.conf | 2 ++ config/config.go | 3 +++ 2 files changed, 5 insertions(+) (limited to 'config') diff --git a/config/aerc.conf b/config/aerc.conf index 2906381..6c89f85 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -263,6 +263,8 @@ header-layout=To|From,Subject # the first field. Only the email address field is required. The second field, # if present, will be treated as the contact name. Additional fields are # ignored. +# +# This parameter can also be set per account in accounts.conf. address-book-cmd= # diff --git a/config/config.go b/config/config.go index e0c8608..ebdee5e 100644 --- a/config/config.go +++ b/config/config.go @@ -112,6 +112,7 @@ type AccountConfig struct { SignatureCmd string EnableFoldersSort bool `ini:"enable-folders-sort"` FoldersSort []string `ini:"folders-sort" delim:","` + AddressBookCmd string `ini:"address-book-cmd"` // CheckMail CheckMail time.Duration `ini:"check-mail"` @@ -279,6 +280,8 @@ func loadAccountConfig(path string) ([]AccountConfig, error) { account.PgpAutoSign, _ = strconv.ParseBool(val) } else if key == "pgp-opportunistic-encrypt" { account.PgpOpportunisticEncrypt, _ = strconv.ParseBool(val) + } else if key == "address-book-cmd" { + account.AddressBookCmd = val } else if key != "name" { account.Params[key] = val } -- cgit v1.2.3