1

Topic: reset admin passwd for cluebringer

==== Required information ====
- iRedMail version: last version
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): mysql
- Linux/BSD distribution name and version: debian 7
- Related log if you're reporting an issue: cluebringer
====

how can I reset password for cluebringer  for head administrator?

----

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

2

Re: reset admin passwd for cluebringer

Only global admin can login to Cluebringer web ui, so just change admin's password with iRedAdmin.

3

Re: reset admin passwd for cluebringer

I created new global admin in iRedAdmin,but i can´t log in cluebringer web ui.
I can log in into iRedAdmin only.

4

Re: reset admin passwd for cluebringer

Could you please paste content of file /etc/apache2/conf.d/cluebringer.conf? (Remove password in this file before pasting)

5

Re: reset admin passwd for cluebringer

<Directory /usr/share/postfix-cluebringer-webui/webui/>
    DirectoryIndex index.php
    Options ExecCGI
    Order allow,deny
    #allow from 127.0.0.1
    allow from all

    AuthType basic
    AuthName "Authorization Required"
    AuthMYSQL on
    AuthBasicAuthoritative Off
    AuthUserFile /dev/null

    # Database related.
    AuthMySQL_Password_Table mailbox
    Auth_MySQL_Username_Field username
    Auth_MySQL_Password_Field password

    # Password related.
    AuthMySQL_Empty_Passwords off
    AuthMySQL_Encryption_Types Crypt_MD5
    Auth_MySQL_Authoritative On

    Require valid-user
</Directory>

6

Re: reset admin passwd for cluebringer

Could you please turn on verbose log in MySQL to see which SQL command it executes while authenticating? For example, in /etc/mysql/my.cnf:

[mysqld]
general_log = 1                                                                                                   
general_log_file = /tmp/mysql.log

Restart MySQL service and check /tmp/mysql.log.