gitextract_yqrokexp/ ├── .docker-hub-test ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Pipfile ├── README-de.md ├── README-el.md ├── README.md ├── THANKS.md ├── ci/ │ └── deploy-docker ├── data/ │ └── .keep ├── docker-compose.env.example ├── docker-compose.yml.example ├── docs/ │ ├── Dockerfile │ ├── Makefile │ ├── _static/ │ │ ├── .keep │ │ └── custom.css │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── consumption.rst │ ├── contributing.rst │ ├── customising.rst │ ├── examples/ │ │ └── lxc/ │ │ ├── lxc-install.sh │ │ └── paperless.conf │ ├── extending.rst │ ├── guesswork.rst │ ├── index.rst │ ├── migrating.rst │ ├── requirements.rst │ ├── requirements.txt │ ├── scanners.rst │ ├── screenshots.rst │ ├── setup.rst │ ├── troubleshooting.rst │ └── utilities.rst ├── management/ │ └── commands/ │ └── create_superuser_with_password.py ├── overrides/ │ └── README.md ├── paperless.conf.example ├── presentation/ │ ├── README.md │ ├── contrib/ │ │ ├── font-awesome-4.3.0/ │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── less/ │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── google/ │ │ └── css/ │ │ └── lato.css │ ├── css/ │ │ ├── print/ │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme/ │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source/ │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ ├── template/ │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ └── white.css │ ├── index.html │ ├── js/ │ │ └── reveal.js │ ├── lib/ │ │ ├── css/ │ │ │ └── zenburn.css │ │ ├── font/ │ │ │ ├── league-gothic/ │ │ │ │ ├── LICENSE │ │ │ │ └── league-gothic.css │ │ │ └── source-sans-pro/ │ │ │ ├── LICENSE │ │ │ └── source-sans-pro.css │ │ └── js/ │ │ ├── classList.js │ │ └── html5shiv.js │ └── plugin/ │ ├── highlight/ │ │ └── highlight.js │ ├── leap/ │ │ └── leap.js │ ├── markdown/ │ │ ├── example.html │ │ ├── example.md │ │ ├── markdown.js │ │ └── marked.js │ ├── math/ │ │ └── math.js │ ├── multiplex/ │ │ ├── client.js │ │ ├── index.js │ │ └── master.js │ ├── notes/ │ │ ├── notes.html │ │ └── notes.js │ ├── notes-server/ │ │ ├── client.js │ │ ├── index.js │ │ └── notes.html │ ├── print-pdf/ │ │ └── print-pdf.js │ ├── remotes/ │ │ └── remotes.js │ ├── search/ │ │ └── search.js │ └── zoom-js/ │ └── zoom.js ├── requirements.txt ├── resources/ │ └── logo/ │ └── print/ │ └── eps/ │ ├── Black logo - no background.eps │ ├── Color logo - no background.eps │ ├── Color logo with background.eps │ └── White logo - no background.eps ├── scripts/ │ ├── docker-entrypoint.sh │ ├── gunicorn.conf │ ├── paperless-consumer.service │ ├── paperless-webserver.service │ └── post-consumption-example.sh └── src/ ├── documents/ │ ├── __init__.py │ ├── actions.py │ ├── admin.py │ ├── apps.py │ ├── checks.py │ ├── consumer.py │ ├── filters.py │ ├── forms.py │ ├── loggers.py │ ├── mail.py │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ ├── change_storage_type.py │ │ ├── document_consumer.py │ │ ├── document_correspondents.py │ │ ├── document_exporter.py │ │ ├── document_importer.py │ │ ├── document_logs.py │ │ ├── document_renamer.py │ │ ├── document_retagger.py │ │ └── loaddata_stdin.py │ ├── managers.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151226_1316.py │ │ ├── 0003_sender.py │ │ ├── 0004_auto_20160114_1844.py │ │ ├── 0005_auto_20160123_0313.py │ │ ├── 0006_auto_20160123_0430.py │ │ ├── 0007_auto_20160126_2114.py │ │ ├── 0008_document_file_type.py │ │ ├── 0009_auto_20160214_0040.py │ │ ├── 0010_log.py │ │ ├── 0011_auto_20160303_1929.py │ │ ├── 0012_auto_20160305_0040.py │ │ ├── 0013_auto_20160325_2111.py │ │ ├── 0014_document_checksum.py │ │ ├── 0015_add_insensitive_to_match.py │ │ ├── 0016_auto_20170325_1558.py │ │ ├── 0017_auto_20170512_0507.py │ │ ├── 0018_auto_20170715_1712.py │ │ ├── 0019_add_consumer_user.py │ │ ├── 0020_document_added.py │ │ ├── 0021_document_storage_type.py │ │ ├── 0022_auto_20181007_1420.py │ │ ├── 0023_document_current_filename.py │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── parsers.py │ ├── serialisers.py │ ├── settings.py │ ├── signals/ │ │ ├── __init__.py │ │ └── handlers.py │ ├── static/ │ │ ├── js/ │ │ │ └── colours.js │ │ └── paperless.css │ ├── templates/ │ │ ├── admin/ │ │ │ ├── base_site.html │ │ │ ├── documents/ │ │ │ │ └── document/ │ │ │ │ ├── change_form.html │ │ │ │ ├── change_list.html │ │ │ │ ├── change_list_results.html │ │ │ │ └── select_object.html │ │ │ └── index.html │ │ └── documents/ │ │ └── index.html │ ├── templatetags/ │ │ ├── __init__.py │ │ ├── customisation.py │ │ └── hacks.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── samples/ │ │ │ ├── inline_mail.txt │ │ │ └── mail.txt │ │ ├── test_checks.py │ │ ├── test_consumer.py │ │ ├── test_document_model.py │ │ ├── test_file_handling.py │ │ ├── test_importer.py │ │ ├── test_logger.py │ │ ├── test_mail.py │ │ ├── test_matchables.py │ │ └── test_models.py │ └── views.py ├── manage.py ├── paperless/ │ ├── __init__.py │ ├── checks.py │ ├── db.py │ ├── middleware.py │ ├── mixins.py │ ├── models.py │ ├── settings.py │ ├── urls.py │ ├── version.py │ ├── views.py │ └── wsgi.py ├── paperless_tesseract/ │ ├── __init__.py │ ├── apps.py │ ├── languages.py │ ├── parsers.py │ ├── signals.py │ └── tests/ │ ├── __init__.py │ ├── test_date.py │ ├── test_ocr.py │ └── test_signals.py ├── paperless_text/ │ ├── __init__.py │ ├── apps.py │ ├── parsers.py │ └── signals.py ├── reminders/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── filters.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20181007_1420.py │ │ └── __init__.py │ ├── models.py │ ├── serialisers.py │ ├── tests.py │ └── views.py ├── setup.cfg └── tox.ini