├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── auto_update ├── auto_update.sh └── auto_update_config_example.sh ├── conf ├── create_admin.json ├── f2b_filter.conf ├── f2b_jail.conf ├── gunicorn.conf.py ├── nginx.conf ├── seafdav.conf ├── seafevents.conf ├── seafile-doc-converter.service ├── seafile-doc-server.service ├── seafile-doc_env.j2 ├── seafile-notification.service ├── seafile-notification_env.j2 ├── seafile-thumbnail.service ├── seafile-thumbnail_env.j2 ├── seafile.conf ├── seafile.service ├── seafile_env.j2 ├── seahub.service └── seahub_settings.py ├── doc ├── ADMIN.md ├── DESCRIPTION.md ├── DESCRIPTION_fr.md ├── POST_UPGRADE.md ├── PRE_UPGRADE.d │ └── 13.0.8~ynh1.md └── screenshots │ └── screenshot.png ├── manifest.toml ├── patches └── main │ └── import_ldap_user_when_authenticated_from_remoteUserBackend.patch ├── scripts ├── _common.sh ├── backup ├── change_url ├── install ├── remove ├── restore ├── upgrade └── ynh_setup_source ├── sources ├── exec_in_seadoc_image.sh ├── exec_in_seafile_image.sh ├── exec_in_seafile_notification_image.sh └── exec_in_thumbnail_image.sh └── tests.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/README.md -------------------------------------------------------------------------------- /auto_update/auto_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/auto_update/auto_update.sh -------------------------------------------------------------------------------- /auto_update/auto_update_config_example.sh: -------------------------------------------------------------------------------- 1 | notify_email="hello@world.tld" 2 | -------------------------------------------------------------------------------- /conf/create_admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/create_admin.json -------------------------------------------------------------------------------- /conf/f2b_filter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/f2b_filter.conf -------------------------------------------------------------------------------- /conf/f2b_jail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/f2b_jail.conf -------------------------------------------------------------------------------- /conf/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/gunicorn.conf.py -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/seafdav.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafdav.conf -------------------------------------------------------------------------------- /conf/seafevents.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafevents.conf -------------------------------------------------------------------------------- /conf/seafile-doc-converter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-doc-converter.service -------------------------------------------------------------------------------- /conf/seafile-doc-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-doc-server.service -------------------------------------------------------------------------------- /conf/seafile-doc_env.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-doc_env.j2 -------------------------------------------------------------------------------- /conf/seafile-notification.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-notification.service -------------------------------------------------------------------------------- /conf/seafile-notification_env.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-notification_env.j2 -------------------------------------------------------------------------------- /conf/seafile-thumbnail.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-thumbnail.service -------------------------------------------------------------------------------- /conf/seafile-thumbnail_env.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile-thumbnail_env.j2 -------------------------------------------------------------------------------- /conf/seafile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile.conf -------------------------------------------------------------------------------- /conf/seafile.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile.service -------------------------------------------------------------------------------- /conf/seafile_env.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seafile_env.j2 -------------------------------------------------------------------------------- /conf/seahub.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seahub.service -------------------------------------------------------------------------------- /conf/seahub_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/conf/seahub_settings.py -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/DESCRIPTION_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/doc/DESCRIPTION_fr.md -------------------------------------------------------------------------------- /doc/POST_UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/doc/POST_UPGRADE.md -------------------------------------------------------------------------------- /doc/PRE_UPGRADE.d/13.0.8~ynh1.md: -------------------------------------------------------------------------------- 1 | - Upgrade to seafile 13 (major update) 2 | - Add seadoc -------------------------------------------------------------------------------- /doc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/doc/screenshots/screenshot.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /patches/main/import_ldap_user_when_authenticated_from_remoteUserBackend.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/patches/main/import_ldap_user_when_authenticated_from_remoteUserBackend.patch -------------------------------------------------------------------------------- /scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/_common.sh -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /scripts/ynh_setup_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/scripts/ynh_setup_source -------------------------------------------------------------------------------- /sources/exec_in_seadoc_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/sources/exec_in_seadoc_image.sh -------------------------------------------------------------------------------- /sources/exec_in_seafile_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/sources/exec_in_seafile_image.sh -------------------------------------------------------------------------------- /sources/exec_in_seafile_notification_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/sources/exec_in_seafile_notification_image.sh -------------------------------------------------------------------------------- /sources/exec_in_thumbnail_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/sources/exec_in_thumbnail_image.sh -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/seafile_ynh/HEAD/tests.toml --------------------------------------------------------------------------------