From d9ea83d90826d09ea1061369782489f6fd36c1a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= Date: Sat, 31 Mar 2018 16:36:47 +0200 Subject: [PATCH] Update Production-guide.md (#585) --- Running-Mastodon/Production-guide.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Running-Mastodon/Production-guide.md b/Running-Mastodon/Production-guide.md index cf524c7d..3f2a778b 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -504,15 +504,17 @@ It may be easier to use a subdomain to setup your email with a custom provider - Once you create your account, follow the instructions each provider gives you for updating your DNS records. Once you have all the information ready to go and the service validates your DNS configuration, edit your config file. These records should already exist in the configuration, but here's a sample setup that uses Mailgun that you can replace with your own personal info: +``` SMTP_SERVER=smtp.mailgun.org SMTP_PORT=587 SMTP_LOGIN=anAccountThatIsntPostmaster@mstdn.domain.com SMTP_PASSWORD=HolySnacksAPassword SMTP_FROM_ADDRESS=Domain.com Mastodon Admin +``` Finally, to test this, spin up a Rails console (see [the administration guide](https://github.com/tootsuite/documentation/blob/master/Running-Mastodon/Administration-guide.md)) and run the following commands to test this out: -``` +```ruby m = UserMailer.new.mail to:'email@address.com', subject: 'test', body: 'awoo' m.deliver ```