From e23d051314873f90df35a04fa6c625ecd7ab85a8 Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Sat, 30 Jun 2012 12:18:42 -0700 Subject: [PATCH] Updating documentation for clarity; bumping version number. --- readme.rst | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.rst b/readme.rst index a9f6c2e..42616ce 100644 --- a/readme.rst +++ b/readme.rst @@ -12,14 +12,14 @@ URI Examples Mailbox URIs are in the normal URI format:: - protocol+ssl?://username:password@domain + protocol://username:password@domain Basic IMAP Example: ``imap://username:password@server`` Basic POP3 Example: ``pop3://username:password@server`` -Most mailboxes these days are SSL-enabled; if yours is, add ``+ssl`` to your URI. Also, if your username or password include any non-ascii characters, they should be URL-encoded (for example, if your username includes an ``@``, it should be changed to ``%40`` in your URI). Example: +Most mailboxes these days are SSL-enabled; if yours is, add ``+ssl`` to your URI. Also, if your username or password include any non-ascii characters, they should be URL-encoded (for example, if your username includes an ``@``, it should be changed to ``%40`` in your URI). -If you have an account named 'contemporanea' with a password of '1234' at 'google.com', you would enter the following as your URI:: +If you have an account named 'contemporanea@gmail.com' with a password of '1234' on GMail (which I happen to know uses the POP3 server of 'pop3.gmail.com' and requires SSL), you would enter the following as your URI:: pop3+ssl://contemporanea%40gmail.com:1234@pop.gmail.com diff --git a/setup.py b/setup.py index 281f07c..84eb31c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='django_mailbox', - version='0.1.1', + version='0.2', url='http://bitbucket.org/latestrevision/django-mailbox/', description='Automatically import mail from POP3 or IMAP into Django', author='Adam Coddington',