455 lines
17 KiB
SQL
455 lines
17 KiB
SQL
-- MySQL dump 10.14 Distrib 5.5.68-MariaDB, for Linux (x86_64)
|
|
--
|
|
-- Host: localhost Database: roundcubemail
|
|
-- ------------------------------------------------------
|
|
-- Server version 5.5.68-MariaDB
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Table structure for table `cache`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cache`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cache` (
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`cache_key` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`expires` datetime DEFAULT NULL,
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`user_id`,`cache_key`),
|
|
KEY `expires_index` (`expires`),
|
|
CONSTRAINT `user_id_fk_cache` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `cache`
|
|
--
|
|
|
|
LOCK TABLES `cache` WRITE;
|
|
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `cache_index`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cache_index`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cache_index` (
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`expires` datetime DEFAULT NULL,
|
|
`valid` tinyint(1) NOT NULL DEFAULT '0',
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`user_id`,`mailbox`),
|
|
KEY `expires_index` (`expires`),
|
|
CONSTRAINT `user_id_fk_cache_index` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `cache_index`
|
|
--
|
|
|
|
LOCK TABLES `cache_index` WRITE;
|
|
/*!40000 ALTER TABLE `cache_index` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `cache_index` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `cache_messages`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cache_messages`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cache_messages` (
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`uid` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`expires` datetime DEFAULT NULL,
|
|
`data` longtext NOT NULL,
|
|
`flags` int(11) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`user_id`,`mailbox`,`uid`),
|
|
KEY `expires_index` (`expires`),
|
|
CONSTRAINT `user_id_fk_cache_messages` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `cache_messages`
|
|
--
|
|
|
|
LOCK TABLES `cache_messages` WRITE;
|
|
/*!40000 ALTER TABLE `cache_messages` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `cache_messages` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `cache_shared`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cache_shared`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cache_shared` (
|
|
`cache_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`expires` datetime DEFAULT NULL,
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`cache_key`),
|
|
KEY `expires_index` (`expires`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `cache_shared`
|
|
--
|
|
|
|
LOCK TABLES `cache_shared` WRITE;
|
|
/*!40000 ALTER TABLE `cache_shared` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `cache_shared` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `cache_thread`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cache_thread`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `cache_thread` (
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`expires` datetime DEFAULT NULL,
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`user_id`,`mailbox`),
|
|
KEY `expires_index` (`expires`),
|
|
CONSTRAINT `user_id_fk_cache_thread` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `cache_thread`
|
|
--
|
|
|
|
LOCK TABLES `cache_thread` WRITE;
|
|
/*!40000 ALTER TABLE `cache_thread` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `cache_thread` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `contactgroupmembers`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `contactgroupmembers`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `contactgroupmembers` (
|
|
`contactgroup_id` int(10) unsigned NOT NULL,
|
|
`contact_id` int(10) unsigned NOT NULL,
|
|
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
PRIMARY KEY (`contactgroup_id`,`contact_id`),
|
|
KEY `contactgroupmembers_contact_index` (`contact_id`),
|
|
CONSTRAINT `contactgroup_id_fk_contactgroups` FOREIGN KEY (`contactgroup_id`) REFERENCES `contactgroups` (`contactgroup_id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
CONSTRAINT `contact_id_fk_contacts` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`contact_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `contactgroupmembers`
|
|
--
|
|
|
|
LOCK TABLES `contactgroupmembers` WRITE;
|
|
/*!40000 ALTER TABLE `contactgroupmembers` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `contactgroupmembers` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `contactgroups`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `contactgroups`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `contactgroups` (
|
|
`contactgroup_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
`del` tinyint(1) NOT NULL DEFAULT '0',
|
|
`name` varchar(128) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`contactgroup_id`),
|
|
KEY `contactgroups_user_index` (`user_id`,`del`),
|
|
CONSTRAINT `user_id_fk_contactgroups` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `contactgroups`
|
|
--
|
|
|
|
LOCK TABLES `contactgroups` WRITE;
|
|
/*!40000 ALTER TABLE `contactgroups` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `contactgroups` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `contacts`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `contacts`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `contacts` (
|
|
`contact_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
`del` tinyint(1) NOT NULL DEFAULT '0',
|
|
`name` varchar(128) NOT NULL DEFAULT '',
|
|
`email` text NOT NULL,
|
|
`firstname` varchar(128) NOT NULL DEFAULT '',
|
|
`surname` varchar(128) NOT NULL DEFAULT '',
|
|
`vcard` longtext,
|
|
`words` text,
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
PRIMARY KEY (`contact_id`),
|
|
KEY `user_contacts_index` (`user_id`,`del`),
|
|
CONSTRAINT `user_id_fk_contacts` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `contacts`
|
|
--
|
|
|
|
LOCK TABLES `contacts` WRITE;
|
|
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `dictionary`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `dictionary`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `dictionary` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int(10) unsigned DEFAULT NULL,
|
|
`language` varchar(5) NOT NULL,
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `uniqueness` (`user_id`,`language`),
|
|
CONSTRAINT `user_id_fk_dictionary` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `dictionary`
|
|
--
|
|
|
|
LOCK TABLES `dictionary` WRITE;
|
|
/*!40000 ALTER TABLE `dictionary` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `dictionary` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `filestore`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `filestore`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `filestore` (
|
|
`file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`context` varchar(32) NOT NULL,
|
|
`filename` varchar(128) NOT NULL,
|
|
`mtime` int(10) NOT NULL,
|
|
`data` longtext NOT NULL,
|
|
PRIMARY KEY (`file_id`),
|
|
UNIQUE KEY `uniqueness` (`user_id`,`context`,`filename`),
|
|
CONSTRAINT `user_id_fk_filestore` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `filestore`
|
|
--
|
|
|
|
LOCK TABLES `filestore` WRITE;
|
|
/*!40000 ALTER TABLE `filestore` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `filestore` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `identities`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `identities`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `identities` (
|
|
`identity_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
`del` tinyint(1) NOT NULL DEFAULT '0',
|
|
`standard` tinyint(1) NOT NULL DEFAULT '0',
|
|
`name` varchar(128) NOT NULL,
|
|
`organization` varchar(128) NOT NULL DEFAULT '',
|
|
`email` varchar(128) NOT NULL,
|
|
`reply-to` varchar(128) NOT NULL DEFAULT '',
|
|
`bcc` varchar(128) NOT NULL DEFAULT '',
|
|
`signature` longtext,
|
|
`html_signature` tinyint(1) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`identity_id`),
|
|
KEY `user_identities_index` (`user_id`,`del`),
|
|
KEY `email_identities_index` (`email`,`del`),
|
|
CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `identities`
|
|
--
|
|
|
|
LOCK TABLES `identities` WRITE;
|
|
/*!40000 ALTER TABLE `identities` DISABLE KEYS */;
|
|
INSERT INTO `identities` VALUES (4,4,'2021-05-05 20:03:05',0,1,'','','postmaster@example.com','','',NULL,0);
|
|
/*!40000 ALTER TABLE `identities` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `searches`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `searches`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `searches` (
|
|
`search_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int(10) unsigned NOT NULL,
|
|
`type` int(3) NOT NULL DEFAULT '0',
|
|
`name` varchar(128) NOT NULL,
|
|
`data` text,
|
|
PRIMARY KEY (`search_id`),
|
|
UNIQUE KEY `uniqueness` (`user_id`,`type`,`name`),
|
|
CONSTRAINT `user_id_fk_searches` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `searches`
|
|
--
|
|
|
|
LOCK TABLES `searches` WRITE;
|
|
/*!40000 ALTER TABLE `searches` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `searches` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `session`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `session`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `session` (
|
|
`sess_id` varchar(128) NOT NULL,
|
|
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
`ip` varchar(40) NOT NULL,
|
|
`vars` mediumtext NOT NULL,
|
|
PRIMARY KEY (`sess_id`),
|
|
KEY `changed_index` (`changed`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `session`
|
|
--
|
|
|
|
LOCK TABLES `session` WRITE;
|
|
/*!40000 ALTER TABLE `session` DISABLE KEYS */;
|
|
INSERT INTO `session` VALUES ('3i0cqbst1bnsjc2hsrtqe1m7su','2021-05-05 20:04:07','192.168.43.142','bGFuZ3VhZ2V8czo1OiJlbl9VUyI7aW1hcF9uYW1lc3BhY2V8YTo0OntzOjg6InBlcnNvbmFsIjthOjE6e2k6MDthOjI6e2k6MDtzOjA6IiI7aToxO3M6MToiLyI7fX1zOjU6Im90aGVyIjtOO3M6Njoic2hhcmVkIjtOO3M6MTA6InByZWZpeF9vdXQiO3M6MDoiIjt9aW1hcF9kZWxpbWl0ZXJ8czoxOiIvIjtpbWFwX2xpc3RfY29uZnxhOjI6e2k6MDtOO2k6MTthOjA6e319dXNlcl9pZHxzOjE6IjQiO3VzZXJuYW1lfHM6MjI6InBvc3RtYXN0ZXJAZXhhbXBsZS5jb20iO3N0b3JhZ2VfaG9zdHxzOjE0OiIxOTIuMTY4LjQzLjEyMSI7c3RvcmFnZV9wb3J0fGk6MTQzO3N0b3JhZ2Vfc3NsfE47cGFzc3dvcmR8czozMjoiMnV2RkgrODJRd0lONC8xZ2l6M0VIWFNmRGZPUjg0emUiO2xvZ2luX3RpbWV8aToxNjIwMjI1MTg1O3RpbWV6b25lfHM6MTI6IkFzaWEvS29sa2F0YSI7U1RPUkFHRV9TUEVDSUFMLVVTRXxiOjE7YXV0aF9zZWNyZXR8czoyNjoibzdmcmYyZk5Na01pRGo2WnpDVm9uVjlZdWoiO3JlcXVlc3RfdG9rZW58czozMjoiaFZGaUdGMWgzaEVTRkpjQ3pLbDZHbUhsTzBiN2xMSVoiO3Rhc2t8czo0OiJtYWlsIjtza2luX2NvbmZpZ3xhOjU6e3M6NjoibGF5b3V0IjtzOjEwOiJ3aWRlc2NyZWVuIjtzOjIyOiJqcXVlcnlfdWlfY29sb3JzX3RoZW1lIjtzOjk6ImJvb3RzdHJhcCI7czoxODoiZW1iZWRfY3NzX2xvY2F0aW9uIjtzOjE3OiIvc3R5bGVzL2VtYmVkLmNzcyI7czoxOToiZWRpdG9yX2Nzc19sb2NhdGlvbiI7czoxNzoiL3N0eWxlcy9lbWJlZC5jc3MiO3M6MjY6Im1lZGlhX2Jyb3dzZXJfY3NzX2xvY2F0aW9uIjtzOjQ6Im5vbmUiO31pbWFwX2hvc3R8czoxNDoiMTkyLjE2OC40My4xMjEiO21ib3h8czo1OiJJTkJPWCI7c29ydF9jb2x8czowOiIiO3NvcnRfb3JkZXJ8czo0OiJERVNDIjtTVE9SQUdFX1RIUkVBRHxhOjM6e2k6MDtzOjEwOiJSRUZFUkVOQ0VTIjtpOjE7czo0OiJSRUZTIjtpOjI7czoxNDoiT1JERVJFRFNVQkpFQ1QiO31TVE9SQUdFX1FVT1RBfGI6MTtTVE9SQUdFX0xJU1QtRVhURU5ERUR8YjoxO3F1b3RhX2Rpc3BsYXl8czo0OiJ0ZXh0IjtsaXN0X2F0dHJpYnxhOjY6e3M6NDoibmFtZSI7czo4OiJtZXNzYWdlcyI7czoyOiJpZCI7czoxMToibWVzc2FnZWxpc3QiO3M6NToiY2xhc3MiO3M6NDI6Imxpc3RpbmcgbWVzc2FnZWxpc3Qgc29ydGhlYWRlciBmaXhlZGhlYWRlciI7czoxNToiYXJpYS1sYWJlbGxlZGJ5IjtzOjIyOiJhcmlhLWxhYmVsLW1lc3NhZ2VsaXN0IjtzOjk6ImRhdGEtbGlzdCI7czoxMjoibWVzc2FnZV9saXN0IjtzOjE0OiJkYXRhLWxhYmVsLW1zZyI7czoxODoiVGhlIGxpc3QgaXMgZW1wdHkuIjt9cGFnZXxpOjE7dW5zZWVuX2NvdW50fGE6Mjp7czo1OiJJTkJPWCI7aTowO3M6NDoiU2VudCI7aTowO31icm93c2VyX2NhcHN8YTo0OntzOjM6InBkZiI7czoxOiIxIjtzOjU6ImZsYXNoIjtzOjE6IjAiO3M6NDoidGlmZiI7czoxOiIwIjtzOjQ6IndlYnAiO3M6MToiMSI7fXNhZmVfbWVzc2FnZXN8YToxOntzOjc6IklOQk9YOjYiO2I6MDt9d3JpdGVhYmxlX2Fib29rfGI6MTtmb2xkZXJzfGE6MTp7czo1OiJJTkJPWCI7YToyOntzOjM6ImNudCI7aTo2O3M6NjoibWF4dWlkIjtpOjY7fX1saXN0X21vZF9zZXF8czoyOiIxNSI7');
|
|
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `system`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `system`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `system` (
|
|
`name` varchar(64) NOT NULL,
|
|
`value` mediumtext,
|
|
PRIMARY KEY (`name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `system`
|
|
--
|
|
|
|
LOCK TABLES `system` WRITE;
|
|
/*!40000 ALTER TABLE `system` DISABLE KEYS */;
|
|
INSERT INTO `system` VALUES ('roundcube-version','2019092900');
|
|
/*!40000 ALTER TABLE `system` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `users`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `users`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `users` (
|
|
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`username` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
|
|
`mail_host` varchar(128) NOT NULL,
|
|
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
|
|
`last_login` datetime DEFAULT NULL,
|
|
`failed_login` datetime DEFAULT NULL,
|
|
`failed_login_counter` int(10) unsigned DEFAULT NULL,
|
|
`language` varchar(5) DEFAULT NULL,
|
|
`preferences` longtext,
|
|
PRIMARY KEY (`user_id`),
|
|
UNIQUE KEY `username` (`username`,`mail_host`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `users`
|
|
--
|
|
|
|
LOCK TABLES `users` WRITE;
|
|
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
|
|
INSERT INTO `users` VALUES (4,'postmaster@example.com','192.168.43.121','2021-05-05 20:03:05','2021-05-05 20:03:05',NULL,NULL,'en_US','a:1:{s:11:\"client_hash\";s:16:\"kcjdebvMozthq2mT\";}');
|
|
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2021-05-05 20:04:19
|