--- /dev/null
+# -*- 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