No description
  • Python 99.2%
  • HTML 0.8%
Find a file
Antoine Nguyen fa9c745d75
Merge pull request #115 from modoboa/dependabot/pip/mysqlclient-lt-2.2.5
Update mysqlclient requirement from <2.2.1 to <2.2.5
2024-02-16 11:05:42 +01:00
.github Updated plugin.yml with Redis 2024-02-05 13:30:40 +00:00
.tx Translations updated. 2015-12-02 16:41:12 +01:00
docs Updated documentation. 2018-10-01 15:30:10 +02:00
modoboa_postfix_autoreply Update to django 4.2 2023-06-12 16:10:18 +02:00
test_project Updated settings.py with RQ 2024-02-05 13:27:44 +00:00
.editorconfig add .editorconfig 2018-02-04 11:45:07 +00:00
.gitignore Update to django 4.2 2023-06-12 16:10:18 +02:00
LICENSE Initial commit. 2015-02-11 14:26:59 +01:00
MANIFEST.in Initial commit. 2015-02-11 14:26:59 +01:00
pylintrc Initial commit. 2015-02-11 14:26:59 +01:00
README.rst Replaced travis by gha 2022-04-29 14:40:43 +02:00
requirements.txt Bump django-filter from 23.2 to 23.5 2023-12-06 02:23:14 +00:00
setup.cfg setup.cfg 2018-02-04 11:45:52 +00:00
setup.py Fixed setup.py for pip >= 20.0.2 2020-05-07 14:33:03 +02:00
test-requirements.txt Merge pull request #115 from modoboa/dependabot/pip/mysqlclient-lt-2.2.5 2024-02-16 11:05:42 +01:00

modoboa-postfix-autoreply
=========================

|gha| |codecov|

Away message editor for Modoboa (postfix compatible).

Installation
------------

Install this extension system-wide or inside a virtual environment by
running the following command::

  $ pip install modoboa-postfix-autoreply

Edit the settings.py file of your modoboa instance and add
``modoboa_postfix_autoreply`` inside the ``MODOBOA_APPS`` variable like this::

    MODOBOA_APPS = (
      'modoboa',
      'modoboa.core',
      'modoboa.lib',
      'modoboa.admin',
      'modoboa.relaydomains',
      'modoboa.limits',
      'modoboa.parameters',
      # Extensions here
      'modoboa_postfix_autoreply',
    )

Run the following commands to setup the database tables::

  $ cd <modoboa_instance_dir>
  $ python manage.py migrate modoboa_postfix_autoreply
  $ python manage.py collectstatic
  $ python manage.py load_initial_data

Finally, restart the python process running modoboa (uwsgi, gunicorn,
apache, whatever).

Setup
-----

`Online documentation <https://modoboa-postfix-autoreply.readthedocs.io/en/latest/>`_.

.. |gha| image:: https://github.com/modoboa/modoboa-postfix-autoreply/actions/workflows/plugin.yml/badge.svg
   :target: https://github.com/modoboa/modoboa-postfix-autoreply/actions/workflows/plugin.yml

.. |codecov| image:: http://codecov.io/github/modoboa/modoboa-postfix-autoreply/coverage.svg?branch=master
   :target: http://codecov.io/github/modoboa/modoboa-postfix-autoreply?branch=master