]>
Commit | Line | Data |
---|---|---|
0c11151f MR |
1 | # -*- coding: utf-8 -*- |
2 | ||
3 | # Copyright (c) 2018 Michael Rasmussen <mir@datanom.net> | |
4 | ||
5 | # This file is part of SecureMail. | |
6 | ||
7 | # SecureMail is free software: you can redistribute it and/or modify | |
8 | # it under the terms of the GNU General Public License as published by | |
9 | # the Free Software Foundation, either version 3 of the License, or | |
10 | # (at your option) any later version. | |
11 | # | |
12 | # SecureMail is distributed in the hope that it will be useful, | |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
16 | # | |
17 | # You should have received a copy of the GNU General Public License | |
18 | # along with SecureMail. If not, see <https://www.gnu.org/licenses/>. | |
19 | ||
7084ca4a MR |
20 | ###### REQUIREMENTS ####### |
21 | # python3-nacl # | |
22 | # python3-mysqldb # | |
23 | # python3-psycopg2 # | |
24 | # python3-apsw # | |
25 | # mysql, postgresql or sqlite # | |
26 | ############################### | |
27 | ||
0c11151f | 28 | #DBTYPE = "mysql" |
7084ca4a MR |
29 | #DBHOST = "localhost" # default value |
30 | #DBPORT = 3306 # default value | |
31 | #DBTYPE = "postgresql" | |
32 | #DBHOST = "localhost" # default value | |
33 | #DBPORT = 5432 # default value | |
34 | DBTYPE = "sqlite" | |
35 | #DBUID = "backend" # default value | |
36 | #DBPWD = "clV77B2ZJQxr" # default value | |
37 | DBNAME = "securemail" # if DBTYPE is sqlite: ./DBNAME + .db |