diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 0b7be374baf10feb6b6e44ff0ce2d55b7d7d782b..54b443b8658f41850e2e3660e1261eed91e81bbc 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -255,10 +255,21 @@
       <key>Value</key>
       <boolean>1</boolean>
     </map>
+    <key>RLVaShowRedirectChatTyping</key>
+    <map>
+      <key>Comment</key>
+      <string>Sends typing start messages (and optionally plays the typing animation) when @redirchat restricted</string>
+      <key>Persist</key>
+      <integer>1</integer>
+      <key>Type</key>
+      <string>Boolean</string>
+      <key>Value</key>
+      <boolean>0</boolean>
+    </map>
     <key>RLVaSplitRedirectChat</key>
     <map>
       <key>Comment</key>
-      <string>Splits long nearby chat lines across multiple messages when @redir* restricted.</string>
+      <string>Splits long nearby chat lines across multiple messages when @redir* restricted</string>
       <key>Persist</key>
       <integer>1</integer>
       <key>Type</key>
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index 3c493604a725d1a629815937c805fcd96463fe13..66da75c6d83f9e67dcd3ec416cf9a9ea2f36466e 100644
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -1992,6 +1992,13 @@ BOOL LLAgent::needsRenderHead()
 //-----------------------------------------------------------------------------
 void LLAgent::startTyping()
 {
+// [RLVa:KB] - @redirchat
+	if (!RlvActions::canSendTypingStart())
+	{
+		return;
+	}
+// [/RLVa:KB]
+
 	mTypingTimer.reset();
 
 	if (getRenderState() & AGENT_STATE_TYPING)
diff --git a/indra/newview/llchatbar.cpp b/indra/newview/llchatbar.cpp
index e19f1bd15c5944848448e07b67a25d1d647f701d..501c6c119d283bc3903fe5da51cb13416b4dc3f4 100644
--- a/indra/newview/llchatbar.cpp
+++ b/indra/newview/llchatbar.cpp
@@ -479,11 +479,7 @@ void LLChatBar::onInputEditorKeystroke( LLLineEditor* caller, void* userdata )
 
 	S32 length = raw_text.length();
 
-//	if( (length > 0) && (raw_text[0] != '/') )  // forward slash is used for escape (eg. emote) sequences
-// [RLVa:KB] - Checked: 2010-03-26 (RLVa-1.2.0b) | Modified: RLVa-1.0.0d
-	// RELEASE-RLVa: [SL-2.0.0] This entire class appears to be dead/non-functional?
-	if ( (length > 0) && (raw_text[0] != '/') && (!RlvActions::hasBehaviour(RLV_BHVR_REDIRCHAT)) )
-// [/RLVa:KB]
+	if( (length > 0) && (raw_text[0] != '/') )  // forward slash is used for escape (eg. emote) sequences
 	{
 		gAgent.startTyping();
 	}
diff --git a/indra/newview/llfloaterimnearbychat.cpp b/indra/newview/llfloaterimnearbychat.cpp
index 269172f282afe882eff6da4f76ec0654c72a1b67..655276af0bf3e40093efe8a7b2860b8fcd32e00a 100644
--- a/indra/newview/llfloaterimnearbychat.cpp
+++ b/indra/newview/llfloaterimnearbychat.cpp
@@ -476,10 +476,7 @@ void LLFloaterIMNearbyChat::onChatBoxKeystroke()
 
 	S32 length = raw_text.length();
 
-//	if( (length > 0) && (raw_text[0] != '/') )  // forward slash is used for escape (eg. emote) sequences
-// [RLVa:KB] - Checked: 2010-03-26 (RLVa-1.2.0b) | Modified: RLVa-1.0.0d
-	if ( (length > 0) && (raw_text[0] != '/') && (!RlvActions::hasBehaviour(RLV_BHVR_REDIRCHAT)) )
-// [/RLVa:KB]
+	if( (length > 0) && (raw_text[0] != '/') )  // forward slash is used for escape (eg. emote) sequences
 	{
 		gAgent.startTyping();
 	}
diff --git a/indra/newview/rlvactions.cpp b/indra/newview/rlvactions.cpp
index b2fa52b5bb704da90d88c30c702824d11e14d2d3..e96fdbcf601c7486fa01ccf3dc445d73f5544529 100644
--- a/indra/newview/rlvactions.cpp
+++ b/indra/newview/rlvactions.cpp
@@ -188,6 +188,15 @@ bool RlvActions::canSendIM(const LLUUID& idRecipient)
 		  ( (!gRlvHandler.hasBehaviour(RLV_BHVR_SENDIMTO)) || (!gRlvHandler.isException(RLV_BHVR_SENDIMTO, idRecipient)) ) );
 }
 
