#!/usr/bin/env python3 """ Configuration settings for the Stickup email management app. `url_prefix` is the root path you wish app to reside at eg. https://example.com/stickup. `buckler` specifies settings pertaining to the Buckler server. """ server_domain = 'steelbea.me' url_prefix = '/stickup' buckler = { 'url': "https://steelbea.me/buckler", 'app_id': 1, 'app_key': r"""password""", 'login_url': "https://steelbea.me/buckler/login", } mailserver_db = { 'database': 'mailserver', 'user': 'mailserver', 'password': r"""password""", 'host': 'localhost', 'port': 5432, }