diff --git a/lib/private/helper.php b/lib/private/helper.php
index 90ef704c3cca94b4e89b9e5ad579599163d18dfb..58bee9c6300e26e2706b7dec7849ae9c341d6b45 100644
--- a/lib/private/helper.php
+++ b/lib/private/helper.php
@@ -182,6 +182,7 @@ class OC_Helper {
 			'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
 			'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
 			'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
+			'application/msaccess' => 'database',
 		);
 
 		if (isset($alias[$mimetype])) {
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php
index 1ad333b5084872643a515c4f310d7e3f1eb2bda7..40fb1d2d97d120a0cf4d043b12105d014c709772 100644
--- a/lib/private/mimetypes.list.php
+++ b/lib/private/mimetypes.list.php
@@ -24,6 +24,7 @@
  * Array mapping file extensions to mimetypes (in alphabetical order).
  */
 return array(
+	'accdb'=>'application/msaccess',
 	'ai' => 'application/illustrator',
 	'avi'=>'video/x-msvideo',
 	'bash' => 'text/x-shellscript',
@@ -60,6 +61,7 @@ return array(
 	'markdown' => 'text/markdown',
 	'mdown' => 'text/markdown',
 	'md' => 'text/markdown',
+	'mdb'=>'application/msaccess',
 	'mdwn' => 'text/markdown',
 	'mobi' => 'application/x-mobipocket-ebook',
 	'mov'=>'video/quicktime',