1f7ece38f2
Track hooks as array and hash. Re-revert changes to logging plugins to use new-style hooking. logging/adaptive assumed that register() has been called before hook_logging. git-svn-id: https://svn.perl.org/qpsmtpd/trunk@491 958fd67b-6ff1-0310-b445-bb7760255be9
8 lines
112 B
Perl
8 lines
112 B
Perl
#!/usr/bin/perl
|
|
# this is a simple 'drop packets on the floor' plugin
|
|
|
|
sub hook_logging {
|
|
return DECLINED;
|
|
}
|
|
|