2015-01-24 20:58:20 +01:00
|
|
|
"""
|
|
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
|
|
:py:mod:`managemails` app.
|
|
|
|
|
|
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
2023-02-18 22:46:48 +01:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2015-01-24 20:58:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ManageMailsAppConfig(AppConfig):
|
|
|
|
"""
|
|
|
|
AppConfig for the :py:mod:`managemails` app.
|
|
|
|
|
|
|
|
"""
|
2023-02-18 22:46:48 +01:00
|
|
|
|
|
|
|
name = "managemails"
|
|
|
|
verbose_name = _("Mailboxes and Mail Addresses")
|
2023-02-19 13:45:30 +01:00
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
"""
|
2023-04-17 19:41:42 +02:00
|
|
|
Takes care of importing the signal handlers of the :py:mod:`managemails`
|
2023-02-19 13:45:30 +01:00
|
|
|
app.
|
|
|
|
|
|
|
|
"""
|
|
|
|
import managemails.signals # NOQA
|