I'm trying to write a plugin that uses hook_helo_parse but am not having
any success. Some debugging shows my function gets called, it returns a
CODE ref, but the ref'd sub never gets called here's a simple example:
sub hook_helo_parse {
my $self = shift;
my $ref = \&parser;
$self->qp-
For various reasons I'd like to run my async server with doing reverse dns.
I noticed that while forkserver has a --no-rdns option, async does not.
I tried to crudely hack this by just commenting the ParaDNS part in
start_conversation. That didn't work. Played with it some more but no luck.
T