diff --git a/config/global.ini.php b/config/global.ini.php
index 477a4b9f01dfe5163457083ec4a574fb1e983413..92f7664f0d7eb62e9c0e2f387048602910d6e75d 100755
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -67,6 +67,10 @@ always_archive_data = false
 ; This setting is used only for today's statistics.
 time_before_archive_considered_outdated = 600
 
+; When loading piwik interface, we redirect the user to 'yesterday' statistics by default
+; Possible values: yesterday, today, or any YYYY-MM-DD
+default_day = yesterday
+
 ; character used to automatically create categories in the "Action" "Downloads" reports
 ; for example a URL like "example.com/blog/development/first-post" will create 
 ; the page first-post in the subcategory development which belongs to the blog category
diff --git a/misc/testJavascriptTracker/index.php b/misc/testJavascriptTracker/index.php
index 0a09a4c0e082d51a18467519d06a1bf45d4021cc..a3e3f7dc41dca026000f52c4c7d9049c2a37f54e 100644
--- a/misc/testJavascriptTracker/index.php
+++ b/misc/testJavascriptTracker/index.php
@@ -12,6 +12,7 @@ And test the tracker by clicking all the links below, with several browsers...<b
 <br />
 </div>
 
+<a href="mailto:test@test.com"> mailto test@test.com</a> <br />
 <a href="http://www.yahoo.fr"> yahoo france website</a> <br />
 <a href="http://www.yahoo.fr/index?test=test2&p_______=idugiduagi8*&*$&%(*^"> yahoo france website</a> <br />
 <a href="http://www.google.com"> google world website </a> <br />
diff --git a/piwik.js b/piwik.js
index 18a7f0d0540214ccb7f2c70b59661ae46d7b114d..5314d7827db27f8b525213efef47fa225717b66b 100644
--- a/piwik.js
+++ b/piwik.js
@@ -2,7 +2,7 @@
 // Copyleft 2007, All rights reversed.
 var _pk_use_title_as_name = 0;
 var _pk_install_tracker = 1;
-var _pk_tracker_pause = 250;
+var _pk_tracker_pause = 500;
 var _pk_download_extensions = "7z|aac|avi|csv|doc|exe|flv|gif|gz|jpe?g|js|mp(3|4|e?g)|mov|pdf|phps|png|ppt|rar|sit|tar|torrent|txt|wma|wmv|xls|xml|zip";
 
 // Beginning script
diff --git a/plugins/Actions/Actions.php b/plugins/Actions/Actions.php
index bcd7af45a95341ce1d9aef3a1834aa9b9f86c163..d2524014c66fdb2cf897ab1324e99adf848a6930 100644
--- a/plugins/Actions/Actions.php
+++ b/plugins/Actions/Actions.php
@@ -219,7 +219,8 @@ class Piwik_Actions extends Piwik_Plugin
 	{
 		$isUrl = false; 
 		// case the name is an URL we dont clean the name the same way
-		if(Piwik_Common::isLookLikeUrl($name))
+		if(Piwik_Common::isLookLikeUrl($name)
+			|| preg_match('#^mailto:#',$name))
 		{
 			$split = self::splitUrl($name);
 			$isUrl = true;
diff --git a/plugins/Dashboard/Controller.php b/plugins/Dashboard/Controller.php
index 1a7b89c48179fac4c0a0d68c144d049e25d1951b..3f9cd1a6ada726ede17cc72798f873bdb28548a9 100644
--- a/plugins/Dashboard/Controller.php
+++ b/plugins/Dashboard/Controller.php
@@ -20,25 +20,6 @@ require_once "ViewDataTable.php";
  */
 class Piwik_Dashboard_Controller extends Piwik_Controller
 {
-	function __construct()
-	{
-		parent::__construct();
-		
-		//TODO: copy paste of Home controller => should be refactored
-		//in a 'master' controller for statistics (tracs #91)
-		$this->strDate = Piwik_Common::getRequestVar('date', 'yesterday','string');
-		
-		// the date looks like YYYY-MM-DD we can build it
-		try{
-			$this->date = Piwik_Date::factory($this->strDate);
-			$this->strDate = $this->date->toString();
-		} catch(Exception $e){
-		// the date looks like YYYY-MM-DD,YYYY-MM-DD or other format
-			// case the date looks like a range
-			$this->date = null;
-		}
-	}
-	
 	function getListWidgets()
 	{
 		$widgets = Piwik_GetListWidgets();
diff --git a/plugins/Home/Controller.php b/plugins/Home/Controller.php
index 0ed36d4ea697dacef82e0711108de3abd843c365..dd9b4e487f494ef299a06a90105c768d8471c7e4 100644
--- a/plugins/Home/Controller.php
+++ b/plugins/Home/Controller.php
@@ -29,8 +29,9 @@ class Piwik_Home_Controller extends Piwik_Controller
 		$sitesId = Piwik_SitesManager_API::getSitesIdWithAtLeastViewAccess();
 		if(!empty($sitesId))
 		{
+			$defaultDate = Zend_Registry::get('config')->General->default_day;
 			$firstSiteId = $sitesId[0];
-			header("Location:index.php?module=Home&action=index&idSite=$firstSiteId&period=day&date=yesterday");
+			header("Location:index.php?module=Home&action=index&idSite=$firstSiteId&period=day&date=$defaultDate");
 		}
 		else
 		{