+// Handles: @redirchat
+bool RlvActions::canSendTypingStart()
+{
+	// The CHAT_TYPE_START indicator can be sent if:
+	//   - nearby chat isn't being redirected
+	//   - the user specifically indicated that they want to show typing under @redirchat
+	return !RlvHandler::instance().hasBehaviour(RLV_BHVR_REDIRCHAT) || gSavedSettings.get<bool>(RLV_SETTING_SHOWREDIRECTCHATTYPING);
+}
+
 bool RlvActions::canStartIM(const LLUUID& idRecipient, bool fIgnoreOpen)
 {
 	// User can start an IM session with "recipient" (could be an agent or a group) if:
diff --git a/indra/newview/rlvactions.h b/indra/newview/rlvactions.h
index dbb88c5abd4fd9280a2c7fcc49b0e9f6f6e5fe03..a6a52199330d3a05f0ca3b8f869c318e79c96fd3 100644
--- a/indra/newview/rlvactions.h
+++ b/indra/newview/rlvactions.h
@@ -107,6 +107,11 @@ class RlvActions
 	 */
 	static bool canSendIM(const LLUUID& idRecipient);
 
+	/*
+	 * Returns true if the viewer can inform the region about the user's (nearby chat) typing
+	 */
+	static bool canSendTypingStart();
+
 	/*
 	 * Returns true if the user is allowed to start a - P2P or group - conversation with the specified UUID (or if the session already exists, unless 'ignore open' is specified)
 	 */
diff --git a/indra/newview/rlvdefines.h b/indra/newview/rlvdefines.h
index 5410f0e7c07f5c4821f95053aebf7fed1944191e..827a2d74c788cc72252eeb59ea4ed860c997f4b6 100644
--- a/indra/newview/rlvdefines.h
+++ b/indra/newview/rlvdefines.h
@@ -382,6 +382,7 @@ enum ERlvAttachGroupType
 #define RLV_SETTING_HIDELOCKEDATTACH	"RLVaHideLockedAttachments"
 #define RLV_SETTING_HIDELOCKEDINVENTORY	"RLVaHideLockedInventory"
 #define RLV_SETTING_LOGINLASTLOCATION	"RLVaLoginLastLocation"
+#define RLV_SETTING_SHOWREDIRECTCHATTYPING "RLVaShowRedirectChatTyping"
 #define RLV_SETTING_SHAREDINVAUTORENAME	"RLVaSharedInvAutoRename"
 #define RLV_SETTING_SHOWASSERTIONFAIL	"RLVaShowAssertionFailures"
 #define RLV_SETTING_SPLITREDIRECTCHAT   "RLVaSplitRedirectChat"
diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml
index 10e88f1f7d079cb29157dbe93e5bb91caa58c066..9bd07bdcebff4c57639f3cb387e926e419f7e0ec 100644
--- a/indra/newview/skins/default/xui/en/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/en/menu_viewer.xml
@@ -1657,6 +1657,16 @@
       	 function="ToggleControl"
       	 parameter="RestrainedLoveShowEllipsis" />
       </menu_item_check>
+      <menu_item_check
+       label="Show Redirected Chat Typing"
+       name="Show Redirected Chat Typing">
+        <menu_item_check.on_check
+      	 function="CheckControl"
+      	 parameter="RLVaShowRedirectChatTyping" />
+        <menu_item_check.on_click
+      	 function="ToggleControl"
+      	 parameter="RLVaShowRedirectChatTyping" />
+      </menu_item_check>
       <menu_item_check
        label="Split Long Redirected Chat"
        name="Split Long Redirected Chat">