Mantis needs the new user to click on a link received in a mail. As per company policy, the sendmail (or any other) application can not be active on server. How do I allow users to register without a valid e-mail?
Is there anyway I can run an update query and change the password directly in the database and hand it over to the user?
Create the user normally via
http://path/to/mantis/manage_user_create_page.php(using an existing admin account)Open a command prompt and log into MySQL (
mysql -u root -p)use bugtracker;(where bugtracker is the name of the mantis bd; default = bugtracker)update mantis_user_table set password=md5('password') where username='username';The whole cmd exchange looks like this: