diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 02:06:56 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 02:06:56 +0200 |
commit | ff4f709486a69bc1650db73a003255e58cae0532 (patch) | |
tree | 66f9c0008e11f36e7ed8b50858577a4308ea10f0 /pkg/config/config.go | |
parent | b44a7b8307f2928039f0da8205518818fb4247b1 (diff) | |
download | feed2imap-go-ff4f709486a69bc1650db73a003255e58cae0532.tar.gz feed2imap-go-ff4f709486a69bc1650db73a003255e58cae0532.tar.bz2 feed2imap-go-ff4f709486a69bc1650db73a003255e58cae0532.zip |
Embedding images in mail
Diffstat (limited to '')
-rw-r--r-- | pkg/config/config.go | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index ffb53b7..d1cd4c9 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -37,22 +37,24 @@ var DefaultGlobalOptions = GlobalOptions{ // Per feed options // NB: Always specify a yaml name, as it is later used in processing type Options struct { - MinFreq int `yaml:"min-frequency"` - InclImages bool `yaml:"include-images"` - Disable bool `yaml:"disable"` - IgnHash bool `yaml:"ignore-hash"` - AlwaysNew bool `yaml:"always-new"` - NoTLS bool `yaml:"tls-no-verify"` + MinFreq int `yaml:"min-frequency"` + InclImages bool `yaml:"include-images"` + EmbedImages bool `yaml:"embed-images"` + Disable bool `yaml:"disable"` + IgnHash bool `yaml:"ignore-hash"` + AlwaysNew bool `yaml:"always-new"` + NoTLS bool `yaml:"tls-no-verify"` } // Default feed options var DefaultFeedOptions = Options{ - MinFreq: 1, - InclImages: false, - IgnHash: false, - AlwaysNew: false, - Disable: false, - NoTLS: false, + MinFreq: 1, + InclImages: true, + EmbedImages: false, + IgnHash: false, + AlwaysNew: false, + Disable: false, + NoTLS: false, } // Config holds the global configuration options and the configured feeds |