1

Topic: How actualize domain and account Panel

==== Provide required information to help troubleshoot and get quick answer ====
- iRedMail version: iRedAdmin-Pro-LDAP-1.6.3
- Linux/BSD distribution name and version: CentOS 6.0
- Any related log? Log is helpful for troubleshooting.
====

After delete some olds email for the users (+30 days --> find /correo/vmail1/ -type f -mtime +31 -name "1*" -exec rm {} \;) the iRedAdmin-Pro "Domains and Accounts" panel don't actualice % of quota and the mailbox of the users were close 100% don't admits any mail more.

What have i to do to actualice the panel and the mailbox can admit new mails

Thanks

----

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

2

Re: How actualize domain and account Panel

Delete related records in MySQL database "iredadmin", table "used_quota" to force Dovecot re-calculate mailbox quota usage.

For example, force re-calculate mailbox quota usage for user 'user@domain.com':

mysql> USE iredadmin;
mysql> DELETE from used_quota WHERE username='user@domain.com';

P.S.
- For OpenLDAP backend, realtime mailbox quota usage is stored in MySQL database "iredadmin", table "used_quota".
- For MySQL backend, realtime mailbox quota usage is stored in MySQL database "vmail", table "used_quota".

3

Re: How actualize domain and account Panel

I forgot to say you i use ldap

4

Re: How actualize domain and account Panel

OK.

Thanks

5

Re: How actualize domain and account Panel

Did you get it solved?