1

Topic: cluebringer login

- iRedMail version (check /etc/iredmail-release): 0.9.2
- Linux/BSD distribution name and version: CentOS 7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
- Manage mail accounts with iRedAdmin-Pro? N
- Related log if you're reporting an issue: Unknown
====

I am unable to log in to https://iredmail.mydomain.org/cluebringer/
with the provided password and username at setup
* Web UI:
        - URL: httpS://iredmail.mydomain.org/cluebringer/
        - Username: postmaster@mydomain.org
        - Password: mypassword

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: cluebringer login

I fixed this myself. I set the admin password to an MD5 password without the {MD5} prefix. I found the answer in the iredmail history.

1) # openssl passwd -1 mypassword
    output> encryptedmypassword
2) # mysql -u root -p
3) mysql> use vmail;
4) mysql> update mailbox set password='encryptedmypassword' where username='myuser@mydomain.org';