When mailoney starts it will look for the 'logs/credentials.log', but it will fail if the 'logs' directory is missing. If you add the following code block
if not os.path.isdir('logs'):
os.mkdir('logs')
and let that execute before checking the 'credentials.log' it should work fine.
I hope you keep working on this as its a very interesting project you have here.
Nice job! :)
Just found a minor issue in postfix_creds.py that occurs at line 35.
When mailoney starts it will look for the 'logs/credentials.log', but it will fail if the 'logs' directory is missing. If you add the following code block
and let that execute before checking the 'credentials.log' it should work fine.
I hope you keep working on this as its a very interesting project you have here.
Cheers!