X-Git-Url: http://git.datanom.net/securemail.git/blobdiff_plain/b19ca6eb7be045fb938832c054940dce14180531..7084ca4a5f3492bbf750e685063f2267b97c9ac1:/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