gitextract_ojb3q6ak/ ├── .appveyor.yml ├── .coveragerc ├── .gitattributes ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS.md ├── README.md ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── happy-plant.seq │ ├── happy.seq │ ├── index.rst │ ├── server-protocol.md │ ├── states.dot │ └── welcome.md ├── misc/ │ ├── migrate_channel_db.py │ ├── migrate_usage_db.py │ ├── munin/ │ │ ├── wormhole_active │ │ ├── wormhole_errors │ │ ├── wormhole_event_rate │ │ ├── wormhole_events │ │ ├── wormhole_events_alltime │ │ └── wormhole_version_uptake │ └── windows-build.cmd ├── newest-version.py ├── setup.cfg ├── setup.py ├── signatures/ │ ├── magic-wormhole-mailbox-server-0.5.0.tar.gz.asc │ ├── magic-wormhole-mailbox-server-0.5.1.tar.gz.asc │ ├── magic_wormhole_mailbox_server-0.5.0-py3-none-any.whl.asc │ ├── magic_wormhole_mailbox_server-0.5.1-py3-none-any.whl.asc │ ├── magic_wormhole_mailbox_server-0.6.0-py3-none-any.whl.asc │ ├── magic_wormhole_mailbox_server-0.6.0.tar.gz.asc │ ├── magic_wormhole_mailbox_server-0.7.0-py3-none-any.whl.asc │ ├── magic_wormhole_mailbox_server-0.7.0.tar.gz.asc │ ├── magic_wormhole_mailbox_server-0.8.0-py3-none-any.whl.asc │ └── magic_wormhole_mailbox_server-0.8.0.tar.gz.asc ├── src/ │ ├── twisted/ │ │ └── plugins/ │ │ └── magic_wormhole_mailbox.py │ └── wormhole_mailbox_server/ │ ├── __init__.py │ ├── _version.py │ ├── database.py │ ├── db-schemas/ │ │ ├── channel-v1.sql │ │ ├── upgrade-usage-to-v2.sql │ │ ├── usage-v1.sql │ │ └── usage-v2.sql │ ├── increase_rlimits.py │ ├── server.py │ ├── server_tap.py │ ├── server_websocket.py │ ├── test/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── test_config.py │ │ ├── test_database.py │ │ ├── test_rlimits.py │ │ ├── test_server.py │ │ ├── test_service.py │ │ ├── test_stats.py │ │ ├── test_util.py │ │ ├── test_web.py │ │ ├── test_websocket.py │ │ ├── test_ws_client.py │ │ └── ws_client.py │ ├── util.py │ └── web.py ├── tox.ini ├── update-version.py └── versioneer.py