· 7 years ago · Jan 03, 2019, 11:26 AM
1-- MySQL dump 10.13 Distrib 5.7.17, for Linux (x86_64)
2--
3-- Host: localhost Database: exim_db
4-- ------------------------------------------------------
5-- Server version 5.7.17-0ubuntu0.16.04.1
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `accounts`
20--
21
22DROP TABLE IF EXISTS `accounts`;
23/*!40101 SET @saved_cs_client = @@character_set_client */;
24/*!40101 SET character_set_client = utf8 */;
25CREATE TABLE `accounts` (
26 `login` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT '',
27 `password` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT '',
28 `uid` int(11) NOT NULL DEFAULT '118',
29 `gid` int(11) NOT NULL DEFAULT '8',
30 `domain` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT 'nixtalk.com',
31 `quota` varchar(16) COLLATE utf8_bin NOT NULL DEFAULT '250M',
32 `status` int(11) NOT NULL DEFAULT '1',
33 PRIMARY KEY (`login`,`domain`)
34) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
35/*!40101 SET character_set_client = @saved_cs_client */;
36
37--
38-- Dumping data for table `accounts`
39--
40
41LOCK TABLES `accounts` WRITE;
42/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
43INSERT INTO `accounts` VALUES ('admin','password',118,8,'domain.com','250M',1);
44/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
45UNLOCK TABLES;
46
47--
48-- Table structure for table `aliases`
49--
50
51DROP TABLE IF EXISTS `aliases`;
52/*!40101 SET @saved_cs_client = @@character_set_client */;
53/*!40101 SET character_set_client = utf8 */;
54CREATE TABLE `aliases` (
55 `address` varchar(128) COLLATE utf8_bin DEFAULT NULL,
56 `goto` varchar(128) COLLATE utf8_bin DEFAULT NULL,
57 `domain` varchar(128) COLLATE utf8_bin DEFAULT 'nixtalk.com'
58) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
59/*!40101 SET character_set_client = @saved_cs_client */;
60
61--
62-- Dumping data for table `aliases`
63--
64
65LOCK TABLES `aliases` WRITE;
66/*!40000 ALTER TABLE `aliases` DISABLE KEYS */;
67/*!40000 ALTER TABLE `aliases` ENABLE KEYS */;
68UNLOCK TABLES;
69
70--
71-- Table structure for table `blacklist`
72--
73
74DROP TABLE IF EXISTS `blacklist`;
75/*!40101 SET @saved_cs_client = @@character_set_client */;
76/*!40101 SET character_set_client = utf8 */;
77CREATE TABLE `blacklist` (
78 `senders` varchar(128) DEFAULT NULL
79) ENGINE=InnoDB DEFAULT CHARSET=latin1;
80/*!40101 SET character_set_client = @saved_cs_client */;
81
82--
83-- Dumping data for table `blacklist`
84--
85
86LOCK TABLES `blacklist` WRITE;
87/*!40000 ALTER TABLE `blacklist` DISABLE KEYS */;
88/*!40000 ALTER TABLE `blacklist` ENABLE KEYS */;
89UNLOCK TABLES;
90
91--
92-- Table structure for table `domains`
93--
94
95DROP TABLE IF EXISTS `domains`;
96/*!40101 SET @saved_cs_client = @@character_set_client */;
97/*!40101 SET character_set_client = utf8 */;
98CREATE TABLE `domains` (
99 `domain` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT '',
100 `status` int(11) NOT NULL DEFAULT '1',
101 `relay` varchar(45) COLLATE utf8_bin DEFAULT NULL,
102 PRIMARY KEY (`domain`)
103) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
104/*!40101 SET character_set_client = @saved_cs_client */;
105
106--
107-- Dumping data for table `domains`
108--
109
110LOCK TABLES `domains` WRITE;
111/*!40000 ALTER TABLE `domains` DISABLE KEYS */;
112INSERT INTO `domains` VALUES ('domain.com',1,'l');
113/*!40000 ALTER TABLE `domains` ENABLE KEYS */;
114UNLOCK TABLES;
115
116--
117-- Table structure for table `whitelist`
118--
119
120DROP TABLE IF EXISTS `whitelist`;
121/*!40101 SET @saved_cs_client = @@character_set_client */;
122/*!40101 SET character_set_client = utf8 */;
123CREATE TABLE `whitelist` (
124 `senders` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'support@nixtalk.com'
125) ENGINE=InnoDB DEFAULT CHARSET=latin1;
126/*!40101 SET character_set_client = @saved_cs_client */;
127
128--
129-- Dumping data for table `whitelist`
130--
131
132LOCK TABLES `whitelist` WRITE;
133/*!40000 ALTER TABLE `whitelist` DISABLE KEYS */;
134/*!40000 ALTER TABLE `whitelist` ENABLE KEYS */;
135UNLOCK TABLES;
136/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
137
138/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
139/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
140/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
141/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
142/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
143/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
144/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
145
146-- Dump completed on 2017-04-17 16:36:13