diff options
author | Tom McAtee <a1608768@student.adelaide.edu.au> | 2017-02-17 14:45:31 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-17 14:45:31 +1030 |
commit | 8a93ae4f18e7e590750ad76c38f8dfb79223cdfd (patch) | |
tree | 7491293b49353d5a67c1adc5ceda6e4b27b4bb8f | |
parent | 63b3cb37db530d6b160618598a6e9a9e6b0eb9ab (diff) |
Added SMTP_FROM_ADDRESS to heroku deploy config
Allows the user to set the address mastodon emails are maraked as being sent from
-rw-r--r-- | app.json | 6 |
1 files changed, 5 insertions, 1 deletions
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 +} |