> On Dec 14, 2017, at 7:31 AM, Emanuel <emanuel.gonza...@donweb.com> wrote: > > I currently allow to send 100 recipients per email but I would like to create > an exception so that an IP can send to 1000 recipients, is it possible?
It is not entirely clear from the description whether this is about incoming or outgoing email. Please be more specific. If inbound, the simplest approach is a separate smtpd(8) master.cf entry (either a separate IP address or a separate port) for the clients that need a different limit. Perhaps these are submission clients, in which case they should use port 587. You can add the override in master.cf: <ip:port|port> inet ... smtpd -o smtpd_recipient_limit=1000 -- Viktor.