From: Michael M Slusarz Date: Tue, 7 Jul 2009 22:31:16 +0000 (-0600) Subject: Indicate reply/fwd data has been added to outgoing mimp message X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=34fa390636f578449d28ad74a90fa7ea83621297;p=horde.git Indicate reply/fwd data has been added to outgoing mimp message --- diff --git a/imp/compose-mimp.php b/imp/compose-mimp.php index 6b0d6ca9d..6faee1e5e 100644 --- a/imp/compose-mimp.php +++ b/imp/compose-mimp.php @@ -116,6 +116,8 @@ case 'rl': $actions = array('r' => 'reply', 'ra' => 'reply_all', 'rl' => 'reply_list'); $reply_msg = $imp_compose->replyMessage($actions[$actionID], $imp_contents, Horde_Util::getFormData('to')); $header = $reply_msg['headers']; + + $notification->push(_("Reply text will be automatically appended to your outgoing message."), 'horde.message'); break; // 'f' = forward @@ -125,6 +127,8 @@ case 'f': } $fwd_msg = $imp_compose->forwardMessage($imp_contents); $header = $fwd_msg['headers']; + + $notification->push(_("Forwarded message will be automatically added to your outgoing message."), 'horde.message'); break; case _("Redirect"):