From 1fe6bacbc275e96881aa27c939f6f2b37fac7925 Mon Sep 17 00:00:00 2001 From: ChaoticByte Date: Wed, 11 Oct 2023 23:46:11 +0200 Subject: [PATCH] Fixed faulty email sender address in the initial config and the readme --- README.md | 2 +- datastore.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 287c969..ca05210 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Example: } ], "smtp": { - "from": "WID Notifier \u003cfrom@example.org\u003e", + "from": "from@example.org", "host": "example.org", "port": 587, "user": "from@example.org", diff --git a/datastore.go b/datastore.go index 8f9c888..243b631 100644 --- a/datastore.go +++ b/datastore.go @@ -26,7 +26,7 @@ func NewConfig() Config { PersistentDataFilePath: "data", Recipients: []Recipient{}, SmtpConfiguration: SmtpSettings{ - From: "WID Notifier ", + From: "from@example.org", User: "from@example.org", Password: "SiEhAbEnMiChInSgEsIcHtGeFiLmTdAsDüRfEnSiEnIcHt", ServerHost: "example.org",