# original create by legion (a.lepore@email.it)
#
# thanks xergio for IP show php script :>
+#
+# Fixed by Axel Gembe <derago@gmail.com> to use ifconfig.co/ip
+# because the original server did not work anymore.
use strict;
use Irssi;
require LWP::UserAgent;
use HTTP::Request::Common;
-$VERSION = '1.2';
+$VERSION = '1.3';
%IRSSI = (
- authors => 'xlony',
+ authors => 'xlony, Axel Gembe',
contact => 'anderfdez@yahoo.es',
name => 'IPupdate',
description => 'Auto "/set dcc_own_ip IP" on connect.',
license => 'GPL',
- changed => 'Tue Jan 3 18:33:56 CET 2006',
+ changed => '2017-11-08',
);
sub ipset {
my $user = LWP::UserAgent->new(timeout => 30);
- my $get = GET "http://stuff.xergio.net/ip.php";
+ my $get = GET "http://ifconfig.co/ip";
my $req = $user->request($get);
my $out = $req->content();
- $out =~ s/.*IP real: ([0-9][0-9]?[0-9]?\.[0-9][0-9]?[0-9]?\.[0-9][0-9]?[0-9]?\.[0-9][0-9]?[0-9]?).*/$1/s;
Irssi::print("%9IP update%_:", MSGLEVEL_CRAP);
Irssi::command("set dcc_own_ip $out");