> > 1. when I set *auth.settings.create_user_groups = False*, I suspect that > 'auth_group' table is not created at all after calling > 'auth.define_tables()'. Because if I do a 'auth.add_group(...)' after > 'auth.define_tables()' in a model file, web2py will throw error saying that > 'auth_group' table does not exist when trying to do the insert. However, if > I leave *auth.settings.create_user_groups = True *(by default), no such > error is thrown. If this is the case, I wonder why. Surely, I would still > want the table 'auth_group' created even if I don't want a new group > created for each new user. >
I can't reproduce this problem with a fresh app using SQLite. Can you show the exact code you're using? > > 2. according to the manual, if we set > *auth.settings.registration_requires_verification > = True*, then an email will be sent to the user when she registers. I set > it True, but nothing is sent after a user is registered. > Have you configured the mailer with your mail account credentials and confirmed that it works? Anthony >

