1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
Commit graph

287 commits

Author SHA1 Message Date
Felix Boehme
33c9c32e7e Related object, mass mail utils
Added generic fkey on message in order to allow associating messages
with other objects
Added mass mail utilities that store outgoing messages (including link
to other object)
2014-12-08 14:54:03 -08:00
Adam Coddington
4c1eff5202 Minor clarification. 2014-11-19 23:42:15 -08:00
Adam Coddington
20d5c3956e Release 4.1.2; Added handling for processing unknown encodings. 2014-11-15 22:19:32 -08:00
Adam Coddington
f16d4f6d9c Minor tweaks to logging. 2014-11-15 22:18:19 -08:00
Adam Coddington
aa59199c9b Interpret unknown encodings as ASCII. Fixes #34. 2014-11-15 22:15:25 -08:00
Adam Coddington
e1b0763a46 Store 'Delivered-To' as 'to_header' when 'to' is unspecified. 2014-11-10 19:20:17 -08:00
Adam Coddington
df4c7196db Fix bug preventing south 1.0 from properly finding legacy migrations. Release 4.1.1 2014-11-09 21:55:21 -08:00
Adam Coddington
2e23521220 Release 4.1; adding Django 1.7 migrations support. 2014-11-08 14:23:07 -08:00
Adam Coddington
b34ef48bb9 Merge branch 'issue_31'. Resolves #31. 2014-11-07 19:17:24 -08:00
Adam Coddington
e4fb22a7f1 Let's still fail a build if we break things for Django 1.4 and 1.5; lots of people are trapped on old versions. 2014-11-07 19:17:06 -08:00
Adam Coddington
4eae6faf03 Given that 'classic' versions of django do not have a setup function: allow that to fail. 2014-11-07 19:12:30 -08:00
Patrick Craston
2d82c00c5b convert migrations to work with Django 1.7, add Django 1.7.1 to travis test matrix 2014-11-07 17:35:34 +00:00
Adam Coddington
ecc8ac8bcc Release 4.0.2. 2014-10-14 19:33:08 -07:00
Adam Coddington
f8e70aa5d1 Attempting to narrow down the issue @rulzart is encountering.
Conflicts:
	django_mailbox/transports/generic.py
2014-10-14 19:29:51 -07:00
Adam Coddington
9730c34c7f This is a better preposition. 2014-09-10 14:38:12 -07:00
Adam Coddington
9cd9945637 Removing bit.ly icon. 2014-09-09 15:01:22 -07:00
Adam Coddington
079a8e52e1 Minor wording and formatting changes. 2014-09-08 19:47:28 -07:00
Adam Coddington
684f124c45 Rewriting readme. 2014-09-08 19:45:32 -07:00
Adam Coddington
7e424d4531 Release 4.0.1. 2014-09-07 12:21:48 -07:00
Adam Coddington
f90ea1c56f Merge pull request #29 from tcosprojects/master
Fix deprecation warnings after Django 1.7 upgrade
2014-09-06 19:33:08 -07:00
Will
1406d465d6 Adjust usages of get_query_set to get_queryset 2014-09-06 19:18:47 -07:00
Will
bd56716e74 Fix deprecation warnings after Django 1.7 upgrade 2014-09-06 16:31:12 -07:00
Adam Coddington
f44b4bbc46 Adding a couple new badges. 2014-09-01 13:38:02 -07:00
Adam Coddington
13eeb74234 Releasing version 4.0. 2014-09-01 13:35:37 -07:00
Adam Coddington
ee91ad7d28 Exclude Django 1.4.14 with Python 3k. 2014-09-01 13:07:39 -07:00
Adam Coddington
906011416d Updating supported django versions. 2014-09-01 13:02:11 -07:00
Adam Coddington
5c8385de21 Dropping support for Python 3.2; the whole unicode literal thing has been a little troublesome over the years. 2014-09-01 12:57:00 -07:00
Ariel Gerardo Ríos
826d0b1d88 Fix test methods for new accessors. 2014-09-01 15:31:29 -03:00
Ariel Gerardo Ríos
c1bfc9b3a8 Extracts inner method to process multiple content types. 2014-09-01 15:31:13 -03:00
Ariel Gerardo Ríos
6d73301f0d Add property to fetch HTML body message. 2014-09-01 15:30:30 -03:00
Ariel Gerardo Ríos
ce7e17b50c Add file header and dummy HTML method. 2014-08-29 17:24:49 -03:00
Ariel Gerardo Ríos
305d1c5c38 Add translation support to field names and help texts. 2014-08-29 16:08:01 -03:00
Ariel Gerardo Ríos
4f400fab48 Add some spaces between constants and imports. 2014-08-29 15:39:49 -03:00
Adam Coddington
342c6af252 Version 3.4.2. 2014-08-22 20:08:33 -07:00
Adam Coddington
4c9402edd0 Version 3.4.2a2. 2014-08-22 20:04:53 -07:00
Adam Coddington
db6190a295 Cleaning up management commands for PEP-8 and consistency. 2014-08-22 20:02:58 -07:00
Adam Coddington
992375fc6b Version 3.4.2a1 2014-08-22 19:55:18 -07:00
Adam Coddington
591f1545c8 Decode from ASCII with replacement if errors are encountered while gathering text. Fixes #20. 2014-08-22 19:46:39 -07:00
Adam Coddington
dad65d802c Wrap added \Deleted flag in parentheses. Fixes #23.
Apparently the IMAP specification expects that the +FLAGS argument be
surrounded by parentheses; although some e-mail backends (like Gmail)
will accept the +FLAGS argument without surrounding the \Deleted flag
in parentheses, many (reasonably) follow the specification much more
closely.  This problem was first noted in report #23.

Searching for other examples of mail deletion, I've found several
Stack Overflow articles in which people are attempting the same task,
and each either uses `imap.store` without surrounding '\Deleted' in
parentheses, or uses `imap.uid` *while* surrounding '\Deleted' in
parentheses:

* http://stackoverflow.com/questions/1777264/using-python-imaplib-to-delete-an-email-from-gmail
* http://stackoverflow.com/questions/3180891/imap-deleting-messages
2014-08-22 19:27:36 -07:00
Adam Coddington
b4c20bdf2e Reordering imports to match style guide. 2014-08-22 19:25:14 -07:00
Adam Coddington
1503bcaeee Moving settings into appendix, too. 2014-08-17 18:32:25 -07:00
Adam Coddington
6b29b1bc86 Moving 'message storage details' page into appendix 2014-08-15 21:02:53 -07:00
Adam Coddington
09718a1901 Adding share/ to gitignore. 2014-08-15 21:00:12 -07:00
Adam Coddington
7474cf0118 Prevent ImapTransport from raising exception when no messages are available. Fixes #24. Release 3.4.1. 2014-08-14 21:41:08 -07:00
Adam Coddington
3ffbcea3bf This probably should have been using explicit references anyway. 2014-08-13 17:40:26 -07:00
Adam Coddington
24dd3be36a Minor alterations and clarifications to @fsboehme's fantastic addition. 2014-08-13 17:40:03 -07:00
fsboehme
9706fda4e3 Update installation.rst
added db migration step and mailbox setup to installation notes
2014-08-13 16:45:41 -07:00
Adam Coddington
83a6249c85 s/latestrevision/coddingtonbear/g 2014-07-31 20:30:42 -07:00
Adam Coddington
3a2e05b01f Updating documentation to explain exim4 configurations in greater detail. 2014-06-03 19:51:34 -07:00
Adam Coddington
8741648666 Minor readme rewording. 2014-06-03 15:09:44 -07:00