blob: ccd94d271d2c6374cb91d17863ca6f3f9b567153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
This plugin disables posting for accounts that do not have a
validated email address.
Example:
addPlugin('RequireValidatedEmail');
If you don't want to apply the validationr equirement to existing
accounts, you can specify a cutoff date to grandfather in users
registered prior to that timestamp.
addPlugin('RequireValidatedEmail',
array('grandfatherCutoff' => 'Dec 7, 2009');
Todo:
* make email field required on registration form
* add a more visible indicator that validation is still outstanding
* localization for UI strings
* test with XMPP, API posting
|