1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/postfwd/templates/postfwd.cf.j2
Kristian Klausen 6c2b1fbabf
postfwd: Disable the email limits for gitlab
Since Gitlab causes high email traffic, apply the same rule as for the
aur by adding the sasl_username for gitlab to the no limits list.

Fix #564
2024-01-27 20:48:06 +01:00

42 lines
1.3 KiB
Django/Jinja

# lower rate limit for certain authenticated users
&&SASL_WHITELIST {
# other servers relay via mail.archlinux.org using authentication. username is the
# hostname part of the fqdn
{% for host in groups['all'] %}
sasl_username={{ hostvars[host].inventory_hostname_short }}
{% endfor %}
# add other usernames to bypass rate-limits here:
sasl_username=devnull;
};
# no rate-limit for some authenticated users
&&NO_RATE_LIMIT_USERS {
sasl_username=gitlab
sasl_username=aur;
};
id=NoRateLimit;
protocol_state==END-OF-MESSAGE;
&&NO_RATE_LIMIT_USERS;
action=dunno;
# lower rate limit for certain users (360/3600 == average 1 email every 10 seconds)
id=SaslWhitelist;
protocol_state==END-OF-MESSAGE;
&&SASL_WHITELIST;
action=rcpt(sasl_username/360/3600/REJECT You can only send to 360 recipients per 1h per user)
id=SaslWhitelist2;
protocol_state==END-OF-MESSAGE;
&&SASL_WHITELIST;
action=dunno;
# sasl_username != doesn't work for whatever reason
id=RcptRate;
protocol_state==END-OF-MESSAGE;
sasl_username!~/^$/;
action=rcpt(sasl_username/100/21600/REJECT You can only send to 100 recipients per 6h per user)
# this causes postfwd to log something for every mail; easier testing
id=logging;
protocol_state==END-OF-MESSAGE;
action=dunno;