diff --git a/config/global.ini.php b/config/global.ini.php
index 14d8bbaf8bfc68d3c1f1429a687b09299e78211c..8cbc6b95f362857b520d6bfdc1e64eb62327e205 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -521,6 +521,7 @@ Plugins[]		= PrivacyManager
 Plugins[]		= ImageGraph
 Plugins[]		= DoNotTrack
 Plugins[]		= Annotations
+Plugins[]		= MobileMessaging
 
 [PluginsInstalled]
 PluginsInstalled[] = Login
diff --git a/core/Updates/1.10-b4.php b/core/Updates/1.10-b4.php
new file mode 100755
index 0000000000000000000000000000000000000000..50c692ac674fef87c5b86c2c4edfc5b527ba09ac
--- /dev/null
+++ b/core/Updates/1.10-b4.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ * @version $Id$
+ *
+ * @category Piwik
+ * @package Updates
+ */
+
+/**
+ * @package Updates
+ */
+class Piwik_Updates_1_10_b4 extends Piwik_Updates
+{
+	static function isMajorUpdate()
+	{
+		return false;
+	}
+	
+	static function update()
+	{
+		try
+		{
+			Piwik_PluginsManager::getInstance()->activatePlugin('MobileMessaging');
+		}
+		catch(Exception $e)
+		{
+			// pass
+		}
+	}
+}
\ No newline at end of file