Files
mailnag/Mailnag/common/config.py
Patrick Ulbrich f01879c9c7 Add CredentialStore abstraction layer
* Add CredentialStore API
* Add CredentialStore implementation for GNOME keyring (makes GNOME keyring dependency optional)
* Further CredentialStore implementations (e.g. KDE) may be added to CredentialStore.py
* Mailnag tries to detect the supported CredentialStore backend automatically
* If no CredentialStore backend is supported on the system, Mailnag stores passwords in the config file (plaintext)
* A specific CredentialStore backend can be forced in the config file (currently one of 'auto', 'gnome', 'none')
* Closes issue #82
2015-01-27 17:07:28 +01:00

62 lines
1.6 KiB
Python

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# config.py
#
# Copyright 2011 - 2015 Patrick Ulbrich <zulu99@gmx.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
import os
import xdg.BaseDirectory as bd
from ConfigParser import RawConfigParser
mailnag_defaults = {
'core':
{
'poll_interval' : '10',
'imap_idle_timeout' : '10',
'autostart' : '1',
'connectivity_test' : 'auto',
'credentialstore' : 'auto',
'enabled_plugins' : 'dbusplugin, soundplugin, libnotifyplugin'
}
}
cfg_folder = os.path.join(bd.xdg_config_home, "mailnag")
cfg_file = os.path.join(cfg_folder, "mailnag.cfg")
def cfg_exists():
return os.path.exists(cfg_file)
def read_cfg():
cfg = RawConfigParser()
cfg._sections = mailnag_defaults # HACK : use cfg.read_dict(mailnag_defaults) in python 3
if os.path.exists(cfg_file):
cfg.read(cfg_file)
return cfg
def write_cfg(cfg):
if not os.path.exists(cfg_folder):
os.makedirs(cfg_folder)
with open(cfg_file, 'wb') as configfile: cfg.write(configfile)