56ee8641ec
ident/geoip - lookup country of host ident/p0f - use p0f to get type of source machine git-svn-id: https://svn.perl.org/qpsmtpd/trunk@289 958fd67b-6ff1-0310-b445-bb7760255be9
37 lines
757 B
Perl
37 lines
757 B
Perl
# -*- perl -*-
|
|
|
|
=pod
|
|
|
|
This plugin uses MaxMind's GeoIP service and the Geo::IP perl module to
|
|
do a lookup on incoming connections and record the country of origin.
|
|
|
|
Thats all it does.
|
|
|
|
It logs the country to the connection notes 'geoip_country'. Another
|
|
plugin can use that value to do things to the connection, like reject,
|
|
or greylist.
|
|
|
|
=cut
|
|
|
|
use Geo::IP;
|
|
|
|
my $geoip = Geo::IP->new(GEOIP_STANDARD);
|
|
|
|
|
|
sub register {
|
|
my ($self, $qp) = @_;
|
|
$self->register_hook("connect", "lookup_geoip");
|
|
}
|
|
|
|
sub lookup_geoip {
|
|
my ($self) = @_;
|
|
|
|
my $country =
|
|
$geoip->country_code_by_addr( $self->qp->connection->remote_ip );
|
|
|
|
$self->qp->connection->notes('geoip_country', $country);
|
|
$self->log(LOGNOTICE, "GeoIP Country: $country");
|
|
|
|
return DECLINED;
|
|
}
|