gitextract_uo92plxx/ ├── LICENSE ├── Makefile.in ├── aclocal.m4 ├── changelog.md ├── config ├── configure ├── configure.ac ├── contrib/ │ ├── completions/ │ │ ├── complete.bash │ │ ├── complete.fish │ │ └── complete.zsh │ ├── docker/ │ │ ├── Dockerfile │ │ ├── Dockerfile-alpine │ │ ├── Dockerfile-debian │ │ ├── entrypoint.sh │ │ └── hooks/ │ │ └── post_push │ ├── init.d/ │ │ ├── onedrive.init │ │ └── onedrive_service.sh │ ├── logrotate/ │ │ └── onedrive.logrotate │ ├── pacman/ │ │ └── PKGBUILD.in │ ├── spec/ │ │ └── onedrive.spec.in │ └── systemd/ │ ├── onedrive.service.in │ └── onedrive@.service.in ├── docs/ │ ├── advanced-usage.md │ ├── application-config-options.md │ ├── application-security.md │ ├── build-rpm-howto.md │ ├── business-shared-items.md │ ├── client-architecture.md │ ├── contributing.md │ ├── docker.md │ ├── install.md │ ├── known-issues.md │ ├── national-cloud-deployments.md │ ├── podman.md │ ├── privacy-policy.md │ ├── puml/ │ │ ├── applyPotentiallyChangedItem.puml │ │ ├── applyPotentiallyNewLocalItem.puml │ │ ├── client_side_filtering_processing_order.puml │ │ ├── client_side_filtering_rules.puml │ │ ├── client_use_of_libcurl.puml │ │ ├── code_functional_component_relationships.puml │ │ ├── conflict_handling_default.puml │ │ ├── conflict_handling_default_resync.puml │ │ ├── conflict_handling_local-first_default.puml │ │ ├── conflict_handling_local-first_resync.puml │ │ ├── database_schema.puml │ │ ├── default_sync_flow.puml │ │ ├── downloadFile.puml │ │ ├── high_level_operational_process.puml │ │ ├── is_item_in_sync.puml │ │ ├── local_first_sync_process.puml │ │ ├── main_activity_flows.puml │ │ ├── onedrive_linux_authentication.puml │ │ ├── onedrive_windows_ad_authentication.puml │ │ ├── onedrive_windows_authentication.puml │ │ ├── uploadFile.puml │ │ ├── uploadModifiedFile.puml │ │ └── webhooks.puml │ ├── server-side-filtering-limitations.md │ ├── sharepoint-libraries.md │ ├── terms-of-service.md │ ├── ubuntu-package-install.md │ ├── usage.md │ └── webhooks.md ├── install-sh ├── onedrive.1.in ├── readme.md ├── src/ │ ├── arsd/ │ │ ├── README.md │ │ └── cgi.d │ ├── clientSideFiltering.d │ ├── config.d │ ├── curlEngine.d │ ├── curlWebsockets.d │ ├── intune.d │ ├── itemdb.d │ ├── log.d │ ├── main.d │ ├── monitor.d │ ├── notifications/ │ │ ├── README │ │ ├── dnotify.d │ │ └── notify.d │ ├── onedrive.d │ ├── qxor.d │ ├── socketio.d │ ├── sqlite.d │ ├── sync.d │ ├── util.d │ ├── webhook.d │ └── xattr.d └── tests/ ├── bad-file-name.tar.xz └── makefiles.sh