Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iggy/simone
Django webmail package
https://github.com/iggy/simone
Last synced: 2 months ago
JSON representation
Django webmail package
- Host: GitHub
- URL: https://github.com/iggy/simone
- Owner: iggy
- License: other
- Created: 2014-04-18T02:22:18.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T15:31:02.000Z (almost 2 years ago)
- Last Synced: 2024-09-30T09:16:54.794Z (4 months ago)
- Language: Python
- Size: 3.6 MB
- Stars: 23
- Watchers: 9
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
- starred-awesome - simone - Django webmail package (Python)
README
simone
======Django webmail package
What would you like to see? This package (mostly) fits my needs as is (minus some send/reply/fwd improvements I have planned). I'm interested to know what users would like to see out of the package.
to run locally:
* make sure requirements are installed (See below)
* $ cd /path/to/simone.git
* create local_settings.py (at some point you will at least want SECRET_KEY set)
* $ python2 manage.py syncdb --pythonpath=..
(go through the creating superuser process)
* $ python2 manage.py runserver --pythonpath=..
* Open up a browser and go to http://127.0.0.1:8000/admin
* Add a new user to use
* $ python2 manage.py changepassword --pythonpath=.. *newuser*
* In your browser, logout
* Go to http://127.0.0.1:8000/mail
* Fill in your IMAP details
* Profit!What works:
reading email.... that's about it for now
Requirements:
* django (1.6+)
* imapclient (pip install imapclient)
* probably python-2.7 (it's all I've tested, theoretically 2.6+ should work)(NOTE: do not intall imaplib2)
Uses:
* jQuery
* jQueryUI (including the overcast theme)
* JsonTree (https://github.com/Erffun/JsonTree)