1

Topic: logs of specific domain admin

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release):  1.4.2
- Deployed with iRedMail Easy or the downloadable installer? downloadable installer
- Linux/BSD distribution name and version: ubuntu 20.04
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):  MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? Yes
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

hello dears
have a nice day ,

I have more than 10 domain and Iam global admin , and each domain have local admin , one of admin delete user , how can find logs for this activity , data , time  ,etc ..


BR

----

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

2

Re: logs of specific domain admin

eng.husamit wrote:

I have more than 10 domain and Iam global admin , and each domain have local admin , one of admin delete user , how can find logs for this activity , data , time  ,etc ..

Login to iRedAdmin-Pro, click "Activities -> Admin Logs".

3

Re: logs of specific domain admin

Thanks alot ,, I found it smile

4

Re: logs of specific domain admin

eng.husamit wrote:

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release):  1.4.2
- Deployed with iRedMail Easy or the downloadable installer? downloadable installer
- Linux/BSD distribution name and version: ubuntu 20.04
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):  MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? Yes
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

hello dears
have a nice day ,

I have more than 10 domain and Iam global admin , and each domain have local admin , one of admin delete user , how can find logs for this activity , data , time  ,etc ..


BR

You can go after specific events in (like deleition of specific user) via SQL to get more filters than the UI exposes.

select * from iredadmin.log where event = 'delete' and msg like 'Delete user: me@mydomain.com.'; -- note trailing period
+----+---------------------+-----------------------------+--------------+--------------+----------+--------+----------+-------------------------------+
| id | timestamp           | admin                       | ip           | domain       | username | event  | loglevel | msg                           |
+----+---------------------+-----------------------------+--------------+--------------+----------+--------+----------+-------------------------------+
| 10 | 2021-12-13 02:29:42 | postmaster@mydomain.com | 68.191.135.38 | mydomain.com |          | delete | info     | Delete user: me@mydomain.com. |
+----+---------------------+-----------------------------+--------------+--------------+----------+--------+----------+-------------------------------+