From ff51625513ca45da78ac11b47fc528a280ecb2f7 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 16 May 2019 16:40:06 -0400 Subject: [PATCH] Revert "s/aerc.conf/address.conf/ in permission check" This reverts commit 66ba099ca0bfa83cd050050d92663ec45da20141. --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 9148af4..33623d5 100644 --- a/config/config.go +++ b/config/config.go @@ -143,7 +143,7 @@ func LoadConfig(root *string) (*AercConfig, error) { _root := path.Join(xdg.ConfigHome(), "aerc") root = &_root } - filename := path.Join(*root, "accounts.conf") + filename := path.Join(*root, "aerc.conf") if err := checkConfigPerms(filename); err != nil { return nil, err }