| 1 |
|
| 2 |
The shared email module overrides the 'user' module's validation,
|
| 3 |
that prevents the same email address being used by more than one user.
|
| 4 |
|
| 5 |
Works for both registration and account updates.
|
| 6 |
|
| 7 |
Displays a warning to the user that they are using a shared email.
|
| 8 |
|
| 9 |
Based on http://drupal.org/node/15578#comment-249157
|
| 10 |
|
| 11 |
All this module does is modify the email address before it is validated by the user module.
|
| 12 |
|
| 13 |
Because it only changes the edit value rather than the form value,
|
| 14 |
the validation will pass but the original unchanged email is still stored properly.
|
| 15 |
|
| 16 |
Installation
|
| 17 |
* Enable the module in /admin/build/modules
|
| 18 |
* Check permissions in /admin/user/access#module-sharedemail
|
| 19 |
* By default the warning text will not be displayed unless the 'show warning text' is selected for the users role
|