diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 18:51:37 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 18:51:37 +0200 |
commit | 477241a2c2356c61b7317246040aee50d2a7a81d (patch) | |
tree | 56a040ab9c938d71455366ade90d1c5443440d32 /pkg/config/config.go | |
parent | c05a640571b57bd63e67867f9d8122c4e2d1d183 (diff) | |
download | feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.gz feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.bz2 feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.zip |
WIP: Message-Ids
Diffstat (limited to 'pkg/config/config.go')
-rw-r--r-- | pkg/config/config.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index dfd3d0e..993cd71 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -29,7 +29,7 @@ type GlobalOptions struct { var DefaultGlobalOptions = GlobalOptions{ Timeout: 30, MaxFailures: 10, - DefaultEmail: username() + "@" + hostname(), + DefaultEmail: username() + "@" + Hostname(), Target: "", Parts: []string{"text", "html"}, } @@ -120,7 +120,8 @@ func Load(path string) (*Config, error) { return cfg, nil } -func hostname() (hostname string) { +// Hostname returns the current hostname, or 'localhost' if it cannot be determined +func Hostname() (hostname string) { hostname, err := os.Hostname() if err != nil { hostname = "localhost" |