diff --git a/plugins/url b/plugins/url new file mode 100644 index 0000000..463f66e --- /dev/null +++ b/plugins/url @@ -0,0 +1,10 @@ +#!perl + +sub command { + my ($self, $cart, $command) = @_; + if ($command =~ m[^https?://]) { + print "This is not a browser..."; + return ACCEPT; + } + return NEXT; +}