https://github.com/trac-hacks/simpleregister
A simple Trac plugin that creates Register link
https://github.com/trac-hacks/simpleregister
trac-plugin
Last synced: 8 months ago
JSON representation
A simple Trac plugin that creates Register link
- Host: GitHub
- URL: https://github.com/trac-hacks/simpleregister
- Owner: trac-hacks
- License: mit
- Created: 2014-05-20T23:51:27.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-21T11:26:42.000Z (about 12 years ago)
- Last Synced: 2025-03-27T10:34:59.553Z (about 1 year ago)
- Topics: trac-plugin
- Language: Python
- Size: 133 KB
- Stars: 2
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
SimpleRegister
==============
A simple [Trac](http://trac.edgewall.org/) plugin that creates Register link containing an email to the administrator. This is an alternative to [AccountManagerPlugin](http://trac-hacks.org/wiki/AccountManagerPlugin) that allows to manually validate the registration and avoid SPAM. I am aware that the latest version of above plugin includes account validation feature, but it is still not stable enough for production use.
Build
=====
To build the plugin run
./setup.py bdist_egg
It should generate an egg file in dist/ directory which needs to be copied to Trac plugins/ directory.
Configure
=========
Add a new section in your conf/trac.ini specifying an email of a person responsible for account registration:
[simpleregister]
email = admin@yourdomain.com
To control the order in which the links appear, you can use metanav setting in trac section as follows:
[trac]
...
metanav = login, logout, register, prefs, help, about