qpsmtpd/plugins/logging/devnull
Matt Simerson b00f4c7793 initial import - based on my qpsmtpd fork
which will merge into the main branch fairly easily
2012-06-22 05:38:01 -04:00

8 lines
106 B
Perl

#!perl -w
# this is a simple 'drop packets on the floor' plugin
sub hook_logging {
return DECLINED;
}