1 (edited by BigAir_DevOps 2018-02-20 09:00:16)

Topic: Throttle on relay with user auth

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.6 PGSQL edition.
- Linux/BSD distribution name and version: Centos 7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): PGSQL
- 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.
====

From this thread

INSERT INTO throttle (account, kind, priority, period, msg_size, max_msgs, max_quota)
                VALUES ('@.',
                        'external',
                        10,
                        360,
                        10240000,
                        100,
                        4096000000);

I'd like to know if this will also impact emails sent from users who are sending authenticated mail from the same machine.

----

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

2

Re: Throttle on relay with user auth

There're 3 possible values for the "throttle.kind" column:

- inbound: email sent from other mail servers.
- outbound: emails sent by authenticated users.
- external: emails sent from other mail servers.

The difference between "inbound" and "external" is:

- throttle setting with 'kind=inbound' is set based on sender addresses which are your local users.
- 'kind=external' is set based on sender addresses which are NOT your local users.