gnu-social/plugins/RequireValidatedEmail
Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0
Updated composer and translations

composer install --no-dev
composer dump-autoload --optimize
git add vendor/ --force
make updatepo
2021-07-18 12:49:17 +01:00
..
actions Various obvious bug fixes and better PHP 7 support 2019-04-26 00:34:17 +01:00
locale [VersionBump] 2.0.0beta0 2021-07-18 12:49:17 +01:00
scripts [SCRIPTS] Set PUBLICDIR in plugin scripts as well 2021-07-16 19:44:35 +01:00
README.md [RequireValidatedEmail] Only check current user posts 2021-07-16 19:44:40 +01:00
RequireValidatedEmailPlugin.php [RequireValidatedEmail] Only check current user posts 2021-07-16 19:44:40 +01:00

README.md

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 validation equirement to existing accounts, you can specify a date users registered before which are exempted from validation.

    addPlugin('RequireValidatedEmail', [
        'exemptBefore' => '2009-12-07',
    ]);

You can also exclude the validation checks from OpenID accounts connected to a trusted provider, by providing a list of regular expressions to match their provider URLs.

For example, to trust WikiHow and Wikipedia users:

    addPlugin('RequireValidatedEmailPlugin', [
        'trustedOpenIDs' => [
            '!^https?://\w+\.wikihow\.com/!',
            '!^https?://\w+\.wikipedia\.org/!',
        ],
    ]);

Todo:

  • add a more visible indicator that validation is still outstanding
  • test with XMPP, API posting