Commit 81727a34 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added default email account to dummy accounts.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches@10006 b35dd754-fafc-0310-a699-88a17e54d16e
parent 243da7e1
...@@ -208,7 +208,7 @@ public class UserCreationPlugin implements Plugin { ...@@ -208,7 +208,7 @@ public class UserCreationPlugin implements Plugin {
for (int i = from; i < from + total; i++) { for (int i = from; i < from + total; i++) {
try { try {
String username = userPrefix + i; String username = userPrefix + i;
userManager.createUser(username, username, username, null); userManager.createUser(username, username, username, username + "@" + username);
created++; created++;
} catch (UserAlreadyExistsException e) { } catch (UserAlreadyExistsException e) {
// Ignore // Ignore
...@@ -362,3 +362,4 @@ public class UserCreationPlugin implements Plugin { ...@@ -362,3 +362,4 @@ public class UserCreationPlugin implements Plugin {
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment