On Wed, 13 May 2015, holman wrote: > I have tried toggling the active status on/off but that does not work. > Can I fix this in the database directly?
Toggling status seems to work well for me using maint-1.1 branch. On the database level, you can check the value of the column `note` of the `user` table. A value of 1 means the account is activated, a value of 0 means it is inactivated. For example, to list statuses of all accounts: $ echo "select id,email,note from user" | dbexec For example, to make user ID=2 inactive: $ echo "update user set note=0 where id=2" | dbexec You should well see the active/inactive status flipped in the WebAccess Admin interface, menu Manage Accounts: https://example.org/admin/webaccess/webaccessadmin.py/modifyaccounts Best regards -- Tibor Simko

