diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf.in | 6 | ||||
-rw-r--r-- | config/config.go | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/config/aerc.conf.in b/config/aerc.conf.in index 9f45883f..87f7e563 100644 --- a/config/aerc.conf.in +++ b/config/aerc.conf.in @@ -194,6 +194,12 @@ header-layout=To|From,Subject # ignored. address-book-cmd= +# +# Allow to address yourself when replying +# +# Default: true +reply-to-self=true + [filters] # # Filters allow you to pipe an email body through a shell command to render diff --git a/config/config.go b/config/config.go index e2acbaf3..8d818c26 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{ |