Omeka has problem in sending out the activation email once a new user is added.
Omeka team will solve this problem in the next release.
Here is just a TEMPORARY workaround.
in file: /application/controller/UsersController.php line 122.
After
=====================================
try {
if($user->saveForm($_POST)) {
=====================================
Add:
$user->email = $_POST['email'];
so that the email attribute will get populated. But again, it is a temporary workaround.
Jackey @ GSU