From 3ca6db357d583f76c59df69a6fe6e46e3d9a3858 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Wed, 20 Sep 2023 20:12:42 +0200 Subject: [PATCH] New plugin: adduser_note --- plugins/adduser_note | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plugins/adduser_note 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; +} +