From 4044070d762e50f3fd9d076b2ccb0cb223aa1c35 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 11 Nov 2015 13:27:41 -0800 Subject: [PATCH] Add -app prefix for all app sources so that this doesn't conflict with some user. --- src/addons.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addons.js b/src/addons.js index 26df7a991..958434c7e 100644 --- a/src/addons.js +++ b/src/addons.js @@ -391,7 +391,7 @@ function setupSendMail(app, options, callback) { var env = [ 'MAIL_SMTP_SERVER=mail', 'MAIL_SMTP_PORT=2500', // if you change this, change the mail container - 'MAIL_SMTP_USERNAME=' + (app.location || app.id), // use app.id for bare domains + 'MAIL_SMTP_USERNAME=' + (app.location || app.id) + '-app', // use app.id for bare domains 'MAIL_DOMAIN=' + config.fqdn() ];