diff --git a/src/user.js b/src/user.js index 47d185c0f..9661ab602 100644 --- a/src/user.js +++ b/src/user.js @@ -168,7 +168,7 @@ function createUser(username, password, email, displayName, admin, invitor, send callback(null, user); - // do not send email for admins (this can only be the case for the owner) + // WARNING do not send email for admins (this can only be the case for the owner, the first user creation during activation) if (!admin) mailer.userAdded(user); if (sendInvite) mailer.sendInvite(user, invitor); });