gnu-social/plugins/EmailRegistration
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
doc-src show the welcome page on registration completion 2011-04-18 06:32:32 -04:00
forms Add Registration form hook points by XRevan86 2019-04-26 00:59:38 +01:00
locale [VersionBump] 2.0.0beta0 2021-07-18 12:49:17 +01:00
mail-src source for registration email confirmation 2011-05-04 12:25:34 -07:00
scripts [SCRIPTS] Set PUBLICDIR in plugin scripts as well 2021-07-16 19:44:35 +01:00
EmailRegistrationPlugin.php [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 2021-07-16 19:44:36 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

README

The EmailRegistration plugin allows user registration with just an email
address.

When users register, the part before '@' in their email address will become
their nickname/username (normalized). In case of collisions, a auto-increment
number will be added to the username.

For example, if someone registers with "user@example.org", their username
will be "user". If someone else registers with "user@example.net", their
username will be user1, and so on.

Installation
============
add "addPlugin('EmailRegistration');"
to the bottom of your config.php

Note: This plugin is enabled by default on private instances.

Settings
========
none

Example
=======
addPlugin('EmailRegistration');