> I’ll need to build a mail relay which is able to count how many emails are > send > by an sasl sender per month.
> 5000 mails per month for this one, 3000 for another one, etc… > Is there a way with postfix to do this ? > I need addon or internal functions can do this ? cat /var/log/mail.log | grep (...) | wc -l This is not postfix but simple unix stuff... Also there is some policyd deamon that maybe able to do this... Xavier