]> Frank Brehm's Git Trees - pixelpark/pp-admin-tools.git/commitdiff
Adding lib/pp_admintools/app/get_from_addr.py
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 11 Apr 2024 13:12:14 +0000 (15:12 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 11 Apr 2024 13:12:14 +0000 (15:12 +0200)
lib/pp_admintools/app/get_from_addr.py [new file with mode: 0644]

diff --git a/lib/pp_admintools/app/get_from_addr.py b/lib/pp_admintools/app/get_from_addr.py
new file mode 100644 (file)
index 0000000..d2bab55
--- /dev/null
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+"""
+@summary: An application module for get all From-mail addresses, which are used in outbound mails
+
+@author: Frank Brehm
+@contact: frank.brehm@pixelpark.com
+@copyright: © 2024 by Frank Brehm, Berlin
+"""
+from __future__ import absolute_import
+
+# Standard modules
+
+# Third party modules
+
+# Own modules
+from . import BaseDPXApplication
+from ..handler.pflogparse import PostfixLogfileParser
+
+__version__ = '0.2.0'
+LOG = logging.getLogger(__name__)
+
+_ = XLATOR.gettext
+ngettext = XLATOR.ngettext
+
+
+# =============================================================================
+class GetFromAddressesApp(BaseDPXApplication):
+    """Application class for the get-intern-used-from-addresses application."""
+
+    show_simulate_option = False
+    show_quiet_option = False
+
+
+# =============================================================================
+if __name__ == '__main__':
+
+    pass
+
+# =============================================================================
+
+# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 list