Name | django-mailman3 JSON |
Version |
1.3.15
JSON |
| download |
home_page | None |
Summary | Django library to help interaction with Mailman |
upload_time | 2024-06-29 02:46:32 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | GPLv3 |
keywords |
mailman
django
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
==============================
Django library for Mailman UIs
==============================
This package contains libraries and templates for Django-based interfaces
interacting with Mailman.
To use this application, add ``django_mailman3`` to the ``INSTALLED_APPS`` list
in your Django server's settings file.
NEWS
====
1.3.15 (2024-06-29)
-------------------
* Use the source-includes directive in pyproject.toml instead of
includes to include files that aren't required for wheels and
doesn't need to be copied to site-packages. (Fixes #80)
1.3.14 (2024-06-23)
-------------------
**This release has _also_ been yanked from PyPI because of bad build**
* Fix the pyproject.toml metadata for packaging.
1.3.13 (2024-06-22)
-------------------
**This release has been yanked from PyPI due to bad build**.
* Fix social account buttons to work with providers other than oauth with
multiple sub-providers. (Fixes #77)
* Format date and time in Django DATETIME_FORMAT (Fixes #78)
1.3.12 (2024-03-07)
-------------------
* Fix the templates to work with "django-allauth>0.58.0". (See Postorius#590)
* More template fixes and require django-allauth>=0.59.0. This requires
django.contrib.humanize in INSTALLED_APPS.
* Add a new ``SOCIALACCOUNT_ADAPTER`` which allows for signups using Social
auth, even when the signups are disabled for regular logins. (See #71)
* Add support Django 5.0
* Drop support for Django < 4.2 since 4.0.x-4.1.x is now EOL.
1.3.11 (2023-10-22)
-------------------
* Added a migration to clear the django_sessions table to avoid Mailman Web
#16. This will remove user's login data and require them to log in again.
(See !195)
1.3.10 (2023-10-21)
-------------------
Configuration
-------------
* **BREAKING CHANGE**: ``django_mailman3`` now requires django_allauth>=0.56.
This requires the addition of ``allauth.account.middleware.AccountMiddleware``
to ``MIDDLEWARE`` in your Django settings. If your installation uses settings
from ``mailman-web`` as `here <https://docs.mailman3.org/en/latest/install/virtualenv.html#initial-configuration>`_,
upgrading mailman-web to 0.0.7 will do this.
Other Changes
-------------
* Add support for Django 4.2
* Migrate to Bootstrap 5. (See !188)
* A11y: Group related radio buttons and Multi-CheckboxInput. (Fixes #65)
* Add social account buttons to the Sign Up page. (Fixes #67)
* Remove real name requirement from user profile (Fixes #51)
1.3.9 (2022-01-04)
------------------
* Add support for Python 3.11.
1.3.8 (2022-10-22)
------------------
* Add support for Django 4.0 and 4.1 (Fixes #55)
* Add support for Python 3.10 (See !153)
* Fix the Fedora socialaccount provider. (Fixes #50)
* Add pagination only when there are more than one pages. (Fixes #58)
* Use Pytest as the test runner.
1.3.7 (2021-09-02)
------------------
* Set the minimum required version of ``mailmanclient`` in setup.py.
(Fixes #46)
1.3.6 (2021-08-31)
------------------
* ``django_mailman3.lib.mailman.get_mailman_client()`` now supports
Mailmanclient request hooks to be added using a new
``@mailmanclient_request_hook`` decorator.
* Scrubber now removes null bytes from the scrubbed message body.
* Update the Display Name of a user and it's associated addresses in Mailman
when the display name is updated in Django.
* Sync a Django user's email address to Core even if it is not verified.
* Add an allauth account adapter to disable signups.
* Add support for Django 3.2.
1.3.5 (2021-01-15)
------------------
* Add a new method get_django_user to return Django User model. (See !99)
* Add ``delete_archives`` field to ``mailinglist_deleted`` Signal.
* Replaced deprecated ``ugettexy_lazy`` with ``gettext_lazy``. (Closes #37)
1.3.4 (2020-06-05)
------------------
* Fix a bug caused by bumping to Mailman API 3.1 in version 1.3.3 which
resulted in 404 errors for some users. (Closes #35)
1.3.3 (2020-06-01)
------------------
- Hide "Account Connections" tab in accounts if no social account providers are
installed. (See !54)
- Use bold font for form labels (See !82)
- Update a user's preferred_address in Mailman Core when a user updates their
primary address in Profile. (Closes #32)
- Use Mailman's API version 3.1 to get Hex UUIDs instead of integer.
- Caught a LookupError when scrubbing an attachment with an unknown charset.
(Closes #12)
- Properly scrub the content of message/rfc822 parts. (Closes #34)
License
=======
Django-mailman is licensed under the
`GPL v3.0 <http://www.gnu.org/licenses/gpl-3.0.html>`_
Copyright (C) 2017-2020 by the Free Software Foundation, Inc.
Raw data
{
"_id": null,
"home_page": null,
"name": "django-mailman3",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "Mailman Developers <mailman-developers@python.org>",
"keywords": "mailman django",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/61/8b/428df3668cf19e7f64c0e97b739c67c88609d891102c3cdea08fb7b87bac/django_mailman3-1.3.15.tar.gz",
"platform": null,
"description": "==============================\nDjango library for Mailman UIs\n==============================\n\nThis package contains libraries and templates for Django-based interfaces\ninteracting with Mailman.\n\nTo use this application, add ``django_mailman3`` to the ``INSTALLED_APPS`` list\nin your Django server's settings file.\n\n\nNEWS\n====\n\n\n1.3.15 (2024-06-29)\n-------------------\n\n* Use the source-includes directive in pyproject.toml instead of\n includes to include files that aren't required for wheels and\n doesn't need to be copied to site-packages. (Fixes #80)\n\n1.3.14 (2024-06-23)\n-------------------\n\n**This release has _also_ been yanked from PyPI because of bad build**\n\n* Fix the pyproject.toml metadata for packaging.\n\n\n1.3.13 (2024-06-22)\n-------------------\n\n**This release has been yanked from PyPI due to bad build**.\n\n* Fix social account buttons to work with providers other than oauth with\n multiple sub-providers. (Fixes #77)\n* Format date and time in Django DATETIME_FORMAT (Fixes #78)\n\n\n1.3.12 (2024-03-07)\n-------------------\n\n* Fix the templates to work with \"django-allauth>0.58.0\". (See Postorius#590)\n* More template fixes and require django-allauth>=0.59.0. This requires\n django.contrib.humanize in INSTALLED_APPS.\n* Add a new ``SOCIALACCOUNT_ADAPTER`` which allows for signups using Social\n auth, even when the signups are disabled for regular logins. (See #71)\n* Add support Django 5.0\n* Drop support for Django < 4.2 since 4.0.x-4.1.x is now EOL.\n\n\n1.3.11 (2023-10-22)\n-------------------\n\n* Added a migration to clear the django_sessions table to avoid Mailman Web\n #16. This will remove user's login data and require them to log in again.\n (See !195)\n\n\n1.3.10 (2023-10-21)\n-------------------\n\nConfiguration\n-------------\n\n* **BREAKING CHANGE**: ``django_mailman3`` now requires django_allauth>=0.56.\n This requires the addition of ``allauth.account.middleware.AccountMiddleware``\n to ``MIDDLEWARE`` in your Django settings. If your installation uses settings\n from ``mailman-web`` as `here <https://docs.mailman3.org/en/latest/install/virtualenv.html#initial-configuration>`_,\n upgrading mailman-web to 0.0.7 will do this.\n\nOther Changes\n-------------\n\n* Add support for Django 4.2\n* Migrate to Bootstrap 5. (See !188)\n* A11y: Group related radio buttons and Multi-CheckboxInput. (Fixes #65)\n* Add social account buttons to the Sign Up page. (Fixes #67)\n* Remove real name requirement from user profile (Fixes #51)\n\n\n\n1.3.9 (2022-01-04)\n------------------\n\n* Add support for Python 3.11.\n\n1.3.8 (2022-10-22)\n------------------\n* Add support for Django 4.0 and 4.1 (Fixes #55)\n* Add support for Python 3.10 (See !153)\n* Fix the Fedora socialaccount provider. (Fixes #50)\n* Add pagination only when there are more than one pages. (Fixes #58)\n* Use Pytest as the test runner.\n\n1.3.7 (2021-09-02)\n------------------\n\n* Set the minimum required version of ``mailmanclient`` in setup.py.\n (Fixes #46)\n\n1.3.6 (2021-08-31)\n------------------\n* ``django_mailman3.lib.mailman.get_mailman_client()`` now supports\n Mailmanclient request hooks to be added using a new\n ``@mailmanclient_request_hook`` decorator.\n* Scrubber now removes null bytes from the scrubbed message body.\n* Update the Display Name of a user and it's associated addresses in Mailman\n when the display name is updated in Django.\n* Sync a Django user's email address to Core even if it is not verified.\n* Add an allauth account adapter to disable signups.\n* Add support for Django 3.2.\n\n1.3.5 (2021-01-15)\n------------------\n* Add a new method get_django_user to return Django User model. (See !99)\n* Add ``delete_archives`` field to ``mailinglist_deleted`` Signal.\n* Replaced deprecated ``ugettexy_lazy`` with ``gettext_lazy``. (Closes #37)\n\n\n1.3.4 (2020-06-05)\n------------------\n* Fix a bug caused by bumping to Mailman API 3.1 in version 1.3.3 which\n resulted in 404 errors for some users. (Closes #35)\n\n\n1.3.3 (2020-06-01)\n------------------\n\n- Hide \"Account Connections\" tab in accounts if no social account providers are\n installed. (See !54)\n- Use bold font for form labels (See !82)\n- Update a user's preferred_address in Mailman Core when a user updates their\n primary address in Profile. (Closes #32)\n- Use Mailman's API version 3.1 to get Hex UUIDs instead of integer.\n- Caught a LookupError when scrubbing an attachment with an unknown charset.\n (Closes #12)\n- Properly scrub the content of message/rfc822 parts. (Closes #34)\n\nLicense\n=======\n\nDjango-mailman is licensed under the\n`GPL v3.0 <http://www.gnu.org/licenses/gpl-3.0.html>`_\n\nCopyright (C) 2017-2020 by the Free Software Foundation, Inc.\n",
"bugtrack_url": null,
"license": "GPLv3",
"summary": "Django library to help interaction with Mailman",
"version": "1.3.15",
"project_urls": {
"Homepage": "https://gitlab.com/mailman/django-mailman3"
},
"split_keywords": [
"mailman",
"django"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4131370b37ad05ebbebd4e695fdb3be60a62a6513a11cfbdabab27d5d8f746b7",
"md5": "395eaf888b80b7f3eda365b0d5b11869",
"sha256": "89a9d3c47d6b8b970f7f21f46412f2a312f8059a6396b0d2148c7bdb69ac5eda"
},
"downloads": -1,
"filename": "django_mailman3-1.3.15-py3-none-any.whl",
"has_sig": false,
"md5_digest": "395eaf888b80b7f3eda365b0d5b11869",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 740242,
"upload_time": "2024-06-29T02:46:29",
"upload_time_iso_8601": "2024-06-29T02:46:29.522942Z",
"url": "https://files.pythonhosted.org/packages/41/31/370b37ad05ebbebd4e695fdb3be60a62a6513a11cfbdabab27d5d8f746b7/django_mailman3-1.3.15-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "618b428df3668cf19e7f64c0e97b739c67c88609d891102c3cdea08fb7b87bac",
"md5": "6cee8f3b418065d335a9d7d005c1f018",
"sha256": "f9916b269cb9c5d5ba61d7bf5c4bf1a0037cf934907622343df8d9edb1c6d11b"
},
"downloads": -1,
"filename": "django_mailman3-1.3.15.tar.gz",
"has_sig": false,
"md5_digest": "6cee8f3b418065d335a9d7d005c1f018",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 425173,
"upload_time": "2024-06-29T02:46:32",
"upload_time_iso_8601": "2024-06-29T02:46:32.077112Z",
"url": "https://files.pythonhosted.org/packages/61/8b/428df3668cf19e7f64c0e97b739c67c88609d891102c3cdea08fb7b87bac/django_mailman3-1.3.15.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-29 02:46:32",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "mailman",
"gitlab_project": "django-mailman3",
"lcname": "django-mailman3"
}