mirror of
https://github.com/pulb/mailnag.git
synced 2026-05-06 11:47:02 +02:00
Misc improvements
* Remove bash scripts and start mailnag python scripts directly
- Prevents duplicate process names
- Fixes missing app icon in taskmanager
* Remove background startup functionality
- Should be handled by modern init systems like systemd
(see new-style-daemon: http://www.freedesktop.org/software/systemd/man/daemon.html)
- Enables program termination via CTRL+C when running mailnag in a terminal
- Doesn't hide the commandline prompt when running with options like --help (reported in issue #87)
- Fixes wrapping issues in the log output
* Rename mailnagd into mailnag again
* Remove --backround option
* Fix and reorder module imports
* setup.py: patch BIN_DIR in dist_cfg
This commit is contained in:
@@ -23,9 +23,9 @@
|
||||
|
||||
import os
|
||||
from gi.repository import Gtk
|
||||
from common.plugins import Plugin, HookTypes
|
||||
from common.i18n import _
|
||||
from common.subproc import start_subprocess
|
||||
from Mailnag.common.plugins import Plugin, HookTypes
|
||||
from Mailnag.common.i18n import _
|
||||
from Mailnag.common.subproc import start_subprocess
|
||||
|
||||
plugin_defaults = { 'script_file' : '' }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user