I have a ratelimit in the data acl:

acl_check_data:

# Log all senders' rates
warn
  ratelimit = 0 / 1h / strict
  log_message = Sender rate $sender_rate / $sender_rate_period

# Slow down fast senders; note the need to truncate $sender_rate
# at the decimal point.
deny
  ratelimit = 100 / 1h / strict
  delay     = ${eval: ${sg{$sender_rate}{[.].*}{}} - \ $sender_rate_limit }s
  message   = You are not allowed to send more than 1000 messages in 1 hour.
Try again later.

# Keep users under control
deny
  ratelimit   = 200 / 1d / strict
  message   = You are not allowed to send more than 200 messages in 1 day.
Try again tomorrow.
  "send email to our and remote postmaster"

---------------------------------------

At the end, when someone tries to send more than 200 messages in 1 day we
would like to send an email to our and to the remote postmaster, but we
don't know how.

Are there any suggestions, please help?

Regards
Matthias Isler
-- 
View this message in context: 
http://www.nabble.com/send-message-from-acl-to-postmaster-tf2257697.html#a6262531
Sent from the Exim Users forum at Nabble.com.


-- 
## List details at http://www.exim.org/mailman/listinfo/exim-users 
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://www.exim.org/eximwiki/

Reply via email to