X-Git-Url: http://git.datanom.net/securemail.git/blobdiff_plain/0c11151f06ced34eaef03907d7a7088873fe8cfb..99dad5525028d89f6ef0ff91e2de3b1b251df6da:/config.py diff --git a/config.py b/config.py index a0c1353..bd71642 100644 --- a/config.py +++ b/config.py @@ -17,11 +17,21 @@ # You should have received a copy of the GNU General Public License # along with SecureMail. If not, see . +###### REQUIREMENTS ####### +# python3-nacl # +# python3-mysqldb # +# python3-psycopg2 # +# python3-apsw # +# mysql, postgresql or sqlite # +############################### + #DBTYPE = "mysql" -DBTYPE = "postgresql" -DBHOST = "localhost" -#DBPORT = 3306 -DBPORT = 5432 -DBUID = "backend" -DBPWD = "clV77B2ZJQxr" -DBNAME = "securemail" +#DBHOST = "localhost" # default value +#DBPORT = 3306 # default value +#DBTYPE = "postgresql" +#DBHOST = "localhost" # default value +#DBPORT = 5432 # default value +DBTYPE = "sqlite" +#DBUID = "backend" # default value +#DBPWD = "clV77B2ZJQxr" # default value +DBNAME = "securemail" # if DBTYPE is sqlite: ./DBNAME + .db