forked from mirror/django-mailbox
7 lines
147 B
Python
7 lines
147 B
Python
|
|
from mailbox import MH
|
||
|
|
from django_mailbox.transports.generic import GenericFileMailbox
|
||
|
|
|
||
|
|
|
||
|
|
class MHTransport(GenericFileMailbox):
|
||
|
|
_variant = MH
|