POE::Component::Server::Postfix - Postfix (MTA) server toolkit


POE-Component-Server-Postfix documentation  | view source Contained in the POE-Component-Server-Postfix distribution.

Index


VERSION

Top

version 0.001

SYNOPSIS

Top

  my $server = POE::Component::Server::Postfix->new(
    path => '/tmp/server', # unix socket OR

    port => 9999,          # tcp socket (not both)
    host => '127.0.0.1',   # default is 0.0.0.0

    filter => 'Plain',     # POE::Filter::Postfix::*

    handler => sub {
      my ($server, $attr) = @_;
      return { action => 'DUNNO' };
    },
  );
  POE::Kernel->run;

AUTHOR

Top

  Hans Dieter Pearcey <hdp@cpan.org>

COPYRIGHT AND LICENSE

Top


POE-Component-Server-Postfix documentation  | view source Contained in the POE-Component-Server-Postfix distribution.