Mail::MtPolicyd::Client(3pm) | User Contributed Perl Documentation | Mail::MtPolicyd::Client(3pm) |
Mail::MtPolicyd::Client - a policyd client class
version 2.05
Client class to query a policyd server.
use Mail::MtPolicyd::Client; use Mail::MtPolicyd::Client::Request; my $client = Mail::MtPolicyd::Client->new( host => 'localhost:12345', keepalive => 1, ); my $request = Mail::MtPolicyd::Client::Request->new( 'client_address' => '192.168.0.1', ); my $response = $client->request( $request ); print $response->as_string;
If defined this socket will be used instead of a tcp connection.
Markus Benning <ich@markusbenning.de>
This software is Copyright (c) 2014 by Markus Benning <ich@markusbenning.de>.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
2022-10-15 | perl v5.34.0 |