From 27122ef8e885f6824afd395c0c0b7b4f19f71b21 Mon Sep 17 00:00:00 2001 From: "john1doe@ya.ru" Date: Mon, 31 Jan 2022 16:28:58 +0200 Subject: compose: add option to never include your own address when replying Introduce an option in aerc.conf to disable the auto-including of your own address when replying to your own emails (address replies to the original To: and Cc: instead); default to true (allow the auto-including) --- config/config.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config/config.go') diff --git a/config/config.go b/config/config.go index e2acbaf..8d818c2 100644 --- a/config/config.go +++ b/config/config.go @@ -123,6 +123,7 @@ type ComposeConfig struct { Editor string `ini:"editor"` HeaderLayout [][]string `ini:"-"` AddressBookCmd string `ini:"address-book-cmd"` + ReplyToSelf bool `ini:"reply-to-self"` } type FilterConfig struct { @@ -595,6 +596,7 @@ func LoadConfigFromFile(root *string, sharedir string, logger *log.Logger) (*Aer {"To", "From"}, {"Subject"}, }, + ReplyToSelf: true, }, Templates: TemplateConfig{ -- cgit v1.2.3