Put emails into the tmp folder

This commit is contained in:
Hocuri
2020-05-28 21:09:09 +02:00
parent 85a4637b9f
commit 5677bf3fe5
3 changed files with 14 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ class Account(object):
"""
MissingCredentials = MissingCredentials
def __init__(self, db_path, os_name=None, logging=True):
def __init__(self, db_path, os_name=None, logging=True, logid=None):
""" initialize account object.
:param db_path: a path to the account database. The database
@@ -38,6 +38,7 @@ class Account(object):
# initialize per-account plugin system
self._pm = hookspec.PerAccount._make_plugin_manager()
self._logging = logging
self.logid=logid
self.add_account_plugin(self)