From 8a93ae4f18e7e590750ad76c38f8dfb79223cdfd Mon Sep 17 00:00:00 2001 From: Tom McAtee Date: Fri, 17 Feb 2017 14:45:31 +1030 Subject: [PATCH] Added SMTP_FROM_ADDRESS to heroku deploy config Allows the user to set the address mastodon emails are maraked as being sent from --- app.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app.json b/app.json index c0579d33e..c5016f695 100644 --- a/app.json +++ b/app.json @@ -71,6 +71,10 @@ "SMTP_DOMAIN": { "description": "Domain for SMTP server. Will default to instance domain if blank.", "required": false + }, + "SMTP_FROM_ADDRESS": { + "description": "Address to send emails from", + "required": false } }, "buildpacks": [ @@ -88,4 +92,4 @@ "heroku-postgresql", "heroku-redis" ] -} \ No newline at end of file +}