From f4baef7f0a1c88e46683c101b738f2c2b7e7e430 Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Sat, 30 Jun 2012 22:38:58 -0700 Subject: [PATCH] Updating documentation, bumping version number. --- .hgignore | 1 + readme.rst | 9 ++++----- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.hgignore b/.hgignore index 5aab31a..aee46ca 100644 --- a/.hgignore +++ b/.hgignore @@ -1,2 +1,3 @@ .*\.pyc .*egg-info.* +dist/.* diff --git a/readme.rst b/readme.rst index 2665f9e..6f489f6 100644 --- a/readme.rst +++ b/readme.rst @@ -1,11 +1,11 @@ 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 ======================= @@ -49,8 +49,7 @@ If you happen to want to consume a file-based mailbox like an Maildir, Mbox, Bab maildir:///var/mail -.. important:: - Note that there are three slashes in the above URI. +Note that there is an additional ``/`` in the above URI after the protocol; this is important. Subscribing to the incoming mail signal ======================================= diff --git a/setup.py b/setup.py index aabc8ac..4c021bc 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,9 @@ from setuptools import setup, find_packages setup( name='django_mailbox', - version='1.0', + version='1.0.1', 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_email='me@adamcoddington.net', classifiers=[