Mailnag is a daemon program that checks POP3 and IMAP servers for new mail. On mail arrival it performs various actions provided by plugins. Mailnag comes with a set of desktop-independent default plugins for visual/sound notifications, script execution etc. and can be extended with additional plugins easily. WWW: https://github.com/pulb/mailnag
19 lines
502 B
Text
19 lines
502 B
Text
--- mailnag-config.orig 2020-12-30 17:29:49 UTC
|
|
+++ mailnag-config
|
|
@@ -25,6 +25,7 @@ import os
|
|
import subprocess
|
|
import logging
|
|
from gi.repository import Gtk
|
|
+from setproctitle import setproctitle
|
|
|
|
from Mailnag.common.utils import fix_cwd, init_logging
|
|
|
|
@@ -80,7 +81,7 @@ class App(Gtk.Application):
|
|
|
|
|
|
def main():
|
|
- set_procname("mailnag-config")
|
|
+ setproctitle("mailnag-config")
|
|
init_logging(enable_stdout = True, enable_syslog = False, log_level = LOG_LEVEL)
|
|
app = App()
|
|
app.run(None)
|