mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
changes main directory to mailbox2
This commit is contained in:
parent
010611dc55
commit
5177ea5c65
83 changed files with 4 additions and 53025 deletions
26
django_mailbox2/transports/generic.py
Normal file
26
django_mailbox2/transports/generic.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# import sys
|
||||
|
||||
from .base import EmailTransport
|
||||
|
||||
|
||||
class GenericFileMailbox(EmailTransport):
|
||||
_variant = None
|
||||
_path = None
|
||||
|
||||
def __init__(self, path):
|
||||
super().__init__()
|
||||
self._path = path
|
||||
|
||||
def get_instance(self):
|
||||
return self._variant(self._path)
|
||||
|
||||
def get_message(self, condition=None):
|
||||
repository = self.get_instance()
|
||||
repository.lock()
|
||||
for key, message in repository.items():
|
||||
if condition and not condition(message):
|
||||
continue
|
||||
repository.remove(key)
|
||||
yield message
|
||||
repository.flush()
|
||||
repository.unlock()
|
||||
Loading…
Add table
Add a link
Reference in a new issue