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

70 commits

Author SHA1 Message Date
Adam Coddington
5f289289ce Major refactor of message attachment handling; no longer stores verbatim
message copy in database.

Bumping version number to 2.1

* Walks through incoming message, write attachments to disk as they are found,
  and alters message body removing actual attachment body, and adding
  header 'X-Django-Mailbox-Interpolate-Attachment' referencing the ID of the
  stored attachment.
* When calling ``get_email_object``, will walk through stored message, and
  're-hydrate' the message by finding said headers, searching for the
  appropriate record in the MessageAttachments table, and rebuild the message
  object as closely as possible.

Minor fixes:

* Properly collect text/plain content from any part of the message; previously
  would only check the message's first level of payloads, now walks through
  all payloads, building a string of all text/plain content.
* Remove use of deprecated `assertEquals` message.
2013-06-23 20:27:50 -07:00
Adam Coddington
548cc66c52 Incorporating changes from @mancio's fork. 2013-06-22 17:44:55 -07:00
Adam Coddington
364a3061c2 Adding Python3 support. 2013-06-22 15:42:50 -07:00
Adam Coddington
3ea8689ec0 Encode message body to bytes prior to reconstituting e-mail message object. Added additional test to ensure that messages can make it the full cycle. 2013-06-22 15:06:53 -07:00
Adam Coddington
9cdb2d9d1b PEP-8 Cleanup. 2013-06-22 14:35:47 -07:00
Adam Coddington
9f77c9221a Removing unintended print message :-o 2013-06-22 14:28:00 -07:00
Adam Coddington
156b6fb418 Hide original body from email message display in admin; bumping version number. 2013-06-11 22:32:13 -07:00
Adam Coddington
4b70cf6f21 Fixing bad migration; keeping migration for rebuilding associations as a management command. 2013-06-11 22:23:27 -07:00
Adam Coddington
98bec1f682 Do not remove M2M tables. 2013-06-11 22:04:05 -07:00
Adam Coddington
7d1153a8eb Use a predictable ordering. 2013-06-11 22:00:39 -07:00
Adam Coddington
32e4eb10fb Adding migration to clean up any potentially misplaced attachments. 2013-06-11 21:59:54 -07:00
Adam Coddington
79a1799da3 Updating admin to include new inlines for messages. 2013-06-06 01:21:04 -07:00
Adam Coddington
cd77dd1c93 Merging in upstream changes. 2013-06-06 01:11:04 -07:00
Adam Coddington
46960440d5 Typo. 2013-06-06 01:10:12 -07:00
Adam Coddington
af2f37a247 Remove M2M relationship between MessageAttachment and Message. 2013-06-06 01:03:16 -07:00
Adam Coddington
8a34ac211c Properly handle RFC2822 line continuations; resolves #4. 2013-06-05 12:43:28 -07:00
Adam Coddington
2a90953283 Adding new settings allowing one to specify a list of mimetypes that are permitted to be stored in the message body of the e-mail message model. 2013-03-11 21:00:53 -07:00
Patrick Craston
8fac7c9711 Only store text/plain and text/html in body field
When parsing multipart message it was storing the whole message as
string in database which could lead to database errors. Only want to
store the actual message text
2013-03-01 16:35:26 +00:00
Adam Coddington
ee6b4b3e1d Delete attachments after they are no longer referenced by an e-mail message. Fixes #1. Bumping version number to 1.8.3 2013-02-03 14:52:42 -08:00
Adam Coddington
11eb186978 Adding 'resend message received' admin action. 2013-01-27 04:58:09 -08:00
Adam Coddington
5bd99b8b91 Be very careful about filename length. 2013-01-20 16:58:56 -08:00
Adam Coddington
895fcff4b7 Code cleanup; ensure no tb in the event of a very-long filename. 2013-01-20 16:51:10 -08:00
Adam Coddington
afa82b861c Adding get_text_body convenience method. 2013-01-20 14:27:15 -08:00
Adam Coddington
25f1a71725 Allow message to be saved without attachments. 2013-01-20 13:44:49 -08:00
Adam Coddington
0eb63b44cf Adding tests. 2013-01-19 00:26:58 -08:00
Adam Coddington
4546741c20 Merging in upstream changes from github. 2013-01-14 03:28:59 -08:00
Patrick Craston
ad4a1c00f4 Ignore p7s smime attachments 2013-01-15 15:48:15 +00:00
Patrick Craston
2fd9664295 Add south migration for message attachment model 2013-01-15 12:28:32 +00:00
Patrick Craston
2e484aaed8 Add admin support for attachments --display correctly 2013-01-15 12:27:32 +00:00
Patrick Craston
3c3e0f3d9b Add admin support for attachments --fix typo 2013-01-15 12:23:16 +00:00
Patrick Craston
00c14e9818 Add admin support for attachments 2013-01-15 12:21:49 +00:00
Patrick Craston
645a723d09 Move Attachment model up 2013-01-15 12:11:08 +00:00
Patrick Craston
e3cd913fe7 Add attachment handling 2013-01-15 12:05:04 +00:00
Adam Coddington
4a785a18ce Show 'read' date in admin for messages. 2012-12-07 11:08:17 -08:00
Adam Coddington
af58c324f5 Adding unread/read flagging for individual messages. 2012-11-27 19:01:49 -08:00
Adam Coddington
d43dc46a33 Removing 'references' entry. 2012-10-28 12:57:49 -07:00
Adam Coddington
9615568108 Modifying admin display; adding help text. 2012-10-28 12:41:36 -07:00
Adam Coddington
0cdf0e4126 Escape HTML in help text. 2012-10-28 12:27:20 -07:00
Adam Coddington
6a1394eded Fixing syntax bug. 2012-10-28 12:26:17 -07:00
Adam Coddington
77acc09e2f Allow specification of from e-mail on mailbox model. 2012-10-28 12:25:37 -07:00
Adam Coddington
188ac8093b Removing 'References' table; default django mail sending methods do not allow multi-line headers (which are required for setting references). 2012-10-28 12:03:31 -07:00
Adam Coddington
608ab9f6c4 Do not set message to returned value from sending. 2012-10-28 11:34:04 -07:00
Adam Coddington
ba71477f21 Misspelled import. 2012-10-28 11:33:06 -07:00
Adam Coddington
62231e5a08 Misspelled import. 2012-10-28 11:31:31 -07:00
Adam Coddington
dcb26e97b5 Set message-Id during reply process; build message references properly. 2012-10-28 11:29:56 -07:00
Adam Coddington
bbbb774102 Convert message to string, then consume message into Email object. 2012-10-28 10:54:24 -07:00
Adam Coddington
01ce366d86 Properly return message object. 2012-10-27 19:10:18 -07:00
Adam Coddington
8a1ada2283 Removing accidental reference to self. 2012-10-27 19:03:15 -07:00
Adam Coddington
e4cb4d198a Removing missing .all for iterating over related objects. 2012-10-27 19:01:09 -07:00
Adam Coddington
55fb2f607e Removing 'address' field from admin changelist. 2012-10-27 18:53:59 -07:00