Roundup Tracker - Issues

Issue 2550599

classification
Anonymous registration not working on Windows
Type: behavior Severity: major
Components: Web interface Versions: 1.4
process
Status: closed fixed
:
: : cmeerw, richard, ryanhaigh
Priority: : patch

Created on 2009-11-04 23:03 by ryanhaigh, last changed 2009-12-07 00:18 by richard.

Files
File name Uploaded Description Edit Remove
schema.py ryanhaigh, 2009-11-04 23:03
roundup-register.diff cmeerw, 2009-11-09 08:27 patch for documentation and mailgw
Messages
msg3903 Author: [hidden] (ryanhaigh) Date: 2009-11-04 23:03
Roundup is working well and I am currently trying to customize a few
things but one issue I have yet to resolve is allowing anonymous users
to register new accounts through the web interface. Currently they
receive the message "You do not have permission to create user" after
completing the registration form. I have attached my schema.py file
where I tried adding the create user permission for anonymous users.

Roundup (roundup-1.4.10.win32) is installed with python 2.6
(+pywin32-214.win32-py2.6) on windows server 2008.

Relevant section of config.ini:
# Register new users instantly, or require confirmation via
# email?
# Allowed values: yes, no
# Default: no
instant_registration = yes

# Offer registration confirmation by email or only through the web?
# Allowed values: yes, no
# Default: yes
email_registration_confirmation = yes
msg3904 Author: [hidden] (cmeerw) Date: 2009-11-09 08:27
A separate "Register" permission for registering new users has been 
introduced which needs to be added to schema.py (instead of the 
"Create" permission for anonymous users), but this currently isn't 
mentioned in the "Upgrading" documentation - also see http://
permalink.gmane.org/gmane.comp.bug-tracking.roundup.user/9720

I have attached a patch that adds the missing information to the 
"Upgrading" documentation and also fixes the mailgw to align to the new 
"Register" permission.
msg3923 Author: [hidden] (richard) Date: 2009-12-07 00:18
Applied doc/mailgw patch and fixed some additional doc.
History
Date User Action Args
2009-12-07 00:18:45richardsetstatus: new -> closed
resolution: fixed
messages: + msg3923
nosy: + richard
2009-11-09 08:27:13cmeerwsetfiles: + roundup-register.diff
keywords: + patch
messages: + msg3904
nosy: + cmeerw
2009-11-04 23:03:54ryanhaighcreate