exec-notify/execNotifyDir/config.py
2020-12-06 17:21:44 +01:00

35 lines
692 B
Python

from pathlib import Path
import configparser
from execNotifyDir import util
def getHostAndPort():
return config['mail']['host'], config['mail']['port']
def getPassword():
return config['mail']['password']
def getFrom():
return config['mail']['from'] # used for mail login as well
def getTo():
return config['mail']['to']
def getErrorFile() -> Path:
return Path(config['file']['errorfile'])
def _getCfgFile() -> Path:
return _getCfgDir().joinpath('cfg.ini')
def _getCfgDir() -> Path:
return util.getProjectBase().joinpath('execNotifyDir').joinpath('config')
config: configparser.ConfigParser = configparser.ConfigParser()
config.read(_getCfgFile())