diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-04 23:35:16 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-04 23:35:16 +0200 |
commit | d563ce2feb94029d3dd518830790573077f84b16 (patch) | |
tree | 46ff93854fd755329df4a0d113876737dd95ff9d /pkg/config | |
parent | 6cf3f77c79ff916f50098ff20718bb60b01ae67e (diff) | |
download | feed2imap-go-d563ce2feb94029d3dd518830790573077f84b16.tar.gz feed2imap-go-d563ce2feb94029d3dd518830790573077f84b16.tar.bz2 feed2imap-go-d563ce2feb94029d3dd518830790573077f84b16.zip |
Min frequency should be 0 by default
Diffstat (limited to 'pkg/config')
-rw-r--r-- | pkg/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index 8d97a56..8e2aff6 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -50,7 +50,7 @@ type Options struct { // Default feed options var DefaultFeedOptions = Options{ Body: "default", - MinFreq: 1, + MinFreq: 0, InclImages: true, EmbedImages: false, IgnHash: false, |