1
0
Fork 0
No description
Find a file
2014-11-08 14:23:07 -08:00
django_mailbox Given that 'classic' versions of django do not have a setup function: allow that to fail. 2014-11-07 19:12:30 -08:00
docs Moving settings into appendix, too. 2014-08-17 18:32:25 -07:00
.gitignore Moving 'message storage details' page into appendix 2014-08-15 21:02:53 -07:00
.travis.yml Let's still fail a build if we break things for Django 1.4 and 1.5; lots of people are trapped on old versions. 2014-11-07 19:17:06 -08:00
CHANGELOG.rst Release 4.1; adding Django 1.7 migrations support. 2014-11-08 14:23:07 -08:00
LICENSE Adding license. 2014-02-22 20:01:30 -08:00
MANIFEST Bumping version number. 2013-01-14 03:32:46 -08:00
MANIFEST.in Cleaning up tests; moving test e-mail messages; fixing bugs relating to message encoding rehydration. 2013-07-26 18:07:31 -07:00
readme.rst This is a better preposition. 2014-09-10 14:38:12 -07:00
setup.py Release 4.1; adding Django 1.7 migrations support. 2014-11-08 14:23:07 -08:00

.. image:: https://travis-ci.org/coddingtonbear/django-mailbox.png?branch=master
   :target: https://travis-ci.org/coddingtonbear/django-mailbox

.. image:: https://badge.fury.io/py/django-mailbox.png
    :target: http://badge.fury.io/py/django-mailbox

.. image:: https://pypip.in/d/django-mailbox/badge.png
    :target: https://pypi.python.org/pypi/django-mailbox


Easily ingest messages from POP3, IMAP, or local mailboxes into your Django application.

This app allows you to either ingest e-mail content from common e-mail services (as long as the service provides POP3 or IMAP support),
or directly recieve e-mail messages from ``stdin`` (for locally processing messages from Postfix or Exim4).

These ingested messages will be stored in the database in Django models and you can process their content at will,
or -- if you're in a hurry -- by using a signal receiver.

- Documentation for django-mailbox is available on
  `ReadTheDocs <http://django-mailbox.readthedocs.org/>`_.
- Please post issues on
  `Github <http://github.com/coddingtonbear/django-mailbox/issues>`_.
- Test status available on
  `Travis-CI <https://travis-ci.org/coddingtonbear/django-mailbox>`_.