forked from mirror/django-mailbox
Modifying management command to accept incoming mail from STDIN.
--HG-- branch : exim4_pipe
This commit is contained in:
parent
b7192e9149
commit
5cf07a1c7b
2 changed files with 32 additions and 14 deletions
|
|
@ -1,14 +1,28 @@
|
|||
import email
|
||||
import ipdb
|
||||
import logging
|
||||
import rfc822
|
||||
import sys
|
||||
|
||||
from django.core.managemet.base import BaseCommand
|
||||
from django.core.management.base import BaseCommand
|
||||
|
||||
from django_mailbox.models import Mailbox, Message
|
||||
from django_mailbox.models import Mailbox
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
class Command(BaseCommand):
|
||||
def handle(self, *args, **options):
|
||||
message_string = open(sys.stdin, 'r').read()
|
||||
ipdb.set_trace()
|
||||
#message = email.message_from_string(message_string)
|
||||
message = email.message_from_string(sys.stdin.read())
|
||||
if message:
|
||||
mailbox = self.get_mailbox_for_message(message)
|
||||
mailbox.process_incoming_message(message)
|
||||
logger.info("Message received from %s" % message['from'])
|
||||
else:
|
||||
logger.warning("Message not processable.")
|
||||
|
||||
def get_mailbox_for_message(self, message):
|
||||
email_address = rfc822.parseaddr(message['from'][1][0:255])
|
||||
mailbox, created = Mailbox.objects.get_or_create(
|
||||
name=email_address,
|
||||
)
|
||||
return mailbox
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue