[exim] send message from acl to postmaster

Page principale
Supprimer ce message
Répondre à ce message
Auteur: misler
Date:  
À: exim-users
Sujet: [exim] send message from acl to postmaster

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.