aboutsummaryrefslogtreecommitdiff
path: root/pkg/config
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-02 18:51:37 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-02 18:51:37 +0200
commit477241a2c2356c61b7317246040aee50d2a7a81d (patch)
tree56a040ab9c938d71455366ade90d1c5443440d32 /pkg/config
parentc05a640571b57bd63e67867f9d8122c4e2d1d183 (diff)
downloadfeed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.gz
feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.bz2
feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.zip
WIP: Message-Ids
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/config.go5
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"
ref='/portato.git/commit/portato/gui/windows/plugin.py?h=0.14&id=a32293a8bbb0a90512d4f8e0fbc385257b29e72a&follow=1'>Should show dependencies nowRené 'Necoro' Neumann2-82/+128 2008-07-03New plugin system - first hackRené 'Necoro' Neumann2-420/+683 2008-06-30Now the new design is able to do the same as the old oneRené 'Necoro' Neumann3-168/+182 2008-06-30First draft of the new plugin windowRené 'Necoro' Neumann1-8/+172 2008-06-30Added stuff to plugin.pyRené 'Necoro' Neumann1-2/+24 2008-06-25Now load 22 versions when running the correct portageRené 'Necoro' Neumann4-8/+18 2008-06-25Added Package_22 and System_22René 'Necoro' Neumann4-5/+63