revbank/plugins/url
2021-07-28 01:21:48 +02:00

10 lines
187 B
Perl

#!perl
sub command {
my ($self, $cart, $command) = @_;
if ($command =~ m[^https?://]) {
print "This is not a browser...";
return ACCEPT;
}
return NEXT;
}