From 3e2759a5e0eef3aa2b59ab1241e47a64e8ca5fa2 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Tue, 29 Apr 2008 20:22:48 +0000 Subject: [PATCH] new f and F commands for forwarding messages --- content/mail.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/mail.js b/content/mail.js index e29d5017..c4fdba18 100644 --- a/content/mail.js +++ b/content/mail.js @@ -153,6 +153,14 @@ liberator.Mail = function () "Reply to sender", function () { goDoCommand("cmd_reply"); }); + liberator.mappings.add(modes, ["f"], + "Forward message", + function () { goDoCommand("cmd_forward"); }); + + liberator.mappings.add(modes, ["F"], + "Forward message inline", + function () { goDoCommand("cmd_forwardInline"); }); + liberator.mappings.add(modes, ["gm"], "Get new messages", function () { liberator.mail.getNewMessages(); });