A Django Pluggable Web App Which Parses Outlook's .MSG File. This will be useful for non-Windows users (like me) when the only requirement is to see the .msg file content without uploading to 3rd-party non-secured web sites.
sudo apt-get install virtualenv python-pip git
sudo -H pip install pip -U
sudo -H pip install setuptools -U
git clone https://github.com/sauravmahuri2007/djmsgparser.git
cd djmsgparser
virtualenv --python=python3 venv
source venv/bin/activate
pip install -r requirements.txt
mkdir uploads
6. Run the app using the default lightweight Django web server (until this app is not part of a big application)
python manage.py runserver
./install
The app should have started running at http://127.0.0.1:8000. To start the djmsgparser application at any time below command can be executed in terminal:
djmsgparser # run in default address or,
djmsgparser 127.0.0.1:8008 # to run the app in any specific ip and port
Execute below command to uninstall the application:
./uninstall