1
0
Fork 0

Modifying management command to accept incoming mail from STDIN.

--HG--
branch : exim4_pipe
This commit is contained in:
me@adamcoddington.net 2012-10-08 03:07:30 +00:00
parent b7192e9149
commit 5cf07a1c7b
2 changed files with 32 additions and 14 deletions

View file

@ -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