Fix unencrypted delivery and key removal #130

Merged
pfm merged 40 commits from 129-key-removal into main 2023-12-02 21:59:15 +01:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit a3eb892df9 - Show all commits

View File

@ -7,8 +7,7 @@ import lacre.config as conf
# Read configuration from /etc/gpg-mailgate.conf
conf.load_config()
lacre.init_logging(conf.get_item('logging', 'config'))
LOG = logging.getLogger('webgate-cron.py')
LOG = logging.getLogger(__name__)
def _load_file(name):

View File

@ -36,7 +36,7 @@ from lacre.notify import notify
conf.load_config()
lacre.init_logging(conf.get_item('logging', 'config'))
LOG = logging.getLogger('webgate_cron.py')
LOG = logging.getLogger('webgate-cron.py')
import GnuPG