Skip to content

Commit 8992bab

Browse files
authored
Merge pull request #293 from pfouque/resend_poor_type_checking
Improve Resend documentation and checks
2 parents c722d7e + 6dcded0 commit 8992bab

File tree

5 files changed

+34
-21
lines changed

5 files changed

+34
-21
lines changed

django_mailbox/models.py

+13-4
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def _get_dehydrated_message(self, msg, record):
300300
new = EmailMessage()
301301
if (
302302
msg.is_multipart()
303-
and not 'attachment' in msg.get('Content-Disposition', '')
303+
and 'attachment' not in msg.get('Content-Disposition', '')
304304
):
305305
for header, value in msg.items():
306306
new[header] = value
@@ -647,14 +647,24 @@ def to_addresses(self):
647647
return addresses
648648

649649
def reply(self, message):
650-
"""Sends a message as a reply to this message instance.
650+
"""Sends an EmailMessage as a reply to this message instance::
651+
652+
from django.core.mail import EmailMessage
653+
654+
message.reply(
655+
EmailMessage(subject="pong", body="pongpong")
656+
)
651657
652658
Although Django's e-mail processing will set both Message-ID
653659
and Date upon generating the e-mail message, we will not be able
654660
to retrieve that information through normal channels, so we must
655661
pre-set it.
656-
657662
"""
663+
from django.core.mail import EmailMessage as DjangoEmailMessage
664+
665+
if not isinstance(message, DjangoEmailMessage):
666+
raise ValueError('Message must be an instance of django.core.mail.EmailMessage')
667+
658668
if not message.from_email:
659669
if self.mailbox.from_email:
660670
message.from_email = self.mailbox.from_email
@@ -888,7 +898,6 @@ def __str__(self):
888898
return f'{self.get_filename()}: {self.document.url}'
889899
return self.get_filename()
890900

891-
892901
class Meta:
893902
verbose_name = _('Message attachment')
894903
verbose_name_plural = _('Message attachments')

django_mailbox/tests/test_process_email.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@ def test_message_reply(self):
345345
)
346346
msg = self.mailbox.record_outgoing_message(email_object.message())
347347

348+
with self.assertRaises(ValueError):
349+
msg.reply(Message(subject="ping", body="pong"))
350+
348351
self.assertTrue(msg.outgoing)
349352

350353
actual_from = '[email protected]'
@@ -439,7 +442,7 @@ def test_message_compressed(self):
439442

440443
msg = self.mailbox.process_incoming_message(message)
441444

442-
actual_email_object = msg.get_email_object()
445+
_actual_email_object = msg.get_email_object()
443446

444447
self.assertTrue(msg.eml.name.endswith('.eml.gz'))
445448

django_mailbox/transports/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def get_email_from_bytes(self, contents):
1111
return message
1212

1313
def close(self):
14-
pass
14+
pass

django_mailbox/transports/imap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def close(self):
5353
try:
5454
self.server.close()
5555
self.server.logout()
56-
except (imaplib.IMAP4.error, OSError) as e:
56+
except (imaplib.IMAP4.error, OSError) as e:
5757
logger.warning(f'Failed to close IMAP connection, ignoring: {e}')
5858
pass
5959

docs/topics/mailbox_types.rst

+15-14
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ POP3 and IMAP as well as local file-based mailboxes.
77

88
.. table:: 'Protocol' Options
99

10-
============ ================ ====================================================================================================================================================================
11-
Mailbox Type 'Protocol':// Notes
12-
============ ================ ====================================================================================================================================================================
13-
POP3 ``pop3://`` Can also specify SSL with ``pop3+ssl://``
14-
IMAP ``imap://`` Can also specify SSL with ``imap+ssl://`` or STARTTLS with ``imap+tls``; additional configuration is also possible: see :ref:`pop3-and-imap-mailboxes` for details.
15-
Gmail IMAP ``gmail+ssl://`` Uses OAuth authentication for Gmail's IMAP transport. See :ref:`gmail-oauth` for details.
16-
Office365 API``office365://`` Uses OAuth authentication for Office365 API transport. See :ref:`office365-oauth` for details.
17-
Maildir ``maildir://``
18-
Mbox ``mbox://``
19-
Babyl ``babyl://``
20-
MH ``mh://``
21-
MMDF ``mmdf://``
22-
Piped Mail *empty* See :ref:`receiving-mail-from-exim4-or-postfix`
23-
============ ================ ====================================================================================================================================================================
10+
================ ================ ====================================================================================================================================================================
11+
Mailbox Type 'Protocol':// Notes
12+
================ ================ ====================================================================================================================================================================
13+
POP3 ``pop3://`` Can also specify SSL with ``pop3+ssl://``
14+
IMAP ``imap://`` Can also specify SSL with ``imap+ssl://`` or STARTTLS with ``imap+tls``; additional configuration is also possible: see :ref:`pop3-and-imap-mailboxes` for details.
15+
Gmail IMAP ``gmail+ssl://`` Uses OAuth authentication for Gmail's IMAP transport. See :ref:`gmail-oauth` for details.
16+
Office365 API ``office365://`` Uses OAuth authentication for Office365 API transport. See :ref:`office365-oauth` for details.
17+
Maildir ``maildir://`` *empty*
18+
Mbox ``mbox://`` *empty*
19+
Babyl ``babyl://`` *empty*
20+
MH ``mh://`` *empty*
21+
MMDF ``mmdf://`` *empty*
22+
Piped Mail *empty* See :ref:`receiving-mail-from-exim4-or-postfix`
23+
================ ================ ====================================================================================================================================================================
2424

2525

2626
.. warning::
@@ -122,6 +122,7 @@ Build your URI accordingly::
122122

123123

124124
.. _office365-oauth:
125+
125126
Office 365 API
126127
-------------------------------------
127128

0 commit comments

Comments
 (0)