Skip to content

unredacted/mod_register_web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation


labels:

  • 'Stage-Alpha' summary: A web interface to register user accounts ...

Introduction

There are various reasons to prefer web registration instead of "in-band" account registration over XMPP. For example the lack of CAPTCHA support in clients and servers.

Details

mod_register_web has Prosody serve a web page where users can sign up for an account. It implements reCaptcha to prevent automated sign-ups (from bots, etc.).

Configuration

The module is served on Prosody's default HTTP ports at the path /register_web. More details on configuring HTTP modules in Prosody can be found in our HTTP documentation.

To configure the CAPTCHA you need to supply a 'captcha_options' option:

    captcha_options = {
      recaptcha_private_key = "12345";
      recaptcha_public_key = "78901";
    }

The keys for reCaptcha are available in your reCaptcha account, visit recaptcha.net for more info.

If no reCaptcha options are set, a simple built in captcha is used.

Customization

Copy the files in mod_register_web/templates/ to a new directory. Edit them, and set register_web_template = "/path/to/your/custom-templates" in your config file.

Compatibility


0.10 Works 0.9 Works 0.8 Doesn't work


Todo

Different CAPTCHA implementation support

Collection of additional data, such as email address

The module kept simple!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published