From 348a4042882f0ad2111e4062a485628b7650153d Mon Sep 17 00:00:00 2001 From: Blallo Date: Wed, 29 Apr 2020 10:15:57 +0200 Subject: [PATCH] Add example config --- examples/sendmail.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/sendmail.toml diff --git a/examples/sendmail.toml b/examples/sendmail.toml new file mode 100644 index 0000000..98b9da3 --- /dev/null +++ b/examples/sendmail.toml @@ -0,0 +1,16 @@ +[default] + from = "my.default@example.com" + + [default.server] + address = "mail.example.com" + port = 587 + user = "my.default@example.com" + password = "correcthorsebatterystaple" + +[other-account] + from = "my.other@mailprovider.org" + + [ai.server] + address = "smtp.mailprovider.org" + port = 587 + user = "my.correct.username@mailprovider.org"