1

Topic: Destination address for throttle quota messages

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release):
- Deployed with iRedMail Easy or the downloadable installer?
- Linux/BSD distribution name and version:
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySql
- Web server (Apache or Nginx):
- Manage mail accounts with iRedAdmin-Pro? Yes
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====
Hi,
Im trying to determine how iredmail chooses the address to send notices to for 'throttle quota exceeded'. I think it's to root@localhost or postmaster and then being aliased but I just can't see that deep. The other noise from the server I want to keep away from people, but these throttle quota messages I would like to seperately route to my support staff so they are aware. So I guess the question is, how are these addresses determined?

----

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

2

Re: Destination address for throttle quota messages

It's sent to `root` (`root@<hostname>`) by default:
https://bitbucket.org/zhb/iredapd/src/d … #lines-616

You can change it by adding parameter `NOTIFICATION_RECIPIENTS` in /opt/iredapd/settings.py with a list of email addresses like this:

NOTIFICATION_RECIPIENTS = ['user@domain.com', 'user2@domain2.com']

Please restart "iredapd" service after this change.