| Can I limit the size of the To,CC, or BCC? |
 |
 |
 |
zonwering
Not in stock qmail. Search for tarpit on qmail.org. Alternatively, if you have the QMAILQUEUE patch applied, install qmail-qfilter and add a filter:
marc.theaimsgroup.com
#!/usr/bin/perl
exit 31 if (split(/\n/, $ENV{QMAILRCPTS}) > 100);
print or exit 53 while(<>);
close(STDOUT) or exit 53;

|