diff options
Diffstat (limited to 'pkg/config/config.go')
-rw-r--r-- | pkg/config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index e98a1aa..31012a1 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -22,6 +22,7 @@ type GlobalOptions struct { Target Url `yaml:"target"` Parts []string `yaml:"parts"` MaxFailures int `yaml:"max-failures"` + AutoTarget bool `yaml:"auto-target"` } // Default global options @@ -31,6 +32,7 @@ var DefaultGlobalOptions = GlobalOptions{ DefaultEmail: username() + "@" + Hostname(), Target: Url{}, Parts: []string{"text", "html"}, + AutoTarget: true, } // Per feed options |