django-mailbox
django-mailbox copied to clipboard
Import mail from POP3, IMAP, local email mailboxes or directly from Postfix or Exim4 into your Django application automatically.
We have implemented Office365 API support to read mailboxes. On Office365 IMAP is disabled by default and it is necessary to use Oauth, we used the [O365](https://github.com/O365/python-o365) library to implement...
This PR: - fixes most of the flake8 errors & ignores line too long & line break before and after binary operator - expands tox.ini to handle django up to...
Hi, I started receiving a ValueError a few weeks ago after upgrading django-mailbox to 4.8.2 (django is 2.2.27). the DB is postgres which prevents string from been created from a...
File "/home/sander/python/rowsandall/venv/lib/python3.8/site-packages/django_mailbox/models.py", line 31, in from django_mailbox.signals import message_received File "/home/sander/python/rowsandall/venv/lib/python3.8/site-packages/django_mailbox/signals.py", line 3, in message_received = Signal(providing_args=['message']) TypeError: __init__() got an unexpected keyword argument 'providing_args'
Improve the workaround of https://bugs.python.org/issue27321 in coddingtonbear#136, using patch from https://bugs.python.org/msg308362. Closes #201.
Hi, There is an import error in one of the files, I think at /django_mailbox/models.py line 31 the line should change from 'django.utils.encoding import python_2_unicode_compatible' to 'from six import python_2_unicode_compatible'....
message/rfc822 parts were being parsed recursively instead of being just attached as eml. Added a check to avoid recursive inspection and added an elif branch to handle the message save...
ability to easily and quickly filter based on the from_email_address
Hello, After installing django mailbox, and adding a new active mailbox as below: name : my gmail address url: gmail+ssl://myaddress%40gmail.com:[email protected]?archive=Archived When I run > python manage.py getmail I get the...