diff --git a/plugins/adduser_note b/plugins/adduser_note new file mode 100644 index 0000000..a162990 --- /dev/null +++ b/plugins/adduser_note @@ -0,0 +1,12 @@ +sub command($self, $cart, $command, @) { + if ($command eq 'adduser') { + print <<'END'; +NOTE: This system is insecure by design. Other users can see your transactions, +or pay using your account. We trust each other not to abuse this power. + +END + + } + return NEXT; +} +