mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
Updating documentation, bumping version number.
This commit is contained in:
parent
de66d86459
commit
f4baef7f0a
3 changed files with 7 additions and 7 deletions
|
|
@ -1,2 +1,3 @@
|
||||||
.*\.pyc
|
.*\.pyc
|
||||||
.*egg-info.*
|
.*egg-info.*
|
||||||
|
dist/.*
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Introduction
|
Introduction
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
How many times have you had to consume some sort of POP3 or IMAP mailbox for incoming content? One too many times for me.
|
How many times have you had to consume some sort of POP3, IMAP, or local mailbox for incoming content? One too many times for me.
|
||||||
|
|
||||||
This small Django application will allow you to specify IMAP or POP3 mailboxes that you would like consumed for incoming content; the e-mail will be stored, and you can process it at will (or, if you're in a hurry, by subscribing to a signal).
|
This small Django application will allow you to specify mailboxes that you would like consumed for incoming content; the e-mail will be stored, and you can process it at will (or, if you're in a hurry, by subscribing to a signal).
|
||||||
|
|
||||||
WARNING! This app will delete any messages it can find in the inbox you specify-- please make sure you don't have anything important in there.
|
WARNING! This will delete any messages it can find in the inbox you specify-- please make sure you don't have anything important in there.
|
||||||
|
|
||||||
Setting up your mailbox
|
Setting up your mailbox
|
||||||
=======================
|
=======================
|
||||||
|
|
@ -49,8 +49,7 @@ If you happen to want to consume a file-based mailbox like an Maildir, Mbox, Bab
|
||||||
|
|
||||||
maildir:///var/mail
|
maildir:///var/mail
|
||||||
|
|
||||||
.. important::
|
Note that there is an additional ``/`` in the above URI after the protocol; this is important.
|
||||||
Note that there are three slashes in the above URI.
|
|
||||||
|
|
||||||
Subscribing to the incoming mail signal
|
Subscribing to the incoming mail signal
|
||||||
=======================================
|
=======================================
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -2,9 +2,9 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django_mailbox',
|
name='django_mailbox',
|
||||||
version='1.0',
|
version='1.0.1',
|
||||||
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
||||||
description='Automatically import mail from POP3 or IMAP into Django',
|
description='Automatically import mail from POP3, IMAP, or a local mailbox into Django',
|
||||||
author='Adam Coddington',
|
author='Adam Coddington',
|
||||||
author_email='me@adamcoddington.net',
|
author_email='me@adamcoddington.net',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue