diff --git a/lib/Qpsmtpd/Plugin.pm b/lib/Qpsmtpd/Plugin.pm new file mode 100644 index 0000000..a15b286 --- /dev/null +++ b/lib/Qpsmtpd/Plugin.pm @@ -0,0 +1,17 @@ +package Qpsmtpd::Plugin; +use strict; + +sub new { + my $proto = shift; + my $class = ref($proto) || $proto; + bless ({}, $class); +} + + + +sub register_hook { + warn "REGISTER HOOK!"; +} + + +1;