- Add missing migration
`django_mailbox.models.Mailbox.get_new_mail`
become generator- Added to
`django_mailbox.models.Message.mailbox`
in-memory caches of result - Added to command
`processincomingmessage`
argument to pass mailbox name - Improved tests, especially different Django & Python version
- Add Django 2.0 support
- Add on_delete=models.CASCADE in models & migrations
- Add Django 2.0 to tests matrices
- Adds Django 1.8 support.
- Adds functionality for allowing one to store the message body on-disk instead of in the database.
- Adds 'envelope headers' to the Admin interface.
- Adds Django 1.7 migrations support.
- Adds
html
property returning the HTML contents ofdjango_mailbox.models.Message
instances. Thanks @ariel17! - Adds translation support. Thanks @ariel17!
- Drops support for Python 3.2. The fact that only versions of Python newer than 3.2 allow unicode literals has convinced me that supporting Python 3.2 is probably more trouble than it's worth. Please let me know if you were using Python 3.2, and I've left you out in the cold; I'm willing to fix Python 3.2 support if it is actively used.
- Adds
gmail
transport allowing one to use Google OAuth credentials for gathering messages from gmail. Thanks @alexlovelltroy!
- Adds functionality to
imap
transport allowing one to archive processed e-mails. Thanks @yellowcap!
- Fixes a wide variety of unicode-related errors.
- Restructures message storage such that non-text message attachments are stored as files, rather than in the database in their original (probably base64-encoded) blobs.
- So many new tests.