diff --git a/server/32/Nextcloud_Developer_Manual.epub b/server/32/Nextcloud_Developer_Manual.epub index ab3438d61ed..11e0d560ebf 100644 Binary files a/server/32/Nextcloud_Developer_Manual.epub and b/server/32/Nextcloud_Developer_Manual.epub differ diff --git a/server/32/Nextcloud_Server_Administration_Manual.epub b/server/32/Nextcloud_Server_Administration_Manual.epub index 94af71f53b2..4476710087b 100644 Binary files a/server/32/Nextcloud_Server_Administration_Manual.epub and b/server/32/Nextcloud_Server_Administration_Manual.epub differ diff --git a/server/32/Nextcloud_Server_Administration_Manual.pdf b/server/32/Nextcloud_Server_Administration_Manual.pdf index e111956c93a..ae9484c37d8 100644 Binary files a/server/32/Nextcloud_Server_Administration_Manual.pdf and b/server/32/Nextcloud_Server_Administration_Manual.pdf differ diff --git a/server/32/Nextcloud_User_Manual.epub b/server/32/Nextcloud_User_Manual.epub index 3502bd84bec..fc14fe14748 100644 Binary files a/server/32/Nextcloud_User_Manual.epub and b/server/32/Nextcloud_User_Manual.epub differ diff --git a/server/32/Nextcloud_User_Manual.pdf b/server/32/Nextcloud_User_Manual.pdf index 46d7b765561..231798f387f 100644 Binary files a/server/32/Nextcloud_User_Manual.pdf and b/server/32/Nextcloud_User_Manual.pdf differ diff --git a/server/32/admin_manual/ai/app_context_chat.html b/server/32/admin_manual/ai/app_context_chat.html index 75b60a22e5d..8b4f9ef4362 100644 --- a/server/32/admin_manual/ai/app_context_chat.html +++ b/server/32/admin_manual/ai/app_context_chat.html @@ -111,7 +111,6 @@
Minimal Nextcloud version: 30
Minimal Nextcloud version: 32
Nextcloud AIO is supported
We currently support NVIDIA GPUs and x86_64 CPUs
We currently support NVIDIA GPUs, AMD GPUs (via Vulkan) and x86_64 CPUs
CPU that supports AVX and AVX2 instruction
CUDA >= v12.2 on your host system
CUDA >= v12.8 on your host system if NVIDIA GPUs are used
Both podman and docker are supported
GPU Setup Sizing
+
-
- A NVIDIA GPU with at least 2GB VRAM
+
- A GPU with at least 2GB VRAM
- @@ -274,39 +274,23 @@
The requirements for the text-to-text providers should be checked separately for each app here in the “Backend apps” section, as they can vary greatly based on the model used and whether the provider is hosted locally or remotely.
Installationhere in the “Backend apps” section.
- -
Optionally but recommended, setup background workers for faster pickup of tasks. See the relevant section in AI Overview for more information.
Note: Both apps need to be installed and both major version and minor version of the two apps must match for the functionality to work (ie. “v1.3.4” and “v1.3.1”; but not “v1.3.4” and “v2.1.6”; and not “v1.3.4” and “v1.4.5”). Keep this in mind when updating.
++Note
+Both apps need to be installed and both major version and minor version of the two apps must match for the functionality to work (ie. “v1.3.4” and “v1.3.1”; but not “v1.3.4” and “v2.1.6”; and not “v1.3.4” and “v1.4.5”). Keep this in mind when updating.
+Initial loading of data
- Auto-indexing
--Context chat will automatically load user data into the Vector DB using asynchronous background jobs.+Context chat will automatically load user data into the Vector DB. Context chat backend pulls the queued files and content providers’ items from the context chat PHP app and indexes them.The initial loading of data can take a long time depending on the number of files and their size.The indexing jobs are set up to run during the Nextcloud instance’s maintenance window (typically during the night) only. If you have not set a maintenance window, indexing will run 24/7.
---You can set up a separate cron job to run every 30 minutes for Context Chat to avoid slowing down normal background job operation on larger instances.-The following command can bypass the maintenance window so it can either be set to run during the day even with a maintenance window set, or it can be set to run during the weekends 24/7 to speed up the indexing process.---php cron.php "OCA\\ContextChat\\BackgroundJobs\\IndexerJob" "OCA\\ContextChat\\BackgroundJobs\\ActionJob" "OCA\\ContextChat\\BackgroundJobs\\SubmitContentJob" "OCA\\ContextChat\\BackgroundJobs\\StorageCrawlJob" "OCA\\ContextChat\\BackgroundJobs\\InitialContentImportJob" -- Synchronous indexing
---To index all the files synchronously, use the following command:-Note: This does not interact with the auto-indexing feature and that list would remain unchanged. However, the indexed files would be skipped when the auto indexer runs.---occ context_chat:scan <user_id> -Note: The synchronous command could take several days to complete. On larger systems we thus recommend to use auto-indexing.
- Scaling
+Scaling
Listed below are the major parts of the system that can be scaled independently to improve performance:
The text-to-text task processing provider (from among the list of providers here in the “Backend apps” section)
@@ -323,21 +307,40 @@Scaling
The embedding model performance can be scaled by using a hosted embedding service, locally or remotely hosted. It should be able to serve an OpenAI-compatible API.The embedding service URL can be set using the environment variableCC_EM_BASE_URLduring deployment in the “Deploy Options”. Other options like the model name, api key, or username and password can be set using the environment variablesCC_EM_MODEL_NAME,CC_EM_API_KEY,CC_EM_USERNAME, andCC_EM_PASSWORDrespectively.++Warning
+The embedding model cannot be changed after installing the app. To use a different embedding model or service, you +will need to do a full uninstall (removing all data of the ExApp) and reinstall the
+context_chat_backendExApp +with the new environment variables and an empty vector DB. If the vector DB is external, the connected database +(database may be namedccb) should be dropped before installing the ExApp again.For the
+context_chatapp, obtain a clean slate by dropping all the<PREFIX>_context_chat_*tables in the database, and removing all the config values: +And re-installing it.++drop table if exists oc_context_chat_action_queue; +drop table if exists oc_context_chat_content_queue; +drop table if exists oc_context_chat_fs_events; +drop table if exists oc_context_chat_queue; +delete from oc_appconfig where appid = 'context_chat'; +
The parsing of the documents to extract text
+context_chat_backend ExApp in a docker-based environment. It is a CPU-bound task, so having a powerful CPU will help speed up the parsing process.context_chat_backend ExApp to handle the parsing concurrently, see the Kubernetes section.One part of the system that cannot be scaled yet is the parsing of the documents to extract text.
-This is currently done in a single instance of the context_chat_backend ExApp.
-It is a CPU-bound task so having a powerful CPU will help speed up the parsing process.
If context_chat_backend is already deployed, you can change these environment variables by redeploying it with the new values.
Go to Apps page -> search for “Context Chat Backend”
Disable and remove the app taking care the data is not removed
Disable and remove the app taking care the data is not removed (except when the embedding model is changed, in which case the data should be removed)
Set the “Deploy Options” with the new environment variables
Reinstall the app
You can also find the context_chat app in our app store, where you can write a review: https://apps.nextcloud.com/apps/context_chat
context_chat:scanScan and index the user’s documents based on the user ID provided, synchronously.
-context_chat:statsocc config:app:set context_chat auto_indexing --value=true --type=boolean
Context chat backend’s configuration options are available through the environment variable in Deploy Options.
AppAPI allows optionally to configure environment variables and mounts for the ExApp container.
+AppAPI allows optionally to configure environment variables and mounts for the ExApp container.
It is available via “Deploy options” modal next to “Deploy and Enable” button in the sidebar of the ExApp page on the Apps management page:
Or via CLI (Advanced Deploy Options).
diff --git a/server/32/admin_manual/objects.inv b/server/32/admin_manual/objects.inv index f5c5acad284..e521fd7a8a7 100644 Binary files a/server/32/admin_manual/objects.inv and b/server/32/admin_manual/objects.inv differ diff --git a/server/32/admin_manual/searchindex.js b/server/32/admin_manual/searchindex.js index 6da4a02c33b..3e783c281e7 100644 --- a/server/32/admin_manual/searchindex.js +++ b/server/32/admin_manual/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {".htaccess": [[130, "htaccess"]], "/dev/urandom is not readable by PHP": [[67, "dev-urandom-is-not-readable-by-php"]], "1st login": [[130, "st-login"], [142, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[54, "ajax"]], "APCu": [[56, "apcu"]], "Account delegation": [[114, "account-delegation"]], "Activating": [[55, "activating"]], "Activities in groupfolders or external storages": [[49, "activities-in-groupfolders-or-external-storages"]], "Activity app": [[49, null], [57, "activity-app"]], "Add a new user": [[74, "add-a-new-user"]], "Add an OAuth2 Application": [[65, "add-an-oauth2-application"]], "Add missing indices": [[146, "add-missing-indices"]], "Add repository:": [[149, "add-repository"]], "Add user to group": [[74, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Adding files to external storages": [[37, "adding-files-to-external-storages"]], "Additional Apache configurations": [[130, "additional-apache-configurations"]], "Additional configuration options": [[147, "additional-configuration-options"]], "Additional configuration options via occ": [[79, "additional-configuration-options-via-occ"]], "Additional notes for Redis vs. APCu on memory caching": [[56, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[100, "additional-options"]], "Address Book Sync": [[112, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[23, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[64, "admin-audit-log-optional"]], "Administration interface": [[112, "administration-interface"]], "Administration privileges (Delegation)": [[50, null]], "Administrative Group mapping": [[79, "administrative-group-mapping"]], "Advanced Deploy Options": [[97, null], [101, "advanced-deploy-options"]], "Advanced settings": [[40, "advanced-settings"], [79, "advanced-settings"]], "Advantages of upgrading PHP": [[131, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[60, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[57, "all-other-configuration-options"]], "All parameters": [[53, "all-parameters"]], "Allow access to CIFS/SMB": [[128, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[128, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[128, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[128, "allow-access-to-ldap-server"]], "Allow access to SMTP/sendmail": [[128, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[128, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[128, "allow-access-to-network-memcache"]], "Allow access to remote network": [[128, "allow-access-to-remote-network"]], "Allow subscriptions on local network": [[111, "allow-subscriptions-on-local-network"]], "Allow users to mount external Storage": [[37, "allow-users-to-mount-external-storage"]], "Alternate Code Locations": [[57, "alternate-code-locations"]], "Amazon S3": [[28, null]], "Android 11 and Below": [[51, "android-11-and-below"]], "Android 12 and Above": [[51, "android-12-and-above"]], "Android Deep Link Handling": [[51, null]], "Anti-abuse alerts": [[114, "anti-abuse-alerts"]], "Antivirus": [[146, "antivirus"]], "Antivirus scanner": [[52, null]], "Apache": [[23, "apache"], [120, "apache"]], "Apache Web server configuration": [[130, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[23, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[23, "apache-with-mod-proxy-fcgi"]], "Apache2": [[66, "apache2"]], "App config options": [[57, "app-config-options"]], "App passwords": [[70, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[163, "appapi-app-api-is-now-a-default-app"], [164, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[165, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[98, null]], "Applying a patch": [[133, "applying-a-patch"]], "Approaching Upgrades": [[145, "approaching-upgrades"]], "Approval/Suspend steps": [[168, "approval-suspend-steps"]], "Apps": [[15, "apps"], [57, "apps"], [86, null]], "Apps commands": [[146, "apps-commands"]], "Apps management": [[15, null]], "Arguments": [[100, "arguments"], [101, "arguments"], [101, "id1"], [101, "id3"]], "Artificial Intelligence": [[12, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[105, "assigning-restricted-and-invisible-tags"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[114, "attachment-size-limit"]], "Authentication": [[70, null], [168, "authentication"]], "Authentication in Nextcloud": [[82, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig for your mail domain fails": [[116, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[70, "automated-clean-up"]], "Automated clean-up of app password": [[163, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[105, null]], "Automatic configurations examples": [[53, "automatic-configurations-examples"]], "Automatic setup": [[53, null]], "Available rules": [[104, "available-rules"], [105, "available-rules"]], "Available storage backends": [[37, "available-storage-backends"]], "Backend apps": [[14, "backend-apps"], [14, "id31"], [14, "id35"], [14, "id39"], [14, "id43"], [14, "id47"], [14, "id51"], [14, "id55"]], "Background job": [[41, "background-job"], [46, "background-job"]], "Background jobs": [[54, null], [111, "background-jobs"]], "Background jobs selector": [[146, "background-jobs-selector"]], "Background sync interval": [[79, "background-sync-interval"], [114, "background-sync-interval"]], "Backup": [[137, null]], "Backup database": [[137, "backup-database"]], "Backup folders": [[137, "backup-folders"]], "Backups": [[25, "backups"]], "Bad signature error": [[25, "bad-signature-error"]], "Batch mode for command line based updater": [[144, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[82, "bearer-token-validation"]], "Before You Enable Encryption": [[25, "before-you-enable-encryption"]], "Beta releases and Release candidates": [[166, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[49, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[16, null]], "Birthday calendar": [[111, "birthday-calendar"]], "Blocking user groups": [[104, "blocking-user-groups"]], "Branded clients": [[69, "branded-clients"]], "Brute force protection": [[55, null]], "Brute force protection and load balancers/reverse proxies": [[55, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Bug reporting": [[166, "bug-reporting"]], "Bugs": [[135, "bugs"]], "Building a workflow": [[168, "building-a-workflow"]], "CPU Architecture and OS": [[131, "cpu-architecture-and-os"]], "Cache Directory location": [[56, "cache-directory-location"]], "Cache warnings": [[67, "cache-warnings"]], "Caching": [[79, "caching"], [129, "id1"]], "Caddy": [[66, "caddy"]], "Calendar": [[116, "calendar"]], "Calendar / CalDAV": [[111, null]], "Calendar server settings": [[111, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[168, "can-i-create-a-script"]], "Canonical webroot": [[147, "canonical-webroot"]], "Certification Extension 2025/2026": [[87, "certification-extension-2025-2026"]], "Changelog": [[159, "changelog"]], "Changing the display of federated shares": [[38, "changing-the-display-of-federated-shares"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[26, "check-the-block-signatures"]], "Check the signature": [[26, "check-the-signature"]], "Checking for old files": [[27, "checking-for-old-files"]], "Chroot": [[121, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Cleanup": [[146, "cleanup"]], "Cleanup previews": [[146, "cleanup-previews"]], "Code signing": [[134, null]], "Collabora Online Server": [[147, "collabora-online-server"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[112, "command-line"]], "Command Line Client": [[90, null]], "Command line": [[96, "command-line"]], "Command line installation": [[146, "command-line-installation"]], "Command line upgrade": [[146, "command-line-upgrade"]], "Command-line Account Setup": [[89, null]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[57, "comments"], [129, "comments"]], "Common misconfigurations": [[104, "common-misconfigurations"], [108, "common-misconfigurations"]], "Common problems / error messages": [[135, "common-problems-error-messages"]], "Compression": [[129, "compression"]], "Config commands": [[146, "config-commands"]], "Config file": [[96, "config-file"]], "Configuration": [[1, "configuration"], [45, "configuration"], [75, "configuration"], [79, "configuration"], [86, null], [114, "configuration"], [130, "configuration"], [147, null], [149, "configuration"]], "Configuration File": [[91, null]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[57, null]], "Configuration keys": [[80, "configuration-keys"]], "Configuration tips": [[38, "configuration-tips"]], "Configurations preventing embedding": [[61, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[148, "configure-the-app-in-nextcloud"]], "Configure theming through CLI": [[69, "configure-theming-through-cli"]], "Configuring ClamAV on Nextcloud": [[52, "configuring-clamav-on-nextcloud"]], "Configuring External Storage (GUI)": [[37, null]], "Configuring Federation Sharing": [[38, null]], "Configuring ICAP on Nextcloud": [[52, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[23, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[45, null]], "Configuring PHP": [[23, "configuring-php"]], "Configuring Sendmail/qmail": [[60, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[19, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[60, "configuring-an-smtp-server"]], "Configuring through admin_audit app settings": [[64, "configuring-through-admin-audit-app-settings"]], "Configuring trusted Nextcloud servers": [[38, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the activity app": [[49, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[58, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[23, "configuring-your-web-server"]], "Confirm everything is working": [[52, "confirm-everything-is-working"]], "Connecting to Redis cluster over TLS": [[56, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[56, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[56, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[56, "connecting-to-single-redis-server-over-unix-socket"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[96, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[79, "connection-settings"]], "Connections to remote servers": [[123, "connections-to-remote-servers"]], "Consequences": [[47, "consequences"]], "Considerations for shared storage": [[29, "considerations-for-shared-storage"]], "Contacts": [[116, "contacts"]], "Contacts / CardDAV": [[112, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[102, "container-started"]], "Context Agent": [[1, "context-agent"]], "Context Chat": [[1, "context-chat"], [14, "context-chat"]], "Context Chat Search": [[14, "context-chat-search"]], "Controlling file versions and aging": [[41, null]], "Converting database type": [[17, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[109, null]], "Cookies stored by Nextcloud": [[109, "cookies-stored-by-nextcloud"]], "Core Dumps": [[96, "core-dumps"]], "Create Debug Archive": [[96, "create-debug-archive"]], "Create a addressbook for a user": [[146, "create-a-addressbook-for-a-user"]], "Create a calendar for a user": [[146, "create-a-calendar-for-a-user"]], "Create a calendar subscription for a user": [[146, "create-a-calendar-subscription-for-a-user"]], "Create a group": [[73, "create-a-group"]], "Creating Federation Shares via public Link Share": [[38, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[80, "creating-a-configuration"]], "Creating a new Federation Share": [[38, "creating-a-new-federation-share"]], "Creating a new user": [[83, "creating-a-new-user"]], "Creating assetlinks.json": [[51, "creating-assetlinks-json"]], "Creating persistent file Shares": [[40, "creating-persistent-file-shares"]], "Credential Handling": [[90, "credential-handling"]], "Critical changes": [[159, "critical-changes"]], "Cron": [[54, "cron"]], "Cron job": [[121, "cron-job"]], "Cron jobs": [[54, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[147, "custom-fonts"]], "Custom public calendars": [[111, "custom-public-calendars"]], "DAV sync tokens retention": [[160, "dav-sync-tokens-retention"]], "Dashboard app": [[58, null]], "Data Backup and Recovery Implications": [[45, "data-backup-and-recovery-implications"]], "Data Directory": [[53, "data-directory"]], "Data Not Encrypted": [[25, "data-not-encrypted"]], "Data directory location": [[125, "data-directory-location"]], "Data retention": [[111, "data-retention"], [112, "data-retention"]], "Database": [[120, "database"], [121, "database"]], "Database choice": [[125, "database-choice"]], "Database configuration": [[18, null], [19, null], [164, "database-configuration"]], "Database conversion": [[146, "database-conversion"]], "Database insert problems on MySQL": [[116, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[131, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[19, "database-read-committed-transaction-isolation-level"]], "Dav commands": [[146, "dav-commands"]], "Debug Mode": [[129, "debug-mode"]], "Debugging": [[146, "debugging"]], "Debugging sync issues": [[135, "debugging-sync-issues"]], "Deck tools": [[2, "deck-tools"]], "Declarations": [[88, null]], "Decrease sync delay": [[35, "decrease-sync-delay"]], "Decrypt the blocks": [[26, "decrypt-the-blocks"]], "Decrypt the private key": [[26, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[26, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[25, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[26, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[26, "decryption-read-the-file-key"]], "Decryption: read the private key": [[26, "decryption-read-the-private-key"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[99, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[57, "default-parameters"]], "Default file extension": [[68, "default-file-extension"]], "Default file templates": [[24, "default-file-templates"]], "Default language": [[63, "default-language"]], "Default locale": [[63, "default-locale"]], "Defaults": [[57, "defaults"]], "Defining trusted proxies": [[66, "defining-trusted-proxies"]], "Definitions": [[25, "definitions"]], "Delete a calendar for a user": [[146, "delete-a-calendar-for-a-user"]], "Delete a calendar subscription for a user": [[146, "delete-a-calendar-subscription-for-a-user"]], "Delete a group": [[73, "delete-a-group"]], "Delete a user": [[74, "delete-a-user"]], "Deleted Items (trash bin)": [[46, null], [57, "deleted-items-trash-bin"]], "Deleting a configuration": [[80, "deleting-a-configuration"]], "Deleting a single configuration value": [[146, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[81, "deleting-local-nextcloud-users"]], "Deleting users": [[83, "deleting-users"]], "Demote user from subadmin": [[74, "demote-user-from-subadmin"]], "Denied access": [[104, "denied-access"]], "Denying access to folders": [[104, "denying-access-to-folders"]], "DeployConfig": [[100, "deployconfig"]], "DeployConfig options": [[100, "deployconfig-options"]], "Deployment": [[123, "deployment"]], "Deployment configurations": [[99, null]], "Deployment recommendations": [[119, null]], "Derive the decryption key": [[26, "derive-the-decryption-key"]], "Derive the encryption key": [[26, "derive-the-encryption-key"]], "Desktop Clients": [[93, null]], "Desktop client": [[131, "desktop-client"]], "Differences from External Storage": [[45, "differences-from-external-storage"]], "Directory settings": [[79, "directory-settings"]], "Disable": [[101, "disable"]], "Disable 3rdparty / non-shipped apps": [[135, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[123, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[114, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[74, "disable-a-user"]], "Disable an app": [[72, "disable-an-app"]], "Disable and enable users": [[83, "disable-and-enable-users"]], "Disable creation of example events": [[146, "disable-creation-of-example-events"]], "Disable preview image generation": [[123, "disable-preview-image-generation"]], "Disable rich text editing": [[68, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[68, "disable-rich-workspaces-globally"]], "Disable users": [[146, "disable-users"]], "Disabling background scan task": [[52, "disabling-background-scan-task"]], "Disabling previews:": [[44, "disabling-previews"]], "Disabling two-factor authentication": [[78, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[128, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[40, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[134, "do-we-lock-down-nextcloud"]], "Docker Deploy Daemon": [[99, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[99, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[99, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[98, "docker-socket-proxy"]], "Docker Socket Proxy security": [[99, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[98, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[99, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[99, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[14, "document-generation"]], "Domain Change": [[59, null]], "Downgrading": [[166, "downgrading"]], "Download Logs": [[102, "download-logs"]], "Duplicating server configurations": [[79, "duplicating-server-configurations"]], "Edit data of a single group": [[73, "edit-data-of-a-single-group"]], "Edit data of a single user": [[74, "edit-data-of-a-single-user"]], "Email": [[60, null]], "Enable": [[101, "enable"]], "Enable HTTP Strict Transport Security": [[123, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[129, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[129, "enable-php-opcache"]], "Enable a user": [[74, "enable-a-user"]], "Enable access for external apps": [[147, "enable-access-for-external-apps"]], "Enable an app": [[72, "enable-an-app"]], "Enable hardening modules such as SELinux": [[123, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[128, "enable-updates-via-the-web-interface"]], "Enabled": [[102, "enabled"]], "Enabling Encryption (Step-by-Step)": [[25, "enabling-encryption-step-by-step"]], "Enabling External Storage Support": [[37, "enabling-external-storage-support"]], "Enabling MySQL 4-byte support": [[20, null]], "Enabling SSL": [[130, "enabling-ssl"]], "Enabling Windows compatible filenames": [[47, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[15, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[146, "enabling-autocompletion"]], "Enabling debug mode": [[60, "enabling-debug-mode"]], "Enabling the activity app": [[49, "enabling-the-activity-app"]], "Enabling the antivirus app for files": [[52, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[58, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[78, "enabling-two-factor-authentication"]], "Encrypt the blocks": [[26, "encrypt-the-blocks"]], "Encrypt the private key": [[26, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[26, "encrypt-seal-the-file-key"]], "Encrypting All Files": [[25, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[25, "encrypting-external-mountpoints-and-team-folders"]], "Encryption": [[146, "encryption"]], "Encryption Method Comparison": [[25, "encryption-method-comparison"]], "Encryption format": [[27, "encryption-format"]], "Encryption key cannot be found": [[25, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[25, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption: encrypt the file": [[26, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[26, "encryption-generate-the-file-key"]], "End-of-life": [[166, "end-of-life"]], "Energy consumption": [[87, null]], "Enforcing two-factor authentication": [[78, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[123, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[57, "environment-variables"], [92, null], [97, "environment-variables"]], "Environment variables": [[146, "environment-variables"]], "Errors": [[134, "errors"]], "Establishing the target database": [[17, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [14, "ethical-ai-rating"]], "Event alarm types": [[111, "event-alarm-types"]], "Events": [[111, "events"]], "ExApps management": [[103, null]], "Example": [[66, "example"], [72, "example"], [72, "id1"], [72, "id3"], [72, "id5"], [73, "example"], [73, "id1"], [73, "id3"], [73, "id5"], [73, "id8"], [74, "example"], [74, "id1"], [74, "id3"], [74, "id8"], [74, "id10"], [74, "id12"], [74, "id14"], [74, "id16"], [74, "id18"], [74, "id20"], [74, "id22"], [74, "id24"], [74, "id26"], [80, "example"], [80, "id1"], [80, "id3"], [80, "id5"], [90, "example"], [105, "example"], [108, "example"]], "Example contact": [[112, "example-contact"]], "Example event": [[111, "example-event"]], "Example installation on CentOS 8": [[120, null]], "Example installation on OpenBSD": [[121, null]], "Example installation on Ubuntu 22.04 LTS": [[122, null]], "Example log entries": [[64, "example-log-entries"]], "Example: The login page": [[55, "example-the-login-page"]], "Examples": [[57, "examples"], [73, "examples"], [74, "examples"], [74, "id6"], [104, "examples"]], "Exclude List": [[90, "exclude-list"]], "Excluding IP addresses from brute force protection": [[55, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from the activity expiration": [[49, "excluding-users-from-the-activity-expiration"]], "Executing actions": [[105, "executing-actions"]], "Expert settings": [[79, "expert-settings"]], "Export a calendar of a user": [[146, "export-a-calendar-of-a-user"]], "Export threading data": [[116, "export-threading-data"]], "Exposed system address book": [[161, "exposed-system-address-book"]], "External Storage authentication mechanisms": [[29, null]], "External media": [[130, "external-media"]], "External storage": [[104, "external-storage"]], "FAQ": [[98, "faq"], [134, "faq"], [168, "faq"]], "FTP/FTPS": [[30, null]], "Fail2ban introduction": [[123, "fail2ban-introduction"]], "Fair Use Policy": [[135, "fair-use-policy"]], "Features used by other apps": [[14, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[23, "federated-cloud-sharing"], [57, "federated-cloud-sharing"]], "Federated calendar shares": [[111, "federated-calendar-shares"]], "Federation sync": [[146, "federation-sync"]], "File Sharing": [[40, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[108, "file-age"]], "File conversion": [[39, null]], "File encodings": [[68, "file-encodings"]], "File format": [[26, "file-format"], [26, "id1"], [26, "id3"], [26, "id5"], [26, "id7"]], "File locations": [[26, "file-locations"], [26, "id2"], [26, "id4"], [26, "id6"], [26, "id8"]], "File operations": [[146, "file-operations"]], "File sharing and management": [[43, null]], "File type: file": [[26, "file-type-file"]], "File type: file key file": [[26, "file-type-file-key-file"]], "File type: private key file": [[26, "file-type-private-key-file"]], "File type: public key file": [[26, "file-type-public-key-file"]], "File type: share key file": [[26, "file-type-share-key-file"]], "File versions": [[57, "file-versions"]], "Files": [[86, null]], "Files App": [[131, "files-app"]], "Files Sharing": [[146, "files-sharing"]], "Files access control": [[104, null]], "Files external": [[146, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[167, "filters"]], "Fixing invalid code integrity messages": [[134, "fixing-invalid-code-integrity-messages"]], "Flow": [[107, null]], "Flow configuration": [[106, null]], "Follow-up reminders": [[114, "follow-up-reminders"]], "Force language": [[63, "force-language"]], "Force locale": [[63, "force-locale"]], "Format": [[57, "format"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[111, "freebusy"]], "Frequently Asked Questions": [[14, "frequently-asked-questions"]], "Frequently asked questions": [[154, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[14, "frontend-apps"], [14, "id29"], [14, "id32"], [14, "id37"], [14, "id41"], [14, "id45"], [14, "id49"], [14, "id53"]], "Further Reading": [[25, "further-reading"]], "Further Resources": [[127, "further-resources"]], "GDPR-compliance": [[110, null]], "General troubleshooting": [[135, null], [135, "id1"]], "Generate the file key": [[26, "generate-the-file-key"]], "Get a notification before a share expires": [[40, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[13, "get-a-task-by-id"]], "Get account IDs": [[116, "get-account-ids"]], "Get app info": [[72, "get-app-info"]], "Get data of a single user": [[74, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[52, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[72, "get-list-of-apps"]], "Get members of a group": [[73, "get-members-of-a-group"]], "Get subadmins of a group": [[73, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[74, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[74, "get-user-s-subadmin-groups"]], "Getting Started": [[86, null]], "Getting a single configuration value": [[146, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[123, "give-php-read-access-to-dev-urandom"]], "Globally": [[116, "globally"]], "Google OAuth": [[114, "google-oauth"]], "Granting administrator privileges to a user": [[83, "granting-administrator-privileges-to-a-user"]], "Group commands": [[146, "group-commands"]], "Groups tab": [[79, "groups-tab"]], "Groupware": [[86, null], [113, null]], "HAProxy": [[66, "haproxy"]], "HTTPD(8)": [[121, "httpd-8"]], "HTTPS encryption": [[130, "https-encryption"]], "HaRP": [[98, "harp"]], "Handling with backup server": [[79, "handling-with-backup-server"]], "Hardening and security guidance": [[123, null]], "Hashing": [[57, "hashing"]], "Heartbeat": [[102, "heartbeat"]], "Hidden files upload failure or not shown": [[35, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[111, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[60, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[60, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[19, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[60, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[19, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[60, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[60, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[156, "how-does-it-work"]], "How it works": [[55, "how-it-works"]], "How to upgrade": [[145, null]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[19, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[114, "imap-timeout"]], "Icon retrieval": [[48, "icon-retrieval"]], "Identifying Basic Functionality Problems": [[96, "identifying-basic-functionality-problems"]], "Image Pull": [[102, "image-pull"]], "Image generation": [[14, "image-generation"]], "Image storage": [[1, "image-storage"]], "Import a calendar to a user": [[146, "import-a-calendar-to-a-user"]], "Import signing keys:": [[149, "import-signing-keys"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [14, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[17, "inconvertible-tables"]], "Init": [[102, "init"]], "Initial Certification 2024/2025": [[87, "initial-certification-2024-2025"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[22, "initial-splitting"]], "Insight and debugging": [[13, null]], "Install": [[90, "install"]], "Install packages": [[149, "install-packages"]], "Install the Apache reverse proxy": [[148, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[148, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [86, null], [130, "installation"], [142, "installation"], [151, null], [167, "installation"], [168, "installation"]], "Installation and server configuration": [[124, null]], "Installation example on Ubuntu 24.04": [[149, null]], "Installation example with Docker": [[148, null]], "Installation on Linux": [[130, null]], "Installation on TrueNAS": [[130, "installation-on-truenas"]], "Installation version": [[166, "installation-version"]], "Installation via install script": [[130, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[130, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[125, null], [130, "installation-wizard"]], "Installing AppAPI": [[98, "installing-appapi"]], "Installing ClamAV": [[52, "installing-clamav"]], "Installing ExApps": [[98, "installing-exapps"]], "Installing Nextcloud": [[120, "installing-nextcloud"]], "Installing PHP and the required modules": [[120, "installing-php-and-the-required-modules"]], "Installing from command line": [[118, null]], "Installing on Windows (virtual machine)": [[130, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[120, "installing-optional-modules-redis-imagick"]], "Installing via Snap packages": [[130, "installing-via-snap-packages"]], "Instruction set for apps": [[72, null]], "Instruction set for groups": [[73, null]], "Instruction set for users": [[74, null]], "Integrating into the Web Interface": [[64, "integrating-into-the-web-interface"]], "Integrity check": [[146, "integrity-check"]], "Internal Server Errors": [[135, "internal-server-errors"]], "Introduction": [[50, "introduction"], [55, "introduction"], [57, "introduction"], [117, null]], "Invalid private key for encryption app": [[25, "invalid-private-key-for-encryption-app"]], "Invitations": [[111, "invitations"]], "Is code signing mandatory for apps?": [[134, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[96, "isolating-other-issues"]], "Issues and troubleshooting": [[136, null]], "Issues connecting to Outlook.com": [[116, "issues-connecting-to-outlook-com"]], "JIT": [[129, "jit"]], "JPEG quality setting:": [[44, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[126, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[25, "key-management-modes"]], "Key Points & Limitations": [[25, "key-points-limitations"]], "Key generation: generate the key pair": [[26, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[26, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[26, "key-generation-store-the-public-key"]], "Key type: master key": [[26, "key-type-master-key"]], "Key type: public sharing key": [[26, "key-type-public-sharing-key"]], "Key type: recovery key": [[26, "key-type-recovery-key"]], "Key type: user key": [[26, "key-type-user-key"]], "Keyboard shortcut": [[96, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[157, "known-smart-picker-providers"]], "Known backends": [[111, "known-backends"]], "Known link preview providers": [[156, "known-link-preview-providers"]], "LDAP": [[57, "ldap"]], "LDAP and External User Backends": [[25, "ldap-and-external-user-backends"]], "LDAP commands": [[146, "ldap-commands"]], "LDAP user cleanup": [[81, null]], "LLM Processing": [[114, "llm-processing"]], "Language & Locale": [[63, null]], "Large file upload on object storage": [[23, "large-file-upload-on-object-storage"]], "Length of support (\u201cmaintenance\u201d)": [[166, "length-of-support-maintenance"]], "Limit on password length": [[123, "limit-on-password-length"]], "Limitations": [[5, "limitations"]], "Limitations in maintenance mode": [[146, "limitations-in-maintenance-mode"]], "Link previews": [[156, null]], "Linking external sites": [[61, null]], "List": [[146, "list"]], "List ExApps": [[101, "list-exapps"]], "List all addressbooks of a user": [[146, "list-all-addressbooks-of-a-user"]], "List all calendar subscriptions of a user": [[146, "list-all-calendar-subscriptions-of-a-user"]], "List all calendars of a user": [[146, "list-all-calendars-of-a-user"]], "List and filter tasks": [[13, "list-and-filter-tasks"]], "List of editable data fields": [[74, "list-of-editable-data-fields"]], "List registered daemons": [[100, "list-registered-daemons"]], "Listening to events": [[167, "listening-to-events"]], "Loading": [[57, "loading"]], "Local": [[31, null]], "Local IMAP and SMTP servers": [[114, "local-imap-and-smtp-servers"]], "Log Files": [[96, "log-files"]], "Log Levels": [[129, "log-levels"]], "Log field breakdown": [[64, "log-field-breakdown"]], "Log fields explained": [[64, "log-fields-explained"]], "Log level": [[64, "log-level"]], "Log level interaction": [[64, "log-level-interaction"]], "Log type": [[64, "log-type"]], "Logfiles": [[135, "logfiles"]], "Logging": [[57, "logging"], [64, null], [79, "logging"]], "Logging commands": [[146, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[116, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[79, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[126, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[145, "long-running-migration-steps"]], "Long term support": [[131, "long-term-support"]], "Low Disk Space": [[92, "low-disk-space"]], "Machine translation": [[1, "machine-translation"], [14, "machine-translation"]], "Mail": [[114, null], [116, "mail"]], "Mail Parameters": [[57, "mail-parameters"]], "Mail Providers": [[60, "mail-providers"]], "Mailbox Share": [[114, "mailbox-share"]], "Maintenance": [[57, "maintenance"], [86, null], [138, null]], "Maintenance and release schedule": [[166, null]], "Maintenance commands": [[146, "maintenance-commands"]], "Maintenance mode": [[137, "maintenance-mode"], [145, "maintenance-mode"]], "Maintenance releases": [[166, "maintenance-releases"]], "Major releases": [[166, "major-releases"]], "Major version upgrades": [[166, "major-version-upgrades"]], "Manage addressbooks": [[146, "manage-addressbooks"]], "Manage calendar subscriptions": [[146, "manage-calendar-subscriptions"]], "Manage calendars": [[146, "manage-calendars"]], "Manage the background scanner": [[52, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[100, null]], "Managing Encryption via occ Commands": [[25, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[101, null]], "Managing apps": [[15, "managing-apps"]], "Managing groups": [[83, "managing-groups"]], "Manual account synchronization and threading": [[116, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[145, "manual-steps-during-upgrade"]], "Manually scan a single file": [[52, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[52, "manually-trigger-the-background-scan"]], "MariaDB": [[137, "mariadb"], [143, "mariadb"], [143, "id2"]], "Mark a file as scanned or unscanned": [[52, "mark-a-file-as-scanned-or-unscanned"]], "Mass Deployment And Account Creation": [[94, null]], "Maximum chunk size": [[164, "maximum-chunk-size"]], "Maximum memory for image generation:": [[44, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[44, "maximum-preview-size"]], "Maximum scale factor:": [[44, "maximum-scale-factor"]], "Maximum upload size": [[130, "maximum-upload-size"]], "Memcached": [[56, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[56, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[131, "memory"]], "Memory caching": [[56, null]], "Memory caching backend configuration": [[57, "memory-caching-backend-configuration"]], "Microsoft Active Directory": [[79, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[45, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[141, null]], "Migrating to a different server": [[140, null]], "Migration from Collabora Online": [[152, null]], "Migrations on updates": [[22, "migrations-on-updates"]], "Mimetype aliases": [[48, "mimetype-aliases"]], "Mimetype mapping": [[48, "mimetype-mapping"]], "Mimetypes management": [[48, null]], "Misc": [[146, "misc"]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[116, "missing-shared-calendars"]], "Mobile apps": [[131, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modify the appearance of Nextcloud": [[69, "modify-the-appearance-of-nextcloud"]], "Modifying": [[57, "modifying"]], "Modifying a configuration": [[80, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[60, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[162, "monitoring"]], "Monitoring: Counting of active users": [[163, "monitoring-counting-of-active-users"], [164, "monitoring-counting-of-active-users"], [165, "monitoring-counting-of-active-users"]], "Mount options": [[37, "mount-options"]], "Mounts": [[97, "mounts"]], "Move a calendar of a user": [[146, "move-a-calendar-of-a-user"]], "Moving the data directory / changing the datadirectory path": [[135, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multibucket Object Store": [[45, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[45, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multiple domains reverse SSL proxy": [[66, "multiple-domains-reverse-ssl-proxy"]], "Multiple/Merged Configuration Files": [[57, "multiple-merged-configuration-files"]], "MySQL": [[137, "mysql"], [143, "mysql"], [143, "id4"]], "MySQL database": [[53, "mysql-database"]], "NC & Docker on the Same-Host": [[99, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[99, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[99, "nc-to-exapp-communication"]], "NGINX": [[66, "nginx"]], "NGINX configuration": [[126, null]], "NOTE": [[121, "note"]], "Next steps": [[122, "next-steps"]], "Nextcloud": [[32, null]], "Nextcloud AIO": [[100, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[51, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[79, "nextcloud-ldap-internals"]], "Nextcloud Office App Settings": [[147, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[168, "nextcloud-scripts"]], "Nextcloud Verifications": [[57, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[167, "nextcloud-webhook-events"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[99, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[99, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[79, "nextcloud-avatar-integration"]], "Nextcloud configuration": [[62, null], [163, "nextcloud-configuration"], [164, "nextcloud-configuration"]], "Nextcloud final steps": [[121, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[99, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[126, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[126, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[135, "nextcloud-log-files"]], "Nextcloud prerequisites": [[123, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[96, "nextcloud-server-log-file"]], "Not open source anymore?": [[134, "not-open-source-anymore"]], "Note": [[79, "note"]], "Notes and troubleshooting": [[133, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[127, "notes-on-php-ini-configuration"]], "OAuth2": [[65, null]], "OCC CLI": [[100, "occ-cli"]], "Obtaining a patch": [[133, "obtaining-a-patch"]], "Obtaining the Client Log File": [[96, "obtaining-the-client-log-file"]], "Office": [[86, null], [150, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenStack Object Storage": [[33, null]], "OpenStack Swift": [[45, "openstack-swift"]], "Operating system": [[123, "operating-system"]], "Options": [[95, null], [100, "options"], [101, "options"], [101, "id2"], [101, "id4"]], "Organizations with clustered setups": [[56, "organizations-with-clustered-setups"]], "Organizations with single-server": [[56, "organizations-with-single-server"]], "Other Web servers": [[130, "other-web-servers"]], "Other issues": [[135, "other-issues"]], "Out-of-office feature": [[115, null]], "Outdated NSS / OpenSSL version": [[67, "outdated-nss-openssl-version"]], "Overview": [[14, null], [25, "overview"], [55, "overview"], [55, "id1"], [130, "overview"], [139, "overview"], [145, "overview"], [166, "overview"]], "Overview of AI features": [[14, "overview-of-ai-features"]], "Overwrite parameters": [[66, "overwrite-parameters"]], "PHP": [[120, "php"], [121, "php"]], "PHP Installation": [[127, "php-installation"]], "PHP Module Quick Reference Table": [[127, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[127, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[127, "php-modules-for-specific-applications"]], "PHP configuration": [[164, "php-configuration"]], "PHP ini Settings": [[127, "php-ini-settings"]], "PHP version and information": [[135, "php-version-and-information"]], "PHP-FPM configuration": [[130, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[126, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[19, "parameters"], [44, "parameters"], [53, "parameters"], [54, "parameters"]], "Passing values between blocks": [[168, "passing-values-between-blocks"]], "Password-based mechanisms": [[29, "password-based-mechanisms"]], "Passwords": [[123, "passwords"]], "Patching Nextcloud": [[133, null]], "Patching apps": [[133, "patching-apps"]], "Patching server": [[133, "patching-server"]], "Per mail account": [[116, "per-mail-account"]], "Performance Implications": [[45, "performance-implications"]], "Place config directory outside of the web root": [[123, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[123, "place-data-directory-outside-of-the-web-root"]], "PostgreSQL": [[137, "postgresql"], [143, "postgresql"], [143, "id5"]], "PostgreSQL database": [[19, "postgresql-database"], [53, "postgresql-database"]], "Preparing PHP": [[127, null]], "Prerequisites": [[145, "prerequisites"]], "Prerequisites for manual installation": [[130, "prerequisites-for-manual-installation"]], "Pretty URLs": [[130, "pretty-urls"]], "Prevent uploading of specific files": [[104, "prevent-uploading-of-specific-files"]], "Previews": [[57, "previews"], [129, "previews"], [147, "previews"], [164, "previews"], [165, "previews"]], "Previews configuration": [[44, null]], "Previews for Office files using LibreOffice": [[162, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[163, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[139, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[112, "privacy-and-user-property-scopes"]], "Process manager": [[130, "process-manager"]], "Profile configuration": [[75, null]], "Promote user to subadmin": [[74, "promote-user-to-subadmin"]], "Proper SSL configuration": [[123, "proper-ssl-configuration"]], "Property scopes": [[75, "property-scopes"]], "Provider apps": [[14, "provider-apps"], [14, "id52"]], "Provider removal": [[78, "provider-removal"]], "Providing default files": [[24, null]], "Proxy Configurations": [[57, "proxy-configurations"]], "Public collaborative tag": [[108, "public-collaborative-tag"]], "Public-key mechanisms": [[29, "public-key-mechanisms"]], "Quick start": [[125, "quick-start"]], "Rate limits": [[111, "rate-limits"], [112, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[26, "read-the-envelope-key"]], "Read the file key": [[26, "read-the-file-key"]], "Read the private key file": [[26, "read-the-private-key-file"]], "Read the public key": [[26, "read-the-public-key"]], "Reading a configuration": [[80, "reading-a-configuration"]], "Recommendations based on type of deployment": [[56, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[127, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[127, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[127, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[123, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[56, "redis"], [120, "redis"], [121, "redis"]], "Redis configuration in Nextcloud (config.php)": [[56, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[129, "reducing-system-load"]], "Reference management": [[155, null]], "Refresh rate": [[111, "refresh-rate"]], "Register": [[100, "register"], [101, "register"], [102, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[166, "release-channels"]], "Release notes": [[86, null], [158, null], [159, null]], "Release schedule": [[166, "release-schedule"]], "Release types": [[166, "release-types"]], "Reminder notifications": [[111, "reminder-notifications"]], "Remove user from group": [[74, "remove-user-from-group"]], "Renaming a user": [[83, "renaming-a-user"]], "Repair-Tree": [[146, "repair-tree"]], "Replication": [[21, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[127, "required-php-database-connectors"]], "Required PHP Modules": [[127, "required-php-modules"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [19, "requirements"]], "Rescans": [[134, "rescans"]], "Resend the welcome email": [[74, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[83, "reset-a-user-s-password"]], "Resetting a lost admin password": [[76, null]], "Resetting a user password": [[77, null]], "Resources and rooms": [[111, "resources-and-rooms"]], "Restore database": [[143, "restore-database"]], "Restore folders": [[143, "restore-folders"]], "Restoring": [[143, "restoring"]], "Restoring backup": [[143, null]], "Restrict admin actions to a specific range of IP addresses": [[123, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[147, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[147, "restrict-usage-to-specific-groups"]], "Retention of files": [[108, null]], "Revalidation": [[129, "revalidation"]], "Reverse proxy": [[66, null], [153, null]], "Reverting a patch": [[133, "reverting-a-patch"]], "Run the conversion": [[17, "run-the-conversion"]], "Running occ": [[146, "running-occ"]], "S3 SSE-C encryption support": [[45, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[165, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[120, "selinux"]], "SELinux configuration": [[128, null]], "SELinux configuration tips": [[130, "selinux-configuration-tips"]], "SFTP": [[34, null]], "SMB authentication": [[35, "smb-authentication"]], "SMB update notifications": [[35, "smb-update-notifications"]], "SMB/CIFS": [[35, null]], "SMTP": [[60, "smtp"]], "SMTP timeout": [[114, "smtp-timeout"]], "SQLite": [[137, "sqlite"], [143, "sqlite"]], "SQLite database": [[53, "sqlite-database"]], "SSL": [[57, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[79, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[19, "ssl-for-mysql-database"]], "Sanitize filenames": [[146, "sanitize-filenames"]], "Sanitizing invalid filenames": [[47, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Scan": [[146, "scan"]], "Scan appdata": [[146, "scan-appdata"]], "Screen or tmux session": [[14, "screen-or-tmux-session"], [167, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[73, "search-get-groups"]], "Search/get users": [[74, "search-get-users"]], "Secure view settings": [[147, "secure-view-settings"]], "Security": [[146, "security"]], "Security considerations": [[65, "security-considerations"]], "Selecting the right Workspace": [[168, "selecting-the-right-workspace"]], "Send a test email": [[60, "send-a-test-email"]], "Sendmail": [[60, "sendmail"]], "Serve security related headers by the Web server": [[123, "serve-security-related-headers-by-the-web-server"]], "Server": [[131, "server"]], "Server tab": [[79, "server-tab"]], "Server tuning": [[129, null]], "Server-side Encryption": [[25, null]], "Server-side encryption details": [[26, null]], "Server-side encryption migration": [[27, null]], "Service Discovery": [[66, "service-discovery"]], "Service discovery": [[135, "service-discovery"]], "Setting Storage quotas": [[83, "setting-storage-quotas"]], "Setting a hierarchical configuration value": [[146, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[146, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[146, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[60, "setting-mail-server-parameters-in-config-php"]], "Setting up background jobs": [[130, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[120, "setting-up-remirepo-with-php-8-2"]], "Setting up the Correct Nextcloud URL": [[168, "setting-up-the-correct-nextcloud-url"]], "Settings": [[129, "settings"]], "Settings app": [[57, "settings-app"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[162, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[123, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup deploy daemon": [[98, "setup-deploy-daemon"]], "Setup fail2ban": [[123, "setup-fail2ban"]], "Setupchecks": [[146, "setupchecks"]], "Share operations": [[146, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[112, "shared-items"]], "Sharing": [[57, "sharing"]], "Sieve timeout": [[114, "sieve-timeout"]], "Sign the blocks": [[26, "sign-the-blocks"]], "Sign the private key": [[26, "sign-the-private-key"]], "Simple Storage Service (S3)": [[45, "simple-storage-service-s3"]], "Sizing": [[129, "sizing"]], "Skipping pre-login warning": [[65, "skipping-pre-login-warning"]], "Small/Private home server": [[56, "small-private-home-server"]], "Snooze and scheduled sending": [[114, "snooze-and-scheduled-sending"]], "Some files have not passed the integrity check": [[67, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[26, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[79, "special-attributes"]], "Special mechanisms": [[29, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [14, "speech-to-text"]], "Speeding up webhook dispatch": [[167, "speeding-up-webhook-dispatch"]], "Split the file": [[26, "split-the-file"], [26, "id9"]], "Splitting databases": [[22, null]], "Status": [[146, "status"]], "Status Checks": [[102, "status-checks"]], "Status return code": [[146, "status-return-code"]], "Step-by-Step Manual Upgrade": [[139, "step-by-step-manual-upgrade"]], "Storage configuration": [[37, "storage-configuration"]], "Storage of access tokens": [[123, "storage-of-access-tokens"]], "Store the envelope keys": [[26, "store-the-envelope-keys"]], "Store the file": [[26, "store-the-file"]], "Store the file key": [[26, "store-the-file-key"]], "Store the private key": [[26, "store-the-private-key"]], "Subscriptions": [[111, "subscriptions"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[126, "suppressing-log-messages"]], "Sync birthday calendar": [[146, "sync-birthday-calendar"]], "Sync system address book": [[146, "sync-system-address-book"]], "Sync tokens": [[111, "sync-tokens"], [112, "sync-tokens"]], "Synchronising with clients after data recovery": [[143, "synchronising-with-clients-after-data-recovery"]], "Synchronous indexing": [[3, "synchronous-indexing"]], "System Address Book": [[112, "system-address-book"]], "System Tags": [[146, "system-tags"]], "System address book": [[165, "system-address-book"]], "System configuration": [[23, "system-configuration"]], "System email": [[160, "system-email"]], "System environment variables": [[130, "system-environment-variables"]], "System requirements": [[131, null], [160, "system-requirements"], [161, "system-requirements"], [162, "system-requirements"], [163, "system-requirements"], [164, "system-requirements"], [165, "system-requirements"]], "Systemd service": [[14, "systemd-service"], [167, "systemd-service"]], "TLS / encryption app": [[129, "tls-encryption-app"]], "Table of contents": [[86, null]], "Talk App": [[131, "talk-app"]], "Talk tools": [[2, "talk-tools"]], "Target audience": [[117, "target-audience"]], "Task processing": [[1, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[64, "temporary-overrides"]], "Test Deploy Daemon": [[102, null]], "Testing the configuration": [[79, "testing-the-configuration"]], "Text app": [[68, null]], "Text processing": [[1, "text-processing"], [14, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [14, "text-to-speech"]], "The LDAP configuration API": [[80, null]], "The Smart Picker": [[157, null]], "The access token": [[65, "the-access-token"]], "The brute force settings app": [[55, "the-brute-force-settings-app"]], "The magic listener script": [[168, "the-magic-listener-script"]], "The test with getenv(\"PATH\") only returns an empty response": [[67, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[67, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[67, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[69, null]], "Theming of icons": [[69, "theming-of-icons"]], "Thread Summary": [[114, "thread-summary"]], "Timeout and other connectivity issues": [[116, "timeout-and-other-connectivity-issues"]], "Timeouts": [[114, "timeouts"]], "Tips and tricks": [[126, "tips-and-tricks"]], "Toggle Windows compatibility": [[146, "toggle-windows-compatibility"]], "Traefik 1": [[66, "traefik-1"]], "Traefik 2": [[66, "traefik-2"]], "Transactional file locking": [[42, null]], "Transactional file locking is disabled": [[67, "transactional-file-locking-is-disabled"]], "Transfer": [[146, "transfer"]], "Transferring files to another user": [[40, "transferring-files-to-another-user"]], "Translation": [[114, "translation"]], "Trash bin": [[111, "trash-bin"]], "Trashbin": [[146, "trashbin"]], "Triggering the conversion": [[17, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [19, "troubleshooting"], [25, "troubleshooting"], [55, "troubleshooting"], [60, "troubleshooting"], [96, null], [116, null], [128, "troubleshooting"], [139, "troubleshooting"], [144, "troubleshooting"], [154, null]], "Troubleshooting Web server and PHP problems": [[135, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[135, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[135, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[135, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[135, "troubleshooting-encrypted-files"]], "Troubleshooting file encoding on external storages": [[135, "troubleshooting-file-encoding-on-external-storages"]], "Troubleshooting quota or size issues": [[135, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[135, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[79, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[125, "trusted-domains"]], "Tune PHP-FPM": [[129, "tune-php-fpm"]], "Two-factor authentication": [[78, null], [146, "two-factor-authentication"]], "Types of Values": [[57, "types-of-values"]], "Unable to update contacts or events": [[116, "unable-to-update-contacts-or-events"]], "Uninstallation": [[132, null]], "Unregister": [[100, "unregister"], [101, "unregister"]], "Update": [[101, "update"]], "Update notifications": [[15, "update-notifications"], [145, "update-notifications"]], "Update the reverse proxy configuration": [[152, "update-the-reverse-proxy-configuration"]], "Updating": [[148, "updating"]], "Upgrade distribution packages": [[152, "upgrade-distribution-packages"]], "Upgrade manually": [[139, null]], "Upgrade quickstart": [[142, "upgrade-quickstart"]], "Upgrade the docker image": [[152, "upgrade-the-docker-image"]], "Upgrade tips": [[142, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[160, null]], "Upgrade to Nextcloud 27": [[161, null]], "Upgrade to Nextcloud 28": [[162, null]], "Upgrade to Nextcloud 30": [[163, null]], "Upgrade to Nextcloud 31": [[164, null]], "Upgrade to Nextcloud 32": [[165, null]], "Upgrade via built-in updater": [[144, null]], "Upgrade via snap packages": [[142, null]], "Upload of files greater than 10 MiB fails": [[126, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[23, null]], "Usage": [[8, "usage"], [50, "usage"], [55, "usage"], [90, "usage"]], "Usage Examples": [[100, "usage-examples"]], "Usage of variables for mount paths": [[37, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[123, "use-https"]], "Use OOXML by default for new files": [[147, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[123, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[79, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[114, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[19, "useful-sql-commands"]], "User Experience": [[57, "user-experience"]], "User Interface Preference Defaults": [[114, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[25, "user-keys-sharing-recovery"]], "User Profile attributes": [[79, "user-profile-attributes"]], "User and group mapping": [[79, "user-and-group-mapping"]], "User and group permissions": [[37, "user-and-group-permissions"]], "User authentication with LDAP": [[79, null]], "User authentication with OpenID Connect": [[82, null]], "User commands": [[146, "user-commands"]], "User listing and login per nested groups": [[79, "user-listing-and-login-per-nested-groups"]], "User management": [[71, null], [83, null]], "User migration": [[114, "user-migration"]], "User password policy": [[84, null]], "User provisioning API": [[85, null]], "User session": [[57, "user-session"]], "Users": [[86, null]], "Users tab": [[79, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[135, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[40, "using-file-drop-share-links"]], "Using MariaDB/MySQL instead of SQLite": [[129, "using-mariadb-mysql-instead-of-sqlite"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[82, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[57, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[129, "using-redis-based-transactional-file-locking"]], "Using a self hosted apps store": [[15, "using-a-self-hosted-apps-store"]], "Using cron to perform background jobs": [[129, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[15, "using-custom-app-directories"]], "Using email templates": [[60, "using-email-templates"]], "Using private API": [[15, "using-private-api"]], "Using self-signed certificates": [[37, "using-self-signed-certificates"]], "Using the Redis session handler": [[56, "using-the-redis-session-handler"]], "Using the command line based updater": [[144, "using-the-command-line-based-updater"]], "Using the occ command": [[47, "using-the-occ-command"], [146, null]], "Using the web based updater": [[144, "using-the-web-based-updater"]], "Using the web interface": [[47, "using-the-web-interface"]], "Versions": [[146, "versions"]], "Videos and blogs": [[117, "videos-and-blogs"]], "Warnings on admin page": [[67, null]], "Web browser": [[131, "web-browser"]], "Web server and PHP modules": [[135, "web-server-and-php-modules"]], "Web server configuration": [[160, "web-server-configuration"], [161, "web-server-configuration"], [162, "web-server-configuration"], [163, "web-server-configuration"], [165, "web-server-configuration"]], "WebDAV": [[36, null]], "Webcron": [[54, "webcron"]], "Webhook Listeners": [[167, null]], "Webserver Log Files": [[96, "webserver-log-files"]], "Websocket support with notify_push": [[68, "websocket-support-with-notify-push"]], "What does the updater do?": [[144, "what-does-the-updater-do"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[157, "where-can-it-be-used"]], "Where do they appear?": [[156, "where-do-they-appear"]], "Why did Nextcloud add code signing?": [[134, "why-did-nextcloud-add-code-signing"]], "Why is my prompt slow?": [[14, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[60, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[131, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[168, null]], "Windows compatible filenames": [[47, null]], "Wopi settings": [[147, "wopi-settings"]], "Workflow log": [[64, "workflow-log"]], "XML output": [[72, "xml-output"], [72, "id2"], [72, "id4"], [72, "id6"], [73, "xml-output"], [73, "id2"], [73, "id4"], [73, "id6"], [73, "id7"], [73, "id9"], [74, "xml-output"], [74, "id2"], [74, "id4"], [74, "id5"], [74, "id7"], [74, "id9"], [74, "id11"], [74, "id13"], [74, "id15"], [74, "id17"], [74, "id19"], [74, "id21"], [74, "id23"], [74, "id25"], [74, "id27"], [80, "xml-output"], [80, "id2"], [80, "id4"], [80, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[114, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[67, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[67, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[67, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[67, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[57, "account-manager-default-property-scope"]], "allow_local_remote_servers": [[57, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[57, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[57, "allowed-admin-ranges"]], "allowed_no_password_confirmation_ranges": [[57, "allowed-no-password-confirmation-ranges"]], "appcodechecker": [[57, "appcodechecker"]], "apps_paths": [[57, "apps-paths"]], "appsallowlist": [[57, "appsallowlist"]], "appstoreenabled": [[57, "appstoreenabled"]], "appstoreurl": [[57, "appstoreurl"]], "auth.bruteforce.max-attempts": [[57, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[57, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[57, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[57, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[57, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[57, "auth-webauthn-enabled"]], "auto_logout": [[57, "auto-logout"]], "binary_search_paths": [[57, "binary-search-paths"]], "bulkupload.enabled": [[57, "bulkupload-enabled"]], "cache_app_config": [[57, "cache-app-config"]], "cache_chunk_gc_ttl": [[57, "cache-chunk-gc-ttl"]], "cache_path": [[57, "cache-path"]], "carddav_sync_request_timeout": [[57, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[57, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[57, "check-data-directory-permissions"]], "check_for_working_htaccess": [[57, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[57, "check-for-working-wellknown-setup"]], "cipher": [[57, "cipher"]], "comments.managerFactory": [[57, "comments-managerfactory"]], "config_is_read_only": [[57, "config-is-read-only"]], "connectivity_check_domains": [[57, "connectivity-check-domains"]], "cookie_domain": [[57, "cookie-domain"]], "copied_sample_config": [[57, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[57, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[57, "csrf-optout"]], "customclient_desktop": [[57, "customclient-desktop"]], "data-fingerprint": [[57, "data-fingerprint"]], "datadirectory": [[57, "datadirectory"]], "davstorage.request_timeout": [[57, "davstorage-request-timeout"]], "db.log_request_id": [[57, "db-log-request-id"]], "dbdriveroptions": [[57, "dbdriveroptions"]], "dbhost": [[57, "dbhost"]], "dbname": [[57, "dbname"]], "dbpassword": [[57, "dbpassword"]], "dbpersistent": [[57, "dbpersistent"]], "dbreplica": [[57, "dbreplica"]], "dbtableprefix": [[57, "dbtableprefix"]], "dbtype": [[57, "dbtype"]], "dbuser": [[57, "dbuser"]], "debug": [[57, "debug"]], "default_certificates_bundle_path": [[57, "default-certificates-bundle-path"]], "default_language": [[57, "default-language"]], "default_locale": [[57, "default-locale"]], "default_phone_region": [[57, "default-phone-region"]], "default_timezone": [[57, "default-timezone"]], "defaultapp": [[57, "defaultapp"]], "diagnostics.logging": [[57, "diagnostics-logging"]], "diagnostics.logging.threshold": [[57, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[57, "documentation-url-server-logs"]], "enable_lazy_objects": [[57, "enable-lazy-objects"]], "enable_non-accessible_features": [[57, "enable-non-accessible-features"]], "enable_previews": [[57, "enable-previews"]], "enabledPreviewProviders": [[57, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[57, "encryption-use-legacy-base64-encoding"]], "enforce_theme": [[57, "enforce-theme"]], "errorlog": [[64, "errorlog"]], "external_storage.auth_availability_delay": [[57, "external-storage-auth-availability-delay"]], "file": [[64, "file"]], "filelocking.debug": [[57, "filelocking-debug"]], "filelocking.ttl": [[57, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[57, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[57, "files-chunked-upload-max-size"]], "files.trash.delete": [[57, "files-trash-delete"]], "files_external_allow_create_new_local": [[57, "files-external-allow-create-new-local"]], "files_no_background_scan": [[57, "files-no-background-scan"]], "filesystem_cache_readonly": [[57, "filesystem-cache-readonly"]], "filesystem_check_changes": [[57, "filesystem-check-changes"]], "forbidden_filename_basenames": [[57, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[57, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[57, "forbidden-filename-extensions"]], "forbidden_filenames": [[57, "forbidden-filenames"]], "force_language": [[57, "force-language"]], "force_locale": [[57, "force-locale"]], "forwarded_for_headers": [[57, "forwarded-for-headers"]], "gs.enabled": [[57, "gs-enabled"]], "gs.federation": [[57, "gs-federation"]], "has_internet_connection": [[57, "has-internet-connection"]], "hashingCost": [[57, "hashingcost"]], "hashingMemoryCost": [[57, "hashingmemorycost"]], "hashingThreads": [[57, "hashingthreads"]], "hashingTimeCost": [[57, "hashingtimecost"]], "hashing_default_password": [[57, "hashing-default-password"]], "hide_login_form": [[57, "hide-login-form"]], "htaccess.IgnoreFrontController": [[57, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[57, "htaccess-rewritebase"]], "installed": [[57, "installed"]], "instanceid": [[57, "instanceid"]], "knowledgebase.embedded": [[57, "knowledgebase-embedded"]], "knowledgebaseenabled": [[57, "knowledgebaseenabled"]], "l10n, create JavaScript translation files for apps": [[146, "l10n-create-javascript-translation-files-for-apps"]], "ldap:check-group": [[146, "ldap-check-group"]], "ldap:check-user": [[146, "ldap-check-user"]], "ldap:create-empty-config": [[146, "ldap-create-empty-config"]], "ldap:delete-config": [[146, "ldap-delete-config"]], "ldap:search": [[146, "ldap-search"]], "ldap:set-config": [[146, "ldap-set-config"]], "ldap:show-remnants": [[146, "ldap-show-remnants"]], "ldap:test-config": [[146, "ldap-test-config"]], "ldap:test-user-settings": [[146, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[57, "ldapusercleanupinterval"]], "ldap_log_file": [[57, "ldap-log-file"]], "localstorage.allowsymlinks": [[57, "localstorage-allowsymlinks"]], "localstorage.umask": [[57, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[57, "localstorage-unlink-on-truncate"]], "log.backtrace": [[57, "log-backtrace"]], "log.condition": [[57, "log-condition"]], "log_query": [[57, "log-query"]], "log_rotate_size": [[57, "log-rotate-size"]], "log_type": [[57, "log-type"]], "log_type_audit": [[57, "log-type-audit"]], "logdateformat": [[57, "logdateformat"]], "logfile": [[57, "logfile"]], "logfile_audit": [[57, "logfile-audit"]], "logfilemode": [[57, "logfilemode"]], "login_form_autocomplete": [[57, "login-form-autocomplete"]], "login_form_timeout": [[57, "login-form-timeout"]], "loglevel": [[57, "loglevel"]], "loglevel_dirty_database_queries": [[57, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[57, "loglevel-frontend"]], "logo_url": [[57, "logo-url"]], "logtimezone": [[57, "logtimezone"]], "lookup_server": [[57, "lookup-server"]], "lost_password_link": [[57, "lost-password-link"]], "mail_domain": [[57, "mail-domain"]], "mail_from_address": [[57, "mail-from-address"]], "mail_send_plaintext_only": [[57, "mail-send-plaintext-only"]], "mail_sendmailmode": [[57, "mail-sendmailmode"]], "mail_smtpauth": [[57, "mail-smtpauth"]], "mail_smtpdebug": [[57, "mail-smtpdebug"]], "mail_smtphost": [[57, "mail-smtphost"]], "mail_smtpmode": [[57, "mail-smtpmode"]], "mail_smtpname": [[57, "mail-smtpname"]], "mail_smtppassword": [[57, "mail-smtppassword"]], "mail_smtpport": [[57, "mail-smtpport"]], "mail_smtpsecure": [[57, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[57, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[57, "mail-smtptimeout"]], "mail_template_class": [[57, "mail-template-class"]], "maintenance": [[57, "id1"]], "maintenance_window_start": [[54, "maintenance-window-start"], [57, "maintenance-window-start"]], "max_file_conversion_filesize": [[57, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[57, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[57, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[79, "memberof-read-memberof-permissions"]], "memcache.distributed": [[57, "memcache-distributed"]], "memcache.local": [[57, "memcache-local"]], "memcache.locking": [[57, "memcache-locking"]], "memcache_customprefix": [[57, "memcache-customprefix"]], "memcached_options": [[57, "memcached-options"]], "memcached_servers": [[57, "memcached-servers"]], "metadata_max_filesize": [[57, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[57, "minimum-supported-desktop-version"]], "mount_file": [[57, "mount-file"]], "mysql.collation": [[57, "mysql-collation"]], "mysql.utf8mb4": [[57, "mysql-utf8mb4"]], "nginx": [[23, "nginx"]], "no_unsupported_browser_warning": [[57, "no-unsupported-browser-warning"]], "objectstore": [[57, "objectstore"], [57, "id2"], [57, "id3"]], "objectstore.multibucket.preview-distribution": [[57, "objectstore-multibucket-preview-distribution"]], "occ command Directory": [[146, "occ-command-directory"]], "occ commands": [[55, "occ-commands"]], "openssl": [[57, "openssl"]], "overwrite.cli.url": [[57, "overwrite-cli-url"]], "overwritecondaddr": [[57, "overwritecondaddr"]], "overwritehost": [[57, "overwritehost"]], "overwriteprotocol": [[57, "overwriteprotocol"]], "overwritewebroot": [[57, "overwritewebroot"]], "part_file_in_storage": [[57, "part-file-in-storage"]], "passwordsalt": [[57, "passwordsalt"]], "pgsql_ssl": [[57, "pgsql-ssl"]], "preview_concurrency_all": [[57, "preview-concurrency-all"]], "preview_concurrency_new": [[57, "preview-concurrency-new"]], "preview_ffmpeg_path": [[57, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[57, "preview-ffprobe-path"]], "preview_imaginary_key": [[57, "preview-imaginary-key"]], "preview_imaginary_url": [[57, "preview-imaginary-url"]], "preview_libreoffice_path": [[57, "preview-libreoffice-path"]], "preview_max_filesize_image": [[57, "preview-max-filesize-image"]], "preview_max_memory": [[57, "preview-max-memory"]], "preview_max_x": [[57, "preview-max-x"]], "preview_max_y": [[57, "preview-max-y"]], "profile.enabled": [[57, "profile-enabled"]], "profiler": [[57, "profiler"]], "profiling.path": [[57, "profiling-path"]], "profiling.request": [[57, "profiling-request"]], "profiling.request.rate": [[57, "profiling-request-rate"]], "profiling.sample": [[57, "profiling-sample"]], "profiling.sample.rate": [[57, "profiling-sample-rate"]], "profiling.sample.rotation": [[57, "profiling-sample-rotation"]], "profiling.secret": [[57, "profiling-secret"]], "projects.enabled": [[57, "projects-enabled"]], "proxy": [[57, "proxy"]], "proxyexclude": [[57, "proxyexclude"]], "proxyuserpwd": [[57, "proxyuserpwd"]], "qmail": [[60, "qmail"]], "query_log_file": [[57, "query-log-file"]], "query_log_file_backtrace": [[57, "query-log-file-backtrace"]], "query_log_file_parameters": [[57, "query-log-file-parameters"]], "query_log_file_requestid": [[57, "query-log-file-requestid"]], "quota_include_external_storage": [[57, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[57, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[57, "ratelimit-overwrite"]], "redis": [[57, "redis"]], "redis.cluster": [[57, "redis-cluster"]], "redis_log_file": [[57, "redis-log-file"]], "reduce_to_languages": [[57, "reduce-to-languages"]], "reference_opengraph": [[57, "reference-opengraph"]], "remember_login_cookie_lifetime": [[57, "remember-login-cookie-lifetime"]], "secret": [[57, "secret"]], "security.ipv6_normalized_subnet_size": [[57, "security-ipv6-normalized-subnet-size"]], "session_keepalive": [[57, "session-keepalive"]], "session_lifetime": [[57, "session-lifetime"]], "session_relaxed_expiry": [[57, "session-relaxed-expiry"]], "share_folder": [[57, "share-folder"]], "sharing.allow_custom_share_folder": [[57, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[57, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[57, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[57, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[57, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[57, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[57, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[57, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[57, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[57, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[57, "sharing-minsearchstringlength"]], "simpleSignUpLink.shown": [[57, "simplesignuplink-shown"]], "skeletondirectory": [[57, "skeletondirectory"]], "sort_groups_by_name": [[57, "sort-groups-by-name"]], "sqlite.journal_mode": [[57, "sqlite-journal-mode"]], "supportedDatabases": [[57, "supporteddatabases"]], "syslog": [[64, "syslog"]], "syslog_tag": [[57, "syslog-tag"]], "syslog_tag_audit": [[57, "syslog-tag-audit"]], "systemd": [[54, "systemd"], [64, "systemd"]], "systemtags.managerFactory": [[57, "systemtags-managerfactory"]], "tempdirectory": [[57, "tempdirectory"]], "templatedirectory": [[57, "templatedirectory"]], "theme": [[57, "theme"]], "theming.standalone_window.enabled": [[57, "theming-standalone-window-enabled"]], "token_auth_activity_update": [[57, "token-auth-activity-update"]], "token_auth_enforced": [[57, "token-auth-enforced"]], "transferIncomingShares": [[57, "transferincomingshares"]], "trashbin_retention_obligation": [[57, "trashbin-retention-obligation"]], "trusted_domains": [[57, "trusted-domains"]], "trusted_proxies": [[57, "trusted-proxies"]], "unified_search.enabled": [[57, "unified-search-enabled"]], "updatechecker": [[57, "updatechecker"]], "updatedirectory": [[57, "updatedirectory"]], "updater.release.channel": [[57, "updater-release-channel"]], "updater.server.url": [[57, "updater-server-url"]], "upgrade.cli-upgrade-link": [[57, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[57, "upgrade-disable-web"]], "user:add": [[146, "user-add"]], "user:delete": [[146, "user-delete"]], "user:info": [[146, "user-info"]], "user:lastseen": [[146, "user-lastseen"]], "user:list": [[146, "user-list"]], "user:profile": [[146, "user-profile"]], "user:report": [[146, "user-report"]], "user:resetpassword": [[146, "user-resetpassword"]], "user:setting": [[146, "user-setting"]], "user_ini_additional_lines": [[57, "user-ini-additional-lines"]], "version": [[57, "version"]], "versions_retention_obligation": [[57, "versions-retention-obligation"]], "\u201cCSync unknown error\u201d": [[96, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[96, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/automatic_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_apps", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/accountcommand", "desktop/commandline", "desktop/configfile", "desktop/envvars", "desktop/index", "desktop/massdeployment", "desktop/options", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/index", "groupware/calendar", "groupware/contacts", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_command", "office/configuration", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/automatic_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_apps.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/accountcommand.rst", "desktop/commandline.rst", "desktop/configfile.rst", "desktop/envvars.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/options.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/index.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_command.rst", "office/configuration.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 23, 24, 25, 26, 28, 34, 37, 38, 41, 42, 45, 46, 52, 54, 55, 56, 57, 59, 60, 61, 64, 66, 71, 79, 81, 82, 86, 89, 90, 91, 92, 94, 96, 98, 99, 101, 102, 104, 105, 108, 111, 112, 114, 116, 121, 123, 125, 126, 127, 128, 129, 130, 133, 134, 135, 139, 142, 143, 144, 145, 146, 147, 149, 154, 162, 165, 166, 168], "0": [1, 2, 4, 5, 7, 8, 9, 10, 11, 14, 19, 20, 21, 23, 25, 26, 30, 38, 42, 45, 49, 56, 57, 60, 64, 66, 67, 68, 72, 73, 74, 75, 79, 80, 83, 91, 94, 96, 98, 99, 101, 102, 111, 112, 114, 115, 116, 121, 123, 125, 126, 127, 129, 131, 135, 141, 144, 145, 146, 147, 148, 154, 161, 162, 163, 164, 165, 166], "00": [19, 20, 51, 56, 57, 64, 146], "000": [26, 111, 112], "0000": 146, "001": 57, "0022": 57, "0082c9": 69, "00am": [54, 57], "00iv00": 26, "00sig00": 26, "01": [54, 57, 64, 81, 131, 146], "0100": 60, "0123": 74, "02": [6, 56, 64, 146], "03": [51, 64, 146], "04": [19, 69, 86, 124, 130, 131, 150, 151], "05": [54, 57, 126], "055": 19, "06": 146, "062": 19, "0640": 57, "07": [57, 126], "0750": 31, "0770": 25, "079e7bc89d69792839a5e1831b1cbc80": 116, "08": [57, 146], "09": 64, "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 134, "0e": 51, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15, 19, 20, 21, 23, 25, 26, 28, 30, 40, 44, 45, 52, 54, 55, 56, 57, 60, 63, 64, 67, 68, 72, 73, 74, 79, 80, 86, 90, 91, 92, 94, 96, 98, 99, 101, 102, 111, 112, 114, 116, 121, 123, 125, 126, 127, 129, 130, 131, 133, 141, 144, 145, 146, 148, 154, 160, 161, 163, 164, 165, 166, 167], "10": [1, 2, 4, 5, 6, 7, 9, 10, 14, 19, 20, 21, 38, 41, 44, 51, 52, 55, 57, 60, 64, 66, 79, 83, 84, 86, 91, 96, 99, 111, 112, 114, 120, 131, 141, 146, 147, 163, 164, 167], "100": [7, 23, 26, 44, 54, 57, 72, 73, 74, 114, 154, 162, 166], "1000": [5, 79, 92, 96, 121], "10000": [56, 121], "1000000": 96, "10000000": [91, 96], "100mb": [3, 8, 74, 96], "100mib": 164, "100px": 44, "101": [72, 73, 74], "102": [73, 74], "1024": [29, 57, 114], "103": [73, 74], "103f": 146, "104": 74, "1040": 135, "10485760": 52, "104857600": [23, 45, 57], "105": 74, "106": 74, "107": 74, "1071": 57, "108": 74, "108082": 25, "109": 74, "10gb": 23, "10mib": 164, "10min": 80, "10t15": 64, "10x100": 23, "11": [6, 14, 62, 86, 116, 131, 145, 146, 152], "110": [60, 74], "111": [57, 74], "1110": 146, "112": [57, 74], "11211": [56, 57], "1124": 5, "1125420102": [57, 69], "113": [57, 74], "113556": 79, "114": 64, "11g": [118, 125, 131], "12": [57, 62, 74, 79, 86, 126, 131, 146, 163], "120": 9, "123": 57, "1234": 4, "12345": [8, 74], "1255": 129, "127": [56, 57, 60, 91, 99, 102, 123, 125, 126, 146, 148, 154], "128": [57, 79], "128m": [19, 56], "128mb": 131, "12b": 2, "12gb": [3, 5], "13": [57, 64, 131, 141, 146], "1319": 57, "1393": 116, "13b": 5, "14": [19, 40, 64, 81, 108, 131, 141], "143": 60, "1465910968": 146, "14t08": 146, "15": [26, 35, 37, 45, 51, 57, 64, 79, 80, 109, 111, 112, 114, 131, 141, 146], "1524": 60, "155": 57, "15552000": [67, 123], "15768000": 121, "15778463": 126, "15857": 52, "15m": 114, "15t15": 57, "16": [4, 19, 26, 64, 123, 131, 141], "16000": 8, "162409623552": 146, "162409624662": 146, "164": 79, "168": [19, 38, 57, 60, 64, 90, 123, 125], "16g": 23, "17": [131, 144, 146], "1711971024": 167, "1759739453": 13, "1759739455": 13, "1759739466": 13, "1759739513": 13, "1759740266": 13, "1759743900": 13, "178": 90, "18": [69, 131, 145, 146], "1800": [57, 111, 112], "19": [57, 131, 145, 146], "192": [19, 38, 57, 60, 64, 90, 123, 125], "1941": 79, "19417": 116, "19563": 56, "1970": 131, "198": 57, "19c": 131, "1d": [67, 114], "1d4725ae1ac4e4798b541ca3f3cdce6": 116, "1gb": [2, 6, 23], "1h": 114, "1st": [86, 138, 167], "1und1": 114, "2": [2, 3, 4, 5, 7, 8, 9, 12, 14, 19, 21, 22, 23, 26, 41, 45, 52, 56, 57, 60, 64, 67, 70, 79, 86, 91, 98, 99, 108, 114, 116, 118, 121, 123, 124, 125, 126, 127, 131, 141, 144, 145, 146, 155, 160, 161, 162, 165], "20": [4, 5, 6, 7, 9, 27, 64, 80, 81, 114, 141, 145, 146], "200": [80, 81], "2000": 19, "2001": 57, "2002": 135, "2005": 57, "2006": [86, 135], "20080704": 19, "2013": [57, 60, 64], "2014": 57, "2015": 146, "2016": 23, "2019": 81, "2020": 116, "2021": [64, 120], "2023": 146, "2024": [86, 88, 126, 146, 167], "2025": [4, 86, 88, 126, 146], "2026": [86, 88], "203": 57, "2038": 131, "2048": [5, 79], "20971520": 23, "20mb": 23, "21": [30, 57, 64, 133, 146, 152], "215": 87, "21a7": 57, "21c": 131, "22": [34, 51, 60, 86, 124, 130, 131, 146], "220": 60, "221": 60, "222": 57, "22203": 56, "2245": 60, "23": [126, 146], "23000": 98, "2323": 57, "233": 57, "2375": [99, 100], "23999": 98, "23ai": 131, "23t09": 146, "24": [3, 40, 41, 55, 57, 70, 92, 96, 109, 130, 131, 145, 146, 150, 151, 164], "24000": 100, "24001": 99, "24099": 99, "24b": 2, "25": [25, 51, 55, 57, 60, 64, 92, 126, 141, 145, 146], "250": 60, "2500": 57, "252": 57, "255": 57, "256": [26, 44, 57, 126], "256mb": 131, "2592000": [70, 111], "25t20": 146, "26": [6, 60, 64, 86, 111, 112, 141, 145, 146, 159, 166], "261535": 116, "262086": 116, "262087": 116, "26396": 133, "26406": 133, "27": [86, 112, 139, 141, 145, 159, 166], "28": [7, 57, 86, 115, 139, 141, 145, 159, 161, 166], "28451": 57, "288": 54, "28800": 57, "29": [15, 21, 57, 64, 139, 141, 145], "2b": 67, "2c5778476346786306303": 57, "2d": 51, "2def0f3597806ecb886da1d9cc323a7c": 116, "2f": 80, "2fa": [78, 114], "2fldap": 80, "2gb": [3, 23], "2k": 19, "2m": 19, "2nd": 79, "2x": 164, "3": [1, 2, 3, 5, 7, 8, 10, 13, 14, 15, 19, 21, 26, 52, 57, 60, 64, 69, 72, 90, 91, 96, 98, 99, 114, 118, 123, 125, 127, 130, 131, 135, 141, 144, 145, 146, 156, 162, 163, 164, 165, 166, 167], "30": [3, 8, 11, 23, 38, 41, 46, 49, 55, 57, 60, 70, 79, 83, 86, 91, 98, 111, 112, 114, 116, 129, 141, 146, 159, 164, 165], "300": [57, 81, 91, 92, 99, 114, 126], "30000": [91, 111, 112], "301": [66, 121, 123, 126, 135], "302": 126, "30566": 48, "3060": 98, "31": [10, 47, 51, 57, 86, 116, 120, 141, 159], "3100": 165, "31536000": 126, "3166": 57, "31d4a230559d4f3e2c471d3ea094": 134, "32": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168], "32bit": 23, "32m": [19, 56], "33": 146, "3306": [17, 60], "34": 69, "34262": 129, "35": 25, "36": [19, 64], "3600": [23, 57, 79, 114, 121, 146], "3600000": 91, "365": [57, 70], "37": [57, 64, 116], "389": [79, 80], "39": 60, "3a": 80, "3mb": 114, "3rd": [57, 60, 109, 135, 139, 145, 147, 155, 157], "3rdparti": [86, 120, 126, 128], "4": [1, 2, 3, 4, 5, 11, 14, 18, 19, 23, 35, 45, 54, 56, 57, 60, 64, 67, 72, 79, 86, 114, 116, 120, 123, 126, 127, 129, 131, 137, 139, 145, 146, 147, 152, 160, 163, 164, 165, 166, 167], "40": 51, "400": 11, "4000": 5, "40000": 8, "404": 126, "4086": 123, "4096": [5, 57], "41395": 162, "42": [13, 57, 167], "4200": 45, "425": 60, "429": [55, 57], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 134, "43200": 123, "4389": 64, "44": 146, "4418": 60, "443": [45, 57, 121, 123, 126, 148], "444": 121, "45": 57, "450": 6, "456": 74, "46": 146, "465": 60, "46cfa6e729ff329e6ede076853154113": 116, "47": 52, "48": [55, 96], "483": 116, "49": [57, 116, 131], "4966612345678": 79, "497": 116, "4a87e94522a3cf26dba8977ae901094d": 116, "4gb": [6, 7, 23], "4h": [7, 10], "4k": 126, "5": [0, 1, 2, 3, 14, 15, 45, 54, 56, 57, 64, 83, 90, 91, 92, 99, 104, 111, 112, 114, 116, 121, 123, 130, 131, 135, 144, 145, 146, 163, 167], "50": [38, 41, 57, 81, 83, 96, 111, 112, 114, 125], "500": [25, 57, 80, 83, 126, 135, 146], "5000": [57, 91, 111, 112, 165], "5000000": 91, "50000000": 96, "5000000000": 91, "500mb": 3, "501": 116, "502": 86, "504": [23, 126], "50m": 57, "51": [57, 81], "512": [92, 116, 121], "512k": 126, "512m": 126, "512mb": [43, 86, 126, 127, 131], "512x512": 9, "513": 116, "513m": 121, "515a13302a6b3950a9d0fdb970191a": 57, "51747": 23, "52": [57, 131], "5226": 96, "5242880": 92, "52428800": 60, "524288000": [45, 57], "5242880000": 45, "53": 23, "537": 64, "537919488": 121, "55": [60, 64, 146], "5545": 146, "56": [19, 57, 60, 64], "5646": 57, "57b58edb6637fe3059b3595cf9c41b9": 57, "587": [60, 116], "5e": 51, "5f": 51, "5gb": 6, "5min": 54, "5pm": 104, "6": [3, 4, 11, 13, 20, 26, 27, 52, 56, 57, 67, 69, 92, 111, 114, 116, 121, 127, 131, 140, 146, 152, 164], "60": [14, 19, 44, 57, 70, 92, 126, 129, 167], "600": [79, 80], "6000": 96, "60000": 91, "6072": 26, "61": 51, "62": 69, "6226r": [7, 10], "6238": 78, "62mb": 116, "63072000": 70, "631": 60, "6321": 146, "636": 79, "6379": [42, 56, 57, 120, 121], "639": 63, "64": [19, 23, 26, 45, 51, 56, 57, 60, 126, 131], "640": 139, "64bit": [18, 86], "64m": [19, 60], "67336bcdf7630dd80b2b81a413d07": 57, "68": 64, "6f": 51, "7": [3, 14, 26, 40, 49, 52, 57, 64, 114, 120, 126, 127, 131, 140, 141, 146, 160, 166], "7000": [56, 57], "7001": [56, 57], "7002": 56, "7003": 56, "7004": 56, "7005": 56, "70b": 5, "71d5": 146, "72": 123, "7200": 114, "7200000": 91, "7265": 146, "73": 51, "750": 139, "767": 57, "77": 11, "770": 56, "78": 165, "789": 74, "7b": [5, 11, 51], "7d": 126, "7urtvsj": 45, "8": [3, 4, 6, 7, 10, 11, 19, 20, 57, 68, 69, 86, 98, 114, 116, 123, 124, 126, 127, 129, 130, 131, 135, 141, 160, 161, 162, 163, 164, 165], "80": [6, 44, 51, 60, 120, 123, 126, 129, 130], "8000": 5, "800mb": 10, "8080": [57, 90, 91, 99, 130], "8081": 57, "8088": 57, "8096": 26, "8147": 26, "8192": 26, "83": 116, "83379f9bc36915d5024de878386060b5": 116, "84": [19, 60], "840": 79, "8443": 45, "8546": 25, "85a3": 57, "86": 146, "8601": 57, "86400": 123, "8651a9ac37674907606c936ced1333d7": 116, "8780": [99, 100], "8781": 99, "8782": [99, 100], "8802": 126, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 134, "89": 64, "8a": 51, "8a20": 57, "8b": [1, 2, 5], "8bitmim": 60, "8d3": 57, "8dd0e0ef2f7ab100b75922489ff26306": 116, "8e9f60369dce3d8b2b27430bd50ec46d": 116, "8gb": [3, 5, 9], "8m": 129, "9": [19, 25, 38, 57, 69, 72, 79, 83, 104, 114, 131, 146, 163], "90": [1, 19, 129], "9000": [126, 129], "9031": 8, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 134, "94": 116, "95": [11, 51, 57], "95a8": 146, "95af": 146, "97": [51, 116], "98": 146, "9825679": 2, "9839": 116, "98543234": 2, "9876": 79, "99": 57, "993": [60, 116], "995": 60, "9980": [148, 153], "9999": [45, 79], "9_": 79, "9am": 104, "9e": 51, "A": [3, 4, 5, 7, 9, 11, 19, 22, 25, 30, 32, 33, 37, 38, 40, 45, 49, 54, 56, 57, 60, 66, 67, 78, 79, 83, 84, 92, 94, 96, 98, 99, 111, 114, 116, 121, 123, 125, 126, 130, 131, 134, 135, 139, 140, 143, 146, 148, 151, 156, 160, 166], "AND": 135, "And": [28, 35, 45, 54, 56, 60, 86, 93, 121, 139, 144, 146, 166], "As": [4, 14, 19, 23, 40, 44, 47, 52, 56, 75, 81, 96, 98, 104, 111, 116, 117, 120, 121, 123, 140, 141, 146, 162, 166], "At": [0, 1, 2, 3, 5, 6, 9, 11, 60, 67, 78, 79, 111, 112, 140], "BY": [19, 122], "Be": [8, 14, 20, 40, 56, 57, 60, 79, 98, 99, 111, 125, 126, 135, 154], "But": [44, 47, 55, 57, 99, 129, 164], "By": [15, 23, 25, 31, 38, 44, 45, 47, 48, 49, 50, 54, 57, 64, 69, 78, 79, 83, 97, 101, 111, 114, 123, 126, 130, 134, 142, 143, 146, 147, 149, 166], "For": [1, 6, 7, 8, 13, 14, 15, 19, 20, 22, 23, 25, 26, 30, 34, 35, 37, 38, 41, 42, 46, 48, 49, 51, 52, 53, 54, 55, 56, 57, 61, 66, 67, 79, 81, 83, 89, 94, 96, 97, 98, 99, 102, 111, 112, 116, 120, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 145, 146, 147, 148, 151, 152, 162, 165, 166, 167, 168], "IF": [19, 122], "IT": 130, "If": [3, 5, 6, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 35, 37, 38, 40, 41, 42, 44, 45, 46, 47, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 69, 75, 76, 78, 79, 82, 83, 89, 91, 94, 96, 98, 99, 100, 104, 111, 112, 114, 115, 116, 120, 122, 123, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 162, 163, 164, 165, 166, 167, 168], "In": [0, 1, 3, 5, 6, 13, 14, 15, 19, 20, 22, 23, 25, 26, 28, 31, 37, 38, 39, 40, 45, 49, 52, 54, 55, 56, 57, 60, 63, 65, 67, 69, 75, 77, 78, 79, 82, 84, 90, 96, 98, 99, 100, 102, 104, 105, 111, 114, 116, 120, 121, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 141, 143, 144, 146, 147, 151, 154, 156, 162, 168], "It": [1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 22, 23, 25, 28, 33, 38, 41, 42, 45, 46, 55, 56, 57, 58, 60, 61, 65, 67, 78, 79, 80, 90, 91, 94, 96, 97, 98, 99, 100, 104, 105, 111, 112, 115, 116, 118, 121, 123, 125, 126, 127, 128, 129, 130, 132, 134, 135, 139, 140, 143, 144, 145, 146, 147, 154, 160, 162, 164, 165, 166, 167, 168], "Its": 55, "NO": 140, "NOT": [19, 56, 57, 94, 99, 122, 146], "No": [2, 14, 22, 25, 35, 57, 67, 91, 98, 105, 109, 135, 144, 146, 154], "Not": [19, 43, 50, 55, 57, 86, 96, 116], "ON": [19, 20, 57, 122], "Of": [125, 135, 168], "On": [3, 17, 19, 27, 35, 37, 38, 52, 54, 55, 56, 60, 61, 66, 79, 83, 91, 96, 120, 122, 130, 135, 140, 142, 148, 166], "One": [3, 8, 40, 45, 96, 98, 130, 146, 151], "Or": [97, 117, 130], "TO": [19, 57, 122], "That": [19, 24, 52, 57, 59, 60, 79, 111, 112, 114, 139, 148], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 41, 44, 45, 46, 47, 49, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 64, 66, 68, 69, 70, 71, 74, 75, 76, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 137, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 158, 160, 161, 162, 163, 164, 165, 166, 167], "Then": [19, 25, 26, 52, 60, 61, 69, 79, 81, 121, 122, 123, 125, 129, 130, 139, 140, 145, 146, 166], "There": [3, 23, 25, 28, 40, 44, 45, 49, 55, 56, 57, 60, 61, 67, 79, 81, 94, 96, 99, 100, 101, 108, 118, 123, 130, 132, 134, 135, 140, 145, 146, 151, 156], "These": [1, 2, 3, 24, 25, 26, 29, 31, 35, 37, 54, 57, 67, 78, 79, 81, 99, 114, 120, 123, 127, 129, 130, 139, 145, 146, 147, 159, 166], "To": [3, 4, 12, 15, 19, 24, 25, 28, 30, 35, 37, 41, 42, 45, 46, 47, 49, 52, 53, 54, 56, 57, 60, 65, 67, 68, 75, 78, 79, 81, 83, 86, 90, 95, 96, 101, 111, 112, 114, 115, 116, 117, 121, 122, 123, 128, 129, 130, 131, 132, 134, 135, 137, 139, 140, 143, 144, 145, 146, 147, 148, 157, 162, 166, 167, 168], "WITH": 19, "Will": [40, 146], "With": [0, 26, 40, 57, 60, 69, 99, 126, 135, 145, 146, 156, 164, 168], "_": [79, 83, 90], "__host": [62, 86], "_arm64": 126, "_bin": 57, "_complet": 146, "_groupsr": 123, "_postgresql": 121, "_static": [57, 167, 168], "a2enmod": [130, 148], "a2ensit": 130, "a3b30430b1ccb41089170eecbe315d3a": 116, "a4": 51, "a92c": 57, "aaliyah": 81, "aaliyah_brown": 81, "aaliyah_hamm": 81, "aaliyah_johnston": 81, "aaliyah_kunz": 81, "aavx": 137, "aax": 143, "abbrevi": 83, "abil": [6, 13, 55, 106, 130, 146, 147], "abl": [2, 3, 8, 15, 20, 26, 29, 35, 37, 40, 47, 50, 54, 60, 63, 69, 74, 79, 83, 96, 98, 100, 102, 104, 105, 111, 114, 123, 127, 130, 142, 150, 153, 154], "abort": [57, 78, 92], "about": [1, 2, 3, 6, 7, 8, 11, 15, 25, 33, 42, 45, 48, 57, 64, 67, 74, 76, 78, 79, 81, 83, 86, 96, 99, 111, 114, 115, 116, 117, 120, 123, 126, 129, 130, 133, 134, 135, 140, 145, 146, 154, 162, 164, 165], "abov": [1, 3, 4, 5, 14, 17, 19, 23, 40, 49, 56, 57, 62, 69, 75, 79, 85, 86, 89, 94, 96, 99, 100, 111, 116, 118, 120, 123, 126, 129, 130, 133, 134, 135, 139, 144, 146, 162], "absenc": 79, "absolut": [15, 57, 66, 79, 101, 135, 146], "abstract": [129, 132], "abund": 135, "abus": 86, "abuse_detect": 114, "abuse_number_of_messages_per_15m": 114, "abuse_number_of_messages_per_1d": 114, "abuse_number_of_messages_per_1h": 114, "abuse_number_of_recipients_per_message_threshold": 114, "acc": 52, "accel": 23, "accent": [7, 57], "accept": [13, 28, 29, 37, 38, 45, 57, 60, 63, 67, 82, 96, 99, 100, 114, 115, 154, 167], "access": [0, 2, 8, 12, 13, 14, 15, 23, 25, 28, 29, 30, 31, 35, 37, 38, 40, 45, 49, 50, 54, 55, 57, 60, 61, 62, 64, 66, 75, 78, 79, 82, 83, 86, 90, 96, 98, 99, 100, 102, 105, 107, 108, 112, 116, 117, 120, 124, 125, 129, 130, 135, 140, 143, 144, 146, 150, 154, 157, 166, 167], "access_log": [96, 126], "accessible_featur": 86, "accident": [101, 144], "acclaim": 5, "accommod": [96, 139, 145], "accomplish": 111, "accord": [41, 57, 69, 79, 87, 141, 146, 147, 151], "accordingli": [19, 23, 25, 56, 57, 79, 99], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 26, 33, 40, 50, 54, 55, 57, 60, 65, 70, 75, 78, 79, 81, 83, 86, 93, 96, 113, 127, 130, 146, 150, 167], "account_kei": 45, "account_manag": [75, 79, 86], "account_nam": 45, "accountid": 116, "accountmanag": [57, 75], "accumul": 96, "accur": [135, 145, 162], "accuraci": [5, 7, 8, 10, 45], "accuweath": 13, "achiev": [9, 115, 123], "acl": [49, 57, 66, 114], "acm": [69, 126], "acquir": [56, 116], "across": [1, 7, 10, 29, 56, 57, 98, 114, 127], "act": [1, 2, 5, 7, 9, 10, 11, 64, 111], "action": [1, 2, 3, 14, 16, 38, 49, 52, 54, 55, 57, 67, 86, 95, 98, 99, 107, 114, 124, 135, 144, 146, 168], "actionjob": 3, "activ": [15, 16, 22, 26, 40, 41, 42, 46, 52, 54, 56, 58, 60, 62, 64, 72, 77, 78, 80, 83, 85, 86, 91, 111, 112, 121, 123, 127, 129, 130, 131, 135, 140, 144, 146, 147, 166], "activity_": 22, "activity_dbdriveropt": 22, "activity_dbhost": 22, "activity_dbnam": 22, "activity_dbpassword": 22, "activity_dbport": 22, "activity_dbus": 22, "activity_expire_dai": [49, 57], "activity_expire_exclude_us": 49, "activity_use_cached_mountpoint": [49, 57], "actor": [55, 123], "actual": [1, 4, 19, 23, 26, 55, 67, 99, 127, 135, 144, 146, 165], "ad": [2, 6, 8, 17, 21, 24, 25, 26, 40, 43, 49, 54, 55, 56, 57, 60, 61, 64, 66, 67, 70, 79, 86, 94, 111, 112, 113, 115, 116, 121, 123, 129, 130, 131, 146, 147, 150, 160, 163, 164, 165, 168], "ad2dab17b2f9": 146, "adapt": [56, 99, 123, 126, 135, 140, 152, 166], "add": [0, 2, 6, 19, 20, 22, 37, 38, 40, 49, 50, 56, 57, 58, 60, 61, 62, 64, 73, 75, 78, 79, 83, 86, 96, 98, 100, 111, 112, 114, 116, 120, 121, 123, 126, 129, 130, 135, 137, 141, 145, 147, 148, 154, 155, 161, 162, 163, 167], "add_head": [23, 126], "addendum": [12, 86], "addit": [1, 3, 4, 15, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 41, 45, 50, 51, 52, 55, 57, 64, 69, 71, 78, 80, 83, 86, 93, 96, 97, 98, 99, 101, 102, 103, 111, 120, 122, 123, 125, 127, 128, 129, 131, 132, 134, 135, 139, 146, 150, 166, 167, 168], "addition": [38, 56, 79, 81, 111, 112, 135, 146, 165], "additional_opt": 99, "address": [2, 8, 19, 25, 38, 40, 52, 54, 57, 64, 66, 67, 74, 75, 76, 79, 80, 83, 86, 90, 91, 96, 98, 99, 100, 102, 104, 113, 114, 124, 125, 130, 142, 145, 147, 166], "address_of_remote_machin": 99, "addressbook": [38, 57, 86, 112, 123, 135], "addressbookchang": 112, "addressbookid": 135, "addserv": 57, "addus": 146, "adequ": [23, 79, 111, 112, 131], "adjust": [1, 8, 14, 19, 20, 41, 43, 44, 45, 47, 55, 57, 64, 69, 79, 86, 91, 92, 96, 99, 121, 126, 127, 128, 129, 130, 131, 135, 139, 141, 152, 163, 164, 165, 166, 167, 168], "adm": 73, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 25, 31, 37, 38, 40, 42, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 68, 69, 71, 72, 73, 74, 78, 79, 80, 83, 85, 86, 94, 96, 98, 99, 102, 111, 112, 114, 115, 116, 118, 120, 124, 125, 129, 130, 134, 135, 139, 140, 142, 144, 145, 146, 147, 148, 149, 162, 166, 168], "admin_": 167, "admin_audit": 86, "admin_manu": 57, "administ": 117, "administartor": 57, "administr": [0, 1, 2, 6, 13, 15, 19, 25, 26, 37, 40, 47, 48, 49, 54, 55, 57, 58, 60, 61, 62, 64, 65, 71, 75, 78, 84, 86, 96, 99, 104, 106, 108, 111, 114, 117, 123, 125, 130, 135, 142, 145, 146, 154, 155, 162, 165, 166, 167], "adminlogin": 53, "adminpass": 53, "adminw": [148, 153], "advanc": [35, 43, 49, 53, 66, 69, 71, 86, 100, 103, 130, 151, 168], "advantag": [26, 29, 53, 54, 86], "advertis": [54, 57], "advic": 57, "advis": [8, 147, 164], "ae": [3, 26, 57, 129], "aegi": 78, "affect": [14, 22, 23, 24, 25, 57, 58, 64, 79, 96, 104, 116, 129, 131, 135, 152], "after": [1, 4, 8, 13, 14, 15, 17, 19, 24, 25, 29, 34, 35, 41, 42, 44, 45, 46, 47, 49, 53, 54, 55, 56, 57, 59, 60, 61, 64, 65, 70, 76, 77, 79, 83, 86, 91, 94, 95, 96, 98, 99, 101, 102, 104, 105, 108, 112, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 154, 162, 166, 167, 168], "afterward": [55, 78, 79, 114, 130, 141, 143, 144, 148], "ag": [7, 43, 57, 83, 86, 107, 121, 123, 126], "again": [15, 17, 25, 27, 37, 40, 41, 49, 57, 67, 74, 78, 79, 83, 104, 111, 115, 116, 120, 121, 139, 141, 144, 145, 146, 154], "against": [0, 25, 55, 66, 70, 79, 83, 84, 105, 166, 168], "agenda": 114, "agent": [5, 12, 14, 57, 61, 64, 86, 104], "aggreg": 57, "aggress": 166, "agpl": 72, "agplv3": 15, "agre": 123, "ahead": 166, "ai": [2, 3, 4, 5, 7, 12, 13, 86, 98, 114], "ai_provid": 8, "aim": [123, 152], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 86, 98, 103, 127, 129, 130, 167], "ajax": [86, 114, 126, 146, 147], "aka": 130, "alarm": [86, 113], "albert": 146, "alert": [52, 86], "algorithm": [57, 99, 100, 116, 123, 143], "alia": [79, 114, 130, 146], "alias": 86, "aliasgroup1": 148, "aliasgroup2": 148, "alic": [37, 79, 146], "alice_1337": 79, "align": 60, "aliv": 57, "all": [1, 2, 3, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 23, 24, 26, 30, 31, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 56, 58, 61, 62, 64, 68, 75, 78, 79, 80, 81, 83, 85, 86, 90, 91, 92, 95, 96, 98, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 117, 120, 121, 122, 125, 126, 128, 129, 130, 132, 134, 135, 139, 140, 142, 143, 144, 145, 147, 150, 151, 152, 155, 162, 165, 166, 167, 168], "allenai": [5, 11], "alloc": [44, 57], "allow": [1, 2, 3, 5, 7, 14, 15, 19, 22, 23, 24, 26, 28, 29, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 57, 60, 61, 62, 65, 66, 70, 74, 79, 80, 82, 83, 86, 89, 90, 94, 97, 98, 99, 101, 104, 105, 108, 112, 114, 115, 123, 124, 125, 126, 127, 129, 130, 131, 144, 146, 147, 151, 154, 155, 163, 168], "allow_custom_share_fold": 86, "allow_disabled_password_enforcement_group": 86, "allow_local_infil": 19, "allow_local_remote_serv": [86, 114], "allow_persist": 19, "allow_self_sign": 60, "allow_url_fopen": 30, "allow_user_to_change_display_nam": 86, "allowcleanup": 13, "allowed_admin_rang": [86, 123], "allowed_no_password_confirmation_rang": 86, "allowed_user_ag": 86, "allowencodedslash": 148, "allowoverrid": [120, 130, 135], "allowselfsignedcertif": 86, "allowsymlink": 86, "almost": [57, 79, 130], "along": [3, 5, 17, 41, 57, 90, 123, 146], "alongsid": 57, "alpin": [90, 131], "alpinelinux": 90, "alreadi": [3, 8, 15, 16, 17, 20, 25, 44, 53, 57, 58, 73, 74, 79, 96, 99, 102, 112, 114, 121, 123, 125, 127, 128, 129, 130, 141, 144, 146, 152, 162, 166], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 23, 25, 33, 37, 38, 39, 40, 44, 45, 47, 48, 49, 50, 54, 55, 56, 57, 61, 64, 66, 69, 74, 75, 78, 79, 81, 82, 83, 85, 89, 90, 92, 95, 96, 98, 99, 101, 102, 104, 105, 108, 111, 112, 114, 116, 120, 121, 122, 123, 126, 127, 129, 130, 131, 132, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 152, 154, 155, 162, 163, 164, 165, 166, 167, 168], "alter": [19, 20, 41, 46, 79, 164], "altern": [2, 23, 47, 54, 62, 69, 86, 96, 127, 130, 133, 137, 146], "although": [40, 69, 146], "altitud": 123, "alwai": [1, 3, 5, 7, 14, 15, 26, 36, 37, 40, 49, 52, 57, 63, 64, 68, 78, 79, 93, 99, 100, 117, 121, 123, 125, 126, 127, 129, 134, 135, 139, 145, 146, 148, 162, 166, 167, 168], "amazon": [37, 45, 57, 86, 165], "amazonaw": 45, "amd": 102, "american": 10, "among": [0, 3, 82, 127, 166], "amongst": 98, "amount": [8, 44, 56, 79, 81, 96, 123, 129, 130, 165], "amp": 80, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 19, 23, 25, 26, 28, 29, 30, 33, 35, 37, 38, 40, 42, 45, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 66, 69, 71, 74, 75, 76, 77, 78, 79, 80, 83, 85, 86, 89, 90, 94, 96, 98, 99, 101, 104, 106, 111, 112, 114, 115, 116, 120, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 139, 142, 143, 144, 145, 147, 148, 149, 151, 154, 156, 160, 162, 164, 165, 166, 167, 168], "analyt": 14, "analyz": [57, 114], "andrew": 2, "android": [57, 61, 62, 69, 86, 104, 117, 131], "android_app": 51, "androidclienturl": 69, "angel": 87, "ani": [0, 2, 3, 5, 7, 13, 14, 15, 17, 19, 22, 23, 24, 25, 26, 29, 31, 34, 35, 36, 38, 40, 42, 45, 49, 50, 52, 53, 54, 55, 56, 57, 60, 61, 64, 66, 67, 78, 79, 81, 82, 83, 85, 86, 89, 90, 96, 97, 98, 99, 100, 101, 102, 104, 108, 111, 112, 114, 123, 125, 129, 130, 131, 134, 135, 140, 144, 145, 146, 154, 155, 160, 162, 166, 167, 168], "anim": [6, 57], "anna": 2, "anni": 146, "anniversari": 166, "announc": [60, 79, 123], "anon": 57, "anonym": [79, 123, 150], "anoth": [19, 25, 36, 43, 45, 66, 67, 68, 76, 78, 83, 86, 94, 96, 114, 123, 126, 128, 132, 134, 135, 145, 146, 148, 162, 163, 166], "ansi": 146, "answer": [1, 2, 57, 79, 168], "anti": [52, 57, 86], "anticip": 166, "antiviru": [62, 86], "anymor": [57, 74, 79, 86, 146, 165], "anyon": 40, "anyth": [13, 19, 28, 52, 55, 57, 111, 112, 139, 140, 146], "anytim": [46, 57, 83], "anywher": [29, 121, 125], "apach": [16, 38, 56, 57, 65, 67, 86, 96, 122, 123, 124, 125, 131, 135, 142, 146, 162], "apache2": [56, 86, 96, 122, 123, 127, 130, 135, 148], "apart": 120, "apc": [56, 57, 164], "apcu": [57, 62, 67, 86, 120, 127, 164], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 25, 33, 40, 57, 65, 71, 82, 84, 86, 96, 98, 99, 102, 114, 123, 126, 129, 147, 156, 162, 167, 168], "apirequest": [72, 73, 74, 80, 85], "app": [0, 12, 13, 17, 22, 24, 37, 38, 39, 40, 41, 44, 46, 50, 51, 54, 56, 59, 61, 62, 65, 67, 69, 71, 75, 78, 79, 80, 81, 82, 83, 85, 94, 96, 97, 101, 102, 103, 104, 105, 106, 108, 111, 112, 114, 115, 116, 120, 121, 122, 123, 124, 126, 127, 128, 130, 137, 139, 141, 142, 144, 145, 150, 151, 154, 155, 156, 157, 162, 165, 166, 167, 168], "app1": 146, "app2": 146, "app3": 146, "app_api": [2, 3, 4, 8, 86, 100, 101, 168], "app_api_haproxy_us": 99, "app_container_nam": 99, "app_display_nam": 8, "app_host": 8, "app_id": [8, 100, 102], "app_port": 8, "app_python_skeleton": 101, "app_secret": 8, "app_upd": 15, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 86, 97, 99, 100, 101, 102, 103, 168], "appapi_nextcloud": 168, "apparmor": 57, "appcodecheck": [15, 86], "appconfig": [57, 146], "appdata": [86, 91, 96], "appdata_instanceid": 57, "appdata_xxx": 146, "appear": [6, 19, 24, 25, 31, 53, 55, 57, 60, 61, 62, 67, 76, 79, 83, 86, 96, 98, 122, 125, 129, 134, 135, 146, 155], "appelman": 72, "append": [1, 16, 26, 40, 54, 57, 79, 133, 144], "appframework": 102, "appid": [13, 72, 99, 101, 133, 134], "appimag": 131, "appinfo": [72, 134], "appl": [57, 69, 96, 131], "applewebkit": 64, "appli": [8, 20, 22, 23, 24, 26, 38, 40, 41, 53, 57, 60, 63, 67, 74, 75, 79, 83, 86, 99, 105, 116, 123, 130, 136, 143, 145, 146], "applianc": [130, 140], "applic": [0, 2, 8, 15, 25, 37, 45, 51, 56, 57, 62, 64, 70, 72, 79, 81, 85, 86, 95, 96, 98, 99, 104, 111, 114, 117, 124, 126, 129, 130, 132, 134, 135, 139, 140, 143, 145, 146, 147, 166], "appnam": 146, "appoint": [58, 111], "apppassword": 94, "appreci": [5, 7, 9, 10], "approach": [25, 54, 64, 86, 138, 139, 166], "appropri": [26, 37, 40, 55, 56, 57, 63, 99, 111, 114, 118, 122, 126, 129, 130, 133, 139, 140, 146, 166], "approv": 86, "approve_link": 168, "approxim": [57, 79, 91, 96, 166], "apps_path": [15, 86], "appsallowlist": 86, "appstor": [15, 57], "appstoreen": [15, 86], "appstoreurl": [15, 86], "april": [64, 167], "apt": [52, 122, 123, 148, 149], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 69, 70, 74, 75, 76, 77, 78, 79, 80, 81, 83, 86, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 162, 163, 165, 166, 167, 168], "arab": 4, "arbitrari": [1, 37, 57], "arch": [90, 146], "architectur": [23, 57, 86, 102, 130, 142], "archiv": [57, 86, 90, 116, 120, 122, 130, 139, 144, 145, 146], "area": [50, 66, 130, 157], "arg": 126, "arg_v": 126, "argon2": [57, 127], "argument": [16, 35, 45, 49, 57, 72, 73, 74, 79, 80, 86, 126, 135, 146], "aris": [57, 140, 166], "arm32v7": 146, "around": [10, 14, 15, 86, 104, 105, 117, 166], "arrai": [15, 42, 45, 48, 53, 57, 60, 65, 66, 74, 75, 79, 80, 86, 99, 111, 120, 121, 125, 134, 167], "arrang": 166, "arraycach": 57, "art": 123, "articl": [129, 135], "artifact": 11, "artifici": [0, 1, 14, 86, 98], "asc": [120, 122], "ascii": [57, 68, 79, 127, 134], "asdf": 64, "asid": 165, "ask": [1, 2, 3, 12, 13, 16, 17, 40, 60, 76, 79, 82, 83, 86, 91, 114, 135, 143, 144, 145, 146, 150, 156, 162], "aspect": [57, 146], "assembl": 23, "assembli": 23, "asset": [66, 69, 123, 126, 163], "asset_immut": 126, "assetlink": 86, "assign": [2, 35, 75, 79, 81, 83, 86, 104, 107, 108, 129, 146, 168], "assignable\u00b2": 146, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 57, 86, 96, 105, 114, 144], "assistant_en": 1, "associ": [17, 40, 51, 55, 78, 79, 96, 135, 166], "assum": [8, 19, 55, 57, 60, 79, 99, 111, 112, 121, 123, 130, 135, 140, 142, 143, 144], "assumpt": 126, "asterisk": 146, "astroc": 146, "astronomi": 146, "async": 168, "asynchron": [3, 168], "atom": [57, 126], "attach": [1, 14, 35, 79, 86, 100, 167], "attack": [26, 55, 109, 123, 165], "attempt": [22, 25, 55, 76, 79, 86, 96, 102, 104, 123, 135, 146], "attend": 2, "attende": 111, "attr": 80, "attr_persist": 57, "attribut": [37, 57, 73, 74, 75, 80, 85, 86, 146], "attributenam": 80, "auckland": 57, "audienc": 86, "audio": [2, 4, 6, 14, 48, 57, 161, 162], "audit": [57, 62, 86, 123, 128], "auth": [55, 60, 78, 85, 86, 99, 126, 146, 168], "auth_availability_delai": 86, "authent": [2, 19, 25, 26, 28, 30, 31, 32, 33, 34, 36, 37, 43, 45, 55, 57, 60, 65, 71, 72, 73, 74, 77, 80, 83, 86, 89, 96, 99, 113, 123, 127, 130, 135, 140, 160, 167], "author": [2, 22, 50, 65, 72, 73, 74, 82, 83, 86, 111, 114, 127, 130, 134], "authorit": 143, "authorized_kei": [29, 34], "authtyp": 130, "auto": [4, 16, 25, 38, 40, 41, 46, 57, 69, 79, 80, 86, 120, 123, 146], "auto_index": 3, "auto_logout": 86, "auto_reset_persist": 19, "autocomplet": [40, 57, 79, 86, 112], "autoconfig": [53, 86], "autoconfigur": [57, 116], "autocr": [45, 57], "autofil": 98, "autom": [3, 57, 79, 86, 89, 104, 107, 108, 116, 130, 144, 168], "automat": [2, 3, 4, 6, 14, 17, 25, 35, 37, 40, 41, 46, 47, 49, 52, 54, 55, 56, 57, 60, 61, 62, 63, 66, 68, 69, 77, 78, 79, 81, 83, 85, 86, 91, 93, 96, 98, 99, 100, 108, 111, 112, 114, 123, 125, 127, 130, 135, 142, 143, 144, 146, 160, 162, 164, 168], "autotest": 126, "aux": 47, "av_background_scan": 52, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 25, 28, 30, 31, 33, 39, 40, 41, 42, 43, 44, 46, 49, 55, 56, 57, 59, 60, 61, 67, 69, 74, 75, 79, 81, 83, 86, 90, 91, 92, 93, 96, 97, 99, 100, 101, 102, 107, 108, 111, 116, 117, 120, 121, 123, 127, 130, 133, 135, 139, 140, 142, 144, 145, 146, 150, 151, 152, 155, 156, 162, 163, 166, 167, 168], "avatar": [60, 71, 75, 80, 86, 146], "avconv": 127, "averag": [23, 111, 112], "avoid": [3, 16, 19, 22, 23, 42, 52, 54, 57, 64, 79, 80, 86, 96, 101, 105, 127, 129, 135, 144, 146, 167], "avx": [3, 5], "avx2": [3, 5], "aw": [28, 45, 57, 120, 128, 165], "awai": [86, 111, 129, 135], "awar": [8, 79, 96, 123], "ax": 56, "axi": 44, "azur": [86, 113], "b": [57, 99], "b2": 51, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 134, "b4af8db0ae269d73432e9a01e63a": 134, "b6": 51, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 134, "back": [3, 22, 23, 25, 52, 55, 57, 60, 99, 104, 112, 126, 132, 135, 137, 139, 140, 144, 145, 167], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 23, 29, 34, 35, 36, 42, 43, 45, 55, 56, 62, 73, 74, 77, 79, 81, 82, 83, 86, 96, 112, 123, 129, 130, 146, 165], "background": [0, 3, 6, 14, 29, 37, 43, 49, 57, 58, 62, 67, 69, 81, 86, 95, 124, 141, 145, 167], "background_job_expire_trash": 46, "background_job_expire_vers": 41, "backgroundcolor": 69, "backgroundjob": [3, 167], "backport": [133, 166], "backportbot": 133, "backtrac": 86, "backup": [20, 43, 44, 57, 78, 86, 114, 130, 132, 135, 138, 139, 140, 141, 144, 145, 146, 152, 166], "backward": [19, 80], "bad": [5, 86, 123], "badger": 61, "bak": [137, 143], "balanc": [23, 56, 66, 79, 86, 125], "ban": 123, "bandwidth": [23, 126], "banner": [79, 145], "bantim": 123, "bar": [41, 46, 69, 146], "barcelona": 79, "bare": [86, 132], "barracuda": [19, 57], "base": [1, 3, 4, 5, 7, 9, 10, 14, 17, 25, 26, 35, 38, 40, 43, 52, 54, 55, 57, 62, 63, 64, 66, 69, 79, 80, 85, 86, 90, 102, 104, 105, 120, 121, 123, 124, 126, 127, 130, 131, 138, 139, 140, 145, 146, 150, 152, 166, 168], "base64": [26, 28, 45, 57, 146], "basenam": [57, 163], "baseurl": 168, "bash": [31, 120, 130, 146], "bash_profil": 146, "basi": 54, "basic": [47, 57, 60, 72, 73, 74, 75, 79, 80, 83, 85, 86, 99, 120, 123, 130, 135, 144, 160, 168], "batch": [11, 79, 86, 138], "bc95cbaff3abbed716e1d40bbdaa58a0": 116, "bcrypt": [123, 127], "bearer": [2, 65, 71, 86], "beauti": 168, "becaus": [16, 17, 19, 23, 24, 26, 29, 35, 40, 42, 45, 50, 51, 52, 53, 54, 56, 57, 59, 61, 67, 79, 82, 96, 111, 114, 116, 120, 123, 128, 129, 130, 131, 135, 139, 144, 146, 167], "becom": [37, 40, 57, 66, 129, 130, 135, 165], "been": [3, 26, 29, 35, 37, 38, 45, 49, 50, 52, 53, 54, 57, 60, 64, 67, 81, 90, 94, 96, 104, 108, 134, 141, 146, 152, 158, 160, 165, 166], "befor": [1, 3, 5, 7, 8, 13, 16, 17, 19, 20, 29, 43, 44, 45, 48, 49, 52, 54, 57, 60, 65, 79, 86, 96, 98, 108, 111, 114, 115, 116, 121, 125, 127, 129, 130, 131, 132, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 163, 166], "beforehand": [132, 166], "beforenodecopiedev": 167, "beforenodecreatedev": 167, "beforenodedeletedev": 167, "beforenodereadev": 167, "beforenoderenamedev": 167, "beforenoderestoredev": 167, "beforenodetouchedev": 167, "beforenodewrittenev": 167, "begin": [2, 3, 5, 7, 79, 128, 135, 139, 146, 162], "begin_of_text": 5, "behalf": [1, 168], "behav": 79, "behavior": [2, 23, 29, 38, 55, 57, 60, 64, 79, 80, 91, 92, 96, 129, 135], "behaviour": [57, 79, 123, 126], "behind": [14, 23, 55, 57, 66, 67, 96, 130, 134], "being": [3, 26, 40, 45, 55, 56, 57, 98, 102, 104, 105, 111, 114, 120, 123, 140, 146, 163, 166], "believ": 135, "belong": [2, 79, 83, 116, 147], "below": [1, 3, 8, 23, 25, 35, 40, 45, 55, 56, 57, 60, 62, 64, 67, 75, 78, 79, 80, 83, 86, 91, 92, 96, 98, 99, 104, 116, 126, 127, 139, 141, 145, 146, 148], "benchmark": [4, 57, 116], "bender": 146, "benefit": [45, 57, 98, 99, 123, 129, 130, 135, 166], "berlin": [2, 13, 57, 115, 146], "berni": 146, "besid": [55, 57, 79, 98, 126], "best": [13, 14, 25, 44, 55, 56, 60, 104, 114, 123, 125, 127, 130, 131, 135, 139, 140, 145, 149, 167], "beta": [15, 57, 86], "better": [1, 5, 6, 7, 9, 10, 11, 17, 22, 25, 45, 52, 62, 79, 86, 129, 135, 146, 166], "between": [13, 22, 25, 26, 35, 38, 43, 51, 54, 57, 66, 79, 86, 90, 93, 98, 99, 100, 104, 129, 139, 141, 143, 145, 146, 147, 166], "bewar": [37, 54], "beyond": [19, 45, 51, 86], "bia": [6, 11], "bias": 9, "big": [16, 43, 55, 86, 96, 126, 127, 135, 164, 166], "big_temp_fil": 23, "bigger": [54, 57, 145], "bigint": [18, 22, 86, 141], "bin": [14, 25, 43, 52, 54, 56, 62, 83, 86, 99, 113, 121, 130, 146, 167], "binari": [26, 35, 57, 60, 90, 99, 131, 134, 146], "binary_search_path": 86, "bind": [79, 99, 100, 127, 130, 146], "bind_address": 99, "bing": 156, "binlog_format": [19, 131], "bio": 129, "biographi": [75, 79], "birth": 79, "birthdai": [86, 113], "birthdat": 79, "bit": [1, 19, 20, 23, 29, 57, 79, 121, 131, 151], "bitmap": 57, "black": 2, "blacklist": 92, "blacklisted_fil": 163, "blob": [14, 60, 86], "block": [1, 8, 25, 37, 55, 57, 61, 79, 86, 102, 121, 123, 126, 129, 154, 163], "blocker": 61, "blog": [6, 8, 11, 25, 57, 86, 120, 126], "blue": 87, "blurri": 44, "bmp": [57, 126], "board": [2, 156, 157], "bob": [146, 167], "bock": 163, "bodi": [57, 121], "bold": 166, "book": [11, 40, 57, 75, 83, 86, 111, 113], "bookworm": 131, "bool": [111, 116, 167], "boolean": [3, 15, 17, 20, 38, 57, 68, 146, 168], "boolval": 99, "boot": [54, 56, 120], "bootstrap": [56, 57], "border": 37, "borrow": 126, "bot": [12, 14, 86], "both": [3, 14, 19, 22, 25, 34, 38, 44, 45, 46, 52, 56, 57, 60, 64, 67, 78, 79, 83, 89, 90, 99, 102, 105, 114, 116, 123, 126, 127, 129, 130, 135, 140, 145, 146, 147, 154, 155], "bottom": [139, 168], "bound": [3, 91, 96, 99], "box": [25, 50, 55, 60, 79, 96, 98, 116, 151, 160], "bracket": [79, 80], "branch": 134, "brand": [61, 62, 86, 149], "brazilian": 4, "breach": [84, 123], "break": [14, 57, 126, 131, 135, 146, 166], "breakdown": 86, "breton": 4, "brick": 168, "bridg": [99, 100], "brief": 160, "briefli": 99, "bring": [14, 90, 155], "british": 10, "broaden": 146, "broken": [20, 25, 67, 126, 135, 162], "brown": 81, "browser": [38, 57, 61, 63, 67, 86, 89, 96, 104, 120, 121, 123, 124, 125, 126, 129, 130, 135, 140, 142, 144, 146, 148, 152, 153, 154, 162, 165], "brute": [57, 62, 86, 123, 146], "bruteforc": [55, 86, 146], "bruteforce_attempt": 55, "bruteforceset": 55, "bsd": 121, "bt": 11, "bucket": [28, 33, 43, 57, 86], "bucketnam": 45, "buffer": [23, 96, 129], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 57, 67, 86, 96, 116, 129, 131, 136, 145, 146], "bugtrack": 135, "build": [6, 8, 52, 86, 116, 126], "built": [1, 2, 5, 7, 9, 10, 11, 25, 29, 50, 55, 57, 64, 67, 86, 96, 111, 126, 127, 130, 131, 135, 138, 139, 141, 145, 148, 151, 154], "bulk": [6, 57], "bulkupload": 86, "bundl": [3, 15, 56, 57, 167], "busi": [57, 130, 135, 154], "bust": 126, "button": [1, 4, 15, 24, 29, 37, 38, 57, 60, 69, 79, 83, 86, 96, 97, 98, 112, 114, 135, 144, 168], "byedvluwkxkmflpbgvxc": 64, "bypass": [3, 45, 50, 57, 79, 96, 123], "byte": [18, 19, 23, 26, 28, 45, 52, 57, 60, 86, 91, 92, 96, 114, 116, 121, 129, 131, 135, 137, 146], "bytecod": 129, "bz2": [120, 122, 139], "bzip2": 120, "c": [6, 19, 25, 28, 43, 57, 64, 86, 89, 94, 96, 99, 116, 120, 122, 123, 127, 130, 135, 143, 146], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 134, "c478e6c156c5955ed53c40d06585": 134, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 57, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 134, "ca": [19, 56, 57, 99, 146], "ca_cert": 57, "cach": [8, 42, 55, 62, 66, 80, 86, 111, 124, 126, 132, 135, 146, 162], "cache_app_config": 86, "cache_chunk_gc_ttl": 86, "cache_path": [56, 86], "cache_s": 19, "cadav": [96, 135], "caddi": 86, "cadenc": 166, "cafil": [56, 57], "cal": 66, "calcul": [5, 6, 7, 9, 10, 26, 57, 83, 129], "caldav": [57, 62, 66, 86, 112, 113, 116, 121, 126, 130, 135, 146, 160, 167], "caldav_external_attendees_dis": 111, "calendar": [15, 20, 58, 60, 86, 113, 115, 134, 136, 141, 167], "calendarchang": [111, 146], "calendardata": 167, "calendarid": 167, "calendarobjectcreatedev": 167, "calendarobjectdeletedev": 167, "calendarobjectmovedev": 167, "calendarobjectmovedtotrashev": 167, "calendarobjectrestoredev": 167, "calendarobjectupdatedev": 167, "calendarretentionoblig": 111, "calendarserv": 167, "calendarsubscriptionrefreshr": 111, "call": [2, 3, 4, 14, 26, 38, 40, 53, 54, 56, 57, 64, 65, 73, 79, 85, 96, 98, 114, 126, 128, 130, 131, 135, 143, 144, 146, 147, 155, 167, 168], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 61, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 162, 163, 164, 165, 166, 167], "can_instal": 121, "cancel": 135, "candid": 86, "cannot": [0, 3, 5, 8, 9, 23, 26, 29, 31, 35, 42, 47, 48, 51, 52, 57, 60, 67, 74, 79, 83, 86, 116, 123, 131, 133, 134, 139, 143, 145, 146, 160, 166], "canon": 86, "cantonbeck": 146, "cap": [129, 148], "cap_add": 129, "capabl": [2, 14, 57, 79, 86, 99, 111, 129, 146, 148, 153, 154, 155], "capac": [5, 7, 9, 10], "carbonara": 2, "card": [2, 66, 83, 98, 112, 156, 157], "carddav": [40, 62, 66, 86, 111, 113, 121, 126, 130, 135, 160], "carddav_sync_request_timeout": 86, "carddav_sync_request_trunc": 86, "care": [3, 22, 52, 54, 57, 82, 99, 100, 121, 125, 126], "carefulli": [135, 146], "carla": 90, "carri": [2, 57], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 19, 20, 22, 25, 26, 35, 39, 40, 47, 52, 54, 55, 57, 60, 63, 67, 69, 77, 79, 84, 94, 96, 98, 99, 100, 102, 104, 105, 114, 116, 120, 123, 127, 129, 130, 131, 133, 135, 139, 140, 141, 143, 144, 146, 147, 154, 160, 162, 166, 168], "cast": 57, "cat": [2, 28, 146], "catalan": 4, "catch": 135, "categori": [2, 15, 98], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 25, 55, 56, 57, 67, 79, 96, 126, 128, 129, 130, 134, 135, 140, 143, 144, 162, 164, 165], "causal": 21, "caution": [8, 91, 116], "cautiou": [57, 60], "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "cd": [8, 14, 20, 25, 31, 118, 121, 146, 149, 167], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 134, "ce6cd914": 146, "ce8b61c2": 146, "ce9e248333c44a5a64ccad26f2550f95": 116, "ceas": 166, "center": 60, "cento": [52, 56, 86, 124, 126, 130, 131, 146], "central": [25, 26, 56], "ceph": 45, "cert": [19, 56, 57, 97, 99, 121, 148], "certain": [3, 9, 23, 44, 49, 55, 57, 66, 79, 92, 94, 96, 108, 111, 112, 123, 126, 130, 144, 146, 154, 168], "certfil": 99, "certif": [29, 30, 43, 57, 61, 80, 86, 88, 90, 96, 99, 114, 121, 123, 126, 130, 131, 134, 146, 148, 149, 160], "certifi": 87, "cfb": 57, "cfg": [91, 94, 96], "cgi": 126, "challeng": [123, 126, 146], "chanc": [116, 135, 166], "chang": [1, 2, 3, 8, 11, 13, 14, 15, 16, 17, 20, 22, 24, 25, 35, 36, 37, 40, 42, 43, 44, 45, 48, 49, 52, 56, 57, 58, 60, 62, 63, 68, 69, 75, 79, 80, 83, 86, 89, 90, 91, 94, 96, 98, 99, 104, 111, 112, 114, 116, 118, 120, 122, 123, 126, 127, 129, 130, 134, 137, 139, 140, 143, 145, 146, 152, 154, 160, 161, 162, 163, 164, 166, 167, 168], "changelog": [15, 86, 139], "channel": [15, 86, 117, 135], "chapter": [127, 130, 135, 166], "char": [79, 146], "charact": [8, 19, 20, 47, 57, 60, 79, 80, 84, 96, 122, 123, 127, 135, 137, 143, 146], "character_set_serv": 19, "characterist": 57, "charg": [82, 168], "charset": [22, 57], "chart": [83, 130], "chat": [2, 5, 12, 13, 58, 86, 104], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 14], "chatroom": 8, "chatti": 13, "cheap": 57, "cheat": 165, "check": [2, 3, 5, 6, 7, 11, 13, 14, 19, 25, 30, 35, 37, 38, 40, 52, 54, 55, 56, 57, 60, 62, 63, 69, 74, 78, 79, 81, 83, 84, 86, 91, 98, 99, 101, 103, 104, 114, 116, 121, 123, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 144, 145, 154, 163, 164, 166, 167, 168], "check_data_directory_permiss": 86, "check_for_working_htaccess": 86, "check_for_working_wellknown_setup": 86, "checkbox": [28, 37, 38, 69, 83, 99, 111, 112], "checker": [57, 67], "checkout": 3, "checksum": [79, 120, 122, 165], "chines": 4, "chmod": [25, 31, 99, 139], "choic": [8, 19, 52, 57, 78, 79, 86, 123, 124, 127, 145], "choos": [1, 5, 7, 15, 25, 40, 50, 55, 56, 57, 64, 66, 79, 98, 99, 111, 112, 121, 126, 127, 130, 135, 139, 146, 148, 155, 166, 168], "chooser": 57, "chose": [114, 145], "chosen": [1, 17, 19, 56, 57], "chown": [25, 31, 118, 120, 122, 126, 130, 139], "christoph": 116, "chrome": [64, 131], "chromium": [131, 165], "chroot": [86, 124], "chunk": [3, 40, 43, 57, 86, 91, 92, 96, 116, 126], "chunked_upload": [23, 86], "chunksiz": [91, 96], "ci": 57, "cid": 146, "cidr": [57, 66], "cif": [37, 86, 124, 127], "cipher": [26, 86, 96, 123], "circl": 86, "circumst": [44, 55, 79, 91], "circumv": 57, "cisco": 52, "citi": 79, "claim": 0, "clam": 52, "clamav": [62, 86], "clamd": 52, "clamp": 79, "clamscan": 52, "clarif": 13, "class": [28, 45, 57, 60, 75, 79, 134, 167], "classic": 130, "classif": 167, "classifi": [6, 96, 116], "clean": [1, 46, 49, 54, 57, 78, 86, 102, 111, 130, 146, 160], "cleanup": [1, 44, 71, 78, 79, 86, 162], "cleanupjobchunks": 81, "clear": [6, 17, 55, 56, 57, 79, 80, 95, 116, 129, 146], "clear_env": 130, "cli": [54, 60, 62, 66, 86, 97, 101, 103, 111, 120, 123, 124, 130, 145, 146, 162], "click": [15, 24, 37, 38, 50, 57, 60, 61, 76, 79, 83, 96, 98, 114, 125, 134, 135, 144, 146, 168], "clickjack": [61, 123], "client": [16, 19, 23, 25, 28, 29, 35, 40, 42, 45, 47, 51, 55, 57, 60, 61, 62, 65, 66, 70, 78, 79, 83, 86, 89, 91, 92, 94, 95, 99, 100, 104, 111, 112, 114, 116, 117, 123, 124, 125, 126, 128, 129, 130, 134, 135, 138, 140, 144, 146, 147, 148, 153], "client_body_buffer_s": 126, "client_body_temp_path": 23, "client_body_timeout": 126, "client_max_body_s": [23, 126], "clone": [7, 8], "close": [7, 8, 10, 40, 57, 60, 66, 86, 135, 144], "cloud": [0, 1, 4, 8, 14, 38, 40, 43, 51, 62, 64, 65, 67, 69, 72, 73, 74, 85, 86, 89, 94, 96, 97, 123, 126, 130, 146, 148, 154], "cloud2": 148, "cloud_id": 146, "cloudfil": [33, 57], "cloudflar": [57, 96, 126, 135], "clue": 86, "cluster": [0, 3, 6, 86, 140], "cmd": [90, 120], "cn": [57, 79, 80, 146], "cname": 140, "cnf": [19, 57, 121], "co": [5, 11], "co2": [6, 11], "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 25, 26, 44, 48, 60, 62, 63, 66, 67, 72, 73, 74, 75, 78, 79, 86, 94, 96, 118, 123, 126, 129, 132, 135, 136, 144, 145, 148, 149, 150, 151, 152, 154, 167], "code_docker_imag": 151, "codebas": [57, 141], "collabor": [29, 86, 104, 105], "collabora": [29, 86, 130, 149, 150, 151, 153, 154, 157, 162], "collaboraoffic": [149, 151, 152], "collaboraonlin": [147, 148, 149, 151, 152, 153], "collat": [19, 20, 86, 122, 143], "collation_serv": 19, "collect": [54, 57, 116, 123, 156, 157], "collis": [57, 79, 80], "colon": [57, 60], "color": [37, 69, 146], "column": [16, 22, 83, 114, 141, 145], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 19, 25, 32, 38, 45, 51, 52, 56, 57, 60, 66, 69, 72, 73, 74, 79, 80, 81, 84, 85, 86, 89, 90, 94, 96, 99, 111, 114, 117, 118, 120, 122, 123, 125, 126, 127, 129, 130, 131, 133, 134, 135, 139, 144, 146, 147, 148, 149, 151, 152, 153, 154, 162, 165, 167, 168], "combin": [12, 29, 55, 67, 86, 96, 127, 130, 142], "combo": 50, "come": [2, 4, 5, 23, 40, 44, 48, 49, 55, 57, 98, 99, 109, 120, 130, 131, 135, 146, 151, 167, 168], "comma": [57, 58, 79], "command": [1, 4, 6, 12, 13, 14, 16, 17, 27, 31, 35, 37, 38, 40, 43, 44, 45, 48, 49, 52, 54, 57, 58, 60, 64, 66, 68, 69, 75, 76, 79, 81, 86, 93, 94, 95, 99, 100, 101, 102, 106, 111, 114, 115, 116, 120, 122, 124, 127, 128, 129, 130, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 164, 165, 167], "comment": [20, 23, 40, 52, 62, 86, 130, 133, 139, 144, 150, 156, 157], "commentsmanag": 57, "commerci": [130, 135], "commit": [57, 62, 86, 131], "common": [11, 25, 48, 51, 55, 57, 67, 79, 84, 86, 98, 107, 114, 120, 123, 126, 130, 146, 153, 168], "commonli": [25, 45, 55, 56, 127, 135], "commonnam": [57, 130, 167], "commun": [1, 14, 15, 32, 67, 79, 82, 86, 90, 98, 100, 103, 116, 117, 118, 122, 127, 130, 135, 144, 146, 150, 153, 155, 164, 166], "compani": [2, 61, 79], "compar": [17, 53, 54, 79, 139, 146], "comparison": [43, 57, 79, 86, 167], "comparison_of_file_system": 57, "compat": [0, 3, 5, 15, 19, 25, 28, 35, 37, 43, 45, 57, 78, 80, 86, 127, 135, 141, 145, 148, 166], "compil": [19, 56, 129], "complain": 146, "complet": [1, 2, 3, 11, 14, 17, 23, 25, 38, 40, 52, 57, 65, 79, 83, 91, 104, 118, 120, 121, 123, 125, 127, 128, 129, 130, 132, 141, 143, 144, 145, 146, 156, 159, 167], "completionexpectedat": 13, "complex": [25, 57, 99], "compli": [57, 146], "complianc": [57, 86, 135], "compliant": [78, 123, 131], "compon": [57, 126, 130, 135, 146, 155, 160, 167], "compos": 52, "composit": 157, "comprehens": 135, "compress": [52, 57, 83, 86, 96, 104, 123, 124, 164], "compromis": [25, 57], "comput": [47, 57, 83, 84, 93, 98, 99, 100, 102, 135], "compute_devic": 100, "computedevic": 100, "concaten": [26, 35], "concept": [22, 121, 146], "concern": [8, 23, 25, 26, 44, 57, 126, 166], "concert": 2, "concurr": [3, 4, 45, 57, 129, 162], "condit": [13, 14, 64, 67, 79, 86, 105, 135, 166, 167, 168], "condition": 57, "conf": [19, 52, 56, 79, 120, 121, 123, 126, 130, 135], "confdir": 95, "confer": [2, 117], "confidenti": [65, 104, 147], "config": [1, 2, 3, 5, 11, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 58, 62, 63, 64, 65, 66, 67, 68, 69, 70, 75, 77, 79, 80, 81, 82, 83, 86, 91, 94, 98, 99, 100, 101, 106, 111, 112, 114, 115, 116, 120, 121, 125, 126, 128, 129, 130, 132, 135, 137, 139, 140, 141, 143, 144, 145, 148, 154, 162, 163, 164, 165], "config_is_read_onli": 86, "configdata": 80, "configid": [79, 80, 146], "configur": [2, 4, 12, 15, 17, 20, 22, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40, 42, 43, 47, 50, 54, 55, 63, 65, 66, 68, 70, 71, 78, 81, 83, 84, 92, 93, 95, 96, 97, 98, 100, 102, 103, 104, 105, 107, 109, 111, 112, 113, 115, 116, 120, 122, 125, 129, 131, 132, 135, 139, 140, 141, 143, 144, 150, 153, 157, 159, 168], "configuration_serv": 57, "confin": [40, 130], "confirm": [4, 16, 19, 38, 45, 57, 62, 65, 67, 76, 79, 86, 91, 120, 122, 129, 130, 139, 140, 146], "conflict": [15, 57, 79, 116, 143, 146], "confus": 25, "congratul": [114, 148], "conjunct": [5, 146], "connect": [0, 3, 5, 19, 21, 22, 28, 29, 30, 33, 35, 37, 38, 42, 45, 55, 57, 60, 65, 66, 67, 70, 71, 80, 81, 86, 89, 91, 92, 98, 99, 100, 111, 112, 114, 121, 124, 126, 128, 130, 131, 135, 146, 147, 153, 154, 162], "connect_timeout": [19, 45], "connectivity_check_domain": 86, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 86, 124, 125, 146], "consecut": 31, "consent": 114, "consequ": [43, 86, 123, 126], "consid": [1, 8, 15, 25, 28, 38, 44, 45, 57, 60, 64, 78, 79, 96, 111, 112, 116, 123, 130, 131, 135, 143, 154, 166, 168], "consider": [43, 57, 62, 83, 86, 166], "consist": [17, 26, 57, 104, 114, 126, 135, 139, 146], "consol": [16, 49, 61, 101, 126, 130, 135, 139, 146, 148], "constant": [57, 75], "constraint": [130, 146], "consult": [15, 23, 25, 56, 57, 75, 123, 127, 131], "consum": [8, 23, 57, 145], "consumpt": [5, 6, 7, 11, 23, 86, 88], "contact": [15, 40, 69, 75, 79, 83, 86, 111, 113, 118, 130, 134, 136, 141, 146, 150], "contain": [3, 4, 5, 7, 8, 11, 14, 15, 19, 25, 26, 27, 28, 40, 45, 52, 57, 60, 67, 79, 80, 83, 86, 87, 90, 91, 96, 97, 98, 100, 101, 104, 109, 112, 114, 116, 123, 126, 129, 130, 132, 133, 135, 144, 146, 147, 148, 151, 154, 162, 168], "container": 130, "container_id": 148, "container_nam": 52, "content": [2, 3, 11, 14, 17, 25, 26, 28, 40, 45, 51, 57, 61, 85, 90, 96, 99, 105, 111, 112, 120, 121, 122, 123, 126, 134, 135, 139, 143, 146, 156, 167], "contentlength": 126, "context": [5, 8, 12, 35, 57, 64, 86, 104, 127, 146, 157, 165, 167], "context_ag": [1, 12, 86], "context_chat": [1, 3, 14], "context_chat_backend": [1, 3, 14], "contextchat": 3, "continu": [3, 16, 41, 64, 83, 99, 101, 123, 131, 141, 144, 146, 154], "contrari": 90, "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 135], "control": [12, 25, 38, 40, 43, 57, 60, 66, 75, 79, 83, 86, 92, 98, 105, 107, 108, 111, 112, 123, 126, 130, 142, 146, 162], "convei": 11, "conveni": 118, "convent": 26, "convers": [1, 2, 8, 13, 16, 18, 43, 57, 86, 116, 147, 156, 157], "convert": [16, 18, 20, 22, 57, 68, 79, 86, 105, 129, 135, 141, 146, 148], "cookbook": 86, "cooki": [57, 62, 86, 110], "cookie_domain": 86, "cool": [148, 152, 153], "coolconfig": [147, 149], "coolwsd": [147, 148, 149, 151, 152, 153], "coordin": [2, 127], "copi": [2, 3, 5, 7, 22, 24, 29, 34, 38, 57, 60, 79, 83, 99, 114, 120, 122, 126, 137, 139, 140, 143, 146, 168], "copied_sample_config": 86, "copyright": 111, "copysizelimit": 45, "core": [3, 5, 6, 7, 9, 10, 11, 13, 24, 40, 56, 58, 86, 121, 122, 126, 127, 129, 130, 134, 139, 142, 146, 162, 166, 168], "coreinfo": 129, "corner": 1, "corpor": [69, 130], "correct": [5, 6, 9, 11, 19, 25, 55, 57, 60, 66, 79, 86, 96, 98, 116, 123, 125, 126, 127, 130, 133, 134, 135, 139, 141, 146, 166], "correctli": [19, 23, 37, 38, 42, 55, 61, 67, 79, 81, 96, 97, 102, 115, 120, 126, 130, 135, 146, 163, 168], "correspond": [23, 42, 45, 79, 81, 94, 120, 122, 126, 127, 132, 135, 139, 146, 157], "corrupt": [42, 56, 57, 140, 144, 145], "cost": 57, "could": [1, 3, 17, 19, 23, 37, 40, 45, 54, 56, 57, 60, 74, 78, 79, 96, 104, 116, 121, 123, 126, 131, 134, 135, 137, 143, 146, 154], "couldn": 102, "count": [2, 57, 83, 86, 108, 123, 135, 146], "countri": [2, 57, 79], "courier": 60, "cours": [57, 78, 104, 125, 135, 144, 148, 168], "court": 79, "cover": [19, 99, 104, 114, 125, 126, 134, 145, 159, 164, 165], "coverag": [5, 9, 11], "cp": [3, 4, 120, 121, 122], "cpanel": 36, "cpp": 5, "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 52, 57, 86, 98, 99, 100, 123, 129], "cpuinfo": [3, 129], "cr": 79, "cram": 60, "crammd5": 60, "crash": 96, "crc32": 165, "creat": [0, 1, 2, 4, 13, 14, 15, 17, 24, 25, 26, 28, 30, 31, 33, 37, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 57, 61, 64, 66, 68, 71, 74, 79, 82, 85, 86, 94, 98, 99, 100, 102, 104, 105, 108, 111, 112, 114, 116, 120, 121, 122, 123, 125, 130, 132, 135, 139, 140, 141, 142, 143, 144, 147, 162, 167], "create_example_ev": [111, 146], "createdb": 19, "createj": 146, "creation": [3, 5, 7, 26, 40, 57, 86, 93, 99, 108, 111, 112, 130], "credenti": [17, 26, 29, 35, 37, 45, 53, 57, 60, 79, 86, 96, 114, 123, 146, 147], "crew": 146, "criteria": [7, 22, 104, 167], "critic": [3, 5, 7, 8, 57, 86, 123, 131, 135, 139, 145, 166], "crl": 57, "crlf": 79, "cromwel": 127, "cron": [3, 6, 35, 37, 38, 41, 46, 49, 52, 57, 62, 86, 111, 114, 123, 124, 126, 127, 135, 139, 141, 145, 146, 167], "cronjob": [40, 54, 55, 121], "crontab": [49, 54, 111, 135, 139, 141], "crop": 79, "cross": 126, "crt": [56, 57, 99, 126, 146], "crucial": [57, 147], "crypto": 99, "cryptograph": 123, "cryptographi": 3, "csrf": [67, 86, 109], "css": [66, 86, 129, 146], "csync": 86, "ct2": 11, "ctl": 52, "ctr": [26, 57], "ctrl": [96, 127], "ctype": 127, "cuda": [3, 4, 5, 6, 7, 9, 11, 98, 100], "cudnn": 6, "cupsd": 60, "curl": [64, 67, 72, 73, 74, 80, 85, 120, 122, 127, 154, 162], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 19, 26, 29, 40, 41, 49, 54, 55, 56, 57, 59, 61, 63, 65, 69, 78, 79, 86, 96, 98, 99, 100, 104, 111, 114, 117, 118, 120, 121, 123, 129, 130, 131, 134, 139, 141, 145, 146, 154, 166], "currentvers": 144, "cursor": [79, 83], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 24, 45, 48, 57, 58, 61, 64, 66, 69, 77, 81, 83, 86, 96, 98, 99, 105, 112, 114, 119, 126, 127, 128, 129, 130, 134, 137, 146, 156, 163, 164, 168], "customclient_android": 57, "customclient_desktop": 86, "customclient_fdroid": 57, "customclient_io": 57, "customclient_ios_appid": 57, "customid": 13, "custompath": 24, "cut": 14, "cycl": 79, "czech": 4, "d": [19, 25, 26, 41, 46, 52, 57, 64, 73, 74, 75, 79, 80, 81, 89, 94, 99, 120, 121, 123, 126, 128, 129, 130, 137, 139, 143, 144, 148, 149], "d1": [41, 46, 57], "d2": [41, 46, 57], "d3c944a9a": 57, "d3c944a9af095aa08f": 57, "d5685c3b45aee373b09be54742ea": 134, "d7": 51, "daemon": [3, 4, 52, 56, 57, 64, 86, 101, 103, 153], "daemon_config_nam": 8, "daemonconfig": [99, 100], "dai": [1, 2, 3, 16, 40, 41, 46, 54, 57, 58, 70, 79, 83, 92, 96, 108, 109, 111, 114, 120, 146, 166, 167], "daili": [49, 55, 57], "daisi": 146, "dall": 157, "danger": 61, "dark": 57, "dash": [64, 83, 146], "dashboard": [57, 62, 86, 114], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 24, 26, 31, 37, 42, 43, 48, 49, 52, 54, 56, 60, 64, 65, 70, 72, 76, 78, 79, 80, 81, 82, 83, 86, 96, 97, 99, 101, 109, 113, 114, 118, 120, 121, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 144, 145, 146, 147, 155, 157, 162, 165, 166, 167, 168], "databas": [13, 16, 20, 21, 26, 29, 35, 42, 45, 49, 52, 54, 55, 62, 79, 81, 86, 96, 111, 112, 118, 122, 123, 124, 129, 130, 132, 135, 138, 139, 140, 141, 144, 145, 156, 157], "databaseid": 116, "datacent": [28, 45], "datadir": [25, 57, 128], "datadirectori": [26, 53, 64, 86, 132, 144], "dataintegr": [57, 165], "dataloss": 143, "dataset": 11, "date": [2, 13, 16, 38, 43, 54, 57, 63, 64, 67, 75, 79, 81, 86, 111, 114, 119, 120, 127, 129, 131, 135, 137, 143, 159, 166], "dateinterv": 111, "datepattern": 123, "datetim": 57, "dav": [32, 57, 66, 67, 79, 86, 96, 111, 112, 115, 116, 120, 121, 126, 130, 135], "davclnt": 126, "davstorag": [23, 38, 86], "davx\u2075": 116, "db": [3, 16, 17, 19, 22, 48, 52, 81, 86, 90, 96, 121, 125, 135, 137, 141, 143, 145, 146], "db8": 57, "db_": 126, "db_name": [137, 143], "dbal": 57, "dbdriveropt": [19, 22, 86], "dbhost": [19, 22, 53, 86, 132], "dbindex": [56, 57, 146], "dbname": [19, 21, 22, 53, 86], "dbpass": 53, "dbpassword": [19, 22, 53, 86, 125], "dbpersist": 86, "dbport": 22, "dbreplica": [21, 86], "dbtableprefix": [19, 53, 86], "dbtype": [17, 19, 53, 86, 132], "dbuser": [19, 22, 53, 86, 125], "dc": [79, 80, 81, 146], "dd": 79, "ddl": 164, "de": [57, 63, 66, 87], "de_d": [57, 63], "deactiv": [17, 41, 46, 111, 114, 163, 164, 165], "deal": [116, 130], "deb": [122, 149], "debian": [19, 52, 56, 69, 90, 118, 130, 131, 135, 146, 148], "debug": [12, 64, 67, 79, 86, 95, 116, 124, 134, 140, 144], "decemb": 120, "decid": [19, 25, 98, 108, 126, 145, 146, 166], "decim": 45, "decis": 132, "deck": [25, 86, 156, 157], "declar": [75, 79, 86, 126], "decreas": [57, 86, 96], "decrypt": [43, 45, 57, 86, 99, 109, 123, 129, 135, 146], "dedic": [2, 3, 6, 22, 23, 57, 79, 86, 111, 124, 129, 132, 144, 146, 151], "deem": 44, "deep": [25, 37, 62, 86], "deeper": 11, "deepl": [1, 14], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 15, 17, 19, 20, 21, 23, 25, 26, 27, 28, 30, 31, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 58, 60, 62, 64, 65, 66, 69, 75, 78, 79, 80, 81, 83, 84, 85, 86, 89, 90, 91, 92, 94, 96, 97, 98, 100, 101, 111, 112, 113, 115, 116, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 135, 137, 142, 143, 145, 146, 149, 151, 153, 156, 165, 166, 167, 168], "default_certificates_bundle_path": 86, "default_en": 72, "default_file_extens": 68, "default_host": 19, "default_languag": [63, 86], "default_local": [63, 86], "default_password": 19, "default_phone_region": [79, 86], "default_port": 19, "default_property_scop": [75, 79, 86], "default_scop": 75, "default_socket": 19, "default_timezon": [86, 115], "default_us": 19, "defaultapp": 86, "defaultmodul": 146, "defaultpag": 58, "defaulttemplatedirectori": 24, "defin": [15, 25, 26, 29, 33, 42, 45, 46, 47, 54, 57, 62, 63, 64, 75, 79, 83, 86, 96, 97, 99, 104, 105, 106, 111, 123, 126, 134, 146, 147, 162, 166], "definit": [17, 43, 86, 123, 166], "defunct": 79, "degrad": 57, "degre": 132, "delai": [0, 14, 38, 54, 55, 57, 86, 111], "deleg": [62, 86, 113, 167], "delegate_permiss": 51, "delet": [1, 2, 3, 4, 24, 37, 40, 41, 43, 47, 49, 52, 54, 62, 70, 71, 72, 79, 85, 86, 91, 96, 101, 104, 108, 111, 112, 115, 116, 132, 134, 135, 139, 143, 144], "delete_timestamp": 26, "deliber": 166, "delimit": [28, 79, 146], "deliv": [69, 126, 166], "deliveri": 57, "demand": [8, 14, 52, 54, 79, 123], "demo": 57, "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 17, "demot": [79, 86], "deni": [3, 57, 86, 107, 126, 128, 146], "denial": [55, 123, 128], "denni": 146, "deno": 168, "denot": 26, "depart": 80, "depend": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 29, 40, 54, 55, 56, 57, 61, 66, 67, 69, 79, 98, 114, 120, 121, 123, 125, 130, 131, 132, 135, 139, 140, 142, 145, 146, 148, 157, 163, 164, 165], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 19, 86, 103, 120, 121, 126, 129, 135, 151, 166, 168], "deploy": [3, 57, 62, 86, 93, 98, 100, 102, 103, 120, 124, 127, 130, 131, 132, 135, 145, 150, 151, 166], "deployconfig": [86, 99], "deploydaemon": 99, "deprec": [57, 74, 131, 146, 161, 163, 164, 165], "deprovis": 132, "deriv": [79, 86, 123, 130], "describ": [23, 26, 38, 40, 49, 53, 54, 57, 60, 67, 78, 79, 92, 98, 99, 100, 104, 105, 108, 117, 135, 141, 148], "descript": [2, 14, 15, 25, 54, 72, 79, 80, 97, 111, 114, 120, 127, 129, 130, 146, 156, 167], "design": [2, 25, 42, 60, 69, 79, 84, 130, 142, 145, 154], "desir": [8, 22, 23, 35, 56, 57, 60, 64, 81, 105, 125, 126, 130, 140, 146], "desktop": [25, 29, 47, 61, 69, 79, 86, 89, 90, 94, 95, 96, 104, 117, 124], "despit": [40, 126], "destin": [2, 29, 34, 36, 122, 146], "destinationuid": 146, "detail": [2, 4, 7, 19, 25, 37, 40, 43, 57, 60, 64, 65, 69, 75, 79, 82, 86, 89, 94, 96, 98, 102, 116, 120, 122, 123, 125, 126, 127, 129, 130, 135, 139, 140, 146, 151, 152, 154, 163, 164, 165, 166, 168], "detect": [13, 14, 35, 37, 52, 55, 56, 57, 63, 66, 67, 68, 79, 80, 81, 86, 91, 99, 126, 135, 146], "detect_ord": 68, "determin": [2, 40, 57, 78, 79, 86, 96, 99, 109, 116, 130, 146], "dev": [57, 62, 64, 86, 90, 121, 131, 146, 168], "develop": [14, 15, 50, 57, 78, 93, 96, 97, 98, 116, 117, 123, 130, 131, 133, 134, 135, 142, 145, 146, 150, 166], "developer_manu": [57, 167, 168], "deviat": 123, "devic": [25, 37, 55, 57, 61, 66, 69, 78, 93, 96, 98, 99, 100, 102, 123, 129, 130, 142], "diagnos": [64, 79, 129, 162], "diagnost": [3, 86], "diagram": 99, "dialect": [7, 57], "dialog": [38, 40, 79, 91, 95, 146], "dialogu": [79, 143], "dictat": 99, "did": [17, 25, 27, 86, 102, 135, 146], "diff": 133, "differ": [2, 5, 7, 14, 19, 22, 25, 26, 28, 29, 37, 43, 51, 52, 53, 54, 55, 56, 57, 61, 63, 66, 78, 79, 83, 86, 90, 96, 98, 99, 101, 102, 111, 112, 123, 125, 126, 130, 132, 134, 135, 138, 143, 146, 147, 162, 167, 168], "differenti": [14, 111, 112], "difficult": [57, 125, 134], "difficulti": [2, 143], "diffus": [14, 157], "digit": 131, "dimens": 57, "diminish": 57, "dir": [20, 25, 89, 96, 130, 135, 144, 146], "dirbkp": 143, "dirbkp_": 137, "direct": [23, 37, 56, 57, 77, 79, 104, 126, 130, 135, 164, 166], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 22, 23, 25, 29, 45, 51, 54, 57, 60, 79, 96, 99, 104, 109, 130, 132, 135, 144, 145, 146, 156], "directori": [3, 5, 7, 8, 23, 24, 25, 26, 30, 31, 34, 36, 37, 38, 40, 42, 45, 49, 51, 52, 54, 57, 62, 64, 77, 81, 86, 90, 93, 95, 96, 104, 105, 116, 118, 120, 121, 122, 124, 126, 130, 132, 133, 136, 137, 139, 140, 141, 143, 144], "directory2": 79, "directory_that_has_been_cr": 90, "dirnam": 95, "dirti": 57, "disabl": [1, 2, 3, 15, 20, 22, 23, 26, 27, 28, 29, 37, 38, 41, 43, 46, 47, 55, 60, 62, 64, 69, 71, 75, 79, 85, 86, 91, 96, 99, 100, 103, 104, 106, 111, 112, 115, 116, 126, 127, 128, 129, 130, 131, 139, 141, 144, 145, 149, 163, 164, 165, 168], "disable_act": 57, "disable_email": 57, "disable_funct": 127, "disablefreebusi": 111, "disadvantag": [26, 54], "disallow": [3, 57, 86, 124], "disappear": [40, 42, 55, 56, 120], "disapprov": 168, "discard": 114, "disclaim": 40, "disconnect": [38, 57, 81, 146], "discontinu": 60, "discourag": [44, 55, 57, 67, 146], "discover": [7, 10], "discoveri": [56, 57, 62, 67, 86, 91, 130, 136, 148, 153, 154], "discrep": 146, "discret": [55, 166], "discuss": [19, 40, 96, 165, 166], "disk": [3, 25, 36, 41, 57, 83, 86, 96, 129, 135, 146, 164], "dispar": 7, "dispatch": 86, "displai": [25, 40, 43, 44, 48, 57, 60, 61, 63, 73, 74, 77, 79, 80, 81, 83, 86, 95, 97, 98, 99, 100, 101, 111, 114, 116, 126, 134, 146], "display_nam": 146, "displaynam": [73, 74, 79, 80, 111, 146, 167], "disregard": 135, "disrupt": 145, "dist": [48, 104], "distinct": 45, "distinguish": [43, 57, 86], "distribut": [23, 24, 35, 42, 45, 48, 52, 55, 56, 67, 79, 86, 91, 93, 96, 98, 99, 120, 123, 126, 127, 128, 130, 131, 134, 135, 145, 146, 150, 151], "distro": [35, 57, 128, 130, 135, 142], "dive": 25, "divid": 57, "dmz": [86, 124], "dn": [56, 79, 80, 81, 99, 140, 154, 162], "dnextcloud": 19, "dnf": 120, "do": [0, 2, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 19, 22, 23, 25, 29, 40, 44, 48, 52, 53, 55, 56, 57, 60, 61, 67, 69, 78, 79, 80, 83, 86, 90, 98, 99, 101, 104, 105, 115, 116, 120, 121, 123, 125, 126, 128, 129, 130, 131, 135, 138, 139, 141, 143, 145, 146, 147, 148, 155, 162, 163, 164, 165, 166, 167, 168], "doc": [1, 14, 57, 96, 102, 117, 121, 131, 147, 148, 149, 150, 151, 152, 153, 165, 167, 168], "docker": [3, 4, 5, 7, 8, 11, 14, 52, 57, 66, 79, 86, 100, 102, 103, 127, 129, 130, 145, 146, 150, 151, 154, 162, 167], "docker_aio": 99, "docker_instal": [98, 100], "docker_local_sock": [100, 101], "docker_socket_port": 100, "dockerfil": 8, "dockersocketproxi": [99, 168], "doctrin": 57, "document": [1, 2, 3, 19, 20, 23, 26, 28, 29, 32, 37, 40, 42, 44, 48, 52, 56, 57, 59, 61, 64, 67, 86, 90, 94, 96, 105, 115, 116, 120, 122, 123, 126, 127, 129, 130, 131, 134, 135, 141, 142, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 164, 165, 168], "document_root": 126, "documentation_url": 86, "documentroot": [120, 130], "docx": 150, "doe": [1, 2, 3, 5, 6, 7, 9, 10, 11, 14, 17, 19, 25, 26, 28, 29, 30, 33, 35, 40, 42, 45, 51, 52, 53, 54, 55, 56, 57, 60, 62, 63, 65, 66, 73, 74, 79, 83, 86, 90, 91, 98, 99, 100, 101, 104, 112, 114, 115, 116, 121, 123, 126, 128, 129, 130, 134, 135, 138, 139, 141, 143, 145, 146, 155, 162, 165, 166, 168], "doesn": [19, 25, 74, 79, 116, 120, 126, 144, 146, 154], "doesnotexist": 146, "dollar": 79, "dom": [52, 60, 127], "domain": [2, 28, 35, 38, 45, 51, 54, 57, 62, 67, 86, 98, 121, 124, 126, 130, 146, 148, 154], "don": [6, 13, 23, 25, 28, 41, 42, 49, 52, 54, 56, 57, 59, 60, 79, 98, 111, 116, 126, 128, 130, 134, 137, 139, 146], "done": [1, 3, 4, 14, 54, 57, 59, 60, 65, 72, 73, 74, 79, 80, 99, 101, 120, 121, 130, 140, 141, 144, 147, 148, 162, 167], "dora": 146, "dot": [8, 35, 37, 47, 98, 99, 126, 135, 163, 168], "doubl": [57, 135], "dow": 52, "down": [3, 56, 86, 96, 111, 112, 114, 116, 129], "downgrad": [86, 144, 145], "download": [4, 5, 6, 15, 23, 25, 38, 52, 57, 83, 86, 87, 92, 96, 99, 103, 104, 118, 120, 122, 123, 130, 133, 135, 139, 140, 141, 144, 145, 146, 147, 148, 149], "downsid": [45, 162], "downstream": [5, 14], "downtim": 79, "dozen": 150, "draft": [2, 3, 5, 7, 116, 135], "draw": [2, 55], "drawback": [29, 130], "drawn": 57, "drive": [23, 57, 129], "driven": 130, "driver": [6, 19, 57, 102], "droid": 57, "drop": [19, 43, 55, 60, 86, 121, 123, 125, 135, 143, 146], "dropbox": 96, "dropdown": [37, 40, 83], "dry": [145, 146], "dsheurist": 79, "dsnap": 121, "dsp": [98, 99, 100], "dst_path": 101, "duckduckgo": [2, 156], "due": [2, 23, 35, 44, 46, 49, 51, 57, 61, 68, 79, 96, 102, 104, 123, 126, 129, 135, 139, 146, 152], "dummi": 144, "dump": [86, 137, 140], "duplic": [3, 11, 86, 135, 146], "durat": [57, 91, 96], "dure": [3, 4, 15, 23, 25, 26, 29, 42, 52, 54, 57, 66, 79, 82, 86, 94, 99, 102, 120, 126, 130, 138, 144, 146, 164, 165, 168], "dutch": 4, "dynam": [20, 57, 80, 91, 96, 164], "e": [1, 5, 8, 14, 16, 17, 19, 20, 23, 25, 28, 29, 31, 37, 45, 48, 49, 50, 51, 52, 54, 55, 57, 60, 61, 65, 69, 70, 75, 76, 78, 79, 80, 81, 89, 90, 94, 95, 96, 98, 99, 100, 101, 102, 104, 111, 112, 114, 116, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 143, 144, 145, 146, 147, 148, 149, 152, 157, 166, 167, 168], "e2e": 25, "eacceler": 135, "each": [1, 2, 3, 6, 9, 13, 14, 25, 26, 29, 37, 40, 51, 52, 53, 54, 55, 57, 61, 75, 79, 83, 91, 95, 96, 98, 99, 102, 104, 114, 127, 129, 130, 135, 145, 146, 162, 166, 168], "earli": 79, "earlier": [54, 57, 79, 120, 135, 166, 167], "eas": [57, 166], "easi": [52, 56, 57, 60, 81, 83, 130, 141, 142, 151], "easier": [51, 57, 96, 116, 129, 130, 141], "easiest": [19, 55, 57, 60, 104, 123, 130, 135, 143, 145], "easili": [14, 38, 57, 60, 61, 130, 141, 142, 153, 167], "east": [45, 57], "easycron": 54, "echo": [14, 146, 149, 167], "ecosystem": [50, 55, 98], "ed": 51, "edg": [14, 40, 90, 114, 131], "edit": [11, 19, 29, 30, 38, 40, 42, 52, 62, 79, 80, 83, 85, 86, 117, 118, 129, 130, 134, 135, 137, 145, 146, 149, 150, 151, 166, 168], "editor": [57, 83, 111, 150], "edri": [57, 123], "edu": 57, "edward": 146, "eff": [57, 123], "effect": [14, 38, 55, 56, 57, 79, 96, 128, 129, 144, 162, 167, 168], "effici": [8, 57, 131], "effort": 166, "efss": 132, "eg": [129, 146], "egress": 121, "ehlo": 60, "eicar": 52, "eicar_hdb": 52, "either": [3, 5, 8, 13, 23, 35, 39, 47, 50, 56, 57, 60, 75, 79, 83, 90, 96, 98, 99, 104, 120, 122, 126, 130, 132, 134, 139, 144, 145, 146, 166, 168], "ej39ityzeuh5bgwdrufi": 45, "elect": 79, "element": [72, 73, 74, 129, 146], "elimin": [53, 79], "els": [13, 79, 99, 130, 134], "elseif": 99, "elsewher": [55, 57], "email": [2, 38, 40, 57, 58, 62, 75, 76, 79, 80, 83, 86, 111, 114, 117, 146, 157], "email_address_changed_by_admin": 57, "email_configur": 57, "emailtempl": [57, 60], "emb": [57, 61, 147], "embed": [3, 62, 86, 123, 164, 165], "embrac": [130, 142], "emf": [57, 162], "emit": 146, "emoji": [20, 131, 137, 143], "emot": 11, "emploi": [3, 8, 79, 84, 166], "empti": [19, 24, 26, 55, 57, 62, 64, 66, 74, 75, 79, 80, 83, 86, 99, 130, 135, 139, 140, 167, 168], "en": [2, 7, 8, 57, 63, 120, 131, 146], "en_u": [57, 63], "enabl": [1, 2, 3, 6, 8, 14, 16, 17, 18, 19, 22, 26, 28, 36, 38, 39, 40, 43, 44, 46, 50, 54, 55, 56, 61, 62, 64, 65, 67, 68, 69, 70, 71, 75, 79, 81, 85, 86, 91, 93, 96, 97, 98, 99, 103, 104, 111, 112, 114, 115, 116, 120, 121, 124, 126, 127, 131, 134, 135, 137, 139, 141, 144, 145, 148, 149, 151, 152, 154, 157, 160, 162, 163, 164, 167, 168], "enable_encrypt": 25, "enable_lazy_object": 86, "enable_mail_link_password_expir": 86, "enable_non": 86, "enable_preview": [44, 86, 123], "enable_share_accept": 86, "enable_share_mail": 86, "enablecalendarfeder": 111, "enabledefaultcontact": 112, "enabledpreviewprovid": [44, 86, 123, 129, 162, 163], "encapsul": 126, "encf": 128, "encod": [19, 26, 28, 45, 62, 80, 81, 86, 126, 136, 146], "encount": [2, 3, 38, 47, 57, 116, 126, 134, 135, 139], "encourag": [84, 123, 130, 166], "encrypt": [28, 29, 37, 38, 42, 43, 79, 83, 86, 123, 124, 126, 136, 154, 160], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 25, 26, 48, 53, 57, 79, 86, 111, 120, 126, 140, 141, 145, 146, 162], "end_header_id": 5, "endedat": 13, "endedbefor": 13, "endpoint": [2, 28, 32, 33, 45, 57, 65, 67, 74, 85, 99, 112, 135, 144, 146, 148, 162, 168], "energi": [5, 6, 7, 8, 11, 86, 88], "enforc": [9, 19, 38, 40, 47, 57, 60, 61, 69, 71, 79, 84, 86, 98, 111, 120, 123, 126, 134, 146, 147, 160, 167], "enforce_home_folder_naming_rul": 79, "enforce_them": 86, "engin": [19, 52, 99, 102, 104, 129, 131, 137, 143, 166, 168], "english": [2, 4, 5, 7, 8, 9, 10, 11, 57, 63], "enhanc": [8, 15, 42, 55, 57, 67, 79, 84, 129], "enlarg": 61, "enough": [0, 1, 4, 11, 23, 56, 57, 79, 96, 102, 111, 123, 129, 135, 146, 148, 152, 164], "ensembl": 3, "ensur": [8, 15, 19, 23, 25, 35, 41, 51, 54, 56, 57, 67, 79, 86, 96, 98, 111, 114, 121, 124, 126, 127, 129, 130, 131, 134, 135, 139, 140, 146, 147, 154], "enter": [19, 23, 25, 28, 29, 30, 31, 33, 34, 35, 38, 40, 42, 57, 60, 65, 76, 77, 79, 83, 89, 96, 114, 121, 122, 123, 125, 130, 142, 144, 146], "enterpris": [52, 64, 117, 118, 119, 120, 123, 130, 131, 135, 146, 150, 166], "entir": [3, 5, 6, 7, 9, 10, 11, 40, 92, 115, 118, 135, 137, 146, 150, 166], "entri": [1, 19, 38, 49, 55, 56, 57, 66, 79, 81, 86, 111, 112, 121, 129, 130, 132, 134, 135, 139, 140, 141, 144, 146, 157, 162], "entrypoint": [55, 153], "entryuuid": 146, "enumer": [112, 161], "env": [4, 95, 99, 100, 101, 123, 130, 146], "env_nam": 101, "env_valu": 101, "envelop": 86, "environ": [3, 4, 8, 19, 23, 40, 55, 62, 67, 79, 86, 90, 93, 96, 99, 101, 103, 116, 123, 126, 127, 129, 131, 135, 137, 139, 140, 142, 143, 144, 145, 151, 166], "eof": 60, "eot_id": 5, "epel": [52, 120], "epoch": 131, "equal": [8, 26, 44, 57, 99], "equival": [46, 57, 79, 95], "eras": 96, "err": 4, "error": [3, 4, 7, 13, 23, 37, 52, 56, 57, 64, 66, 78, 79, 86, 92, 101, 102, 116, 118, 120, 123, 125, 127, 128, 130, 136, 139, 140, 144, 146, 154, 165], "error_log": [57, 64, 96, 135], "error_messag": 13, "errorlog": [57, 86, 146], "escal": 50, "escap": [60, 167], "esmtp": 60, "especi": [37, 54, 55, 79, 99, 105, 130, 135, 139, 141, 145, 146, 162, 167], "esperanto": 4, "essenti": [8, 57, 65, 79, 135, 168], "establish": [38, 40, 51, 60, 86, 96, 127, 131, 146], "estim": [4, 146], "esx": 130, "etag": [126, 146, 167], "etc": [3, 8, 14, 19, 22, 40, 45, 52, 54, 56, 57, 64, 66, 79, 83, 120, 121, 123, 126, 127, 128, 130, 135, 141, 146, 148, 149, 152, 154, 156, 160, 162, 167], "ethic": [5, 12, 86], "eu": [28, 45], "euc": 68, "europ": [57, 115, 146], "eval": 146, "evalu": 166, "even": [1, 3, 15, 17, 19, 23, 28, 29, 35, 45, 49, 55, 56, 57, 66, 86, 91, 99, 101, 104, 111, 123, 128, 129, 130, 135, 139, 143, 145, 166], "event": [2, 20, 49, 57, 64, 79, 86, 96, 113, 114, 123, 125, 129, 168], "everi": [3, 5, 14, 19, 29, 35, 37, 41, 45, 46, 50, 51, 52, 54, 56, 57, 60, 65, 78, 79, 83, 96, 111, 112, 120, 129, 131, 141, 144, 145, 156, 157, 166, 167], "everybodi": 135, "everyon": [78, 146, 166], "everyth": [56, 57, 60, 62, 79, 86, 130, 135, 166], "everywher": [79, 157], "evict": 57, "ex": [2, 89, 94, 96, 141, 146, 168], "ex_app_port": 99, "exact": [54, 57, 67, 79, 144, 168], "exactli": [45, 120, 145], "examin": 81, "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 13, 15, 17, 19, 23, 25, 29, 30, 31, 32, 37, 38, 40, 42, 44, 45, 47, 48, 49, 51, 52, 54, 56, 60, 61, 62, 65, 69, 75, 77, 79, 81, 83, 85, 86, 89, 94, 96, 97, 98, 99, 101, 107, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 139, 144, 145, 150, 151, 153, 154, 160, 166, 167, 168], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 14, 86, 97, 100, 102, 163, 164, 165, 168], "exapp_direct": 100, "exapp_resourc": 168, "exapphost": 99, "exce": [4, 41, 46, 57, 83, 165], "exceed": [23, 46, 57], "excel": 56, "except": [56, 57, 64, 74, 78, 79, 126, 134, 139, 140, 144, 146], "excerpt": 96, "excess": 129, "exchang": [0, 5, 7, 38, 60, 160], "excim": 57, "exclud": [40, 57, 62, 78, 86, 96, 105], "exclus": [33, 45, 57, 67, 96, 99, 135, 146], "exec": [4, 14, 139, 167], "execcondit": 54, "execstart": [14, 54, 167], "execut": [1, 3, 4, 6, 8, 14, 16, 22, 35, 38, 52, 54, 57, 67, 79, 86, 94, 99, 107, 114, 123, 126, 128, 134, 139, 144, 145, 146, 167, 168], "exempt": [55, 57], "exhaust": 167, "exhibit": [7, 8, 126], "exif": 127, "exim": 60, "exim4": 60, "exist": [6, 15, 17, 19, 20, 24, 25, 28, 30, 33, 45, 48, 50, 57, 58, 60, 64, 66, 73, 74, 75, 79, 81, 83, 96, 98, 111, 114, 116, 122, 125, 126, 127, 130, 134, 135, 139, 140, 143, 144, 145, 146, 152, 159, 162, 166, 168], "exit": [90, 94, 121, 146], "expand": 86, "expect": [6, 13, 57, 60, 79, 83, 114, 134, 144, 146, 147, 162, 163, 164, 165, 166], "expedit": 8, "expens": 111, "experi": [4, 15, 54, 62, 86, 112, 114, 123, 129, 131, 135, 154], "experienc": 96, "experiment": [57, 79, 83, 91], "expert": [25, 71, 86, 114], "expertis": [135, 166], "expir": [2, 29, 38, 41, 43, 46, 54, 55, 57, 62, 79, 84, 86, 96, 111, 114, 126, 146, 167], "expiri": 79, "explain": [52, 62, 75, 86, 120, 127], "explan": [135, 146], "explicitli": [5, 13, 26, 46, 56, 57, 64, 66, 85, 90, 126, 135, 146, 160], "explod": [57, 99], "exponenti": 123, "export": [86, 96, 114, 123, 168], "expos": [2, 25, 37, 38, 52, 57, 86, 98, 99, 100, 123, 125, 127, 135, 146], "exposur": [123, 135], "express": [57, 66, 104, 167], "extapp": 147, "extend": [2, 8, 40, 57, 60, 66, 131, 155, 166], "extendedsupport": 146, "extens": [3, 19, 48, 57, 60, 62, 64, 67, 86, 88, 89, 94, 116, 120, 123, 126, 127, 129, 130, 135, 140, 142, 161, 162, 163, 166], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 14, 28, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 54, 57, 62, 65, 79, 82, 83, 85, 86, 103, 105, 111, 123, 127, 128, 129, 132, 136, 139, 162, 168], "external_db": 3, "external_storag": 86, "externalapp": 3, "extra": [15, 52, 57, 69, 79, 102, 120, 121, 134, 139], "extra_fil": 134, "extract": [1, 3, 26, 57, 99, 120, 122, 144], "extrem": [55, 67], "extstoragemount": 58, "f": [2, 4, 8, 14, 49, 54, 57, 64, 102, 111, 137, 139, 143, 145, 146, 167], "f12": [96, 135], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 134, "f6": 51, "fa829794448eaffbc9a04a29d216": 134, "face": [7, 9, 13, 14, 86, 126], "facebook": 57, "facebook100000123456789": 57, "facilit": [78, 129, 166], "fact": [123, 129], "facto": 66, "factor": [4, 8, 14, 23, 55, 70, 71, 86, 116, 123], "factori": 57, "fail": [3, 13, 15, 23, 38, 56, 57, 64, 66, 73, 74, 76, 79, 86, 96, 102, 111, 118, 123, 127, 134, 135, 142, 144, 146, 162], "fail2ban": [86, 124], "failov": [57, 79], "failover_distribut": 57, "failover_error": [56, 57], "failover_mod": [56, 57], "failover_non": 57, "failregex": 123, "failur": [57, 73, 74, 86, 94, 102, 135], "fair": [86, 136], "fairli": 96, "fall": [22, 23, 57, 92], "fallback": [48, 126, 156], "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 27, 38, 44, 45, 55, 56, 57, 60, 75, 79, 83, 91, 99, 100, 111, 114, 116, 123, 129, 135, 137, 145, 146, 149, 162], "familiar": [57, 130], "faq": [67, 86, 103, 130, 135, 136, 142], "far": [2, 14, 83, 114, 166], "farsi": 4, "fast": [5, 60, 114, 146], "fastcgi": [121, 130], "fastcgi_buff": 126, "fastcgi_connect_timeout": 126, "fastcgi_hide_head": 126, "fastcgi_intercept_error": 126, "fastcgi_max_temp_file_s": 126, "fastcgi_param": [123, 126], "fastcgi_pass": 126, "fastcgi_path_info": 126, "fastcgi_read_timeout": [23, 126], "fastcgi_request_buff": 126, "fastcgi_script_nam": 126, "fastcgi_send_timeout": 126, "fastcgi_split_path_info": 126, "faster": [0, 3, 7, 11, 14, 56, 86, 124, 130, 166], "fatal": [57, 64, 92, 118, 146], "fault": 23, "faulti": 60, "favicon": 69, "favor": 57, "favorit": 166, "fb": 51, "fcgidmaxrequestinmem": 23, "fcgidmaxrequestlen": 23, "fcontext": [120, 128], "fd00": 123, "fd9e": 57, "fe80": 125, "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 26, 35, 40, 47, 49, 53, 54, 55, 57, 59, 60, 67, 69, 79, 81, 86, 91, 111, 112, 113, 114, 116, 117, 120, 123, 129, 130, 131, 135, 146, 148, 150, 151, 155, 159, 165, 166, 167], "februari": 23, "feder": [40, 43, 62, 67, 75, 86, 112, 113, 123], "fedivers": 79, "fedora": [56, 90, 130, 146], "fedoraproject": 90, "feedback": [5, 7, 9, 10, 14, 144, 166], "feel": [69, 99], "felt": 146, "fetch": [2, 15, 57, 79, 80, 121, 143, 145, 146, 147], "few": [29, 38, 55, 57, 79, 100, 114, 130, 139, 144, 145], "fewer": 129, "ff5733": 146, "ffmpeg": [57, 127], "ffprobe": 57, "ffri": 66, "fidel": 150, "field": [1, 13, 15, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 52, 62, 73, 79, 80, 83, 86, 98, 99, 123, 130, 135, 166, 168], "figur": [145, 146], "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 20, 29, 30, 31, 34, 38, 44, 45, 46, 47, 48, 49, 51, 53, 54, 56, 58, 60, 62, 65, 66, 69, 72, 77, 79, 83, 89, 90, 92, 93, 94, 95, 99, 101, 102, 107, 111, 112, 115, 116, 117, 120, 121, 122, 123, 124, 125, 127, 130, 132, 133, 134, 136, 139, 140, 142, 143, 144, 145, 149, 150, 152, 156, 157, 161, 164, 165, 167], "filecach": [16, 22, 48, 57, 141, 146], "fileformat": 167, "fileid": [57, 147, 167], "fileinfo": 127, "filekei": [26, 146], "filelist": 35, "filelock": 86, "filenam": [25, 26, 43, 45, 57, 86, 95, 96, 143, 163], "filepart": 57, "filepath": [31, 128, 130, 146], "files_accesscontrol": 3, "files_antiviru": [52, 96, 146], "files_encrypt": [25, 26], "files_extern": [3, 35, 57, 146], "files_external_allow_create_new_loc": 86, "files_no_background_scan": 86, "files_pdfview": 144, "files_shar": [38, 83, 146], "files_texteditor": 72, "files_trashbin": [26, 46, 146], "files_vers": [26, 41, 146], "filescan": 54, "filesmatch": 130, "filesync": 72, "filesystem": [23, 25, 37, 42, 45, 57, 72, 79, 128, 146, 167], "filesystem_cache_readonli": 86, "filesystem_check_chang": 86, "filetyp": [44, 57, 123], "fill": [2, 3, 5, 32, 37, 38, 52, 60, 79, 83, 98, 111, 114, 168], "filter": [12, 15, 55, 57, 72, 79, 80, 83, 86, 127, 129, 146, 154, 165, 168], "final": [3, 5, 7, 23, 35, 60, 86, 99, 114, 120, 122, 123, 124, 130, 144, 146, 166], "financi": 135, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 23, 25, 30, 35, 37, 45, 52, 55, 57, 64, 67, 78, 79, 83, 86, 93, 96, 114, 119, 127, 129, 130, 133, 135, 139, 145, 146, 164, 166, 168], "finder": [57, 135], "findtim": 123, "fine": [5, 11, 57, 105, 123, 128, 130, 168], "fingerprint": [86, 140, 143, 146], "finish": [3, 4, 8, 13, 52, 53, 54, 99, 101, 102, 125, 135, 137, 139, 144, 145, 146], "fire": 167, "firefox": 131, "firewal": [15, 99, 102, 120, 123, 154, 162], "first": [17, 19, 22, 24, 25, 29, 41, 45, 52, 53, 55, 57, 59, 79, 80, 81, 82, 83, 96, 99, 101, 102, 104, 111, 112, 116, 120, 122, 123, 126, 129, 130, 132, 133, 134, 135, 139, 140, 141, 142, 145, 146, 163, 166, 168], "first_seen": 146, "fit": [1, 6, 56, 98, 130, 142, 160], "five": 137, "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 25, 54, 55, 67, 86, 99, 127, 131, 133, 135, 136, 146, 166], "fix_pathinfo": 126, "flac": [126, 161, 162], "flag": [49, 57, 81, 82, 100, 129, 146], "flash": 52, "flat": 57, "flexibl": [49, 117, 130, 132, 166], "flite": 57, "float": [57, 146], "flow": [57, 64, 65, 82, 86, 91, 94, 104, 108, 168], "flow_input": 168, "flush": [95, 122], "focu": [0, 1], "focus": [25, 145, 166], "folder": [2, 7, 8, 15, 17, 23, 24, 28, 30, 31, 35, 36, 37, 38, 40, 43, 45, 46, 49, 57, 64, 66, 69, 79, 80, 81, 86, 89, 90, 91, 92, 94, 96, 97, 99, 105, 107, 120, 121, 126, 128, 130, 134, 135, 138, 139, 144, 146, 150, 167], "folder_nam": 146, "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 19, 20, 22, 23, 25, 35, 36, 37, 38, 40, 44, 45, 49, 52, 53, 54, 55, 56, 57, 58, 60, 61, 64, 65, 66, 67, 68, 69, 75, 78, 79, 81, 83, 86, 89, 90, 91, 94, 95, 96, 98, 99, 100, 104, 106, 111, 112, 113, 115, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 146, 148, 153, 154, 156, 162, 166, 167, 168], "followsymlink": [120, 130], "font": [57, 86, 126], "fontobject": 126, "foo": [57, 79, 146], "foobar": 74, "food": 6, "foolproof": [57, 129], "forbid": [47, 84, 111, 146], "forbidden": 57, "forbidden_char": 163, "forbidden_filenam": [86, 163], "forbidden_filename_basenam": [47, 86, 163], "forbidden_filename_charact": [47, 86, 163], "forbidden_filename_extens": [47, 86, 163], "forc": [8, 40, 62, 79, 86, 89, 91, 101, 112, 116, 123, 146], "force_languag": [63, 86], "force_local": [63, 86], "force_share_accept": 86, "forceeventalarmtyp": 111, "forceloginv2": 91, "forcesyncinterv": 91, "foreign": 60, "forest": 2, "forev": [46, 57, 109], "forgeri": 123, "forget": [25, 26, 57, 60, 129, 130, 137, 142], "forgot": 78, "form": [52, 57, 79, 85, 86, 98, 102, 120, 135, 167, 168], "formal": [57, 63], "format": [2, 5, 29, 43, 44, 62, 63, 64, 68, 79, 80, 81, 86, 89, 91, 94, 116, 129, 131, 146, 147, 150, 164], "formid": 167, "formsubmittedev": 167, "forum": [67, 135, 144, 145, 166], "forward": [14, 57, 66, 67, 99, 125, 130, 135, 139, 146, 153], "forwarded_for_head": [55, 66, 86], "found": [0, 1, 3, 6, 44, 48, 52, 55, 56, 57, 64, 67, 78, 79, 86, 96, 98, 99, 102, 120, 123, 126, 130, 133, 134, 135, 142, 145, 146, 147, 148, 149, 151, 152, 153, 154, 162, 165, 166], "foundat": 0, "four": [14, 52, 79, 143, 166], "fourth": 166, "fpm": [23, 57, 67, 86, 121, 123, 124, 126, 127, 131], "fr": [57, 63], "frame": [61, 111, 123, 126], "franc": 57, "frank": [73, 74], "franksnewemail": 74, "frankspassword": 74, "fred": 146, "freda": [38, 146], "free": [2, 14, 17, 41, 78, 92, 99, 116, 117, 123, 130, 135, 146, 150], "free_prompt_picker_en": 1, "freebsd": 127, "freebusi": [86, 113], "freedom": 156, "freeli": [6, 11, 14, 60, 61], "french": [4, 5, 10, 11, 57, 63], "frequenc": [37, 38, 129], "frequent": [12, 52, 56, 57, 86, 135, 150, 166], "fresh": [3, 79, 126, 139, 145, 146], "freshclam": 52, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 14, 15, 19, 23, 25, 26, 27, 29, 34, 36, 37, 38, 40, 42, 43, 47, 50, 51, 52, 54, 56, 57, 61, 62, 64, 66, 67, 69, 73, 78, 79, 80, 81, 83, 84, 86, 90, 94, 96, 97, 98, 99, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 134, 135, 138, 139, 140, 143, 144, 145, 146, 147, 148, 150, 154, 156, 157, 162, 163, 164, 165, 166, 168], "front": [2, 3, 5, 7, 8, 9, 10, 11, 12, 86, 116, 126, 151], "front_controller_act": [126, 130], "frontend": [23, 57, 66, 86, 98, 155, 156], "frontend1": 66, "frp": [98, 99, 100], "frp_address": 100, "frpc": [99, 100], "fry": 146, "ftp": [37, 86, 121, 127, 134], "fulfil": [2, 125, 135], "full": [25, 31, 40, 44, 48, 49, 50, 56, 57, 60, 64, 65, 75, 83, 91, 104, 112, 117, 123, 130, 131, 142, 146, 148, 149, 153, 166], "fulli": [0, 1, 12, 25, 38, 57, 60, 86, 130, 145, 146, 152, 166], "fulllocaldiscoveryinterv": 91, "fullscreen": 148, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 26, 36, 42, 50, 57, 60, 61, 64, 75, 85, 86, 98, 99, 105, 114, 123, 127, 128, 130, 131, 132, 135, 139, 140, 145, 147, 152, 154, 166, 168], "fundament": [57, 67, 79], "further": [19, 40, 43, 56, 57, 60, 64, 67, 74, 79, 86, 96, 120, 124, 130, 139, 141, 142, 146, 151, 166], "furthermor": [26, 49, 56, 57], "fuse": 128, "fusef": [86, 124], "fuserpwdsupport": 79, "futur": [22, 40, 55, 67, 111, 123, 163, 164, 165], "g": [5, 14, 19, 23, 25, 28, 29, 45, 49, 51, 54, 55, 56, 60, 61, 69, 75, 79, 80, 81, 86, 89, 90, 94, 98, 99, 100, 101, 102, 104, 111, 112, 114, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 135, 139, 140, 143, 144, 145, 146, 147, 148, 152, 166, 167], "gain": [3, 13, 123], "galleri": [44, 57, 144, 146], "garbag": [54, 57], "garbl": 5, "garm": [15, 123], "gatewai": [45, 86, 90, 130], "gather": [79, 135, 162], "gb": [3, 4, 11, 23, 57, 79, 83, 92, 98], "gc_maxlifetim": 57, "gcc": 19, "gd": [44, 120, 122, 127], "gdpr": [86, 109], "gear": 83, "gecko": 64, "gemma": 2, "gender": 7, "gener": [1, 2, 3, 5, 7, 8, 10, 12, 25, 28, 29, 33, 34, 37, 43, 45, 48, 49, 55, 57, 60, 66, 69, 78, 79, 80, 86, 91, 94, 96, 99, 111, 114, 120, 124, 126, 128, 129, 130, 132, 136, 145, 146, 147, 155, 156, 157, 162, 163, 164, 165, 166], "generalizedtim": 79, "genr": [14, 86], "geo": 126, "german": [4, 5, 57, 63], "germani": [2, 57], "get": [1, 2, 12, 15, 19, 23, 25, 26, 29, 35, 43, 44, 48, 57, 59, 64, 66, 68, 69, 78, 79, 80, 89, 94, 108, 120, 121, 123, 126, 128, 129, 130, 131, 133, 134, 135, 139, 144, 148, 151, 154, 157, 162, 168], "get_lin": 60, "getctag": 167, "getenv": [57, 62, 86, 130], "getpath": [133, 146], "gguf": 5, "ghcr": [99, 129], "gib": 23, "gid": 146, "gidnumb": [80, 146], "gif": [57, 101, 126, 156, 157], "giphi": [156, 157], "git": [7, 8, 133], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 25, 26, 52, 56, 57, 60, 79, 96, 123, 126, 129, 130, 133, 142, 156, 157, 162, 165, 166], "githubusercont": 123, "gitlab": [156, 157], "give": [1, 2, 14, 28, 29, 42, 52, 58, 67, 70, 79, 86, 106, 121, 128, 130, 134, 144, 166], "given": [2, 26, 48, 54, 55, 57, 60, 61, 63, 78, 79, 80, 99, 104, 108, 116, 123, 125, 130, 135, 146, 147, 162], "givennam": [80, 146], "glanc": 129, "global": [29, 57, 62, 75, 79, 86, 111, 114, 115, 126, 146, 157], "gmail": 114, "gmbh": [15, 69, 105, 123, 130, 135, 166], "gmp": [122, 127], "gnu": [6, 19], "go": [2, 3, 6, 15, 25, 37, 38, 40, 49, 50, 52, 55, 57, 58, 61, 66, 78, 79, 98, 99, 100, 111, 117, 120, 122, 129, 133, 139, 140, 144, 146, 148, 166, 168], "goal": [25, 79, 130], "goe": [13, 83, 99, 141], "gold": [7, 10], "gone": [83, 86, 135], "good": [1, 2, 4, 5, 17, 52, 56, 60, 79, 123, 125, 129, 130, 139, 145, 146, 166], "googl": [2, 14, 57, 69, 78, 86, 131, 156], "got": [105, 166], "gpg": [86, 120, 122, 124, 149], "gpt": [1, 157], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 98, 99, 100, 102], "grab": 120, "grace": 79, "grain": [128, 168], "granit": 14, "grant": [19, 50, 71, 79, 86, 116, 120, 122, 125, 130], "granular": 49, "graph": [14, 57], "graphic": [1, 14, 44, 98, 118, 130, 146], "great": 120, "greater": [57, 86], "greatli": [3, 130, 131], "green": [5, 14, 37, 38, 79, 86, 87], "grep": [3, 14, 17, 52, 56, 102, 127, 129, 167], "groceri": 2, "groqcloud": [0, 14], "group": [2, 6, 15, 28, 30, 31, 33, 35, 40, 43, 50, 52, 56, 57, 61, 71, 78, 80, 81, 85, 86, 112, 116, 130, 154, 167], "group1": 74, "group2": 74, "group_admin": 49, "groupfold": [25, 45, 57, 62, 86, 105, 146], "groupid": [73, 74, 79], "groupofnam": 146, "groupwar": [111, 112, 114, 135], "gt": 167, "gte": 167, "guacamol": 2, "guarante": [0, 1, 5, 13, 42, 46, 56, 57], "guess": 55, "guest": 15, "gui": [3, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 43, 63, 86, 90, 129, 146], "guid": [20, 25, 57, 60, 98, 114, 117, 120, 122, 123, 127, 129, 130, 143, 151, 152, 159, 160, 165], "guidanc": [86, 124, 127, 130], "guidelin": 126, "guzzl": 57, "gz": [57, 116], "gzip": [116, 126], "gzip_comp_level": 126, "gzip_min_length": 126, "gzip_proxi": 126, "gzip_typ": 126, "gzip_vari": 126, "h": [19, 52, 57, 64, 72, 73, 74, 80, 90, 95, 99, 123, 130, 137, 143, 146], "h2non": 57, "ha": [3, 5, 7, 9, 10, 13, 14, 15, 16, 23, 25, 26, 29, 35, 37, 38, 40, 44, 45, 48, 49, 50, 52, 53, 54, 55, 57, 60, 61, 63, 64, 65, 67, 69, 78, 79, 83, 86, 90, 94, 96, 98, 99, 100, 104, 111, 114, 115, 116, 120, 123, 128, 129, 130, 132, 134, 135, 140, 142, 144, 145, 146, 148, 152, 160, 165, 166, 168], "hackeron": 25, "had": [26, 49, 160, 162, 165], "half": 29, "hallucin": [5, 8], "halt": 57, "hamm": 81, "hand": [105, 166], "handl": [1, 8, 17, 26, 55, 57, 61, 62, 66, 77, 86, 96, 97, 111, 114, 123, 126, 129, 135, 146, 153, 154], "handle_all_url": 51, "handler": [60, 86], "hanson": 146, "hansson": 130, "happen": [22, 25, 40, 45, 49, 55, 57, 78, 79, 80, 104, 111, 114, 126, 134, 135, 140, 144, 146, 148], "happi": [13, 28, 45], "haproxi": [86, 98, 99], "haproxy_host": 99, "haproxy_password": [99, 100], "haproxypass": 99, "hard": [23, 40, 61, 123], "hardcod": [123, 126], "harden": [57, 86, 124, 127], "harder": 55, "hardest": 52, "hardwar": [1, 3, 4, 14, 25, 98, 102, 129, 130, 140], "harp": [86, 100, 102, 103, 168], "harp_docker_socket_port": 100, "harp_exapp_direct": 100, "harp_frp_address": 100, "harp_proxy_dock": 100, "harp_proxy_host": 100, "harp_shared_kei": 100, "has_internet_connect": 86, "hash": [26, 62, 79, 80, 84, 86, 127, 134, 167, 168], "hash_equ": 26, "hash_hmac": 26, "hashing_default_password": 86, "hashingcost": 86, "hashingmemorycost": 86, "hashingthread": 86, "hashingtimecost": 86, "hashtag": 157, "hasmemberoffiltersupport": 80, "hasn": [57, 63], "haspagedresultsupport": 80, "hat": [56, 130, 131], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 22, 23, 25, 26, 27, 29, 30, 31, 35, 38, 40, 44, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 69, 75, 76, 78, 79, 81, 83, 86, 90, 93, 94, 95, 96, 98, 99, 100, 102, 104, 106, 108, 111, 112, 114, 116, 120, 121, 123, 125, 126, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 152, 153, 154, 156, 158, 162, 164, 166, 167, 168], "haveibeenpwnd": 84, "hbegin": 26, "hdr": 57, "head": [55, 65, 67, 120], "header": [2, 23, 26, 27, 57, 60, 61, 62, 65, 66, 69, 72, 73, 74, 80, 85, 86, 124, 125, 126, 130, 135, 162, 165, 168], "headless": 118, "headlin": [1, 75, 79], "health": 102, "healthi": [102, 135], "heartbeat": [57, 86], "heartbeat_count": 102, "heavi": [0, 1, 16, 42, 56, 99, 127, 150], "heavili": [55, 57], "heic": [57, 129, 130], "heif": [57, 130], "height": 57, "hello": [1, 60], "helm": 130, "help": [2, 3, 4, 8, 13, 25, 26, 55, 56, 57, 60, 64, 69, 79, 92, 95, 96, 104, 105, 111, 112, 116, 120, 128, 129, 130, 133, 135, 139, 143, 144, 145, 146, 166], "helper": 14, "henc": [78, 146], "hend": 26, "her": 2, "here": [1, 2, 3, 5, 6, 11, 13, 15, 17, 19, 25, 28, 40, 52, 57, 60, 64, 65, 66, 79, 93, 94, 98, 99, 114, 116, 123, 126, 129, 130, 145, 146, 156], "heurist": 67, "hex": 146, "hexadecim": 26, "hf_model_path": 11, "hidden": [40, 79, 86, 90, 96, 111, 116, 123, 126, 135], "hide": [35, 57, 86, 115, 116, 126], "hide_absence_set": 115, "hide_disabled_user_shar": 83, "hide_login_form": 86, "hideeventexport": 111, "hierarch": 86, "hierarchi": 37, "high": [4, 5, 6, 7, 11, 14, 19, 23, 25, 35, 52, 54, 114, 123, 129, 130, 131, 132, 150, 164, 166], "highcontrast": 57, "higher": [2, 5, 6, 7, 9, 11, 23, 42, 57, 60, 64, 112, 141, 166], "highest": [2, 79, 145, 166], "highli": [55, 57, 67, 79, 116, 123, 127, 129, 134, 147, 151, 166], "highlight": [14, 130, 139, 145, 166], "hike": 2, "him": 2, "hinder": 54, "hindi": [4, 5, 10], "hint": [57, 67, 74, 126, 145], "histor": 25, "histori": [13, 14, 55, 84, 146], "hit": [1, 52, 55, 79], "hlocalhost": 19, "hmac": 26, "hog": [5, 7, 9, 10], "hold": [23, 26, 29, 45, 79, 98, 104, 146], "holidai": 111, "home": [25, 37, 60, 79, 81, 86, 89, 90, 91, 94, 96, 130, 135, 146, 154], "homefoldernamingrul": 80, "hood": [5, 7, 10, 166], "hook": [146, 168], "hope": 22, "hopefulli": 144, "hord": 116, "horde_": 116, "horde_imap": 116, "hors": 52, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 14, 19, 21, 28, 34, 35, 42, 45, 51, 52, 56, 57, 60, 66, 67, 79, 80, 86, 91, 97, 98, 100, 111, 114, 116, 120, 121, 123, 125, 126, 130, 135, 139, 144, 146, 147, 148, 149, 153, 154, 162, 167], "hoster": [19, 57, 114], "hostnam": [17, 19, 28, 45, 52, 57, 60, 66, 79, 98, 114, 126, 130, 140, 142, 146, 154], "hour": [2, 5, 9, 16, 40, 41, 49, 52, 54, 55, 57, 79, 95, 96, 111, 112, 114, 139, 140, 145], "hourli": 49, "hous": [28, 139], "housekeep": [54, 139], "hover": [79, 83, 156], "how": [2, 6, 7, 10, 14, 23, 25, 28, 29, 30, 32, 38, 45, 52, 57, 62, 63, 64, 67, 79, 80, 83, 86, 94, 98, 109, 111, 112, 114, 116, 120, 123, 126, 127, 129, 130, 134, 135, 138, 140, 144, 146, 148, 155, 159, 160, 164, 165, 166], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 19, 26, 27, 52, 54, 55, 56, 57, 64, 68, 77, 78, 99, 111, 115, 123, 129, 130, 131, 141, 142, 145, 146, 151, 153, 162, 168], "hp_frp_address": 99, "hp_shared_kei": [98, 99], "hr": 91, "href": 167, "hst": [67, 121, 123, 126], "hstspreload": 126, "htaccess": [23, 86, 120, 123, 126, 128, 135, 146, 162, 163, 165], "htaccesstest": 126, "htdoc": 53, "html": [57, 60, 64, 96, 120, 126, 127, 128, 131, 135, 144, 146, 147, 148, 149, 151, 152, 153, 165, 167, 168], "htop": 129, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 23, 25, 28, 31, 32, 33, 36, 37, 38, 42, 45, 51, 52, 54, 57, 60, 61, 62, 64, 65, 66, 69, 72, 73, 74, 77, 79, 80, 81, 85, 86, 89, 90, 91, 94, 96, 97, 98, 99, 100, 102, 111, 114, 116, 118, 120, 121, 122, 124, 125, 126, 127, 128, 131, 133, 134, 135, 137, 139, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 162, 165, 167, 168], "http2": 126, "http_author": 130, "http_forwarded_for": 57, "http_proxi": 57, "http_user_ag": 126, "http_x_forward": 57, "http_x_forwarded_for": [57, 66], "httpd": [86, 96, 104, 105, 120, 124, 130], "httpd_can_connect_ldap": 128, "httpd_can_network_connect": [120, 128], "httpd_can_network_connect_db": 128, "httpd_can_network_memcach": 128, "httpd_can_sendmail": 128, "httpd_sys_rw_content_t": [120, 128], "httpd_unifi": 128, "httpd_use_cif": 128, "httpd_use_fusef": 128, "httpd_use_gpg": 128, "httpdavmodul": 135, "httpproxi": 90, "https_proxi": 57, "hub": [0, 2, 14, 152, 168], "hug": 7, "huge": [16, 57, 129], "huggingfac": [5, 11], "human": [6, 11, 79, 168], "hundr": 135, "hurri": 60, "hy000": 135, "hyperlink": 40, "hypervisor": 130, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 161, 162, 165, 166, 167], "i686": 19, "iaccountmanag": [57, 75], "iana": [57, 115], "ibm": [1, 8, 12, 14, 86], "ic": [111, 146], "ical": 146, "icalendar": 146, "icap": [62, 86], "icmp_req": [19, 60], "ico": 126, "icon": [37, 38, 44, 57, 61, 62, 83, 86, 91, 126, 146], "id": [2, 3, 8, 12, 15, 25, 28, 35, 40, 57, 60, 64, 69, 72, 74, 79, 80, 82, 83, 86, 99, 100, 109, 114, 123, 146, 148, 154, 167, 168], "id1125420102": [57, 69], "idea": [2, 52, 139, 145], "ideal": [1, 130, 135, 142], "ident": [33, 45, 57, 69, 71, 79, 86, 130], "identif": 79, "identifi": [18, 19, 26, 45, 57, 58, 65, 79, 80, 86, 102, 109, 115, 116, 122, 123, 129, 134, 135, 147, 168], "ie": [1, 3, 120], "ie11": 23, "ie6": 23, "ie8": 23, "ie9": 23, "iemailtempl": 60, "ietf": 167, "ifmodul": [120, 123, 130, 135], "ifram": [57, 61, 123], "igbinari": 57, "ignor": [3, 17, 25, 28, 40, 45, 46, 56, 57, 60, 83, 90, 96, 127, 146, 147], "ignore_notic": 19, "ignorefrontcontrol": [86, 130], "illustr": [57, 130], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 25, 30, 48, 52, 57, 66, 69, 86, 126, 127, 129, 130, 146, 148, 150, 151, 154, 156, 157, 163, 164, 165], "imagegd": 57, "imagick": [69, 86, 122, 127], "imagin": 40, "imaginari": [57, 86, 129, 130], "imaginarypdf": [57, 163], "imap": [60, 86, 127], "imap4": 60, "immedi": [52, 57, 60, 83], "immut": [79, 126], "impact": [25, 45, 55, 57, 60, 99, 106, 129, 135, 166], "imperson": [123, 168], "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 25, 26, 29, 45, 49, 50, 52, 57, 60, 65, 78, 79, 86, 99, 111, 116, 130, 131, 140, 146, 156], "implic": [57, 86], "implicitli": 146, "import": [29, 31, 37, 54, 55, 57, 61, 69, 86, 111, 112, 114, 120, 122, 125, 127, 130, 132, 135, 140, 150, 159], "importantli": 130, "impos": 14, "imprinturl": 69, "improv": [2, 3, 12, 23, 35, 42, 56, 57, 67, 79, 86, 98, 120, 126, 127, 129, 131, 145, 146, 150, 151], "in_arrai": 99, "inaccess": [20, 25, 45], "inaccur": 8, "inact": 57, "inadvert": [55, 129], "inbox": [14, 116], "inc": 69, "incid": 64, "inclin": 166, "includ": [1, 4, 7, 11, 15, 17, 26, 28, 35, 37, 40, 44, 50, 52, 55, 57, 60, 65, 79, 83, 90, 96, 100, 102, 114, 115, 116, 117, 123, 126, 127, 129, 130, 132, 135, 137, 144, 145, 146, 147, 150, 151, 163, 164, 165, 166, 168], "includedir": 19, "includesubdomain": [123, 126], "incom": [57, 58, 146], "incoming_server2server_share_en": 146, "incompat": [57, 129, 141], "inconsist": [137, 146], "inconvert": [18, 86], "incorpor": [45, 57], "incorrect": [57, 77, 91, 96, 168], "incorrectli": [57, 66, 116], "increas": [23, 29, 35, 38, 56, 57, 60, 92, 102, 114, 121, 123, 126, 129, 130, 131, 135, 146, 164], "increment": 16, "indefinit": 55, "independ": [3, 26, 96, 104], "index": [2, 25, 26, 38, 57, 65, 66, 86, 99, 104, 121, 123, 126, 130, 134, 135, 144, 146, 151, 167, 168], "indexerjob": 3, "indi": 126, "indic": [15, 22, 37, 38, 57, 60, 79, 80, 86, 102, 114, 128, 135, 141, 145, 166], "indirectli": 105, "individu": [23, 25, 29, 37, 50, 55, 57, 75, 96, 116, 123, 129, 146], "industri": 140, "inetorgperson": [79, 80, 146], "inevit": [123, 131], "infect": 52, "infer": [5, 6, 11], "inferenc": [6, 14], "infinit": 126, "influenc": [8, 29, 92, 111, 112], "info": [8, 40, 57, 64, 67, 75, 79, 85, 86, 96, 101, 135], "inform": [0, 1, 3, 4, 5, 7, 8, 13, 15, 19, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 45, 49, 53, 55, 56, 57, 60, 61, 63, 64, 66, 67, 72, 74, 75, 79, 83, 86, 90, 92, 93, 96, 101, 104, 109, 111, 112, 114, 115, 116, 118, 121, 123, 126, 129, 130, 131, 134, 139, 142, 144, 145, 146, 156, 160, 162, 164, 165], "infrastructur": [57, 135], "inher": 54, "inhibit": 90, "ini": [19, 23, 30, 56, 57, 68, 86, 91, 120, 121, 123, 124, 126, 128, 130, 135, 164], "init": [52, 86, 146], "initdb": 121, "initi": [12, 18, 24, 25, 26, 46, 53, 57, 83, 86, 88, 94, 99, 101, 102, 105, 146, 166, 168], "initialcontentimportjob": 3, "initialis": [121, 130, 142], "inject": 57, "inlin": 14, "innodb": [20, 57, 131], "innodb_buffer_pool_inst": 19, "innodb_buffer_pool_s": 19, "innodb_file_format": [19, 57], "innodb_file_per_t": [19, 20, 57], "innodb_flush_log_at_trx_commit": 19, "innodb_large_prefix": [19, 57], "innodb_log_buffer_s": 19, "innodb_max_dirty_pages_pct": 19, "input": [3, 5, 7, 13, 29, 40, 57, 72, 73, 79, 146, 157, 168], "insecur": [60, 86, 131], "insensit": [47, 57, 104], "insert": [57, 86, 126, 146, 150, 157], "insid": [3, 5, 7, 8, 14, 23, 35, 42, 54, 57, 61, 63, 66, 79, 96, 99, 105, 111, 121, 129, 144, 146, 167], "insight": [1, 12, 86], "inspect": [4, 52], "inspector": 67, "instal": [12, 14, 15, 17, 19, 20, 23, 26, 27, 32, 35, 36, 38, 42, 46, 50, 53, 54, 56, 60, 61, 62, 66, 67, 68, 69, 72, 78, 79, 82, 96, 97, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 117, 126, 128, 129, 131, 132, 134, 135, 137, 138, 139, 140, 141, 143, 144, 145, 147, 150, 152, 153, 155, 157, 159, 160, 162], "installed_vers": 146, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16, 17, 19, 20, 25, 26, 40, 44, 45, 53, 54, 57, 60, 65, 69, 75, 79, 82, 86, 96, 98, 99, 109, 111, 112, 114, 116, 120, 124, 126, 129, 130, 131, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 151, 154, 164, 166, 168], "instanceid": [26, 86, 144], "instancesecret": 26, "instanti": 57, "instantli": 57, "instead": [3, 5, 14, 20, 23, 28, 29, 35, 44, 45, 48, 49, 54, 57, 60, 61, 63, 64, 67, 69, 74, 75, 79, 80, 81, 86, 89, 91, 114, 116, 120, 123, 124, 126, 130, 134, 135, 141, 142, 144, 145, 146, 148, 160], "instruct": [1, 2, 3, 5, 17, 19, 52, 61, 67, 71, 79, 85, 86, 116, 122, 123, 127, 129, 130, 132, 139, 141, 145], "insuffici": [74, 96], "int": [23, 70, 73, 74, 80, 99, 116, 167], "int8_float32": 11, "integ": [1, 16, 45, 54, 57, 99, 111, 112, 146], "integr": [1, 2, 3, 8, 12, 14, 40, 52, 55, 57, 62, 68, 71, 80, 86, 114, 115, 127, 130, 135, 136, 144, 148, 156, 157, 163, 164, 168], "integration_deepl": [1, 14], "integration_openai": [0, 1, 2, 5, 8, 114], "integration_repl": [0, 1, 14], "integration_watsonx": [0, 1], "integritycheck": 134, "intel": [7, 10, 129], "intellig": [0, 1, 14, 86, 98], "intend": [57, 78, 79, 94, 123], "intens": [54, 129], "intent": 146, "intention": 116, "interact": [1, 2, 3, 16, 17, 38, 52, 54, 56, 57, 79, 86, 90, 144, 146, 168], "intercept": 123, "interchang": [25, 60, 127], "interest": [69, 91, 166], "interfac": [1, 2, 5, 7, 9, 10, 11, 14, 15, 19, 25, 38, 40, 45, 55, 57, 60, 67, 69, 76, 83, 86, 91, 96, 98, 111, 113, 115, 116, 117, 122, 123, 124, 129, 130, 131, 135, 145, 146, 165, 168], "intermedi": 145, "intern": [3, 13, 25, 37, 38, 45, 54, 57, 67, 71, 80, 83, 86, 100, 104, 114, 129, 130, 147, 157, 167, 168], "internal_defaultexpdai": 40, "interned_strings_buff": 121, "internet": [54, 57, 60, 123, 130, 146], "interpret": [98, 123], "interrupt": [25, 42, 54, 127], "interv": [35, 52, 54, 57, 81, 86, 91, 111, 166, 167], "intervent": [6, 52, 123], "intl": [120, 122, 127], "introduc": [14, 47, 79, 98, 166, 168], "introduct": [62, 86, 99, 120], "invalid": [43, 55, 57, 61, 67, 72, 73, 74, 79, 86, 90, 123, 126, 129, 136, 146, 162], "invalid_hash": 134, "invalidsignatur": 134, "invalidsignatureexcept": 134, "invert": 104, "investig": 57, "invis": [86, 104, 107, 108, 146], "invit": [60, 86, 113, 150, 160], "invite": 111, "invoc": [57, 123, 162], "invok": [57, 90, 144, 146, 162], "involv": [23, 131, 162], "io": [42, 57, 61, 69, 99, 104, 117, 126, 129, 130, 131, 135, 142], "iono": [0, 14], "iosclienturl": 69, "iot": [130, 142], "iotop": 129, "ip": [8, 19, 38, 52, 57, 60, 64, 66, 67, 79, 86, 90, 98, 99, 100, 102, 104, 114, 124, 125, 130, 142, 146, 147, 154], "ipad": 66, "iphon": 66, "iptabl": [123, 154], "ipv4": [55, 57, 66], "ipv6": [55, 57, 66], "ipv6_normalized_subnet_s": 86, "irrevers": 78, "is_arg": 126, "isanonym": 167, "isn": [20, 25, 57, 79, 116, 129, 130, 146], "iso": [57, 63], "iso_639": 57, "isol": [62, 86, 129, 130, 131, 144], "isset": 99, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 25, 47, 49, 55, 56, 57, 60, 67, 79, 86, 102, 111, 112, 122, 123, 125, 126, 129, 131, 133, 134, 142, 144, 145, 146, 148, 154, 156, 157, 164, 165], "isvfsen": 94, "italian": [4, 5, 10], "item": [3, 40, 43, 62, 81, 86, 90, 105, 111, 113, 139], "iter": [55, 57], "ithem": 57, "its": [0, 1, 2, 3, 8, 13, 14, 17, 23, 26, 28, 34, 38, 51, 52, 57, 67, 70, 79, 80, 90, 91, 92, 96, 114, 120, 122, 128, 130, 134, 135, 139, 144, 146, 155, 162, 165], "itself": [5, 19, 29, 57, 82, 98, 99, 104, 115, 122, 130, 134, 135, 142, 144, 146, 154, 162], "itun": [57, 69], "itunesappid": 69, "iv": 26, "j": [48, 57, 66, 86, 146, 148, 162], "jail": [86, 121], "jan": 60, "januari": 64, "japanes": [4, 10], "javascript": [86, 123, 129, 135, 161, 162], "jcal": 146, "jeroboam": 146, "ji": 68, "jit": 86, "jit_buffer_s": 129, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 94, "job": [3, 6, 14, 35, 37, 38, 43, 49, 52, 57, 62, 79, 86, 92, 114, 124, 127, 135, 139, 141, 145, 167], "johnston": 81, "join": [2, 22], "joke": 2, "jone": 146, "journal": [57, 64], "journal_mod": 86, "journalctl": [14, 102, 167], "journald": 102, "jp": 68, "jpeg": [57, 86, 129], "jpeg_qual": 44, "jpegphoto": 79, "jpg": 126, "json": [2, 4, 5, 8, 11, 13, 15, 48, 57, 80, 81, 86, 101, 102, 104, 111, 116, 120, 123, 126, 134, 146, 167], "json_pretti": [13, 146], "jump": [89, 139], "just": [19, 24, 54, 60, 61, 79, 83, 104, 111, 116, 121, 123, 125, 126, 130, 135, 139, 140, 144, 146, 148, 166], "jwfcftvztglwtje": 38, "k": 74, "karlsruh": 13, "kazakh": 4, "kb": 57, "keep": [3, 14, 25, 38, 41, 46, 47, 53, 54, 55, 56, 57, 66, 67, 78, 79, 86, 96, 102, 104, 111, 112, 114, 116, 120, 121, 122, 130, 131, 135, 139, 140, 144, 145, 146, 159, 166, 167], "keepal": [57, 135], "keepalivetimeout": 135, "kei": [2, 3, 11, 15, 16, 19, 22, 28, 33, 34, 37, 38, 42, 43, 45, 56, 57, 71, 73, 74, 75, 79, 83, 86, 98, 99, 100, 114, 121, 122, 123, 126, 129, 130, 132, 135, 141, 145, 146, 157], "kept": [46, 56, 57, 144], "keyboard": 86, "keyfil": 99, "keyformat": 26, "keypair": 29, "keyr": 149, "keyston": [33, 45, 57], "keyvalu": 45, "keyword": 90, "khtml": 64, "kib": 57, "kick": [55, 57], "killmod": 54, "kind": [1, 13, 57, 66, 99, 123], "kink": 52, "kitchen": 2, "know": [26, 28, 57, 79, 82, 111, 116, 135, 146, 148], "knowledg": [11, 135], "knowledgebas": 86, "knowledgebaseen": 86, "known": [12, 17, 25, 45, 49, 51, 55, 57, 60, 62, 66, 79, 86, 104, 116, 121, 126, 131, 135, 146, 155], "kokoro": 10, "korean": 4, "krita": [57, 129], "kubernet": 3, "kunz": 81, "kvm": 130, "l": [19, 54, 56, 66, 96, 121, 135, 146], "l10n": 86, "lab": 123, "label": [2, 14, 38, 66, 79, 100, 128, 135, 168], "labeleduri": 79, "lamp": 130, "lan": [19, 38, 60], "landmark": 6, "landscap": 6, "lang": [57, 146], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 24, 57, 61, 62, 74, 86, 98, 114, 127, 131], "laptop": 2, "larg": [2, 7, 8, 9, 12, 13, 14, 19, 38, 43, 52, 57, 86, 96, 111, 114, 116, 126, 129, 130, 135, 145], "larger": [3, 11, 23, 25, 52, 57, 67, 83, 129, 146], "largest": 98, "last": [1, 13, 26, 54, 55, 57, 81, 83, 102, 108, 125, 141, 142, 144, 146, 166], "last_seen": 146, "lastjpegphotolookup": 80, "lastli": [28, 45], "lastlogin": 146, "lastmodifi": 167, "lastprofilechecksum": 79, "lastseen": 86, "lastupd": [13, 167], "latenc": 129, "later": [17, 40, 57, 72, 81, 105, 114, 116, 130, 135, 141, 147, 154, 168], "latest": [1, 2, 4, 23, 45, 57, 58, 93, 117, 120, 122, 129, 130, 131, 139, 142, 145, 152, 159, 165, 166], "latitud": 123, "latter": [56, 146], "launch": [2, 51, 52, 53, 56, 94, 95, 96, 98, 100, 139, 167], "launchpad": 90, "layer": [25, 78, 129, 134], "layla": 146, "layout": [57, 58, 145, 150], "lazi": [57, 146], "ld": [79, 126], "ldap": [37, 43, 62, 71, 77, 86, 120, 124, 127, 130, 140], "ldap_group_map": 79, "ldap_log_fil": 86, "ldap_matching_rule_in_chain": 79, "ldap_opt_network_timeout": 80, "ldap_user_map": 79, "ldapadmingroup": 79, "ldapagentnam": 80, "ldapagentpassword": 80, "ldapattributesforgroupsearch": 80, "ldapattributesforusersearch": [80, 146], "ldapbackuphost": 80, "ldapbackupport": 80, "ldapbas": 80, "ldapbasegroup": 80, "ldapbaseus": 80, "ldapcachettl": [79, 80], "ldapconfigurationact": 80, "ldapconnectiontimeout": 80, "ldapdefaultppolicydn": 80, "ldapdynamicgroupmemberurl": 80, "ldapemailattribut": [80, 146], "ldapexperiencedadmin": 80, "ldapexpertusernameattr": [80, 146], "ldapexpertuuidgroupattr": 80, "ldapexpertuuiduserattr": 80, "ldapgidnumb": 80, "ldapgroupdisplaynam": 80, "ldapgroupfilt": [80, 146], "ldapgroupfiltergroup": 80, "ldapgroupfiltermod": 80, "ldapgroupfilterobjectclass": 80, "ldapgroupmemberassocattr": [80, 146], "ldaphost": 80, "ldapignorenamingrul": 80, "ldaploginfilt": 80, "ldaploginfilterattribut": 80, "ldaploginfilteremail": 80, "ldaploginfiltermod": 80, "ldaploginfilterusernam": 80, "ldapnestedgroup": 80, "ldapoverridemainserv": 80, "ldappagings": 80, "ldapport": 80, "ldapquotaattribut": 80, "ldapquotadefault": 80, "ldaptl": 80, "ldapuseravatarrul": [79, 80], "ldapusercleanupinterv": [81, 86], "ldapuserdisplaynam": [80, 146], "ldapuserdisplayname2": 80, "ldapuserfilt": 80, "ldapuserfiltergroup": 80, "ldapuserfiltermod": 80, "ldapuserfilterobjectclass": 80, "ldapuuidgroupattribut": 80, "ldapuuiduserattribut": [80, 146], "lead": [30, 54, 55, 56, 57, 67, 111, 112, 123, 126, 129, 130, 135], "leak": [49, 57, 126, 135, 167], "leakag": 123, "leap": 131, "learn": [5, 6, 8, 11, 30, 32, 42, 44, 48, 56, 76, 81, 83, 117, 123, 134, 145, 146], "least": [2, 3, 4, 5, 6, 7, 9, 11, 15, 19, 23, 41, 46, 54, 57, 67, 78, 79, 127, 131, 141, 145, 146, 147, 162, 166, 167], "leav": [2, 24, 25, 28, 30, 36, 55, 57, 66, 74, 79, 83, 114, 133, 146], "leela": 146, "left": [37, 45, 54, 57, 60, 79, 83, 129, 134, 144, 146, 168], "leftov": 79, "legaci": [27, 28, 29, 45, 57, 64, 126, 146], "legacy_auth": 45, "legacy_format_support": 27, "legal": [11, 69], "legibl": 9, "legitim": [25, 55], "length": [8, 29, 45, 52, 57, 84, 86], "lengthen": 129, "less": [6, 7, 10, 11, 45, 52, 55, 57, 64, 92, 123, 127, 129, 131, 166], "let": [14, 17, 55, 60, 83, 99, 126, 130, 135, 140, 148], "letsencrypt": 126, "letter": [83, 168], "level": [4, 14, 21, 22, 25, 40, 42, 52, 57, 60, 62, 83, 86, 95, 96, 123, 124, 131, 135, 144, 146], "leverag": 8, "lf": 79, "lib": [6, 15, 19, 52, 57, 60, 126], "libapache2": 122, "libargon2": 127, "liber": 96, "libmagickcor": 69, "librari": [11, 44, 57, 60, 85, 91, 96, 123, 160], "libreoffic": [57, 86, 127], "libsmbclient": 35, "libxml": 127, "libxml2": 127, "licenc": 72, "licens": [14, 15, 123], "life": [86, 120, 141, 145], "lifetim": [57, 79, 109], "lift": 99, "light": [38, 57, 79], "lighter": 166, "lighttpd": 135, "lightweight": [57, 125], "like": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 20, 24, 25, 28, 29, 35, 38, 42, 45, 47, 49, 50, 54, 56, 57, 58, 61, 64, 75, 78, 79, 81, 84, 85, 96, 98, 99, 105, 111, 112, 114, 115, 116, 118, 120, 123, 125, 126, 129, 130, 135, 137, 139, 141, 142, 144, 145, 146, 154, 155, 156, 157, 162, 167], "likelihood": [57, 129], "limit": [0, 1, 12, 14, 23, 35, 40, 41, 43, 44, 46, 49, 50, 52, 54, 57, 60, 73, 74, 79, 86, 96, 98, 99, 113, 116, 120, 121, 125, 129, 130, 131, 135, 140, 144, 162, 165, 166], "limitrequestbodi": 23, "line": [17, 19, 23, 27, 54, 56, 57, 60, 64, 66, 75, 79, 86, 93, 94, 111, 114, 116, 122, 124, 126, 127, 129, 130, 135, 138, 139, 145, 165], "link": [2, 15, 43, 62, 69, 74, 75, 76, 77, 83, 86, 104, 114, 123, 129, 130, 133, 134, 135, 144, 150, 155, 157, 168], "link_defaultexpdai": 40, "linux": [19, 25, 31, 35, 47, 48, 52, 56, 64, 81, 86, 89, 91, 93, 94, 96, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 131, 135, 137, 139, 145, 146, 151], "list": [1, 2, 3, 11, 12, 14, 15, 16, 17, 20, 25, 35, 38, 40, 44, 50, 55, 56, 57, 58, 60, 63, 68, 73, 75, 84, 85, 86, 97, 98, 103, 104, 111, 116, 120, 123, 125, 126, 130, 131, 134, 135, 139, 145, 147, 148, 149, 154, 159, 161, 162, 166, 167, 168], "listen": [35, 42, 52, 56, 86, 90, 91, 99, 102, 121, 126, 146, 148, 153], "listen_to_ev": 168, "listexapp": 101, "liter": 168, "littl": [4, 14, 67, 83, 99], "live": [0, 2, 7, 12, 57, 79, 86, 146], "live_transcript": [12, 86], "ll": [15, 19, 25, 35, 40, 57, 60, 79, 83, 111, 114, 126, 130, 139, 146, 148, 166], "llama": [1, 5, 14], "llama3": 5, "llm": [2, 5, 8, 13, 14, 86, 113], "llm2": [1, 2, 8, 12, 14, 86], "ln": [15, 121], "load": [5, 7, 12, 19, 23, 25, 35, 42, 52, 56, 60, 62, 66, 78, 86, 123, 124, 125, 127, 135, 146], "loadbalanc": 23, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 14, 15, 19, 23, 25, 28, 30, 35, 36, 37, 38, 40, 56, 60, 62, 69, 70, 71, 75, 79, 83, 86, 89, 90, 91, 94, 96, 98, 100, 101, 104, 112, 120, 121, 123, 126, 129, 130, 133, 135, 142, 146, 148, 162], "local_cert": [56, 57], "local_dock": 100, "local_pk": [56, 57], "local_summary_bot": 8, "localai": [0, 3, 8, 14], "localdir": 31, "localdirpath": 94, "localdomain": [130, 142], "localhost": [19, 42, 53, 56, 57, 60, 66, 99, 100, 102, 114, 120, 121, 122, 125, 130, 135, 142, 146, 148], "localitynam": 79, "localsocket": 52, "localstorag": 86, "localtim": 8, "locat": [2, 3, 8, 15, 20, 23, 25, 54, 55, 62, 66, 79, 83, 86, 90, 91, 93, 96, 98, 99, 104, 105, 121, 123, 124, 126, 130, 132, 135, 137, 139, 140, 144, 145, 146, 152, 156, 157, 168], "lock": [29, 43, 56, 62, 86, 104, 120, 124, 127, 135, 137, 145, 146], "lock_retri": 56, "lock_wait_tim": 56, "locking_en": 56, "lockout": [57, 84], "log": [12, 13, 14, 19, 25, 29, 33, 37, 38, 50, 52, 55, 60, 62, 65, 66, 78, 83, 86, 90, 94, 95, 99, 103, 104, 111, 112, 114, 120, 123, 124, 125, 127, 128, 130, 131, 132, 137, 140, 142, 144, 145, 154, 165, 167], "log_error": 135, "log_not_found": 126, "log_notic": 19, "log_queri": 86, "log_request_id": 86, "log_rotate_s": 86, "log_secret": 57, "log_typ": [64, 86], "log_type_audit": [64, 86], "logdateformat": [64, 86], "logdebug": [95, 96], "logdir": [95, 96], "logexpir": [95, 96], "logfil": [3, 23, 64, 86, 95, 96, 121, 126, 132, 140, 146], "logfile_audit": [64, 86, 132], "logfilemod": [86, 123], "logflush": 95, "logic": [49, 78, 101, 102, 143, 167], "login": [14, 19, 24, 25, 29, 34, 35, 49, 54, 57, 60, 61, 62, 64, 69, 70, 74, 76, 77, 78, 81, 82, 83, 84, 86, 90, 91, 94, 122, 123, 125, 135, 137, 138, 139, 145, 146], "login_flow_v2": 86, "login_form_autocomplet": 86, "login_form_timeout": 86, "loginfailexit": 99, "loglevel": [55, 60, 64, 79, 86, 116, 123, 129], "loglevel_dirty_database_queri": 86, "loglevel_frontend": 86, "logo": [57, 69], "logo_url": 86, "logohead": 69, "logon": 35, "logout": 57, "logpath": 123, "logread": 64, "logtimezon": [86, 146], "logwindow": [95, 96], "loleaflet": 152, "long": [3, 6, 15, 19, 42, 56, 57, 79, 80, 86, 91, 96, 108, 111, 112, 125, 126, 130, 139, 144, 164, 166], "long_query_tim": 19, "longer": [23, 45, 55, 57, 60, 63, 83, 111, 120, 126, 129, 146, 160, 162, 163], "longest": 23, "longitud": 123, "look": [2, 3, 14, 17, 19, 20, 45, 48, 54, 55, 57, 67, 69, 79, 81, 86, 99, 104, 114, 116, 125, 126, 130, 133, 134, 139, 144, 146, 147, 149, 150, 156, 168], "lookup": [57, 66, 75, 123], "lookup_serv": 86, "lool": [148, 152], "loolwsd": 152, "loop": [86, 99], "loopback": 125, "lose": [25, 42, 57, 146], "loss": [19, 25, 57, 83, 96, 131, 135], "lost": [25, 26, 71, 78, 86, 135, 146], "lost_password_link": [77, 86], "lostpassword": 57, "lot": [14, 44, 55, 56, 57, 64, 79, 116, 129, 135, 139, 145], "love": 79, "low": [7, 10, 23, 56, 57, 86, 130, 131], "lower": [4, 5, 7, 10, 26, 54, 57, 83, 84, 129, 130], "lowest": [131, 166], "lsof": 102, "lst": 90, "lt": [4, 86, 124, 130, 131, 167], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [15, 123], "lte": 167, "luk": 25, "lukasreschk": 146, "lunar": 146, "m": [13, 19, 52, 56, 81, 121, 123, 126, 127, 129, 130, 137, 146], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 45, "mac": [37, 52, 89, 94, 135], "machin": [3, 5, 6, 7, 9, 10, 12, 19, 47, 57, 60, 86, 90, 98, 99, 123, 124, 132, 140], "macintosh": 79, "maco": [86, 91, 93, 117, 131, 135], "made": [3, 14, 17, 35, 44, 48, 55, 57, 96, 116, 129, 130, 132, 140, 166, 168], "madlad": [11, 14], "madlad400": 11, "madrid": 79, "mageia": 127, "magic": 86, "mai": [1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 37, 38, 39, 40, 41, 45, 46, 48, 54, 55, 56, 57, 60, 61, 64, 66, 74, 75, 77, 78, 79, 80, 81, 83, 86, 92, 96, 98, 102, 111, 112, 114, 115, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 137, 139, 142, 143, 144, 145, 146, 147, 152, 154, 162, 164, 166, 167, 168], "mail": [2, 5, 14, 49, 62, 74, 79, 80, 83, 86, 113, 115, 128, 146, 157, 160], "mail_domain": [60, 86], "mail_from_address": 86, "mail_link_password_expiration_interv": 86, "mail_send_plaintext_onli": 86, "mail_sendmailmod": 86, "mail_smtpauth": [60, 86], "mail_smtpauthtyp": 60, "mail_smtpdebug": [60, 86], "mail_smtphost": [60, 86], "mail_smtpmod": [60, 86], "mail_smtpnam": [60, 86], "mail_smtppassword": [60, 86], "mail_smtpport": [60, 86], "mail_smtpsecur": [60, 86], "mail_smtpstreamopt": [60, 86], "mail_smtptimeout": [60, 86], "mail_template_class": [60, 86], "mailbox": [86, 113, 116], "mailcow": 114, "mailer": [57, 60, 160], "mailprimaryaddress": 79, "main": [1, 4, 11, 14, 19, 57, 79, 80, 91, 95, 98, 99, 102, 105, 126, 135, 137, 143, 144, 148, 152, 168], "mainli": [15, 25, 57, 59, 145], "maintain": [1, 38, 57, 67, 96, 112, 123, 130, 135, 142, 144, 145, 146, 166], "mainten": [3, 16, 20, 22, 25, 48, 62, 118, 129, 130, 131, 139, 140, 143, 144, 151, 164], "maintenance_window_start": 86, "major": [3, 39, 52, 86, 123, 126, 130, 135, 139, 141, 145, 151], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 22, 23, 25, 28, 30, 31, 35, 37, 38, 40, 44, 45, 49, 50, 51, 55, 56, 57, 61, 63, 65, 68, 70, 74, 75, 79, 81, 82, 86, 91, 96, 99, 104, 108, 111, 114, 116, 120, 121, 123, 126, 127, 129, 130, 131, 132, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 155, 160, 161, 162, 163, 166, 167, 168], "malform": 146, "malfunct": 57, "malici": [25, 55], "malwar": [52, 57, 60], "man": [52, 54, 123], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 38, 42, 50, 51, 55, 56, 57, 62, 66, 69, 72, 79, 82, 85, 86, 97, 98, 104, 105, 108, 111, 120, 123, 124, 144, 145, 151, 163, 164, 165], "managerfactori": 86, "mandarin": 10, "mandatori": [49, 54, 70, 79, 86, 146], "mani": [6, 11, 14, 19, 20, 50, 52, 55, 57, 79, 96, 111, 112, 116, 126, 129, 130, 135, 144, 146, 150, 162, 166], "manifest": [51, 126], "manipul": 146, "manner": [1, 90, 163, 164, 165], "manual": [3, 4, 6, 15, 16, 17, 19, 22, 23, 25, 29, 47, 49, 50, 54, 56, 57, 61, 66, 79, 80, 81, 86, 93, 94, 96, 98, 99, 100, 105, 114, 117, 120, 122, 123, 124, 129, 132, 133, 134, 135, 138, 141, 142, 144, 146, 147, 151, 163, 166, 168], "manual_instal": [8, 98, 100], "manual_install_harp": 100, "map": [2, 45, 57, 81, 86, 126, 129, 141, 146, 156], "march": 23, "marco": 2, "margin": 129, "mariadb": [17, 20, 22, 57, 86, 118, 120, 122, 124, 125, 127, 130, 146, 163, 164], "mark": [2, 37, 57, 60, 81, 86, 146], "markdown": [57, 68, 129], "market": [2, 11, 141], "martin": 2, "mask": 116, "mass": [86, 93], "master": [25, 43, 57, 60, 86, 146], "master_": 26, "mastodon": [156, 157], "match": [3, 22, 40, 45, 56, 57, 60, 73, 74, 79, 80, 99, 104, 112, 116, 121, 126, 130, 135, 140, 146, 152, 154, 167], "math": 5, "matter": [40, 162], "max": [1, 23, 43, 52, 86, 90, 121, 123, 126, 146], "max_accelerated_fil": 121, "max_allowed_packet": 19, "max_children": 130, "max_execution_tim": [23, 57, 127], "max_file_conversion_files": 86, "max_filesize_animated_gifs_public_shar": 86, "max_heap_table_s": 19, "max_image_generation_idle_tim": 1, "max_input_tim": 23, "max_link": 19, "max_parallel_count": 86, "max_persist": 19, "max_siz": [23, 86], "max_token": 5, "maxautocompleteresult": 86, "maxchunks": [91, 96], "maxim": [40, 55], "maximum": [8, 23, 25, 40, 45, 46, 55, 79, 83, 86, 90, 91, 92, 96, 111, 112, 126], "maximumadressbook": 112, "maximumcalendarssubscript": 111, "maxkeepaliverequest": 135, "maxretri": 123, "mayb": [96, 129], "mb": [44, 57, 80, 83, 91, 92, 96], "mb4": 57, "mbstring": [68, 120, 122, 127], "mcp": [12, 86], "md": [2, 25, 68], "md5": [60, 120, 121, 122], "md5sum": [120, 122], "me": [2, 13, 57, 109], "mean": [11, 13, 14, 38, 47, 55, 57, 65, 67, 78, 79, 83, 91, 99, 114, 120, 123, 126, 129, 131, 134, 145, 162, 166, 167], "meaningless": 126, "meant": [55, 57, 166], "measur": [7, 10, 57, 67], "mechan": [26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 42, 43, 54, 55, 57, 60, 64, 86, 146, 160, 168], "media": [1, 2, 6, 7, 86, 90, 104, 124], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 28, 41, 45, 139, 166], "megabyt": [52, 57], "member": [2, 40, 50, 61, 74, 78, 79, 80, 83, 86, 104, 146, 147, 156, 157], "memberof": [80, 86, 146], "membership": [40, 79, 80, 83, 104, 116, 146], "memberuid": 80, "memcach": [23, 42, 62, 67, 79, 86, 120, 121, 124, 127, 132], "memcache_customprefix": 86, "memcached_opt": 86, "memcached_serv": [56, 86], "memori": [23, 25, 42, 52, 55, 62, 67, 79, 86, 102, 116, 127, 129, 130, 164, 167], "memory_consumpt": [121, 129], "memory_limit": [23, 52, 127], "mention": [1, 3, 13, 49, 69, 96, 98, 104, 120, 121, 123, 134, 144], "menu": [1, 8, 14, 37, 54, 57, 61, 83, 98, 99, 135, 157, 163, 164, 165], "mere": [17, 55, 166], "merg": [62, 86, 114, 156, 157], "messag": [1, 2, 8, 13, 16, 25, 26, 57, 58, 60, 64, 66, 67, 73, 74, 77, 79, 80, 86, 94, 95, 114, 115, 116, 118, 123, 136, 139, 140, 146, 154, 155, 156, 157, 168], "met": [2, 14, 46, 57, 79, 123, 130], "meta": [14, 72, 73, 74, 79, 80, 127], "metadata": [40, 45, 57, 83, 99, 116, 132, 135, 146], "metadata_max_files": 86, "metal": [86, 132], "method": [19, 22, 26, 29, 37, 43, 54, 57, 60, 64, 72, 73, 74, 78, 80, 86, 96, 98, 100, 116, 127, 130, 135, 140, 145, 146, 168], "metric": [57, 87], "mg": 121, "mib": [4, 23, 57, 86, 92, 129], "micro": 130, "microservic": 129, "microsoft": [47, 52, 57, 60, 86, 91, 96, 113, 117, 126, 131, 160], "middl": 123, "middlewar": 66, "might": [0, 2, 3, 11, 14, 15, 17, 19, 22, 29, 35, 37, 44, 45, 47, 48, 49, 52, 54, 56, 57, 60, 67, 79, 80, 91, 96, 98, 99, 102, 106, 112, 114, 116, 122, 123, 126, 128, 129, 131, 133, 135, 140, 141, 146, 147, 154, 155, 161, 165], "migrat": [16, 17, 18, 29, 43, 46, 57, 79, 86, 98, 113, 116, 127, 138, 144, 146, 150, 164], "millisecond": [45, 57, 91, 96], "milliwai": 146, "mime": [104, 114, 126, 130, 162], "mimetyp": [44, 57, 86, 104, 123, 126, 146], "mimetypealias": [48, 104], "mimetypelist": 146, "mimetypemap": [48, 146], "min": 91, "minchunks": [91, 96], "mind": [3, 53, 56, 57, 98, 104, 121, 122, 130, 144, 168], "minif": 57, "minim": [3, 7, 8, 10, 11, 52, 55, 84, 120, 121, 131, 135, 166], "minimum": [6, 45, 46, 67, 79, 86, 91, 92, 96, 98, 101, 114, 131, 166], "minio": 45, "miniredir": 57, "minor": [3, 129, 139], "minsearchstringlength": 86, "mint": [52, 56, 130], "minut": [0, 3, 7, 10, 14, 35, 37, 41, 46, 52, 54, 55, 57, 79, 81, 91, 96, 109, 111, 112, 114, 139, 140, 145, 167], "mirror": 123, "misbehav": 55, "misbehavior": 67, "misc": 86, "miscellan": 86, "misconfigur": [55, 57, 86, 96, 102, 107, 116, 123, 126], "misformat": 79, "mismatch": [129, 165], "miss": [22, 40, 78, 79, 86, 102, 123, 127, 141, 143, 145], "missing_fil": 134, "mission": [135, 166], "mistak": [57, 79, 135], "mistakenli": 116, "mistral": 2, "mistralai": [0, 14], "mit": 57, "mitig": [60, 123], "mitm": 123, "mix": [38, 167], "mixer": 123, "mixtur": 57, "mj": [126, 161, 162], "mkdir": [25, 31, 99, 120, 121], "mknod": 148, "mlocat": 120, "mm": 79, "mnt": [79, 130], "mobil": [25, 29, 40, 66, 69, 79, 86, 93, 104, 117, 123, 124], "mod": 122, "mod_dav": [120, 130, 135], "mod_defl": 135, "mod_dir": 130, "mod_env": [57, 65, 123, 130], "mod_evas": 135, "mod_fastcgi": 135, "mod_fcgi": 130, "mod_fcgid": [86, 135], "mod_head": [65, 123, 130], "mod_mim": 130, "mod_pagespe": 135, "mod_php": [129, 130, 131, 135], "mod_proxy_fcgi": [86, 135], "mod_reqtimeout": [23, 135], "mod_rewrit": [38, 57, 65, 130, 135], "mod_secur": 135, "mod_spdi": 135, "mod_webdav": 130, "mod_xsendfil": 135, "modal": 97, "mode": [6, 16, 19, 20, 22, 23, 26, 27, 43, 52, 54, 57, 79, 80, 86, 94, 100, 101, 111, 116, 120, 122, 124, 134, 135, 138, 139, 140, 143], "model": [0, 1, 3, 4, 6, 8, 9, 10, 12, 13, 14, 86, 98, 114, 123, 132], "model_nam": 11, "moder": 40, "modern": [4, 47, 56, 61], "modheadersavail": 126, "modif": [19, 40, 60, 96, 108, 111, 112, 130, 139, 146], "modifi": [28, 35, 45, 47, 48, 49, 55, 56, 62, 63, 71, 79, 83, 86, 96, 104, 105, 108, 111, 112, 116, 123, 125, 129, 130, 134, 135, 146], "modul": [19, 23, 25, 26, 35, 42, 56, 57, 69, 79, 86, 121, 122, 124, 125, 126, 130, 131, 146, 148, 161, 162], "modular": [1, 14], "module_nam": 127, "molli": [79, 146], "mollybook": 146, "mollyc": 146, "moment": [8, 154], "momentj": 63, "mon": [49, 52], "mondai": 49, "monitor": [15, 55, 56, 86, 90, 123, 129, 146], "monterei": 131, "month": [1, 2, 13, 123, 126, 130], "monument": 6, "moodl": 65, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 19, 20, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 49, 52, 55, 56, 57, 58, 60, 67, 74, 76, 79, 81, 82, 92, 93, 96, 97, 98, 99, 102, 104, 111, 112, 114, 115, 116, 117, 118, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 139, 140, 143, 145, 146, 148, 150, 151, 153, 154, 160, 162, 164, 165, 166, 167, 168], "moreov": 15, "morn": 49, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 45, 54, 55, 56, 57, 60, 61, 64, 67, 79, 98, 99, 116, 123, 127, 128, 129, 130, 131, 135, 141, 142, 145, 146, 151, 152, 153, 159, 160, 166, 168], "mostli": 130, "mount": [4, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 42, 43, 45, 52, 54, 57, 86, 99, 101, 103, 104, 130, 135, 146], "mount_fil": 86, "mount_id": 35, "mount_nam": 146, "mountpoint": [28, 30, 35, 36, 37, 43, 57, 86], "move": [2, 23, 25, 57, 66, 86, 91, 123, 125, 139, 140, 144, 145, 164, 166], "movetotrash": 91, "movi": [57, 156, 157], "mozilla": [64, 116, 123, 126, 131], "mp3": [48, 57, 164, 165], "mp4": 126, "mpeg": 48, "mrtumnu": 66, "msoffice2003": 57, "msoffice2007": 57, "msofficedoc": 57, "mt": [11, 57, 69], "mtime": 40, "much": [23, 58, 96, 99, 125, 128, 129, 135, 143], "multi": [14, 55, 56, 79, 167], "multibucket": [43, 86], "multibyt": 143, "multilingu": [7, 12, 86], "multipart": 45, "multipartupload": 23, "multipl": [2, 5, 6, 9, 14, 17, 23, 29, 37, 42, 45, 52, 53, 54, 55, 56, 62, 67, 70, 79, 80, 81, 82, 86, 98, 99, 101, 114, 123, 127, 129, 130, 141, 143, 146, 147, 150, 151, 166, 167], "multiview": [120, 130], "music": [14, 86, 90, 94, 146], "must": [3, 4, 5, 6, 8, 15, 23, 25, 26, 28, 30, 31, 33, 37, 38, 42, 45, 52, 53, 54, 56, 57, 60, 65, 66, 67, 78, 79, 80, 81, 83, 90, 96, 98, 99, 101, 111, 114, 118, 123, 125, 126, 127, 128, 129, 130, 131, 132, 135, 137, 139, 141, 143, 145, 146, 167, 168], "mx": [114, 116], "my": [2, 15, 45, 48, 69, 73, 79, 86, 98, 100, 111, 154], "my_sync_fold": 90, "myapp": 60, "myapplic": 65, "myclass": 60, "mycloud": [2, 57], "mycustomprefix": 57, "mygroup": [73, 146], "myisam": 131, "mylogfil": 128, "mylogo": 69, "mypictur": 37, "myserv": 38, "mysql": [17, 18, 22, 86, 118, 120, 122, 124, 125, 127, 130, 135, 142, 146, 164], "mysql_attr_init_command": 57, "mysql_attr_ssl_ca": [19, 57], "mysql_attr_ssl_cert": [19, 57], "mysql_attr_ssl_kei": [19, 57], "mysql_attr_ssl_verify_server_cert": [19, 57], "mysql_secure_instal": 120, "mysql_user_password": 17, "mysqld": [19, 20, 57, 60], "mysqldump": [20, 137], "mysqlnd": 120, "n": [1, 5, 14, 16, 17, 26, 79, 90, 94, 102, 146, 167], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 15, 17, 19, 20, 25, 28, 29, 30, 31, 33, 35, 36, 37, 38, 40, 41, 45, 47, 51, 52, 53, 56, 57, 60, 62, 64, 65, 69, 72, 73, 74, 75, 79, 80, 81, 83, 86, 90, 95, 96, 98, 99, 100, 101, 104, 111, 114, 116, 118, 120, 121, 122, 123, 125, 126, 129, 130, 134, 146, 152, 168], "namespac": [13, 51, 57, 60, 146], "nativ": [21, 35], "natur": [14, 82, 147], "navig": [51, 57, 96, 98, 104, 105, 108, 111, 112, 114, 121, 133, 168], "nc": [57, 60, 64, 86, 103, 126], "nc_app_": 102, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 146, "nc_domain": 99, "nc_instance_url": [98, 99], "nc_loglevel": 146, "nc_password": 90, "nc_samesitecookielax": 67, "nc_samesitecookiestrict": 67, "nc_user": 90, "ncdata": 135, "ncp": 127, "ncvm": 130, "ne": 167, "nearli": [120, 162], "necessari": [2, 15, 19, 22, 23, 33, 44, 49, 54, 56, 57, 60, 82, 114, 116, 120, 125, 126, 127, 130, 135, 146, 147, 164, 168], "necessarili": [55, 98, 99, 135], "need": [0, 1, 3, 4, 6, 8, 11, 14, 15, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 42, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 64, 67, 78, 79, 80, 82, 83, 86, 89, 91, 92, 98, 99, 100, 102, 104, 105, 109, 111, 112, 114, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 155, 160, 163, 164, 166, 167, 168], "needsdbupgrad": 146, "neg": [6, 123], "neither": 76, "nest": [80, 86], "net": [57, 90, 99, 100, 120, 141, 146, 147], "netdata": 129, "netrc": 90, "netstat": [52, 60], "network": [14, 19, 37, 55, 57, 86, 91, 92, 96, 98, 99, 100, 102, 104, 123, 124, 130, 131, 142, 146, 162, 167, 168], "never": [25, 37, 41, 49, 57, 79, 123, 129, 146], "nevertheless": 145, "new": [2, 3, 5, 6, 11, 17, 20, 22, 23, 24, 25, 27, 29, 30, 34, 37, 41, 42, 43, 45, 49, 54, 57, 60, 65, 71, 73, 75, 76, 78, 79, 80, 81, 86, 91, 95, 96, 98, 99, 101, 111, 114, 116, 117, 121, 123, 125, 127, 128, 129, 130, 131, 135, 137, 139, 140, 144, 145, 146, 148, 152, 160, 162, 163, 164, 166, 168], "newer": [20, 35, 67, 98, 129, 131, 143, 166], "newest": [141, 166], "newgroup": [73, 74], "newli": [17, 25, 45, 49, 52, 54, 57, 79, 108, 130, 146, 166, 168], "newpassword": 146, "newroot": 146, "newus": 146, "next": [1, 2, 15, 19, 24, 25, 37, 38, 40, 52, 56, 79, 80, 81, 86, 90, 91, 97, 111, 112, 120, 124, 144, 145, 146, 151, 156, 166, 168], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 53, 54, 55, 59, 60, 61, 63, 64, 65, 66, 67, 70, 71, 72, 73, 74, 76, 77, 78, 83, 85, 86, 89, 90, 91, 92, 93, 94, 95, 98, 101, 102, 103, 104, 105, 108, 110, 111, 112, 114, 115, 116, 117, 118, 122, 124, 125, 127, 128, 129, 130, 131, 132, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 166], "nextcloud_": 45, "nextcloud_1": 45, "nextcloud_admin": 79, "nextcloud_config_dir": [57, 123], "nextcloud_docker_network_nam": 99, "nextcloud_host": 66, "nextcloud_imaginari": 129, "nextcloud_install_product": 130, "nextcloud_log": 96, "nextcloud_redirectregex": 66, "nextcloud_url": [8, 99, 100], "nextcloudcmd": 90, "nextcloudcron": 54, "nextclouden": 80, "nextcloudgroup": 80, "nextcloudpi": 130, "nextcloudquota": 79, "nextcloudresourc": 168, "nextcloudsystemus": 79, "nextcloudtemp": 57, "nextcloudurl": 90, "nextcloudus": [79, 80], "nf": 57, "nfc": 135, "nfd": [37, 135], "nginx": [16, 67, 86, 99, 123, 124, 130, 131, 135, 160, 161, 162], "ngo": 135, "ngx_pagespe": [126, 135], "ni": 129, "nice": 48, "night": 3, "nin": 167, "nix": [54, 60], "no_etag": 126, "no_last_modifi": 126, "no_proxi": 57, "no_unsupported_browser_warn": 86, "nobodi": 134, "nocanon": 148, "node": [6, 57, 146, 167], "nodecod": 148, "nodecopiedev": 167, "nodecreatedev": 167, "nodedeletedev": 167, "nodeinfo": 135, "noderenamedev": 167, "noderestoredev": 167, "nodetouchedev": 167, "nodewrittenev": 167, "nofollow": [123, 126], "noindex": [123, 126], "nologon": 146, "nomatim": 2, "nominatim": 123, "non": [3, 8, 17, 23, 25, 28, 31, 37, 45, 57, 74, 79, 86, 90, 91, 94, 100, 127, 140, 144, 146, 147], "none": [14, 29, 55, 57, 60, 79, 80, 83, 126, 139, 146, 148, 160], "nonexist": 79, "noon": 2, "nor": [35, 49, 54, 86, 98, 144, 167], "norepli": 57, "normal": [3, 6, 16, 22, 23, 42, 49, 53, 54, 57, 63, 64, 76, 79, 83, 91, 132, 135, 140, 145, 146, 168], "nosniff": [123, 126], "notat": [57, 66], "note": [0, 1, 2, 3, 5, 13, 19, 28, 35, 37, 40, 44, 45, 46, 54, 57, 60, 65, 71, 75, 85, 94, 96, 99, 105, 111, 112, 118, 123, 124, 125, 126, 130, 131, 135, 136, 139, 145, 146, 154, 156, 166, 167], "noth": [3, 16, 146], "notic": [42, 44, 55, 69, 129, 140], "notif": [43, 49, 57, 60, 66, 78, 79, 83, 86, 91, 108, 113, 123, 128, 130, 135, 138, 144, 146, 160, 168], "notifi": [15, 25, 35, 60, 108, 146], "notificationrefreshinterv": 91, "notify_guest": 15, "notify_push": [62, 86], "notion": [156, 157], "notori": [5, 6, 7, 11], "now": [14, 19, 20, 22, 23, 38, 52, 54, 57, 65, 79, 83, 86, 98, 99, 111, 112, 114, 116, 118, 120, 121, 122, 125, 130, 133, 135, 139, 144, 148, 160, 161, 162, 165, 167], "nowadai": [57, 165], "nsign": 149, "nss": [62, 86], "nsuit": 149, "ntlm": [60, 160], "nuanc": 25, "nuisanc": 55, "null": [13, 44, 57, 64, 100, 121, 146, 165, 167], "num_bucket": 45, "num_nucket": 45, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 13, 14, 16, 23, 30, 40, 45, 46, 52, 53, 55, 56, 57, 60, 79, 80, 83, 92, 96, 111, 112, 114, 120, 122, 123, 131, 135, 139, 144, 146, 152, 162, 166, 167], "numer": [44, 57, 84], "numeric_id": 26, "nuri": 149, "nvidia": [3, 4, 5, 6, 7, 9, 11, 98, 100, 102], "o": [23, 25, 57, 79, 86, 90, 121, 127, 130, 135, 140, 146], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 45, "oauth": [29, 86], "oauth2": [62, 86], "object": [11, 14, 28, 37, 42, 43, 56, 62, 79, 86, 111, 123, 129, 146, 156, 165, 167, 168], "objectclass": [79, 80, 146], "objectdata": 167, "objectid": 167, "objectprefix": 57, "objectstor": [45, 86, 132], "objectstore_multibucket": 45, "objecttyp": 167, "obscur": 135, "obsolet": 44, "obtain": [60, 65, 86, 136], "obviou": [55, 162], "oc": [15, 42, 45, 56, 57, 60, 64, 72, 73, 74, 75, 80, 85, 120, 121, 126, 129, 134, 144, 146, 162, 163, 167, 168], "oc8c0fd71e03": 57, "oc_": [19, 57, 125], "oc_act": 22, "oc_activity_mq": 22, "oc_addressbook": 135, "oc_calendar_calendar": 17, "oc_calendar_object": 17, "oc_calendar_share_calendar": 17, "oc_calendar_share_ev": 17, "oc_cards_properti": 135, "oc_carla": 57, "oc_databas": 146, "oc_dav_shar": 116, "oc_dbus": 146, "oc_default_modul": [26, 146], "oc_filecach": [26, 135], "oc_fscach": 17, "oc_log": 17, "oc_mail_messag": 116, "oc_mail_recipi": 116, "oc_media_album": 17, "oc_media_artist": 17, "oc_media_sess": 17, "oc_media_song": 17, "oc_media_us": 17, "oc_molli": 125, "oc_pass": 146, "oc_permiss": 17, "oc_prefer": 81, "oc_privatedata": 17, "oc_queuedtask": 17, "oc_shar": 17, "oc_storag": [26, 81, 135], "oca": [3, 60, 162, 167], "occ": [1, 4, 6, 8, 12, 13, 14, 16, 17, 20, 22, 23, 24, 26, 27, 35, 37, 38, 40, 41, 43, 44, 45, 46, 48, 49, 52, 54, 57, 58, 64, 65, 68, 69, 70, 71, 75, 76, 78, 81, 83, 86, 101, 103, 106, 111, 112, 114, 115, 116, 118, 123, 126, 129, 130, 133, 134, 135, 137, 139, 141, 144, 145, 163, 164, 165, 167, 168], "occ6f7365735": 57, "occasion": [8, 139, 148], "occur": [2, 23, 60, 99, 101, 129, 135, 140, 144, 165], "occurr": 23, "oci": [17, 57, 118, 146], "ocp": [57, 75, 167], "ocsp": 126, "octal": 57, "odd": 129, "odf": [147, 150], "off": [19, 20, 22, 23, 27, 30, 52, 68, 80, 86, 99, 114, 116, 120, 126, 128, 130, 139, 144, 146, 148], "offer": [0, 1, 14, 15, 25, 52, 57, 61, 114, 116, 123, 130, 132, 135, 144, 166], "offic": [2, 14, 39, 44, 48, 55, 113, 130, 148, 151, 152, 153, 154, 156, 157], "offici": [52, 55, 57, 79, 99, 117, 120, 121, 123, 126, 127, 129, 130, 131, 134, 135, 159, 166], "offlin": [79, 96, 111, 112, 140], "offload": [0, 1, 99, 129], "offset": [73, 74, 146], "often": [1, 23, 54, 55, 57, 96, 111, 112, 114, 123, 127, 130, 162, 164, 166], "ogg": [126, 161, 162], "oid": 57, "oidc": 82, "oidc_provider_bearer_valid": 82, "ok": [72, 73, 74, 80], "okai": 139, "old": [1, 14, 17, 25, 41, 57, 79, 86, 91, 134, 135, 139, 144, 146, 160, 165], "older": [1, 4, 14, 26, 41, 46, 49, 57, 67, 83, 95, 96, 127, 129, 133, 135, 141, 144, 145], "oldest": [41, 83], "oldgroup": 74, "oldtim": 56, "ollama": [0, 14], "olmo": 86, "omit": [17, 57, 66, 67, 79, 146], "onbootsec": 54, "onc": [2, 13, 23, 27, 37, 40, 45, 48, 54, 57, 78, 79, 96, 111, 116, 120, 122, 123, 126, 139, 144, 146, 148, 159, 162, 166, 167, 168], "one": [2, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 19, 25, 26, 29, 33, 37, 38, 40, 41, 44, 52, 55, 56, 57, 64, 65, 67, 69, 74, 75, 78, 79, 80, 83, 86, 89, 90, 92, 93, 98, 100, 104, 105, 111, 114, 116, 120, 127, 130, 131, 132, 133, 135, 139, 140, 141, 144, 145, 146, 147, 148, 151, 156, 162, 166, 167, 168], "ones": [17, 50, 56, 57, 75, 90, 130, 139, 141, 144, 156, 162, 166, 168], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 21, 24, 25, 26, 28, 29, 31, 35, 37, 40, 45, 47, 49, 50, 52, 54, 55, 56, 57, 61, 62, 63, 64, 65, 66, 75, 76, 77, 78, 79, 81, 82, 83, 86, 96, 97, 98, 99, 100, 101, 102, 104, 105, 109, 111, 112, 114, 115, 116, 118, 120, 123, 125, 126, 127, 128, 130, 131, 134, 135, 137, 140, 141, 143, 144, 146, 147, 154, 156, 162, 165, 166, 167, 168], "onlin": [29, 57, 86, 116, 117, 120, 130, 140, 145, 149, 150, 151, 153, 154], "onlyoffic": [29, 130], "onunitactivesec": 54, "onward": 64, "ooxml": 86, "opcach": [56, 57, 86, 120, 121, 124, 126, 127], "opcod": [56, 129], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 20, 29, 42, 52, 57, 68, 69, 79, 86, 89, 95, 96, 99, 114, 117, 123, 127, 130, 135, 144, 147, 154], "open_basedir": [23, 123, 127], "openai": [1, 3, 5, 7, 8, 12, 14, 86, 157], "openapi": [57, 167, 168], "openbsd": [86, 124], "opendocu": [57, 129, 147], "opendyslex": 57, "opengraph": 156, "openid": [71, 86], "openldap": [79, 80], "openoffic": [57, 127], "openproject": 2, "openshift": 57, "openssl": [45, 62, 86, 116, 121, 127, 129], "openssl_decrypt": 26, "openssl_encrypt": 26, "openssl_open": 26, "openssl_pkey_export": 26, "openssl_pkey_new": 26, "openssl_s": 26, "openstack": [37, 86], "openstreetmap": [123, 156, 157], "opensus": [131, 146], "opentopodata": 123, "opentyp": 126, "openweathermap": 13, "oper": [3, 6, 8, 19, 21, 23, 25, 42, 47, 52, 54, 55, 57, 64, 67, 78, 79, 81, 86, 92, 96, 104, 117, 118, 124, 129, 130, 131, 132, 135, 139, 144, 145, 147, 148, 166, 167, 168], "opinion": [130, 142], "opportunist": 60, "opt": [14, 26, 37, 57, 91, 114, 120, 125, 132, 146, 165, 167], "opt_binary_protocol": 57, "opt_compress": 57, "opt_connect_timeout": 57, "opt_libketama_compat": 57, "opt_poll_timeout": 57, "opt_recv_timeout": 57, "opt_retry_timeout": 57, "opt_send_timeout": 57, "opt_seri": 57, "optim": [0, 1, 2, 6, 23, 32, 117, 123, 126, 127, 129, 130, 166], "optimis": [6, 11, 135], "option": [0, 1, 4, 12, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 35, 36, 38, 40, 41, 42, 43, 44, 45, 49, 52, 54, 55, 56, 60, 61, 62, 65, 66, 68, 69, 71, 72, 73, 74, 75, 76, 78, 80, 81, 82, 83, 86, 90, 91, 92, 93, 94, 96, 98, 99, 102, 103, 104, 108, 111, 112, 114, 115, 116, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 144, 145, 146, 149, 150, 151, 156, 162, 163, 166, 168], "optout": 86, "oracl": [17, 19, 22, 57, 118, 125, 131, 146], "orang": 14, "orchestr": 99, "order": [0, 1, 13, 14, 19, 20, 22, 40, 60, 68, 78, 79, 98, 99, 114, 123, 130, 131, 137, 146, 147, 166, 168], "org": [52, 57, 65, 74, 77, 90, 96, 123, 126, 130, 167], "organ": [25, 69, 83, 86, 131, 146], "organis": [75, 79, 131, 135], "organiz": [79, 83, 114], "organizationnam": 79, "orient": 127, "origin": [11, 24, 38, 44, 57, 66, 79, 83, 109, 116, 123, 135, 139, 140, 146], "orphan": [135, 146], "otf": 126, "other": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 19, 22, 23, 24, 25, 29, 33, 35, 37, 38, 39, 40, 41, 42, 44, 46, 50, 52, 54, 55, 56, 61, 62, 63, 64, 78, 79, 82, 83, 85, 86, 90, 92, 95, 99, 100, 101, 111, 112, 114, 115, 121, 122, 123, 124, 125, 126, 127, 129, 134, 136, 139, 142, 144, 146, 147, 150, 151, 161, 162, 163, 164, 165, 166, 168], "otherdomain": 57, "otherwis": [16, 20, 23, 54, 55, 56, 57, 66, 79, 98, 104, 108, 111, 114, 126, 129, 130, 135, 140], "ou": [79, 80, 81, 146], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 20, 57, 60, 64, 67, 69, 79, 98, 99, 104, 105, 117, 119, 120, 121, 123, 127, 129, 130, 131, 134, 135, 141, 150, 162, 166], "out": [15, 22, 23, 25, 37, 45, 49, 52, 55, 57, 67, 86, 96, 98, 104, 113, 126, 128, 129, 130, 131, 134, 135, 139, 140, 144, 145, 146, 151, 160, 162, 166], "outbound": [60, 162], "outdat": [57, 62, 86, 111, 112, 120, 143], "outdoor": 2, "outgo": [60, 114, 116, 146], "outlin": [2, 52], "outlook": [60, 86, 114], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 23, 35, 57, 64, 81, 86, 90, 95, 96, 116, 127, 129, 134, 145, 146], "output_buff": 23, "outright": [55, 131], "outsid": [15, 26, 31, 38, 45, 52, 57, 61, 86, 99, 104, 111, 122, 125, 126, 129, 130, 132, 135, 137, 139], "outstand": [2, 7, 146], "ova": 130, "over": [19, 22, 28, 30, 45, 48, 55, 57, 60, 65, 67, 79, 83, 86, 96, 99, 120, 123, 129, 130, 131, 139, 146, 156, 161], "overal": 129, "overcom": 57, "overflow": 37, "overhead": [57, 96, 129], "overlai": 79, "overlap": [35, 166], "overload": 135, "overrid": [23, 24, 28, 43, 57, 60, 62, 75, 79, 80, 86, 89, 90, 92, 99, 100, 146], "overridden": 66, "override_app_host": [99, 100, 102], "overridelocaldir": 89, "overrideserverurl": [89, 94], "overview": [0, 1, 3, 12, 15, 43, 56, 58, 86, 117, 134, 135, 138, 141, 146, 160, 162], "overwrit": [24, 60, 62, 86, 91, 111, 130, 146, 162], "overwritecondaddr": [66, 86], "overwritehost": [66, 86], "overwriteprotocol": [66, 67, 86], "overwritewebroot": [66, 86], "overwritten": [24, 57, 70, 75, 79, 111, 146], "owasp": 165, "own": [0, 1, 3, 4, 14, 15, 23, 24, 25, 26, 37, 39, 40, 48, 50, 51, 55, 57, 60, 61, 63, 64, 69, 83, 90, 91, 96, 104, 106, 111, 112, 121, 125, 130, 135, 145, 148, 162, 168], "owncloud": [27, 64, 67, 86, 96, 135, 137, 138, 143, 146, 167], "owncloud_blacklist_time_max": 92, "owncloud_blacklist_time_min": 92, "owncloud_chunk_s": 92, "owncloud_core_dump": 96, "owncloud_critical_free_space_byt": 92, "owncloud_free_space_byt": 92, "owncloud_max_parallel": 92, "owncloud_timeout": 92, "owner": [19, 40, 104, 105, 108, 116, 120, 146], "ownerid": 167, "ownership": [3, 31, 40, 57, 118, 122, 130, 139, 146], "p": [8, 19, 56, 90, 99, 102, 120, 121, 128, 129, 133, 137, 143, 146, 148], "pacif": 57, "packag": [2, 52, 56, 57, 86, 90, 120, 121, 122, 123, 124, 125, 127, 128, 131, 138, 145, 146, 147, 150, 151, 168], "package_nam": 51, "packet": 19, "pad": 26, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 24, 25, 31, 37, 38, 40, 49, 50, 52, 54, 56, 57, 58, 60, 61, 62, 64, 69, 76, 79, 80, 83, 86, 87, 96, 97, 98, 102, 111, 114, 120, 122, 123, 126, 127, 130, 134, 135, 139, 141, 144, 145, 146, 156, 157, 159, 168], "pagespe": 126, "paid": [144, 145], "pain": 98, "pair": [25, 34, 43, 57, 86, 100, 114], "pan": 168, "pandoc": 39, "pane": [14, 83, 167], "panel": [52, 57, 63, 79, 83, 129, 130], "pant": 60, "paper": 7, "paragraph": [123, 156], "parallel": [14, 19, 23, 57, 67, 92, 98, 129, 135, 167], "param": 167, "paramet": [3, 5, 13, 15, 17, 18, 22, 23, 24, 28, 29, 40, 43, 45, 55, 56, 62, 63, 64, 69, 74, 75, 79, 80, 86, 89, 94, 96, 99, 111, 123, 126, 127, 129, 130, 146, 162, 166, 167, 168], "parameter_nam": 127, "paramount": [14, 79], "parent": [42, 104, 130, 135, 146], "pars": [3, 26, 57], "part": [3, 5, 13, 14, 15, 38, 47, 48, 54, 56, 57, 60, 79, 83, 96, 118, 120, 123, 130, 131, 134, 146, 148, 153, 166], "part_file_in_storag": 86, "parti": [6, 14, 15, 19, 25, 26, 54, 57, 60, 109, 131, 135, 139, 145, 146, 147, 155, 157], "partial": [60, 116, 167], "particip": 111, "particular": [1, 7, 19, 35, 45, 50, 79, 126, 129, 166], "particularli": [55, 166], "partit": [23, 57], "partnership": 150, "pass": [2, 5, 19, 29, 35, 52, 57, 62, 79, 86, 90, 94, 99, 100, 101, 118, 121, 126, 134, 135, 146, 147, 166, 167], "passphras": 26, "passwd": 52, "password": [2, 3, 17, 19, 21, 25, 26, 30, 33, 34, 35, 36, 37, 38, 40, 42, 43, 45, 53, 55, 56, 57, 60, 71, 74, 78, 79, 80, 86, 90, 94, 96, 98, 99, 100, 114, 116, 118, 120, 121, 122, 124, 125, 127, 130, 135, 137, 142, 143, 146, 149, 160, 168], "password1": [21, 57], "password2": [21, 57], "password_argon2_default_memory_cost": 57, "password_argon2_default_thread": 57, "password_argon2_default_time_cost": 57, "password_default": 57, "passwordconfirmationrequir": 57, "passwordsalt": 86, "past": [52, 67, 134], "pasta": 2, "patch": [60, 67, 86, 116, 136, 166], "path": [8, 14, 15, 19, 24, 25, 26, 27, 28, 31, 32, 43, 52, 54, 62, 64, 66, 79, 86, 89, 90, 94, 96, 99, 100, 101, 116, 121, 123, 126, 128, 130, 133, 140, 141, 146, 152, 167, 168], "path_info": 126, "path_to_dir": 146, "pathto": 146, "pattern": [41, 46, 57, 90], "pauvo": 66, "payload": 168, "payment": 0, "pbkdf2": 26, "pc": [19, 139], "pcntl": 127, "pcntl_signal": 127, "pcntl_signal_dispatch": 127, "pdf": [2, 3, 44, 52, 57, 86, 105, 127, 130], "pdo": [19, 57], "pdo_mysql": [19, 127], "pdo_pgsql": [19, 121, 127], "pdo_sqlit": 127, "pecl": [35, 56, 57, 120], "pecl82": 121, "peer": [19, 60, 114], "peertub": [156, 157], "pem": [19, 26, 57, 121], "pencil": 83, "pend": 123, "peopl": [6, 9, 40, 49, 55, 81, 105, 135, 146, 156, 157], "per": [4, 5, 7, 9, 10, 14, 25, 37, 43, 54, 57, 80, 86, 90, 111, 112, 131, 146, 156, 158, 162, 167], "perbucket": 45, "percentag": 166, "perfect": [9, 130, 142], "perfectli": 166, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 20, 22, 23, 25, 29, 35, 42, 44, 52, 54, 55, 56, 57, 64, 67, 79, 85, 86, 90, 91, 94, 96, 98, 99, 102, 106, 116, 123, 124, 125, 126, 127, 130, 131, 135, 140, 141, 144, 145, 146, 151, 164, 165, 166, 168], "period": [37, 54, 55, 57, 79, 83, 84, 108, 111, 112, 114, 115, 131, 139, 145, 146, 166], "peripher": 130, "perman": [25, 26, 40, 46, 57, 66, 79, 83, 120, 123, 146], "permiss": [2, 31, 40, 43, 49, 56, 57, 65, 86, 104, 116, 121, 125, 126, 128, 130, 135, 139, 140, 144, 146], "permit": [50, 57, 123, 126, 146, 166], "persian": 4, "persist": [4, 19, 43, 57, 83, 86, 101, 116, 132, 154], "person": [2, 25, 37, 38, 57, 60, 63, 75, 76, 78, 79, 83, 109, 111, 114, 130, 134, 146, 151, 157], "personnel": 96, "perspect": 14, "pertain": [23, 96], "pg_ctl": [3, 121], "pg_dump": 137, "pg_hba": 19, "pg_user": 19, "pgp": [120, 122, 128], "pgpassword": [137, 143], "pgsql": [3, 17, 19, 53, 57, 118, 146], "pgsql_ssl": 86, "pgvector": 3, "phar": [127, 144], "phase": 144, "philip": 146, "phone": [40, 57, 74, 75, 78, 79, 112, 117, 146], "phonebook": 40, "photo": [15, 24, 28, 79, 86, 94], "photor": 9, "photoshop": 57, "photothumb": 90, "php": [1, 2, 3, 6, 8, 14, 15, 16, 17, 19, 20, 24, 25, 26, 27, 30, 32, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 57, 62, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 85, 86, 96, 98, 99, 111, 112, 115, 116, 118, 122, 124, 125, 128, 133, 134, 136, 137, 139, 140, 141, 142, 144, 145, 146, 154, 160, 161, 162, 163, 165, 167, 168], "php7": 19, "php70": 146, "php74": 120, "php8": 126, "php82_fpm": 121, "php_valu": 23, "phpinfo": [127, 135], "phpredi": [56, 57, 127], "physic": [25, 52, 99, 125, 140], "pi": [57, 130], "pick": [14, 19, 63, 96, 140, 157], "picker": [1, 2, 14, 86, 155], "pickup": [0, 3, 12, 86], "pictur": [44, 79, 127], "ping": [19, 60], "pipe": [57, 116, 146], "pipelin": 60, "pix": 9, "pixel": [44, 57], "pkg": [90, 121], "pkg_add": 121, "pki": 126, "place": [1, 23, 24, 42, 52, 57, 60, 86, 90, 114, 116, 118, 121, 125, 126, 128, 129, 133, 134, 135, 139, 144, 146, 153, 155, 156], "placehold": [26, 29, 57, 79], "plai": [57, 69], "plain": [13, 57, 60, 67, 68, 104, 126, 130, 135, 146], "plaintext": 79, "plan": [2, 8, 22, 79, 122, 127, 130, 131, 145, 166], "planetexpress": 146, "platform": [28, 45, 89, 94, 96, 120, 129, 131, 132], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 19, 23, 37, 44, 52, 54, 55, 57, 63, 65, 67, 75, 79, 83, 96, 104, 105, 112, 115, 116, 117, 120, 123, 129, 130, 131, 134, 135, 139, 141, 144, 145, 154, 162, 166], "plu": 64, "pluggabl": 78, "plugin": [99, 131], "plusserv": [0, 14], "pm": 130, "png": [28, 57, 69, 126], "podman": [3, 130], "point": [6, 14, 15, 19, 22, 23, 29, 37, 40, 43, 55, 56, 57, 58, 86, 98, 104, 111, 112, 125, 130, 131, 135, 140, 144, 145], "poison": 57, "polici": [40, 46, 57, 61, 69, 71, 74, 79, 86, 123, 126, 127, 128, 136], "policycoreutil": 120, "polish": 4, "polit": [1, 13], "poll": 91, "pool": [56, 123, 126, 130], "poor": [5, 9], "pop": 79, "pop3": 60, "popul": [2, 79, 130, 139], "popular": [42, 98, 99], "popup": 114, "port": [8, 17, 28, 30, 34, 42, 45, 52, 56, 57, 66, 79, 80, 86, 90, 91, 98, 99, 100, 102, 120, 121, 123, 129, 146, 147, 153], "portal": [45, 60, 64, 105, 114, 119], "portion": 135, "portugues": [4, 5, 10], "pose": 57, "posgresql": 57, "posit": [6, 11, 26, 55, 57, 162, 166], "posix": [47, 127], "posixgroup": 79, "possibl": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 19, 22, 25, 38, 40, 41, 45, 46, 47, 50, 51, 55, 56, 57, 58, 60, 61, 78, 79, 80, 82, 94, 96, 98, 99, 100, 102, 104, 105, 111, 112, 114, 116, 118, 123, 126, 127, 128, 129, 130, 131, 134, 135, 139, 141, 143, 144, 146, 147, 148, 154, 166, 168], "possibli": [57, 116, 123, 135], "post": [11, 25, 52, 64, 72, 73, 74, 80, 85, 116, 125, 126, 133, 146, 147], "post_allow": 147, "post_max_s": [23, 121, 130], "postaladdress": 79, "postfix": [45, 57, 60], "postgr": [19, 121], "postgresql": [3, 17, 57, 86, 118, 121, 125, 127, 131, 146, 163], "postrgresql": 22, "postscript": 57, "potenti": [22, 37, 49, 55, 57, 64, 129], "power": [3, 5, 6, 7, 9, 10, 13, 57, 104, 126, 130, 140], "powerpoint": 2, "ppa": 90, "ppolici": [79, 80], "ppolicy_hash_cleartext": 79, "ppt": 150, "pptx": [2, 150], "pr": 133, "practic": [44, 116, 123, 140], "pre": [47, 57, 62, 69, 86, 98, 102, 123, 127, 135, 145, 166, 168], "preced": [48, 57, 78], "precis": [45, 79, 97], "precompil": 129, "preconfigur": 104, "predefin": [47, 96], "predict": 166, "prefer": [14, 17, 19, 28, 35, 54, 56, 57, 60, 63, 79, 81, 83, 86, 91, 96, 113, 115, 116, 118, 126, 127, 129, 130, 135, 146, 167], "prefix": [22, 28, 57, 62, 64, 86, 125, 126, 130, 146], "preinstal": 151, "preliminari": 146, "preload": [121, 123, 126], "prem": 14, "prematur": [111, 112], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 14], "premium": 131, "prepar": [14, 86, 98, 124, 130], "prepend": [1, 57, 126, 135, 146], "prereleas": 19, "prerequisist": 38, "prerequisit": [81, 86, 122, 124, 125, 138, 140], "present": [2, 48, 50, 57, 60, 61, 75, 79, 99, 129, 130, 144, 148, 149], "preserv": [0, 1, 4, 40, 83, 120, 129, 139, 143, 146, 150], "preset": 83, "press": [2, 38, 60, 96, 111, 112, 135, 157], "pretrain": 5, "pretti": [65, 86, 122, 124, 126], "prettier": 130, "prevent": [23, 25, 26, 40, 42, 55, 56, 57, 62, 86, 96, 107, 109, 111, 114, 123, 126, 129, 131, 134, 135, 137, 143, 145, 146, 162, 165], "preview": [25, 37, 43, 62, 86, 124, 127, 130, 155], "preview_concurrency_al": [86, 162], "preview_concurrency_new": [86, 162], "preview_ffmpeg_path": 86, "preview_ffprobe_path": 86, "preview_format": 129, "preview_imaginary_kei": [86, 129], "preview_imaginary_url": [86, 129], "preview_libreoffice_path": 86, "preview_max_filesize_imag": 86, "preview_max_i": [44, 86], "preview_max_memori": [44, 86], "preview_max_scale_factor": 44, "preview_max_x": [44, 86], "preview_office_cl_paramet": 162, "previews_hpb": 57, "previou": [8, 19, 37, 40, 79, 86, 99, 116, 134, 138, 143, 144, 145, 152, 168], "previous": [64, 98, 127, 135, 152, 162, 164], "previousvalu": 167, "primari": [1, 22, 23, 28, 43, 55, 69, 79, 80, 86, 141, 145, 146], "primary_color": 69, "princip": [135, 167], "principaluri": 135, "print": [94, 101], "printenv": 130, "prior": [23, 55, 96, 141, 167], "prioriti": [2, 15, 68], "privaci": [0, 1, 4, 14, 57, 61, 67, 69, 86], "privacyurl": 69, "privat": [14, 29, 34, 43, 57, 60, 75, 86, 112, 114, 121, 123, 126, 146], "privatedata": 17, "privatekei": [26, 146], "privileg": [19, 62, 71, 74, 79, 86, 122, 125], "proactiv": 40, "probabl": [45, 79, 126, 149], "probe": 123, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 25, 30, 40, 55, 57, 64, 67, 79, 86, 92, 111, 112, 126, 128, 129, 130, 134, 136, 140, 144, 166], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 55, 144], "proc": [3, 129], "proce": [26, 114, 120, 144], "procedur": [25, 96, 144], "proceed": [25, 139, 145], "process": [2, 3, 5, 6, 7, 8, 13, 19, 23, 25, 35, 48, 54, 57, 79, 81, 86, 90, 96, 98, 100, 102, 113, 120, 123, 126, 127, 129, 131, 134, 135, 139, 144, 145, 146, 167], "processor": 129, "produc": [5, 8, 11, 91], "product": [2, 3, 4, 5, 7, 17, 55, 57, 79, 120, 123, 128, 129, 130, 135, 146], "productnam": 146, "profession": [11, 14, 25, 131, 135], "profil": [37, 40, 71, 82, 86, 112, 123, 128, 162], "profile_en": 146, "profile_enabled_by_default": 75, "profile_secret": 57, "profilepag": 57, "profit": 135, "program": [54, 60, 89, 94, 96, 98, 140, 146], "programm": 79, "programmat": 81, "progress": [13, 25, 41, 46, 52, 57], "project": [2, 45, 82, 86, 122, 134, 166], "promin": [164, 168], "promot": [79, 86], "prompt": [0, 2, 3, 5, 19, 29, 79, 86, 90, 91, 96, 114, 122, 130, 142, 146, 168], "promptdeleteallfil": 91, "pronoun": 146, "proof": 22, "propag": [48, 90], "proper": [55, 57, 65, 86, 129, 134, 135, 144, 162], "properli": [9, 25, 51, 55, 57, 62, 63, 84, 86, 96, 102, 109, 123, 127, 134, 135, 139, 146, 148], "properti": [57, 71, 79, 83, 86, 96, 146, 167, 168], "property_phon": [57, 75], "property_rol": 75, "propfind": [64, 96], "propget": 96, "proprietari": [8, 14], "prospect": 166, "protect": [3, 25, 26, 38, 40, 52, 60, 61, 62, 66, 67, 86, 105, 130, 146], "proto": 60, "protocol": [2, 8, 33, 34, 52, 57, 66, 80, 86, 96, 98, 99, 100, 102, 116, 123, 147, 154], "prototyp": 99, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 19, 22, 25, 26, 28, 29, 31, 33, 35, 37, 39, 43, 44, 45, 47, 52, 53, 56, 57, 58, 62, 64, 65, 66, 67, 69, 71, 72, 74, 79, 80, 83, 86, 90, 96, 97, 100, 111, 112, 114, 120, 121, 123, 126, 127, 129, 130, 131, 134, 135, 140, 142, 146, 147, 150, 151, 155, 160, 162, 163, 164, 165, 166, 168], "provider_id": [78, 146], "providerfactori": 57, "provis": [45, 71, 82, 86, 114], "provisioning_api": [72, 146], "proxi": [2, 15, 45, 62, 67, 86, 90, 91, 100, 102, 103, 126, 130, 149, 150, 151, 168], "proxy_buff": 23, "proxy_connect_timeout": [99, 126], "proxy_hide_head": 66, "proxy_http": 148, "proxy_max_temp_file_s": 23, "proxy_pass": 99, "proxy_protocol": 99, "proxy_read_timeout": 126, "proxy_send_timeout": 126, "proxy_set": [148, 149, 152, 153], "proxy_timeout": 99, "proxy_wstunnel": 148, "proxyexclud": 86, "proxyfcgibackendtyp": 130, "proxypass": 148, "proxypassmatch": 148, "proxypassrevers": 148, "proxypreservehost": 148, "proxytimeout": 23, "proxyuserpwd": 86, "prune": [41, 102, 116], "pseudo": 123, "psql": [19, 143], "pt6h": 111, "public": [2, 15, 19, 34, 37, 40, 43, 55, 57, 60, 67, 72, 75, 79, 83, 86, 99, 102, 104, 120, 121, 123, 126, 130, 146, 150, 156, 157], "public_html": 30, "publiccalendar": 111, "publickei": 26, "publicli": [5, 26, 75, 116, 130, 146], "publish": [2, 57, 75, 99, 150, 166], "pubshare_": 26, "pull": [79, 86, 126, 133, 148, 152, 156, 157, 162], "pure": 3, "purg": 111, "purpos": [17, 40, 45, 46, 54, 55, 57], "push": [111, 123, 134], "pushfe": 123, "put": [20, 23, 25, 57, 60, 66, 73, 74, 79, 80, 116, 121, 125, 129, 130, 135, 137, 139, 140, 145, 146], "putsizelimit": 45, "pwa": 57, "pwd": 99, "px": 69, "px65ty5drhqkype5hrsdvyfhlzzhcm": 125, "python": [3, 120], "q": [19, 60, 146], "q16": 69, "qmail": [57, 62, 86], "qt": 95, "qt_logging_rul": 95, "quali": 123, "qualifi": [38, 60], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 54, 86, 129, 146, 166], "quantiz": [5, 7], "queri": [1, 3, 14, 21, 22, 40, 57, 74, 79, 85, 111, 135, 145, 146, 167], "query_cache_limit": 19, "query_cache_min_res_unit": 19, "query_cache_s": 19, "query_cache_typ": 19, "query_log_fil": 86, "query_log_file_backtrac": 86, "query_log_file_paramet": 86, "query_log_file_requestid": 86, "question": [1, 2, 3, 12, 17, 19, 57, 79, 86, 90, 116, 144, 146, 150], "queu": 49, "queue": [3, 86, 146], "quick": [2, 52, 61, 86, 114, 124, 130], "quickli": [15, 47, 83, 96, 146], "quickstart": [86, 138], "quiet": [41, 46, 52, 146], "quit": [16, 19, 52, 60, 122, 141, 145, 146], "quot": [57, 80, 99], "quota": [23, 25, 41, 46, 57, 71, 74, 79, 80, 85, 86, 136, 146], "quota_include_external_storag": [83, 86], "qwen": 2, "r": [7, 10, 25, 31, 66, 80, 118, 120, 122, 127, 130, 133, 135, 139], "race": [7, 67], "rackspac": 33, "rainloop": [86, 124], "rais": [19, 23, 92, 129, 135], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 129, 131], "ramdisk": 57, "ran": [6, 57, 67, 162], "rand": 45, "random": [26, 45, 79, 116, 123, 125], "random_byt": 26, "randomli": 57, "rang": [45, 55, 57, 64, 66, 86, 98, 99, 104, 124, 145], "rapid": 166, "rapidli": 166, "rare": [25, 28, 45, 57, 143], "raspberri": 57, "rate": [0, 5, 7, 12, 86, 113], "ratelimit": 86, "ratelimit_overwrit": 86, "ratelimitaddressbookcr": 112, "ratelimitcalendarcr": 111, "ratelimitperiodaddressbookcr": 112, "ratelimitperiodcalendarcr": 111, "rather": [15, 29, 32, 38, 42, 57, 60, 79, 126, 135, 146, 162], "ration": 57, "raw": [14, 26, 68, 79, 99, 134, 135], "rc4": 146, "rcctl": 121, "re": [19, 23, 25, 28, 37, 40, 45, 50, 52, 55, 56, 57, 60, 67, 79, 83, 97, 104, 114, 116, 125, 126, 130, 131, 135, 139, 140, 144, 145, 146, 164, 165, 166, 167], "reach": [40, 55, 57, 67, 79, 98, 102, 109, 120, 123, 129, 130, 131, 135, 140, 141, 142, 144, 145, 154, 162, 166, 168], "reachabl": [8, 55, 57, 86, 98, 99, 102, 130, 135, 162], "react": 146, "read": [2, 21, 23, 33, 37, 43, 49, 52, 56, 57, 58, 62, 65, 69, 71, 77, 86, 90, 91, 104, 111, 112, 116, 120, 121, 126, 130, 131, 132, 134, 146, 147, 164, 165], "read_timeout": [56, 57], "readabl": [24, 31, 57, 62, 79, 86, 126], "reader": [17, 146], "readi": [37, 57, 79, 102, 130, 154, 166], "readili": 25, "readm": [3, 82, 98, 99, 102, 121, 130], "readonli": 167, "real": [4, 5, 7, 9, 10, 13, 35, 66, 68, 116, 126, 150, 166], "realiz": [14, 146], "realli": 123, "realtim": 55, "reason": [5, 14, 45, 53, 55, 57, 60, 61, 67, 79, 116, 123, 125, 127, 128, 129, 130, 131, 135, 140, 146, 148, 162, 164, 165], "reassign": 104, "recalcul": 79, "receiv": [14, 38, 40, 50, 57, 60, 66, 79, 82, 83, 114, 120, 131, 134, 145, 166, 168], "recent": [23, 40, 55, 79, 129, 140, 146, 148, 152], "recid": 123, "recip": 2, "recipi": [26, 38, 57, 114, 116, 146], "recogn": [8, 12, 14, 57, 61, 79, 86], "recognis": 29, "recognit": [14, 86], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 14, 19, 23, 24, 25, 27, 35, 36, 37, 39, 42, 49, 54, 57, 61, 62, 65, 66, 67, 79, 86, 96, 98, 99, 104, 116, 121, 122, 123, 124, 125, 126, 129, 130, 131, 134, 135, 137, 141, 142, 143, 145, 146, 147, 148, 151, 155, 160, 161, 162, 164, 165, 166, 167, 168], "recommended": [19, 166], "recommended_fil": 14, "record": [49, 57, 78, 80, 96, 116, 140], "recov": [25, 26, 76, 83, 143], "recoveri": [43, 78, 86, 138, 146], "recoverykey_": 26, "recreat": 143, "recurs": 146, "recv": 60, "red": [14, 37, 38, 56, 96, 130, 131], "redact": [96, 116], "reddit": [156, 157], "redeploi": 3, "redhat": 52, "redi": [23, 42, 62, 67, 86, 124, 127, 132, 146], "redir": 66, "redirect": [57, 61, 65, 66, 67, 69, 86, 98, 102, 114, 130, 135], "redirectregex": 66, "redis_log_fil": 86, "redisclust": [56, 57], "reduc": [5, 7, 57, 79, 86, 92, 116, 124, 135, 166], "reduce_to_languag": 86, "refer": [3, 19, 25, 26, 37, 40, 52, 54, 56, 57, 60, 67, 75, 79, 86, 102, 115, 116, 117, 120, 124, 129, 135, 145, 156, 162, 168], "referenc": [13, 26, 135], "reference_opengraph": 86, "referr": [123, 126], "refil": 56, "reflect": 126, "refman": [57, 131], "reformat": 79, "reformul": 1, "refresh": [56, 79, 86, 142, 146], "regard": [82, 109, 116, 127, 132, 166], "regardless": [14, 28, 40, 45, 57, 79, 146, 166], "regener": 29, "regex": [66, 123, 126], "region": [28, 33, 45, 57], "regionon": [45, 57], "regist": [3, 4, 8, 14, 54, 57, 86, 98, 99, 103, 111, 114, 140, 146, 155, 156, 167, 168], "registr": [54, 114], "registrar": 130, "regress": 131, "regular": [23, 26, 52, 54, 57, 66, 104, 144, 145, 146, 151, 167], "regularli": [14, 49, 54, 92, 130, 145, 146, 166], "reinforc": 5, "reinstal": [3, 135, 141], "reject": 86, "rel": [26, 130, 146], "relat": [3, 12, 14, 23, 51, 52, 55, 57, 64, 73, 74, 79, 86, 96, 98, 109, 112, 116, 124, 127, 129, 130, 132, 133, 140, 146, 163, 164, 165, 166, 168], "relationship": 51, "relax": 57, "releas": [2, 4, 15, 42, 52, 96, 99, 120, 122, 123, 127, 129, 130, 131, 133, 134, 138, 141, 142, 145, 146, 148, 149, 152], "relev": [0, 1, 3, 14, 23, 48, 79, 96, 109, 114, 121, 123, 126, 140, 166], "reli": [14, 49, 82, 115, 131, 155, 157, 166], "reliabl": [13, 35, 52, 54, 56, 67, 79, 127, 131, 135, 139, 140, 150, 154], "reliev": 42, "reload": [37, 61, 120, 129, 130], "remain": [3, 25, 40, 57, 79, 83, 92, 99, 114, 121, 140], "remedi": [57, 112, 135], "rememb": [57, 79, 83, 109, 120, 121, 128], "remember_login_cookie_lifetim": 86, "remi": 120, "remind": [86, 113, 146], "remirepo": 86, "remnant": [17, 57, 79, 81, 86], "remot": [2, 3, 19, 30, 32, 34, 35, 36, 37, 38, 40, 52, 56, 57, 60, 64, 66, 67, 70, 72, 79, 85, 86, 90, 91, 94, 96, 98, 100, 104, 111, 114, 116, 121, 124, 126, 130, 131, 135, 144, 146], "remote_addr": 57, "remoteaddr": [64, 123], "remotedirpath": 94, "remotepollinterv": 91, "remoteport": [99, 100], "remov": [2, 3, 4, 11, 15, 17, 23, 25, 27, 40, 49, 50, 53, 55, 57, 60, 67, 71, 73, 75, 79, 81, 83, 85, 86, 95, 101, 102, 104, 105, 108, 111, 112, 114, 116, 123, 126, 128, 130, 132, 134, 146, 148, 152, 154, 161, 162, 165], "removeus": 146, "renam": [42, 47, 57, 71, 86, 139, 146, 152], "render": [9, 57, 68, 150, 155, 156], "renew": 130, "repair": [2, 20, 25, 48, 57, 86, 139, 145], "repeat": [28, 90, 102, 140], "repeatedli": [6, 123], "replac": [11, 14, 19, 25, 26, 37, 45, 48, 54, 57, 58, 60, 66, 69, 79, 99, 111, 120, 122, 123, 127, 130, 134, 144, 145, 146, 148, 160, 163, 167], "repli": [60, 114, 150], "replic": [0, 1, 14, 18, 22, 86, 146, 157], "replica": [21, 57, 79, 80], "replica1": 57, "replica2": 57, "repo": 149, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 25, 55, 57, 67, 79, 86, 87, 96, 128, 129, 135, 154, 163, 164, 165], "repositori": [12, 26, 52, 55, 86, 90, 91, 120, 152, 156, 157, 166], "repres": [26, 44, 116, 167], "reproduc": 67, "reqid": 64, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 19, 23, 28, 29, 33, 45, 53, 55, 56, 64, 65, 66, 67, 74, 79, 82, 83, 85, 86, 96, 98, 99, 100, 102, 104, 109, 116, 121, 123, 126, 127, 129, 131, 133, 134, 135, 147, 153, 156, 157, 162, 167, 168], "request_checksum_calcul": [57, 165], "request_timeout": [23, 38, 86], "request_uri": 126, "requestreadtimeout": 23, "requir": [1, 12, 14, 15, 18, 20, 23, 25, 26, 28, 29, 30, 33, 34, 35, 37, 38, 39, 42, 45, 46, 47, 51, 52, 53, 54, 56, 57, 60, 64, 67, 69, 72, 74, 78, 79, 80, 85, 86, 90, 94, 96, 98, 99, 100, 102, 114, 122, 123, 124, 125, 126, 128, 129, 130, 134, 135, 139, 140, 143, 144, 145, 146, 147, 148, 151, 152, 154, 166], "rerun": 25, "rescan": [37, 86, 135, 136, 139, 146], "resend": 86, "reserv": [47, 164], "reset": [23, 25, 55, 56, 57, 60, 64, 71, 79, 86, 111, 112, 116, 120, 129, 135, 144, 146, 160], "resetpassword": [76, 86], "reshar": 40, "resid": [19, 99, 128], "resist": 55, "resiz": 79, "resolut": [9, 154, 162], "resolv": [25, 55, 57, 62, 86, 96, 99, 121, 123, 144, 145, 156, 162], "resolveexappurl": 99, "resourc": [0, 1, 7, 10, 14, 26, 40, 44, 48, 54, 57, 69, 86, 98, 112, 113, 116, 123, 124, 130, 135, 139, 142, 168], "respect": [0, 3, 7, 14, 19, 49, 54, 75, 98, 99, 111, 114, 117, 146], "respond": [57, 102, 104], "respons": [2, 13, 26, 62, 86, 99, 123, 126, 135, 144, 156, 165], "response_checksum_valid": [57, 165], "rest": [25, 109, 116, 120, 135], "restart": [3, 5, 7, 11, 14, 19, 20, 52, 56, 96, 99, 120, 123, 126, 127, 129, 130, 135, 139, 148, 149, 167], "restor": [20, 26, 57, 86, 135, 137, 138, 139, 140, 144, 145, 146, 166], "restorecon": [120, 128], "restrict": [3, 15, 30, 37, 40, 57, 65, 74, 80, 86, 104, 107, 108, 111, 112, 116, 124, 135, 146, 161], "restructur": 146, "result": [2, 6, 9, 20, 25, 26, 57, 60, 79, 80, 91, 96, 98, 99, 114, 116, 126, 129, 130, 134, 162, 168], "resum": 168, "resync": 112, "retain": [13, 37, 40, 137], "retent": [46, 57, 86, 105, 107, 113, 146], "retrain": 166, "retreat": 2, "retri": [57, 90, 92, 144, 148], "retriesmaxattempt": 57, "retriev": [2, 26, 56, 57, 66, 73, 74, 79, 80, 86, 146, 168], "return": [23, 25, 26, 38, 54, 55, 56, 57, 60, 62, 66, 72, 73, 74, 79, 80, 86, 99, 111, 120, 121, 126, 129, 130, 135, 156], "reus": 116, "revalid": 86, "revalidate_freq": [121, 129], "reveal": 154, "revers": [25, 57, 62, 67, 86, 98, 99, 102, 130, 133, 149, 150, 151], "reverse_proxi": 66, "revert": [86, 96, 111, 136, 142, 144, 145], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19, 52, 55, 57, 64, 123, 135, 139, 145, 162, 164, 166], "revis": [139, 145], "revisit": [139, 145], "revok": 50, "rewrit": [112, 126, 130, 146, 162], "rewritebas": [86, 130], "rewriteengin": [66, 135], "rewriterul": [66, 135], "rf": 128, "rfc": [57, 78, 123, 146], "rfc6749": 65, "rh": [120, 146], "rhel": 130, "rich": [62, 86, 156], "rich_editing_en": 68, "richdocu": 162, "richdocumentscod": 126, "rid": [44, 146], "right": [1, 22, 30, 37, 56, 57, 60, 74, 79, 83, 86, 111, 126, 130, 139, 144, 162, 167], "rim": 126, "risk": [25, 31, 57, 60, 123, 135, 144, 145, 166], "rm": [101, 143, 148], "ro": 8, "rob": 146, "robbi": 146, "robert": 146, "roberta": 146, "robin": [72, 146], "robot": [123, 126], "robust": [130, 142], "rocm": [98, 100, 102], "role": [75, 79, 83], "roll": 166, "roman": 2, "room": [8, 86, 113], "root": [15, 19, 25, 30, 32, 34, 36, 53, 57, 80, 83, 86, 90, 94, 105, 116, 118, 120, 121, 122, 125, 126, 128, 130, 133, 134, 135, 144, 146], "rootcert": 57, "rosa": 146, "rotat": [4, 86, 127, 146], "rough": [5, 7, 9, 10, 14], "round": 26, "rout": [2, 57, 99], "router": [57, 66], "routin": [146, 166], "row": [19, 20, 37, 116, 131, 146, 164], "row_format": [20, 57], "rowaddedev": 167, "rowdeletedev": 167, "rowid": 167, "rowupdatedev": 167, "rpm": 120, "rsa": [26, 29, 37], "rss": 126, "rsync": [96, 137, 140, 143], "rtrim": 99, "rtx": 98, "rule": [12, 41, 57, 79, 80, 84, 86, 99, 106, 107, 108, 120, 123, 126, 130, 147, 153], "ruleset": 128, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 27, 35, 37, 41, 42, 44, 46, 47, 49, 52, 54, 55, 56, 57, 60, 62, 64, 66, 69, 75, 78, 79, 81, 86, 90, 91, 96, 98, 99, 100, 111, 112, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 143, 144, 148, 149, 151, 154, 162, 166, 167, 168], "runner": 14, "runtim": [80, 131], "runus": 146, "russian": 4, "rv": 128, "rw": 80, "s01": [79, 80, 146], "s02": 80, "s3": [23, 25, 37, 43, 57, 86], "s_time": 116, "sabin": 146, "sabr": [135, 167], "sabredav": [130, 135, 167], "safari": [64, 131], "safe": [14, 16, 17, 25, 56, 57, 60, 65, 120, 122, 126, 127, 135, 140, 144], "safest": 104, "safeti": 61, "sai": [60, 144], "said": 14, "sake": 120, "sale": [15, 69, 146, 150], "salt": [26, 57], "samaccountnam": 79, "samba": [25, 35], "same": [2, 3, 5, 13, 14, 17, 19, 22, 23, 25, 26, 29, 38, 40, 42, 45, 48, 52, 55, 56, 57, 60, 64, 67, 69, 79, 85, 86, 89, 90, 94, 96, 98, 100, 101, 104, 109, 111, 112, 116, 120, 121, 123, 126, 130, 132, 133, 135, 140, 142, 144, 145, 146, 147, 148, 154, 162, 163, 164, 165, 167], "sameorigin": [123, 126], "samesit": 57, "saml": [26, 29], "sampl": [23, 42, 49, 53, 86, 121, 146], "sandbox": 130, "sanit": [43, 86], "sapi": 127, "satisfi": [52, 125, 130], "save": [29, 35, 37, 42, 45, 60, 61, 68, 79, 96, 98, 114, 116, 146], "save_com": [121, 129], "sbin": [57, 60, 130], "scalabl": [45, 129, 130, 142, 150, 151, 154], "scale": [12, 17, 22, 57, 86, 131, 135], "scan": [3, 27, 29, 35, 37, 57, 62, 67, 86, 96, 134, 135, 139, 143], "scanner": [57, 60, 62, 86, 135], "scenario": [8, 14, 19, 25, 45, 49, 57, 87, 123, 132, 143, 151], "scene": 14, "schedul": [2, 8, 13, 14, 52, 54, 57, 62, 79, 86, 111, 113, 115, 145, 146, 167, 168], "schedulecalendartransp": 167, "scheduledaft": 13, "scheduledat": 13, "schema": [17, 19, 22, 132, 141, 144, 146], "scheme": [26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 66, 99], "school": 135, "scl": 146, "scope": [8, 19, 45, 57, 65, 71, 79, 86, 101, 134, 146], "scope_feder": 75, "scope_priv": [57, 75], "score": 5, "scratch": [78, 130, 144], "screen": [38, 53, 60, 76, 77, 86, 130, 144, 146, 168], "screenshar": 131, "screenshot": [24, 61], "script": [14, 45, 54, 56, 57, 86, 118, 124, 129, 146, 147, 167], "script_filenam": 126, "scroll": [38, 83, 111, 112, 114, 144], "sdk": [6, 120, 128, 147, 148, 149, 151, 152, 153, 165], "sdkref": [57, 165], "seal": 86, "sealert": 128, "seamless": 79, "search": [3, 17, 25, 40, 48, 57, 79, 80, 81, 86, 90, 98, 111, 123, 127, 129, 130, 135, 155], "searchon": 90, "sec": [19, 20, 80, 91, 116], "second": [1, 14, 23, 33, 38, 40, 41, 45, 55, 57, 65, 67, 70, 78, 79, 83, 91, 92, 104, 111, 114, 116, 123, 129, 130, 134, 146, 148, 167], "second_admin": 49, "secondari": [37, 78], "secr3tpasswordt7": [45, 57], "secret": [8, 25, 26, 28, 29, 34, 45, 65, 72, 73, 74, 80, 86, 90, 109, 114, 123, 129, 146, 147], "secretvalu": 45, "section": [0, 1, 3, 6, 8, 14, 23, 25, 29, 38, 40, 45, 47, 50, 53, 54, 56, 57, 60, 67, 69, 75, 79, 83, 84, 91, 92, 94, 96, 99, 102, 104, 105, 111, 112, 114, 115, 116, 125, 126, 129, 130, 135, 141, 144, 145, 146, 148, 154, 166, 168], "secur": [8, 15, 19, 25, 26, 29, 30, 31, 36, 38, 42, 44, 55, 60, 61, 62, 66, 78, 84, 86, 96, 100, 111, 116, 120, 124, 125, 126, 127, 128, 130, 131, 134, 135, 141, 142, 145, 148, 166], "see": [0, 1, 2, 3, 4, 7, 11, 14, 15, 19, 20, 23, 24, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 44, 45, 48, 49, 50, 52, 55, 56, 57, 60, 65, 67, 75, 76, 79, 80, 81, 83, 91, 94, 96, 98, 99, 102, 104, 105, 111, 112, 114, 116, 117, 118, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 144, 145, 146, 151, 154, 159, 160, 161, 163, 164, 165, 168], "seed": [56, 57], "seem": [3, 57, 60, 67, 144], "seen": [57, 96, 98, 105, 112, 126, 134, 146], "segment": 23, "segreg": 123, "select": [1, 2, 3, 4, 5, 7, 8, 19, 25, 26, 28, 37, 38, 40, 50, 54, 55, 56, 57, 60, 61, 69, 78, 79, 83, 86, 89, 90, 114, 135, 144, 146], "selector": [86, 168], "self": [0, 1, 2, 14, 30, 43, 57, 86, 96, 99, 114, 130, 146, 160], "selfiephoto": 79, "selinux": [37, 57, 79, 86, 124], "semanag": [120, 128], "semant": 3, "semaphor": 127, "semicolon": 57, "send": [2, 8, 38, 40, 49, 57, 62, 63, 65, 72, 73, 74, 80, 83, 86, 96, 99, 111, 113, 123, 125, 126, 128, 130, 144, 146, 155, 160, 168], "send_timeout": 126, "sendemail": 146, "sender": [60, 114], "sendeventremindersmod": 111, "sendfil": 135, "sendmail": [57, 62, 86, 124], "sens": [22, 49], "sensibl": 44, "sensit": [14, 47, 49, 54, 55, 57, 79, 96, 116, 123, 130, 135, 146], "sent": [57, 60, 64, 79, 99, 109, 111, 114, 116, 146], "sentri": 116, "separ": [3, 5, 7, 9, 10, 14, 19, 22, 23, 38, 53, 57, 58, 60, 64, 79, 80, 96, 102, 129, 145, 146], "septemb": 4, "seri": [156, 157, 165], "serial": 57, "serializer_igbinari": 57, "seriou": 135, "serious": 67, "serv": [3, 5, 7, 23, 57, 60, 67, 79, 86, 104, 124, 130, 140, 147, 148, 162, 163, 165], "server": [0, 1, 3, 4, 5, 6, 7, 12, 14, 15, 16, 17, 20, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 42, 43, 44, 45, 47, 48, 49, 52, 53, 54, 55, 61, 62, 64, 65, 66, 69, 72, 73, 74, 75, 76, 77, 80, 81, 83, 86, 89, 90, 91, 93, 94, 98, 99, 100, 102, 108, 109, 113, 115, 116, 117, 118, 120, 121, 122, 125, 126, 127, 132, 134, 136, 137, 138, 139, 143, 144, 145, 146, 151, 153, 154, 156, 159, 166, 167, 168], "server0": 56, "server1": [56, 125], "server2": 56, "server_address": 90, "server_log": 86, "server_nam": [66, 99, 121, 126], "server_token": 126, "serveraddr": 99, "serverinfo": [56, 135, 162], "servernam": [99, 120, 123, 130], "servernotavailableexcept": 146, "serverport": 99, "serverroot": [15, 57], "serverurl": 94, "servic": [1, 2, 3, 5, 12, 19, 28, 29, 33, 37, 52, 54, 55, 56, 57, 60, 62, 64, 65, 67, 69, 79, 80, 82, 86, 96, 102, 120, 121, 123, 129, 130, 136, 147, 149, 151, 152, 155, 157, 166], "servicenam": [45, 57], "session": [29, 35, 37, 40, 62, 86, 96, 109, 116, 126, 127, 137, 145, 146], "session_keepal": 86, "session_lifetim": [23, 86], "session_relaxed_expiri": 86, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 17, 19, 20, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 37, 38, 41, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 62, 63, 65, 66, 68, 69, 70, 71, 75, 78, 80, 81, 82, 84, 85, 86, 91, 94, 95, 96, 97, 98, 99, 100, 102, 104, 105, 106, 108, 112, 113, 114, 115, 116, 121, 122, 123, 124, 125, 126, 128, 131, 134, 135, 137, 139, 140, 141, 143, 144, 145, 149, 150, 154, 160, 161, 162, 164, 166, 167], "setenv": [123, 130], "setenvif": 130, "setroubleshoot": 128, "setsebool": [120, 128], "settl": 19, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 15, 19, 29, 37, 41, 45, 46, 54, 55, 57, 59, 60, 62, 78, 79, 86, 93, 94, 96, 99, 100, 103, 120, 124, 125, 126, 130, 131, 135, 141, 145, 146, 148, 149, 151, 152, 153, 160, 163, 164, 168], "setupcheck": 86, "sever": [3, 23, 25, 55, 57, 60, 75, 99, 101, 114, 123, 126, 127, 130, 135, 140, 145, 151, 166], "sf": [15, 121], "sftp": [29, 37, 86, 127], "sh": [14, 130, 167], "sha256": [26, 120, 122], "sha256_cert_fingerprint": 51, "sha256sum": [120, 122], "sha512": 26, "shall": [49, 57, 63, 79, 91, 146], "shallow": 146, "share": [3, 19, 35, 37, 42, 49, 56, 60, 62, 67, 79, 83, 86, 96, 98, 100, 104, 105, 113, 117, 121, 123, 128, 130, 132, 136, 139, 143, 144, 147, 149, 150, 157, 167], "share20": 57, "share_fold": 86, "shareapi_restrict_user_enumeration_full_match_email": 40, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 40, "shareapi_restrict_user_enumeration_full_match_userid": 40, "sharebymail": 57, "shared_secret": 57, "sharekei": 26, "sharer": 49, "shares_extern": 146, "sheet": 165, "shell": [14, 20, 54, 57, 146, 167], "shibbol": 147, "ship": [5, 15, 24, 48, 49, 50, 55, 57, 58, 72, 79, 86, 112, 120, 123, 126, 129, 144, 146, 155, 163], "shm_size": [56, 164], "shop": 2, "short": [57, 79, 81, 98, 111, 112, 114, 135], "shortcut": 86, "shorter": [26, 130], "shortli": 108, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 17, 19, 20, 24, 26, 33, 35, 36, 38, 42, 48, 52, 54, 56, 57, 60, 63, 65, 66, 68, 69, 75, 79, 80, 89, 91, 94, 96, 98, 99, 100, 102, 104, 108, 111, 112, 114, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 135, 140, 141, 144, 145, 146, 147, 148, 150, 153, 160, 161, 164, 166, 167, 168], "shouldn": 57, "show": [1, 2, 3, 7, 10, 16, 19, 20, 24, 25, 35, 40, 44, 45, 48, 52, 56, 57, 60, 61, 78, 79, 80, 81, 83, 86, 91, 96, 101, 102, 111, 112, 116, 129, 134, 135, 139, 144, 145, 150, 162], "show_federated_shares_as_intern": 38, "showexperimentalopt": 91, "showexpir": 167, "showmaindialogasnormalwindow": 91, "shown": [23, 29, 40, 44, 65, 69, 79, 86, 91, 123, 126, 127, 129, 134, 135, 139, 144, 145, 146], "showonli": 146, "showpassword": 80, "shutdown": 16, "sick": 2, "side": [28, 37, 43, 45, 57, 60, 79, 83, 86, 111, 123, 125, 126, 129, 135, 144, 146, 162, 164], "sidebar": [83, 97, 168], "siev": 86, "sign": [30, 43, 57, 79, 83, 86, 96, 114, 120, 126, 130, 131, 135, 136, 146, 160], "signal": 4, "signatur": [52, 86, 114, 120, 122, 134, 146], "signific": [8, 31, 42, 129, 134, 166], "significantli": [8, 23, 56, 57, 131, 145], "signup": [2, 57], "silent": [90, 101, 128], "similar": [0, 6, 16, 23, 33, 64, 79, 94, 96, 105, 108, 116, 120, 123, 128, 129, 130, 132, 134, 146], "similarli": [140, 146, 147, 165], "simpl": [17, 48, 57, 86, 105, 130, 142, 146, 168], "simplesignuplink": 86, "simplest": [99, 135], "simplexml": 127, "simpli": [3, 8, 15, 40, 45, 49, 52, 57, 58, 60, 66, 78, 79, 83, 98, 104, 105, 129, 139, 143, 144, 146, 167], "simplifi": 99, "simul": 146, "simultan": [42, 129, 130, 146, 166], "sinc": [2, 5, 14, 15, 17, 25, 29, 31, 54, 55, 56, 57, 60, 96, 104, 106, 108, 121, 126, 131, 141, 144, 146, 152, 162, 164, 166, 168], "singl": [3, 17, 23, 38, 54, 55, 57, 64, 79, 83, 86, 90, 114, 116, 120, 122, 125, 126, 128, 129, 130, 137], "sink": 2, "site": [23, 62, 86, 109, 123, 130, 135], "situat": [3, 5, 7, 45, 55, 57, 66, 92, 96, 120, 123, 129, 135, 146], "sixteen": 166, "sixti": 57, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 25, 26, 40, 43, 56, 57, 60, 79, 83, 86, 91, 92, 96, 98, 104, 121, 123, 126, 136, 139, 140, 146, 160, 167], "sji": 68, "skeleton": [24, 57], "skeletondirectori": [24, 86], "skill": [130, 142], "skip": [3, 53, 54, 57, 62, 79, 86, 89, 92, 94, 100, 116, 145, 146], "skip_name_resolv": 19, "skipapp": 162, "skipauthpickerappl": 65, "sky": 1, "skydriv": 96, "sl": 56, "slash": [30, 48, 96, 135, 167], "slave": [57, 79], "sleep": 57, "slide": 2, "slightli": [5, 26, 55, 101], "slogan": 69, "slot": 2, "slow": [3, 6, 19, 52, 55, 56, 86, 96, 129, 146], "slow_query_log": 19, "slow_query_log_fil": 19, "slower": [54, 55, 151], "sm": 146, "small": [2, 40, 44, 54, 86, 111, 112, 129, 135, 146, 151, 166], "smaller": [5, 7, 23, 57, 144], "smallest": [11, 79], "smart": [1, 2, 14, 86, 114, 155], "smb": [37, 86, 124, 127], "smbclient": [35, 127], "sme": 130, "smili": 20, "smith": 146, "smtp": [57, 62, 86, 124], "sn": [80, 146], "snap": [86, 124, 127, 138, 145], "snapcraft": [130, 142], "snapd": [130, 142], "snapshot": [79, 99], "sni": 67, "sniff": 123, "snip": 54, "snooz": [86, 113], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 17, 19, 23, 24, 25, 26, 27, 32, 35, 37, 38, 40, 42, 45, 47, 48, 49, 52, 55, 56, 57, 60, 65, 69, 74, 76, 79, 81, 82, 83, 97, 98, 99, 100, 104, 105, 108, 111, 114, 115, 116, 120, 121, 123, 125, 126, 127, 128, 129, 130, 134, 135, 139, 141, 143, 144, 145, 146, 149, 152, 155, 162, 166, 167, 168], "sock": [19, 42, 56, 57, 99, 100, 121, 126, 146], "socket": [19, 42, 52, 57, 86, 100, 102, 103, 121, 126, 153], "socks5": 91, "sodium": 127, "softwar": [0, 4, 6, 11, 14, 19, 66, 87, 96, 131, 160], "soldier": 2, "solid": 25, "solut": [1, 14, 23, 40, 66, 96, 114, 117, 130, 134, 135, 140, 150, 152, 154], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 47, 128, 133, 144, 165], "some": [0, 1, 2, 14, 15, 19, 22, 25, 26, 28, 29, 37, 40, 44, 45, 48, 54, 55, 56, 57, 60, 62, 69, 70, 79, 83, 85, 86, 91, 96, 97, 98, 99, 101, 104, 111, 112, 114, 116, 120, 121, 123, 125, 126, 127, 129, 130, 131, 134, 135, 139, 140, 141, 144, 145, 146, 147, 148, 151, 155, 156, 159, 162, 164], "some_secure_password": 100, "some_very_secure_password": [99, 100], "someon": 25, "someth": [2, 3, 13, 38, 40, 57, 79, 98, 99, 126, 129, 134, 141, 154], "sometim": [2, 5, 14, 40, 45, 54, 83, 129, 135, 139, 144, 166], "somewher": [79, 99, 126, 130, 168], "soon": [14, 59, 111, 129, 166], "sooner": 166, "sophist": [55, 96], "sorri": 154, "sort": [57, 127, 151], "sort_groups_by_nam": 86, "sortbi": 57, "sound": 139, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 29, 43, 48, 52, 55, 57, 60, 86, 111, 117, 120, 123, 127, 129, 130, 132, 135, 143, 146, 147, 149, 167], "sourcecalendardata": 167, "sourcecalendarid": 167, "sourcecod": 26, "sourcedir": 90, "sourceshar": 167, "sourceuid": 146, "sovereignti": [0, 1, 4], "space": [4, 23, 41, 46, 47, 57, 79, 83, 86, 96, 124, 135, 146, 164], "spaghetti": 2, "spam": [57, 60, 114], "span": [70, 104], "spanish": [4, 5, 10, 11], "speaker": 7, "spec": 57, "special": [1, 11, 19, 32, 37, 40, 43, 49, 57, 61, 66, 78, 83, 84, 86, 111, 125, 130, 135, 167], "specialis": 48, "specif": [1, 5, 6, 7, 9, 10, 11, 13, 15, 19, 25, 26, 29, 30, 35, 37, 39, 40, 45, 50, 51, 56, 57, 58, 63, 65, 72, 75, 83, 86, 89, 90, 94, 96, 99, 107, 111, 112, 116, 124, 130, 140, 146, 156, 162, 163, 166, 167, 168], "specifi": [1, 17, 19, 22, 28, 29, 30, 33, 35, 36, 45, 48, 53, 54, 55, 56, 57, 64, 66, 72, 74, 77, 79, 80, 81, 89, 90, 91, 92, 93, 95, 96, 99, 111, 123, 126, 129, 130, 134, 146, 147, 148, 167, 168], "speech": [4, 12, 86, 157], "speech_to_text_picker_en": 1, "speed": [3, 6, 12, 79, 86, 96, 98, 126, 129], "speedscop": 57, "split": [18, 21, 86, 158], "spoof": [57, 66], "sporad": 96, "spread": 130, "spreadsheet": [2, 48], "spreed": [4, 8], "sprintf": 99, "sql": [57, 86, 135, 145, 146], "sqlbkp": 143, "sqlbkp_": 137, "sqlite": [17, 22, 86, 118, 124, 125, 131, 132, 135, 146], "sqlite3": [17, 57, 118, 137, 143, 146], "sqlstate": 135, "squeez": 19, "src": [120, 128], "src_path": 101, "sse": [25, 28, 43, 86], "sse_c_kei": 45, "ssh": [29, 34], "ssl": [25, 28, 30, 38, 56, 60, 61, 62, 67, 86, 90, 97, 116, 121, 124, 126, 146, 148, 149, 153], "ssl_certif": 126, "ssl_certificate_kei": 126, "ssl_context": [56, 57], "ssl_stapl": 126, "ssl_stapling_verifi": 126, "sslproxycheckpeercn": 148, "sslproxycheckpeernam": 148, "sslproxyengin": 148, "sslproxyverifi": 148, "sslrenegbuffers": 23, "sso": [29, 57], "ssrf": 123, "stabil": [67, 131, 164, 165], "stabilityai": 14, "stabl": [14, 57, 121, 130, 131, 134, 142, 150, 157, 166], "stable_bas": 52, "stablediffus": 14, "stack": [130, 151], "stage": [118, 166], "stai": [130, 145, 146, 166], "stall": 57, "standalon": [4, 72, 151, 168], "standalone_window": 86, "standard": [17, 45, 53, 56, 57, 64, 66, 79, 87, 90, 111, 120, 123, 130, 131, 135, 139, 140, 146, 163, 164, 165], "staroffic": 57, "start": [3, 13, 14, 15, 19, 26, 27, 35, 49, 51, 52, 54, 55, 56, 57, 58, 63, 64, 79, 95, 96, 99, 111, 116, 120, 121, 122, 124, 129, 130, 135, 139, 140, 142, 144, 145, 146, 148, 152, 154, 162, 163, 164, 165, 167, 168], "start_header_id": 5, "startedat": 13, "startlimitburst": [14, 167], "startlimitinterv": [14, 167], "startpag": [57, 123], "starttl": [57, 80, 86, 160], "startup": [56, 102], "stash": 146, "stat": [1, 3], "state": [25, 57, 60, 78, 90, 116, 123, 143, 146, 167], "static": [26, 57, 66, 123, 126, 148, 161, 162, 163, 168], "statist": [1, 3, 116, 123, 146], "statu": [13, 14, 25, 38, 52, 54, 55, 56, 64, 72, 73, 74, 78, 80, 86, 101, 103, 115, 123, 126, 133, 145, 149, 154, 166, 167], "status": 146, "status_cancel": 13, "status_fail": 13, "status_run": 13, "status_schedul": 13, "status_success": 13, "status_unknown": 13, "statuscod": [72, 73, 74, 80], "stdin": [57, 146], "stdout": [4, 95, 146], "step": [3, 8, 17, 19, 20, 38, 43, 51, 55, 57, 59, 60, 65, 78, 79, 86, 94, 96, 98, 101, 102, 114, 116, 120, 124, 125, 129, 130, 133, 135, 138, 140, 144, 146, 148, 151, 152], "stephani": 146, "stereotyp": 9, "stick": 57, "still": [2, 3, 8, 17, 20, 22, 23, 27, 40, 44, 45, 47, 54, 55, 56, 57, 61, 64, 78, 79, 81, 83, 91, 98, 116, 123, 126, 127, 135, 140, 144, 146, 162, 163, 164, 165, 166], "stolen": 78, "stop": [5, 6, 23, 52, 57, 64, 96, 99, 105, 135, 139, 140, 144, 148, 152], "storag": [3, 26, 28, 30, 31, 32, 34, 35, 36, 41, 42, 43, 54, 57, 62, 71, 79, 85, 86, 96, 101, 105, 125, 127, 128, 130, 131, 132, 136, 146, 149], "storage43": 79, "storageclass": 45, "storagecrawljob": 3, "store": [0, 12, 16, 19, 25, 28, 29, 35, 41, 42, 43, 44, 56, 58, 61, 62, 64, 65, 67, 69, 78, 79, 80, 86, 98, 110, 112, 114, 123, 125, 126, 128, 129, 132, 135, 146, 163, 164, 165], "storecryptedpassword": 86, "str_ends_with": 99, "straight": 89, "straightforward": 51, "strain": 116, "strategi": [20, 45], "stream": [23, 49, 52, 57, 99, 120, 131], "streamable_http": 2, "street": 2, "strengthen": 67, "strict": [13, 55, 62, 86, 126], "strictli": [99, 109, 129, 130], "string": [1, 3, 5, 26, 45, 47, 52, 57, 60, 66, 72, 73, 74, 79, 99, 101, 126, 146, 166, 167, 168], "strip": [65, 130, 146], "strive": 14, "strong": 84, "stronger": 128, "strongli": [57, 61, 67, 96, 129, 130, 131, 166], "structur": [25, 26, 45, 57, 64, 79, 99, 146], "stt_whisper2": [1, 12, 14, 86], "stuck": 139, "studio": 57, "stuff": 102, "stuttgart": 146, "style": [11, 28, 57, 156], "su": [121, 146], "sub": [6, 74, 79, 146, 159, 168], "subadmin": 86, "subdir": [86, 124], "subdirectori": [33, 130], "subdomain": [57, 66, 121, 123, 130, 148], "subfold": [30, 34, 35, 36, 90, 94, 130, 135, 146], "subgroup": 79, "subject": [25, 111, 116], "submiss": [60, 167, 168], "submissionmessag": 167, "submit": [123, 146], "submitcontentjob": 3, "submitmultipl": 167, "subnet": 57, "subpag": 158, "subpath": 99, "subreddit": [156, 157], "subscrib": 111, "subscript": [69, 86, 113, 118, 123, 131, 150, 154, 166], "subsecond": 45, "subsequ": [94, 116, 130, 142, 146], "subset": 40, "substitut": [37, 57, 76], "substr": [57, 99], "succe": [64, 99], "succeed": [14, 144], "success": [16, 17, 38, 55, 57, 64, 72, 73, 74, 79, 98, 120, 121, 123, 135, 139, 144, 146], "successfulli": [13, 38, 57, 76, 94, 102, 131, 144, 146], "suddenli": 3, "sudo": [1, 8, 14, 16, 17, 19, 20, 23, 25, 31, 37, 48, 52, 65, 70, 76, 78, 79, 81, 111, 112, 116, 118, 122, 127, 130, 133, 135, 137, 139, 142, 144, 145, 146, 147, 149, 167], "suexec": 57, "suffer": 11, "suffici": [120, 129, 130, 141], "suggest": [4, 13, 40, 57, 67, 99, 120, 128, 129, 130, 166], "suit": [25, 90, 99, 123], "suitabl": [42, 54, 56, 57, 98, 123, 166], "sum": [120, 122], "summar": [1, 5, 12, 14, 86, 114], "summari": [12, 14, 86, 113, 129, 168], "summary_bot": 8, "sun": 79, "super": [79, 83], "supersed": [57, 146], "superus": 121, "supplement": 57, "supplementari": 130, "suppli": [56, 79, 86, 111, 114, 130], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 22, 25, 27, 28, 34, 35, 38, 39, 42, 43, 47, 50, 55, 56, 59, 62, 63, 65, 67, 69, 70, 73, 74, 78, 79, 80, 86, 89, 90, 94, 95, 96, 97, 98, 99, 100, 102, 104, 111, 114, 116, 117, 118, 120, 121, 123, 125, 126, 127, 128, 129, 130, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 150, 154, 155, 156, 160, 161, 162, 163, 164, 165, 167], "supportedcalendarcomponentset": 167, "supporteddatabas": 86, "suppress": [16, 57, 86], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 22, 23, 25, 30, 31, 35, 38, 40, 45, 55, 56, 57, 63, 65, 68, 75, 79, 81, 96, 99, 104, 108, 111, 116, 120, 121, 123, 126, 129, 130, 131, 134, 135, 139, 140, 141, 143, 145, 146, 148, 154, 160, 161, 162, 163, 164, 166, 167, 168], "surfer": 61, "surnam": 79, "surround": 57, "surveyserv": 123, "surviv": 83, "suse": 131, "suspect": 166, "suspend": 86, "suspici": [14, 54, 57], "sustain": [8, 135], "sv1b7krauqmf8qq": 130, "svg": [44, 57, 69, 126, 129, 130], "swap": [23, 26, 129], "swift": [33, 57, 86], "switch": [12, 15, 57, 75, 79, 86, 90, 112, 116, 123, 146, 151, 168], "symbol": 15, "symlink": [57, 135], "symmetr": 26, "sync": [3, 16, 19, 23, 38, 40, 42, 57, 69, 83, 86, 89, 90, 93, 94, 116, 129, 140, 143, 167], "sync_xxxxxxx": 96, "synchron": [47, 57, 62, 86, 90, 91, 92, 93, 95, 96, 104, 111, 112, 117, 125, 146, 168], "synchronis": [86, 138], "syntax": [48, 54, 57, 72, 73, 74, 79, 80, 131, 146], "sys_nic": 129, "sysadmin": 118, "syslog": [57, 86, 146], "syslog_tag": [64, 86], "syslog_tag_audit": [64, 86], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 17, 19, 20, 25, 29, 40, 41, 42, 43, 44, 45, 46, 47, 48, 52, 54, 55, 56, 57, 60, 64, 67, 70, 75, 78, 79, 83, 85, 86, 90, 91, 96, 102, 106, 109, 111, 113, 116, 117, 120, 121, 122, 124, 127, 128, 135, 139, 140, 141, 147, 155, 156, 166, 167, 168], "system_addressbook_expos": 112, "system_prompt": [5, 13], "systemctl": [14, 52, 54, 56, 120, 148, 149, 167], "systemd": [52, 57, 86, 102, 146, 149], "systempl": 147, "systemtag": [86, 167], "systemtagsmanag": 57, "systran": 7, "sysus": 79, "sysvar_innodb_large_prefix": 57, "sysvsem": [127, 162], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 19, 20, 23, 25, 28, 40, 41, 42, 49, 52, 54, 56, 57, 59, 60, 63, 74, 79, 98, 102, 111, 116, 120, 123, 126, 128, 129, 130, 134, 135, 137, 139, 140, 144, 146, 148, 154, 167], "tab": [86, 146, 168], "tabl": [14, 16, 18, 19, 20, 22, 25, 26, 55, 57, 60, 79, 80, 81, 111, 112, 116, 122, 124, 135, 141, 143, 146, 156, 157, 164, 167], "tableid": 167, "tag": [6, 15, 40, 57, 86, 104, 107, 123, 126, 134, 147], "tagassignedev": 167, "tagid": 167, "tagunassignedev": 167, "tail": [4, 126, 146], "tajik": 4, "take": [3, 6, 16, 19, 23, 26, 29, 38, 44, 52, 53, 54, 55, 56, 57, 67, 78, 79, 80, 82, 83, 91, 96, 99, 100, 118, 121, 123, 126, 129, 130, 134, 139, 140, 142, 144, 145, 146, 164, 168], "taken": [3, 40, 54, 60, 67, 79, 99, 112, 146], "talk": [1, 5, 6, 7, 9, 10, 11, 12, 14, 15, 40, 56, 86, 130, 135, 155, 156, 157, 162, 168], "talk_bot": 8, "talo": 52, "tamper": 25, "tar": [57, 120, 122, 130, 139, 146], "tarbal": [118, 130, 139, 146], "target": [14, 15, 25, 26, 51, 54, 57, 79, 86, 91, 96, 123, 139, 146, 154, 167], "targetcalendardata": 167, "targetcalendarid": 167, "targetchunkuploaddur": [91, 96], "targetshar": 167, "task": [0, 3, 5, 6, 8, 10, 12, 17, 29, 54, 62, 86, 111, 117, 121, 130, 146], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 13, 14, 167], "tb": 83, "tbsua2ue86diod0s8f9j": 64, "tcp": [86, 99, 123, 126], "te": 146, "team": [15, 43, 45, 69, 86, 130, 142, 151], "team1": 74, "teamfoldernam": 45, "technic": [11, 25, 57, 79, 134, 135, 168], "techniqu": 135, "technologi": [14, 67, 130, 142], "telegu": 4, "telephonenumb": 79, "tell": [17, 23, 27, 67, 79, 135, 139], "telnet": 60, "temp": [23, 57, 96, 130], "tempdirectori": [23, 86], "temperatur": 5, "templat": [5, 19, 43, 57, 62, 83, 86, 99, 126, 147, 157], "template0": 19, "template1": [19, 143], "templatedirectori": 86, "temporari": [23, 54, 57, 62, 83, 86, 108, 146, 168], "temporarili": [55, 60, 79, 81], "tempt": 1, "ten": [37, 52, 78, 79], "tenant": [33, 114], "tenantnam": [45, 57], "term": [15, 33, 86, 146], "termin": [6, 25, 67, 122, 130, 149, 153], "terri": 146, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 25, 52, 55, 62, 71, 86, 91, 96, 98, 99, 101, 103, 104, 116, 123, 125, 126, 128, 131, 134, 135, 162, 166], "tester": 104, "testfil": 52, "testgroup": 74, "tex2image_stablediffusion2": 1, "text": [2, 3, 5, 8, 9, 11, 12, 25, 40, 44, 48, 57, 60, 62, 79, 80, 86, 104, 114, 123, 126, 130, 134, 135, 146, 148, 155, 156, 157, 162], "text2image_stablediffus": 14, "text2image_stablediffusion2": [12, 86], "text2speech_kokoro": [1, 12, 14, 86], "text2text": 13, "text_to_image_picker_en": 1, "textbas": 20, "textual": 3, "tflite": 126, "thai": 5, "than": [1, 2, 3, 5, 7, 8, 9, 15, 23, 32, 38, 40, 41, 42, 44, 45, 46, 52, 55, 56, 57, 79, 83, 86, 95, 96, 111, 114, 120, 123, 125, 127, 129, 130, 131, 134, 135, 139, 143, 146, 148, 151, 162, 164, 165, 166], "thank": [66, 166], "theft": 25, "thei": [0, 1, 2, 3, 4, 5, 8, 14, 15, 22, 24, 27, 38, 39, 40, 41, 42, 44, 47, 49, 55, 56, 57, 58, 59, 60, 68, 78, 79, 82, 83, 85, 86, 90, 93, 96, 98, 104, 105, 106, 111, 114, 116, 122, 123, 125, 129, 131, 135, 139, 146, 147, 155, 164, 166], "them": [6, 7, 13, 14, 15, 19, 20, 23, 24, 25, 35, 38, 40, 44, 47, 50, 57, 60, 61, 67, 68, 79, 81, 83, 84, 90, 91, 96, 98, 104, 105, 109, 111, 116, 120, 122, 123, 126, 130, 134, 135, 139, 143, 145, 146, 147, 162, 168], "theme": [61, 62, 86, 137, 139, 143, 144, 146], "themselv": [40, 50, 54, 57, 67, 104, 146], "theori": [5, 9], "therefor": [8, 19, 23, 26, 29, 40, 44, 49, 57, 64, 79, 104, 105, 111, 112, 130, 132, 143, 145, 146, 156], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 74, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 90, 91, 92, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 151, 152, 154, 156, 160, 162, 163, 164, 165, 166, 167, 168], "thing": [14, 57, 78, 123, 130, 137, 143, 144, 166], "think": [33, 135], "third": [14, 15, 19, 25, 54, 76, 131, 139, 145, 146], "thisisanimportantvalu": 57, "thorough": 4, "thoroughli": 5, "those": [6, 14, 15, 22, 23, 24, 25, 29, 35, 40, 44, 45, 47, 49, 52, 57, 61, 65, 66, 67, 69, 79, 83, 96, 105, 109, 111, 120, 123, 126, 127, 131, 134, 135, 144, 145, 146, 155, 166], "though": [36, 40, 52, 56, 86, 91, 123, 126, 130, 134, 146, 162], "thousand": 135, "thread": [4, 7, 10, 14, 57, 86, 113, 135], "threat": [25, 123], "three": [8, 37, 49, 52, 54, 60, 78, 98, 99, 114, 116, 118, 125, 143, 168], "threshold": [55, 86, 92, 114], "throttl": 55, "through": [3, 8, 14, 23, 29, 37, 40, 48, 55, 57, 60, 62, 65, 66, 75, 79, 86, 90, 96, 98, 99, 106, 111, 114, 116, 120, 130, 135, 146, 150, 151, 153, 154, 166], "throughout": [26, 55, 166], "throughput": [7, 10, 57], "throw": 146, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 19, 57, 60, 90, 98, 123, 126, 130, 131, 145, 167], "thumb": 90, "thumbnail": [25, 38, 44, 57, 83], "thumbnailphoto": 79, "thunderbird": [111, 112, 116], "ti": [8, 40], "ticket": [58, 144, 145, 156, 157], "tidewai": 135, "tidi": 146, "tiff": [57, 130], "time": [2, 3, 6, 8, 13, 14, 19, 22, 23, 26, 35, 38, 40, 41, 42, 44, 46, 50, 52, 54, 55, 56, 57, 60, 64, 68, 69, 70, 79, 81, 83, 90, 91, 96, 98, 104, 108, 111, 112, 114, 115, 116, 120, 122, 123, 129, 130, 131, 139, 140, 142, 144, 145, 146, 150, 164, 166, 167, 168], "timeout": [14, 23, 33, 38, 42, 45, 56, 57, 60, 86, 91, 92, 102, 121, 126, 130, 139, 144, 146, 167], "timer": 54, "timestamp": [13, 26, 140, 146, 167], "timezon": [8, 54, 57, 64, 104, 127, 146, 167], "tip": [43, 67, 71, 86, 124, 138, 164], "titl": [1, 2, 79, 156, 167], "tl": [25, 57, 60, 67, 80, 86, 98, 99, 116, 121, 123, 124, 126, 130], "tld": [66, 67, 80, 99, 116, 121, 123, 146], "tld_fullchain": 121, "tld_privat": 121, "tls_reqcert": 79, "tmp": [3, 4, 57, 69, 90, 96, 116, 130, 146], "tmp_table_s": 19, "tmpdir": [57, 130], "tmux": 86, "to_gif_exampl": 101, "tocker": 57, "todai": 13, "togeth": [0, 2, 3, 46, 57, 131, 135], "toggl": [69, 75, 79, 86, 111, 112, 129, 135], "token": [1, 2, 29, 55, 57, 62, 71, 86, 99, 109, 146, 147, 167], "token_auth_activity_upd": 86, "token_auth_enforc": 86, "token_auth_token_retent": 70, "token_auth_wipe_token_retent": 70, "tom": 73, "toml": [66, 99], "tomorrow": 2, "too": [1, 19, 23, 35, 55, 56, 57, 96, 111, 112, 123, 130, 135, 139, 142, 146, 162], "took": 116, "tool": [5, 12, 17, 25, 26, 57, 61, 66, 67, 79, 86, 87, 96, 98, 101, 114, 123, 128, 129, 135, 145], "toolkit": 6, "tooltip": 79, "toot": [156, 157], "top": [1, 15, 37, 57, 60, 61, 67, 83, 135, 144, 145, 157], "topic": [1, 25, 42, 57, 130, 135], "topologi": 168, "total": [6, 26, 33, 57, 79, 83, 85, 146], "totalnumberofsynctokenstokeep": [111, 112], "totp": 78, "touch": [121, 139], "town": 74, "trace": [64, 129], "trace_mod": 19, "track": [96, 111, 112, 116], "traefik": 86, "traffic": [38, 55, 79, 86, 130, 148], "trai": 91, "trail": [47, 146], "train": [5, 6, 7, 9, 10, 11, 14, 54, 57], "transact": [23, 43, 56, 62, 86, 124, 127, 131, 135, 137], "transaction_isol": 19, "transaction_read_commit": 19, "transcrib": [2, 14, 157], "transcript": [1, 7, 10, 12, 14, 86], "transfer": [34, 43, 57, 86, 126, 129, 134, 139], "transferincomingshar": [86, 146], "transient": 129, "transifex": 63, "transit": [57, 130, 135], "translat": [12, 24, 86, 113, 127, 157], "translate2": [1, 12, 14, 86], "transmit": 123, "transp": 167, "transpar": [14, 26], "transport": [2, 62, 79, 86, 96, 99, 114, 126, 131], "trash": [25, 26, 38, 43, 62, 83, 86, 91, 113, 116, 146], "trashbin": [40, 46, 57, 86, 135], "trashbin_retention_oblig": [46, 86], "trashcan": 37, "treat": [57, 66, 67, 79, 135], "tree": [1, 2, 79, 86], "tremend": 96, "tri": [90, 123, 125], "trick": [71, 86, 124, 164], "trigger": [16, 37, 49, 54, 55, 57, 64, 74, 79, 86, 91, 112, 116, 134, 135, 144, 146, 162, 167, 168], "triplecheck": 154, "trojan": 52, "troubl": [79, 135, 162], "troubleshoot": [12, 18, 43, 57, 62, 71, 86, 93, 113, 123, 124, 129, 138, 145, 150], "true": [3, 13, 14, 15, 17, 19, 20, 25, 28, 38, 45, 49, 57, 60, 63, 66, 68, 72, 73, 74, 80, 82, 83, 85, 95, 96, 104, 114, 116, 123, 126, 130, 135, 137, 145, 146, 149, 167], "truena": [86, 124], "truncat": [26, 57], "trust": [25, 43, 55, 57, 62, 65, 75, 86, 90, 114, 123, 124, 146], "trusted_domain": [38, 86, 125, 146, 162], "trusted_proxi": [55, 66, 86], "trustedcafil": 99, "try": [2, 22, 25, 55, 56, 57, 60, 61, 67, 79, 96, 98, 99, 104, 116, 126, 128, 131, 134, 135, 139, 143, 144, 146, 154, 160, 166], "try_fil": 126, "trystack": 57, "ttf": 126, "ttl": [19, 60, 86], "tue": 60, "tune": [5, 86, 123, 124, 126, 127, 130], "tunisian": 4, "tunnel": [98, 99, 100], "turkish": 4, "turn": [23, 48, 57, 68, 80, 86, 91, 114, 130, 144, 146, 166, 168], "turnkei": [127, 130], "turnoffcertcheck": 80, "turnonpasswordchang": 80, "tutori": [117, 120, 121], "tweak": [20, 79], "tweet": 58, "twice": [57, 79, 126], "twitter": [74, 75, 79], "two": [3, 4, 17, 23, 25, 33, 38, 44, 46, 52, 53, 54, 55, 56, 57, 64, 66, 70, 71, 81, 83, 86, 96, 98, 99, 111, 116, 123, 130, 144, 145, 166, 167, 168], "twofactor_totp": 146, "twofactorauth": [78, 146], "txt": [25, 47, 57, 68, 126, 128, 129, 146], "type": [1, 2, 3, 10, 13, 14, 15, 18, 20, 22, 23, 25, 38, 39, 40, 43, 44, 45, 52, 54, 55, 60, 62, 65, 68, 70, 72, 78, 83, 85, 86, 91, 99, 100, 104, 112, 113, 114, 116, 122, 123, 126, 129, 135, 139, 145, 146, 149, 156, 160, 162, 165, 167, 168], "typic": [3, 25, 54, 56, 57, 79, 87, 96, 111, 116, 122, 125, 135, 140, 166], "u": [1, 2, 8, 13, 14, 16, 17, 19, 20, 23, 25, 31, 37, 45, 48, 49, 52, 54, 56, 57, 65, 69, 70, 76, 78, 79, 81, 90, 102, 111, 112, 116, 118, 121, 127, 130, 133, 135, 137, 139, 140, 143, 144, 145, 146, 162, 167, 168], "ubo": 57, "ubuntu": [19, 25, 31, 48, 52, 56, 69, 79, 81, 86, 90, 118, 124, 130, 131, 137, 139, 142, 145, 146, 148, 150, 151], "uc": 130, "udp": 60, "ui": [14, 55, 57, 80, 83, 89, 91, 94, 98, 100, 101, 114, 135, 144, 145, 146], "uid": [26, 78, 79, 80, 81, 116, 146, 167], "uid1": 146, "uid2": 146, "uidn": 146, "ukrainian": 4, "ultim": 55, "umask": 86, "un": [8, 25, 38], "unabl": [45, 57, 60, 63, 79, 86, 92, 146], "unaffect": [57, 92], "unansw": 114, "unauthent": 40, "unauthor": [25, 154], "unavail": [3, 37, 48, 57, 78, 99, 127, 146], "unban": 123, "unchang": 3, "uncheck": [36, 79], "unclear": [7, 10], "uncom": [56, 126, 130], "unconfigur": 45, "undefin": [2, 57], "under": [1, 2, 5, 6, 7, 10, 14, 15, 19, 37, 44, 47, 50, 54, 55, 56, 57, 60, 64, 66, 75, 78, 79, 87, 92, 96, 98, 120, 125, 126, 127, 130, 134, 135, 145, 150, 154, 162, 166], "undergo": 91, "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 47, 55, 57, 60, 127, 130], "underscor": [28, 45, 83, 146], "undershoot": 57, "understand": [1, 8, 11, 13, 25, 53, 57, 132, 135], "undertak": 6, "underutil": 130, "undesir": 57, "undetect": 135, "undo": 83, "unencrypt": [25, 60, 83, 86], "unencrypted_s": 135, "unevenli": [7, 10], "unexpect": [56, 57, 135, 154, 166], "unexpectedli": 57, "unexplain": 130, "unfavor": 162, "unforeseen": 140, "unfortun": 54, "unicod": [57, 135], "unicodepwd": 79, "unifi": [1, 57, 153], "unified_search": 86, "uninstal": [4, 86, 124, 128], "unintend": 91, "uniqu": [45, 57, 58, 61, 79, 83, 98, 99, 100, 101, 123, 135, 146], "uniquememb": [79, 80], "unison": 96, "unit": [14, 54, 114, 146, 167], "univent": 130, "unix": [13, 42, 52, 57, 79, 86, 104, 105, 126, 131], "unix_domain_socket": 99, "unixpath": 99, "unixsocketperm": 56, "unknown": [73, 74, 86], "unless": [25, 26, 28, 45, 52, 55, 57, 60, 79, 90, 99, 114, 127, 130, 135, 146], "unlik": [56, 96], "unlimit": [23, 57], "unlink_on_trunc": 86, "unlock": 25, "unnecessari": [17, 44, 57, 79, 123], "unnecessarili": 54, "unoffici": 142, "unpack": [118, 122, 130, 139, 146], "unpredict": 25, "unreach": 79, "unrecover": 25, "unregist": [8, 86, 103], "unreli": [57, 96, 114], "unrequir": 134, "unscan": [35, 57, 86, 146], "unseal": 86, "unselect": 28, "unset": [57, 79], "unshar": 116, "unsign": 146, "unspecifi": [53, 57], "unstabl": 146, "unsuccess": 57, "unsuccessfulli": 13, "unsupport": [28, 44, 57, 145, 154, 156], "unsur": [3, 23, 126], "unsync": 90, "unsyncedfold": 90, "until": [1, 6, 14, 25, 41, 46, 49, 52, 55, 57, 64, 79, 83, 91, 96, 101, 122, 123, 129, 143, 145, 146, 162, 165, 166], "untouch": 146, "untrust": 123, "unus": [57, 70, 102, 163], "unusu": [1, 129], "unwant": [116, 129, 135], "unzip": [120, 122, 139], "up": [0, 1, 2, 3, 5, 13, 14, 16, 17, 19, 23, 25, 29, 46, 49, 52, 53, 54, 55, 56, 57, 59, 62, 69, 75, 78, 79, 83, 86, 94, 98, 102, 111, 113, 116, 119, 123, 124, 125, 129, 131, 132, 135, 139, 140, 143, 146, 149, 159, 160, 162, 164, 166], "upcom": [58, 111, 166], "updat": [2, 3, 4, 13, 16, 17, 18, 24, 25, 27, 40, 45, 48, 52, 54, 56, 59, 60, 67, 68, 73, 74, 79, 80, 86, 103, 111, 112, 114, 120, 122, 123, 124, 126, 127, 130, 131, 134, 138, 139, 141, 142, 143, 146, 147, 149, 150, 162, 164, 166, 168], "updatecheck": 86, "updatedirectori": 86, "updatenotif": 15, "updater_serv": 57, "upgrad": [20, 27, 48, 60, 66, 67, 86, 121, 122, 129, 134, 135, 138, 141, 148, 150, 159], "upload": [25, 38, 40, 42, 43, 45, 52, 57, 61, 79, 83, 86, 91, 92, 96, 105, 107, 108, 114, 121, 127, 134, 135, 140, 142, 148, 162, 164, 165], "upload_max_files": [23, 121, 130], "upload_tmp_dir": [23, 127], "uploadparts": [45, 57], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 79, 81, 123, 130, 135, 142], "upostgr": 19, "upper": 84, "upscal": [44, 45, 101], "upscaler_exampl": 101, "upstream": [126, 131], "urandom": [62, 86], "urg": 141, "urgent": [2, 58], "uri": [57, 66, 79, 114, 116, 126, 135, 146, 167], "url": [2, 3, 8, 15, 30, 32, 33, 35, 36, 38, 45, 51, 54, 56, 60, 61, 64, 65, 66, 67, 69, 72, 73, 74, 77, 79, 80, 83, 85, 86, 89, 90, 94, 98, 99, 100, 101, 104, 111, 120, 121, 122, 124, 125, 126, 129, 133, 135, 144, 146, 147, 148, 152, 154, 162], "url_discoveri": 66, "urlencod": 85, "urltyp": [45, 57], "urn": [57, 167], "uroot": 19, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 55, 58, 61, 62, 63, 64, 65, 66, 68, 69, 71, 74, 75, 76, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 115, 116, 118, 120, 121, 122, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 145, 148, 151, 152, 153, 154, 155, 156, 160, 163, 164, 165, 166, 167, 168], "usag": [4, 5, 7, 10, 12, 25, 26, 43, 52, 54, 57, 62, 64, 70, 79, 86, 87, 123, 127, 129, 143, 146, 154, 166], "use_legacy_base64_encod": 86, "use_path_styl": 45, "use_ssl": [45, 57], "useappapiauth": 168, "usememberoftodetectmembership": 80, "usemultipartcopi": 45, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 21, 23, 24, 28, 29, 30, 31, 33, 35, 36, 38, 41, 42, 43, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 68, 69, 70, 73, 75, 76, 78, 80, 89, 90, 91, 93, 94, 96, 99, 100, 101, 105, 106, 108, 109, 111, 113, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 130, 131, 132, 134, 137, 140, 142, 143, 144, 145, 147, 150, 154, 155, 161, 162, 166, 167, 168], "user1": 40, "user123": 116, "user2": 40, "user_directori": 146, "user_id": [3, 146], "user_ini_additional_lin": 86, "user_ldap": [79, 80, 81, 146], "user_oidc": 82, "user_prompt": 5, "user_scope_dis": 106, "userag": 64, "userdeletedev": 146, "userdirectori": 37, "userid": [2, 13, 25, 74, 79, 94, 116, 135, 167, 168], "useridfilt": 13, "usermod": [56, 130], "usernam": [3, 17, 19, 26, 29, 30, 33, 35, 36, 37, 38, 40, 45, 53, 55, 57, 60, 74, 76, 79, 80, 83, 90, 94, 96, 112, 120, 122, 125, 130, 135, 137, 142, 143, 146], "userpassword": 79, "usr": [52, 54, 56, 57, 60, 99, 121, 130, 146, 149], "usual": [3, 5, 7, 9, 10, 14, 22, 35, 40, 44, 45, 51, 55, 56, 57, 60, 61, 79, 98, 123, 127, 130, 132, 133, 134, 135, 139, 145, 146, 162, 166], "utc": [54, 57, 115, 146], "utf": 68, "utf8": [19, 57, 121, 131, 143], "utf8mb4": [17, 19, 20, 22, 86, 122, 137, 143], "utf8mb4_0900_as_ci": 57, "utf8mb4_bin": [19, 57], "utf8mb4_general_ci": [20, 122, 143], "util": [6, 8, 50, 57, 64, 116, 120, 146, 166], "uuid": [79, 80, 146], "uusernam": 19, "uz": 87, "uzbek": 4, "v": [8, 14, 26, 35, 52, 86, 99, 103, 126, 127, 135, 146, 167], "v1": [3, 15, 57, 64, 65, 72, 73, 74, 80, 85, 116, 129, 144], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 28, 33, 45, 57, 80], "v27": [139, 145], "v28": [14, 139, 145], "v3": [2, 5, 7, 9, 11, 45, 57], "v4": [28, 104], "v6": 104, "v9": 25, "valid": [19, 47, 57, 63, 67, 71, 79, 80, 86, 96, 126, 134, 146, 148, 162], "valu": [1, 3, 8, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26, 38, 40, 41, 42, 44, 45, 46, 49, 52, 54, 56, 58, 60, 63, 64, 65, 66, 68, 69, 70, 73, 74, 75, 79, 80, 81, 83, 86, 89, 91, 92, 94, 95, 98, 99, 100, 101, 106, 111, 112, 114, 115, 116, 122, 123, 129, 130, 132, 135, 140, 162, 164, 165, 167], "value1": 57, "value2": 57, "vanish": 116, "var": [15, 19, 20, 23, 49, 52, 54, 57, 64, 76, 79, 81, 95, 96, 99, 100, 111, 118, 120, 121, 122, 123, 126, 127, 128, 130, 132, 135, 139, 144, 145, 146], "vari": [3, 4], "variabl": [3, 4, 5, 8, 19, 20, 26, 43, 55, 56, 62, 67, 86, 91, 93, 96, 101, 103, 123, 131, 167, 168], "variable_nam": [19, 20], "variant": 52, "varieti": [1, 68, 168], "variou": [1, 14, 44, 49, 52, 55, 57, 61, 64, 67, 78, 79, 93, 96, 129, 135, 146, 147, 150, 152, 155], "vboxsf": 130, "vcard": [112, 126], "vcf": 112, "ve": [116, 129, 159, 166], "vector": [3, 26, 48, 123, 165], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 166, "vendor": 129, "verbos": [52, 64, 90, 96, 129, 146], "veri": [4, 37, 49, 54, 55, 56, 57, 61, 79, 96, 135, 144, 146, 168], "verif": [55, 60, 62, 86, 116, 134, 146], "verifi": [8, 19, 20, 38, 51, 52, 54, 56, 57, 61, 81, 96, 98, 102, 114, 120, 122, 123, 128, 129, 133, 134, 139, 141, 144, 146, 154, 162, 166], "verify_bucket_exist": 45, "verify_p": 60, "verify_peer_nam": [56, 60], "version": [2, 3, 6, 7, 8, 10, 11, 14, 19, 20, 21, 23, 25, 26, 27, 29, 30, 43, 45, 46, 52, 54, 56, 60, 62, 64, 69, 70, 72, 73, 74, 79, 80, 83, 86, 98, 101, 111, 112, 114, 115, 116, 120, 121, 122, 123, 126, 127, 129, 130, 133, 134, 139, 140, 141, 142, 144, 145, 148, 150, 152, 157, 165, 168], "version_timestamp": 26, "versions_retention_oblig": [41, 86], "versionstr": 146, "vf": 94, "vhd": 130, "vhdx": 130, "vhost": 135, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 24, 37, 40, 41, 43, 45, 46, 52, 54, 55, 56, 57, 60, 62, 65, 66, 69, 71, 78, 81, 82, 83, 84, 85, 86, 94, 96, 97, 99, 104, 111, 114, 116, 118, 123, 124, 126, 127, 129, 132, 133, 135, 138, 140, 145, 146, 147, 149, 156, 162, 163, 164, 165, 166, 167, 168], "video": [2, 14, 44, 57, 86, 127, 131, 156, 157], "vietnames": 4, "view": [1, 4, 15, 17, 55, 57, 64, 83, 86, 96, 135, 146, 150], "viewer": [57, 64], "virtual": [2, 45, 57, 86, 99, 123, 124, 129, 132, 140], "virtualbox": 130, "virtualhost": [120, 121, 123, 130, 148], "viru": [52, 96], "virus": 52, "virus_db": 52, "visibl": [3, 14, 37, 49, 66, 75, 79, 102, 115, 135, 143, 146, 162, 163, 164, 165, 166, 167], "visible\u00b9": 146, "visio": 150, "visit": [54, 104, 114, 117, 120, 130, 142, 144, 145, 168], "visitor": 123, "vm": [129, 130, 145], "vmdk": 130, "vmp": 130, "vmware": 130, "vnd": 126, "vo": 121, "volum": [4, 52, 57, 90, 101, 131], "volunt": 166, "vosk": 4, "vp": [86, 124], "vpn": 99, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 98], "vtt": 126, "vulner": [123, 166], "vv": 146, "vvv": [116, 135, 146], "w": [25, 121, 123, 148, 153], "wa": [7, 8, 10, 13, 14, 17, 25, 40, 47, 54, 55, 57, 64, 69, 74, 79, 91, 98, 108, 112, 114, 115, 116, 127, 130, 134, 135, 140, 141, 142, 143, 144, 145, 146, 162, 163, 164, 165, 168], "wai": [1, 7, 14, 19, 22, 29, 38, 40, 45, 52, 54, 55, 57, 60, 61, 65, 76, 79, 96, 98, 99, 104, 111, 123, 126, 130, 135, 139, 143, 144, 145, 146, 151, 163, 164, 165], "wait": [4, 8, 57, 101, 140, 145, 166, 168], "wait_timeout": [19, 57], "wal": 57, "walk": [120, 130], "want": [5, 6, 7, 14, 15, 17, 19, 23, 28, 31, 37, 38, 40, 42, 44, 45, 48, 49, 52, 53, 55, 56, 57, 59, 60, 63, 66, 69, 79, 81, 82, 83, 89, 93, 96, 98, 99, 102, 106, 112, 114, 117, 120, 121, 123, 125, 128, 129, 130, 131, 132, 133, 134, 135, 144, 145, 146, 148, 154, 155, 159, 165, 166, 167, 168], "wantedbi": [14, 54, 167], "wapp_us": 168, "warn": [4, 25, 56, 57, 62, 64, 78, 79, 86, 96, 120, 123, 126, 129, 130, 134, 135, 141, 142, 146, 154, 164], "wasm": 126, "watch": 146, "watermark": 147, "watsonx": [1, 8, 12, 14, 86], "watt": 2, "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 17, 19, 22, 23, 35, 36, 37, 41, 44, 54, 57, 60, 67, 79, 86, 96, 99, 109, 116, 120, 121, 123, 125, 126, 127, 129, 130, 135, 141, 145, 146, 148, 150, 154, 162, 164, 166, 167, 168], "weaken": 61, "weather": [2, 13, 123], "web": [2, 5, 7, 9, 10, 11, 15, 25, 36, 38, 40, 43, 54, 55, 56, 61, 62, 63, 66, 69, 76, 80, 83, 86, 96, 98, 102, 114, 116, 117, 120, 121, 122, 124, 125, 126, 127, 129, 136, 138, 139, 140, 145, 146, 153, 168], "webauthn": 86, "webcal": [57, 146], "webcalallowlocalaccess": 111, "webcron": [37, 49, 86, 146], "webdav": [23, 32, 37, 57, 67, 72, 79, 86, 96, 116, 123, 126, 130, 136, 146], "webdavf": 57, "webfing": [121, 135], "webhook": [86, 168], "webhook_listen": [167, 168], "webhookcal": 167, "webhooklisten": 167, "webinterfac": 126, "webm": 126, "webmail": 128, "webp": [57, 126, 129, 130, 163], "webp_qual": 129, "webpag": 126, "webroot": [8, 57, 66, 86, 124], "webserv": [23, 24, 54, 56, 66, 86, 120, 123, 126, 130, 131, 151, 165], "websit": [13, 51, 61, 67, 74, 75, 79, 123, 135], "websocket": [62, 86, 98, 148], "webspac": 130, "week": [2, 41, 49, 52, 166], "weekend": 3, "weekli": 49, "weight": 57, "welcom": [86, 117, 146], "well": [0, 1, 2, 3, 4, 5, 6, 14, 26, 40, 44, 51, 52, 55, 56, 57, 60, 62, 66, 79, 83, 86, 92, 116, 120, 121, 126, 128, 129, 130, 132, 135, 139, 140, 142, 144, 146, 154, 159, 166, 167, 168], "went": [139, 146], "were": [2, 13, 17, 25, 38, 57, 60, 64, 91, 115, 127, 134, 135, 144, 145, 146, 162], "west": [28, 45], "wget": [120, 122, 133, 149, 162], "what": [2, 13, 23, 28, 37, 42, 45, 53, 55, 57, 59, 64, 67, 79, 81, 83, 86, 96, 98, 99, 117, 123, 129, 135, 138, 146, 168], "whatev": [17, 40, 57, 126], "whatsoev": [26, 29], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 17, 19, 23, 25, 26, 29, 30, 32, 35, 37, 38, 40, 41, 42, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 60, 63, 64, 66, 67, 68, 69, 78, 79, 80, 82, 83, 86, 89, 91, 92, 94, 97, 98, 99, 104, 105, 108, 111, 112, 114, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 132, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 154, 156, 162, 165, 166, 167, 168], "when_requir": [57, 165], "when_support": 57, "whenev": [40, 129, 135, 166], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 19, 25, 26, 27, 29, 35, 52, 54, 55, 56, 57, 60, 64, 79, 86, 90, 94, 96, 98, 99, 111, 114, 120, 122, 123, 130, 132, 133, 135, 139, 141, 144, 146, 154, 155, 166, 168], "wherev": 93, "whether": [2, 3, 5, 6, 7, 9, 10, 11, 19, 57, 60, 78, 80, 83, 91, 94, 98, 104, 114, 123, 126, 132, 146, 166], "which": [1, 2, 3, 5, 7, 8, 14, 15, 17, 19, 22, 23, 25, 26, 28, 29, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 60, 61, 64, 65, 66, 67, 68, 69, 70, 74, 75, 78, 79, 80, 83, 91, 96, 98, 99, 100, 102, 104, 109, 114, 116, 117, 120, 121, 123, 126, 127, 128, 129, 130, 131, 134, 135, 140, 142, 144, 145, 146, 147, 149, 151, 155, 156, 164, 165, 166, 168], "whichev": 57, "while": [1, 11, 14, 16, 25, 44, 45, 50, 52, 55, 57, 79, 104, 116, 123, 129, 130, 140, 142, 144, 145, 146, 166, 167], "whisper": [12, 14, 86, 157], "whitelist": [15, 55, 125], "whitespac": 146, "who": [3, 13, 25, 28, 31, 35, 40, 57, 79, 112, 117, 118, 135, 146], "whole": [36, 86, 98, 99, 111, 116, 120, 124, 143], "whom": 168, "whose": [146, 167], "why": [61, 86, 116, 146], "wide": [25, 78, 123, 146], "widenetworkaddress": 99, "wider": 98, "widespread": 166, "widget": [58, 155, 156], "width": 57, "wiki": [57, 130, 142], "wikipedia": 57, "wildcard": [57, 90, 146], "win": 52, "windmil": 86, "window": [3, 14, 35, 43, 52, 57, 79, 83, 86, 90, 91, 93, 94, 95, 96, 117, 124, 131, 164, 167], "wipe": 70, "wise": 116, "wish": [19, 25, 34, 50, 56, 57, 64, 83, 96, 111, 125, 168], "within": [19, 26, 29, 40, 47, 51, 55, 57, 64, 66, 67, 79, 91, 96, 100, 111, 112, 123, 126, 127, 131, 132, 134, 135, 139, 146, 166], "without": [4, 6, 14, 24, 25, 26, 37, 40, 41, 46, 49, 50, 52, 54, 55, 57, 65, 67, 68, 70, 79, 83, 86, 89, 95, 97, 98, 99, 100, 105, 111, 112, 114, 123, 125, 127, 130, 135, 142, 143, 144, 145, 146, 150, 151, 156, 160, 162, 163], "wizard": [19, 38, 57, 60, 80, 86, 89, 94, 118, 120, 121, 124, 146], "woff2": 126, "won": [14, 40, 57, 79, 111, 146], "wopi": [86, 148, 149, 154], "word": [7, 48, 127], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 20, 25, 29, 35, 37, 40, 42, 47, 49, 54, 57, 60, 61, 62, 63, 66, 67, 76, 77, 78, 79, 83, 86, 89, 94, 96, 98, 101, 104, 105, 109, 111, 121, 123, 126, 127, 128, 129, 130, 132, 133, 135, 139, 141, 142, 144, 145, 146, 151, 154, 155, 160, 168], "workaround": [23, 25], "worker": [0, 3, 14, 56, 167], "workflow": [62, 86, 105], "workflowengin": [64, 106], "workload": [42, 98, 146], "workspac": [62, 86], "workspace_avail": 68, "world": [1, 4, 5, 7, 9, 10, 99, 166], "worm": 52, "worri": 3, "wors": 57, "worst": [14, 96], "worthi": 55, "would": [3, 5, 13, 14, 15, 19, 22, 25, 37, 44, 50, 54, 55, 57, 64, 66, 79, 90, 92, 98, 99, 102, 111, 112, 116, 126, 135, 140, 141, 143, 144, 146, 152, 162, 167], "wrapper": [60, 146], "writabl": [15, 31, 47, 57, 130, 144, 146], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 21, 56, 57, 60, 65, 79, 86, 95, 96, 114, 120, 124, 130, 134, 144, 146], "writeabl": [15, 123], "written": [3, 26, 27, 57, 64, 75, 94, 98, 112, 116, 123, 125, 140, 146], "wrong": [13, 25, 40, 77, 134, 135, 139, 141, 146, 154, 168], "wsdlcach": 126, "wss": [4, 148], "wurst": 116, "www": [1, 8, 14, 16, 17, 20, 23, 25, 31, 37, 48, 49, 51, 52, 53, 54, 56, 57, 64, 65, 70, 76, 78, 79, 81, 85, 111, 112, 116, 118, 120, 121, 122, 123, 126, 127, 128, 130, 132, 133, 135, 137, 139, 141, 144, 145, 146, 149, 151, 167, 168], "wwwhomepag": 79, "wwwrun": [54, 146], "wysiwyg": 150, "w\u00fcrzburg": 2, "x": [6, 23, 35, 44, 48, 57, 61, 66, 72, 73, 74, 79, 80, 85, 99, 104, 120, 122, 123, 125, 126, 135, 141, 146, 165, 166], "x11": 64, "x86": [4, 6, 11, 129], "x86_64": [3, 4, 5, 7, 9, 10, 11, 64, 90], "xbitmap": 57, "xcal": 146, "xeon": [7, 10], "xeu": [14, 167], "xhtml": 126, "xjf": 139, "xjvf": 122, "xl": [14, 150], "xlii": 80, "xloc": 126, "xlsx": 150, "xml": [57, 86, 101, 116, 122, 126, 127, 146, 147, 149, 152, 167], "xmlreader": 127, "xmlwriter": 127, "xoauth2": [60, 86, 113], "xss": 165, "xtradbinnodb": 57, "xxx": 26, "xxxxxxxxxx": 45, "y": [16, 44, 57, 64, 79, 81, 120, 122, 123, 137, 139, 144, 145], "ye": [14, 35, 40, 57, 69, 79, 80, 83, 94, 106, 111, 115, 135, 141, 146, 154], "year": [70, 131, 166], "yellow": [14, 37, 38, 79, 86], "yet": [1, 3, 14, 50, 57, 62, 65, 79, 86, 134, 140, 157], "yield": 57, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 23, 24, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 75, 76, 77, 78, 79, 81, 82, 83, 84, 86, 89, 90, 91, 93, 94, 95, 96, 98, 99, 101, 102, 104, 105, 106, 108, 111, 112, 114, 116, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 154, 159, 162, 163, 164, 165, 166, 167, 168], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 42, 43, 45, 47, 48, 50, 51, 52, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 68, 69, 75, 76, 77, 78, 79, 81, 82, 83, 84, 86, 93, 95, 96, 97, 98, 99, 102, 104, 109, 111, 114, 115, 118, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [116, 154], "yourself": [5, 52, 123, 146], "yourserv": 96, "yourswifthost": 57, "youtub": [2, 117], "yum": [52, 120], "yyyi": 79, "yyyymmdd": 79, "z": [83, 120, 122, 123, 139, 145], "z0": 79, "za": 79, "zammad": [156, 157], "zend": 56, "zero": 26, "zip": [83, 96, 104, 120, 122, 127, 139], "zlib": 127, "zone": [115, 120], "zsh": 146, "zshrc": 146, "\u00b2": 146, "\u00b9": 146}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "Configuring External Storage (GUI)", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Automatic setup", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for apps", "Instruction set for groups", "Instruction set for users", "Profile configuration", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Command-line Account Setup", "Command Line Client", "Configuration File", "Environment Variables", "Desktop Clients", "Mass Deployment And Account Creation", "Options", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "GDPR-compliance", "Calendar / CalDAV", "Contacts / CardDAV", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Installing from command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 22.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Using the occ command", "Configuration", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [74, 83], "04": [122, 149], "1": 66, "10": 126, "11": 51, "12": 51, "1st": [130, 142], "2": [11, 66, 120, 129], "2006": 19, "2024": 87, "2025": 87, "2026": 87, "22": 122, "24": 149, "26": 160, "27": 161, "28": 162, "30": 163, "31": 164, "32": 165, "3rdparti": 135, "4": 20, "502": 126, "512mb": 23, "64bit": 16, "8": [120, 121], "And": 94, "Not": [25, 134], "The": [55, 65, 67, 80, 157, 168], "To": [1, 7, 10, 14], "__host": 67, "about": 52, "abov": 51, "abus": 114, "access": [3, 19, 65, 67, 104, 123, 126, 128, 147], "accessible_featur": 57, "account": [89, 94, 114, 116], "account_manag": 57, "action": [6, 105, 123], "activ": [49, 55, 57, 79, 163, 164, 165], "ad": [37, 114], "add": [65, 74, 134, 146, 149], "addendum": 5, "addit": [56, 79, 100, 130, 147], "address": [55, 60, 112, 123, 146, 161, 165], "addressbook": 146, "adjust": 23, "admin": [64, 67, 76, 123], "admin_audit": 64, "administr": [50, 79, 83, 112], "advanc": [40, 79, 97, 101], "advantag": 131, "after": [135, 143], "ag": [41, 108], "agent": [1, 2], "ai": [0, 1, 6, 8, 11, 14], "aio": [99, 100], "ajax": 54, "alarm": 111, "alert": 114, "alias": 48, "all": [25, 53, 57, 60, 99, 123, 146], "allow": [37, 67, 111, 128], "allow_custom_share_fold": 57, "allow_disabled_password_enforcement_group": 57, "allow_local_remote_serv": 57, "allow_user_to_change_display_nam": 57, "allowed_admin_rang": 57, "allowed_no_password_confirmation_rang": 57, "allowed_user_ag": 57, "allowselfsignedcertif": 57, "allowsymlink": 57, "altern": [5, 7, 57], "amazon": 28, "an": [60, 65, 67, 72, 82, 146], "android": 51, "ani": 126, "anoth": 40, "anti": 114, "antiviru": [52, 146], "anymor": 134, "apach": [23, 120, 130, 148], "apache2": 66, "apcu": 56, "api": [15, 80, 85], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 25, 49, 52, 55, 57, 58, 60, 64, 68, 70, 72, 86, 98, 129, 131, 133, 134, 135, 146, 147, 148, 163, 164], "app_api": [163, 164, 165], "appapi": [98, 163, 164, 165], "appcodecheck": 57, "appdata": 146, "appear": [69, 156], "appli": 133, "applic": [65, 127], "approach": 145, "approv": 168, "apps_path": 57, "appsallowlist": 57, "appstoreen": 57, "appstoreurl": 57, "ar": 67, "architectur": 131, "archiv": 96, "argument": [100, 101], "around": 19, "arrai": 146, "artifici": [2, 12], "ask": [14, 154], "assetlink": 51, "assign": 105, "assist": 1, "attach": 114, "attempt": 57, "attribut": 79, "audienc": 117, "audit": 64, "auth": 57, "auth_availability_delai": 57, "authent": [29, 35, 70, 78, 79, 82, 114, 146, 168], "author": 60, "auto": 3, "auto_logout": 57, "autocomplet": 146, "autoconfig": 116, "autom": [70, 105, 163], "automat": 53, "avail": [37, 104, 105], "avatar": 79, "avoid": 126, "awai": 19, "azur": [45, 114], "backend": [14, 25, 37, 57, 111], "background": [41, 46, 52, 54, 79, 111, 114, 129, 130, 146], "backtrac": 57, "backup": [25, 45, 79, 137, 143], "bad": [25, 126], "balanc": 55, "bare": 99, "base": [29, 56, 129, 144], "basic": 96, "batch": 144, "bearer": 82, "befor": [25, 40], "below": 51, "beta": 166, "better": 49, "between": [40, 168], "beyond": 60, "big": 23, "bigint": 16, "bin": [46, 57, 111], "binary_search_path": 57, "birthdai": [111, 146], "blob": 45, "block": [26, 104, 168], "blog": 117, "book": [112, 146, 161, 165], "bot": 8, "brand": 69, "breakdown": 64, "browser": 131, "brute": 55, "bruteforc": 57, "bucket": 45, "bug": [135, 166], "build": 168, "built": 144, "bulkupload": 57, "button": 111, "byte": 20, "c": 45, "cach": [56, 57, 67, 79, 127, 129], "cache_app_config": 57, "cache_chunk_gc_ttl": 57, "cache_path": 57, "caddi": 66, "caldav": [67, 111], "calendar": [2, 111, 116, 135, 146], "can": [19, 60, 157, 168], "candid": 166, "cannot": 25, "canon": 147, "capabl": 60, "carddav": [67, 112], "carddav_sync_request_timeout": 57, "carddav_sync_request_trunc": 57, "cento": 120, "certif": [37, 60, 79, 87], "chang": [38, 59, 135, 159], "changelog": 159, "channel": [57, 166], "chat": [1, 3, 8, 14], "check": [26, 27, 67, 102, 146, 162, 165], "check_data_directory_permiss": 57, "check_for_working_htaccess": 57, "check_for_working_wellknown_setup": 57, "choic": 125, "chroot": 121, "chunk": [23, 164], "chunked_upload": 57, "cif": [35, 128], "cipher": 57, "circl": 2, "clamav": 52, "clean": [70, 163], "cleanup": [81, 146], "cli": [57, 69, 100, 127], "client": [69, 90, 93, 96, 131, 143], "close": 96, "cloud": [23, 57, 135], "clue": 126, "cluster": [56, 57], "code": [57, 134, 146], "collabor": 108, "collabora": [147, 148, 152], "collat": 57, "com": 116, "combin": 2, "command": [3, 15, 19, 25, 47, 55, 89, 90, 96, 112, 118, 144, 146], "comment": [57, 129], "commit": [19, 67], "common": [104, 108, 135], "commun": 99, "comparison": 25, "compat": [47, 146], "complianc": 110, "compress": 129, "condit": 57, "config": [56, 57, 60, 96, 123, 146], "config_is_read_onli": 57, "configur": [1, 3, 5, 18, 19, 23, 37, 38, 44, 45, 49, 51, 52, 53, 56, 57, 58, 60, 61, 62, 64, 67, 69, 75, 79, 80, 86, 91, 99, 106, 114, 123, 124, 126, 127, 128, 130, 146, 147, 148, 149, 152, 160, 161, 162, 163, 164, 165], "confirm": 52, "connect": [56, 79, 82, 96, 116, 123], "connectivity_check_domain": 57, "connector": 127, "consequ": 47, "consider": [29, 65], "consumpt": 87, "contact": [2, 112, 116, 135], "contain": [99, 102], "content": 86, "context": [1, 2, 3, 14], "context_ag": 2, "control": [3, 41, 104], "convers": [17, 39, 146], "convert": 17, "cookbook": 2, "cooki": [67, 109], "cookie_domain": 57, "copied_sample_config": 57, "core": [57, 96], "correct": 168, "count": [163, 164, 165], "cpu": 131, "creat": [19, 38, 40, 51, 73, 80, 83, 96, 146, 168], "creation": [94, 146], "credenti": 90, "critic": 159, "cron": [54, 121, 129], "csrf": 57, "css": 126, "csync": 96, "current": 2, "custom": [2, 15, 111, 147], "customclient_desktop": 57, "daemon": [98, 99, 100, 102], "dashboard": 58, "data": [3, 25, 45, 53, 57, 73, 74, 111, 112, 116, 123, 125, 135, 143], "databas": [17, 18, 19, 22, 53, 57, 67, 116, 120, 121, 125, 127, 128, 131, 137, 143, 146, 164], "datadirectori": [57, 135], "date": 40, "dav": [146, 160], "davstorag": 57, "db": 57, "dbdriveropt": 57, "dbhost": 57, "dbname": 57, "dbpassword": 57, "dbpersist": 57, "dbreplica": 57, "dbtableprefix": 57, "dbtype": 57, "dbuser": 57, "debug": [13, 57, 60, 96, 123, 129, 135, 146], "deck": 2, "declar": 88, "decreas": 35, "decrypt": [25, 26], "dedic": 123, "deep": 51, "default": [24, 40, 57, 63, 68, 99, 114, 147, 163, 164], "default_certificates_bundle_path": 57, "default_languag": 57, "default_local": 57, "default_phone_region": 57, "default_property_scop": 57, "default_timezon": 57, "defaultapp": 57, "defin": 66, "definit": 25, "delai": 35, "deleg": [50, 114], "delet": [46, 57, 73, 74, 80, 81, 83, 146], "demot": 74, "deni": 104, "deploi": [97, 98, 99, 100, 101, 102], "deploy": [56, 94, 99, 119, 123], "deployconfig": 100, "deriv": 26, "desktop": [57, 93, 131], "detail": 26, "detect": 6, "determin": 60, "dev": [67, 123], "diagnost": 57, "did": 134, "differ": [45, 60, 140], "directori": [15, 53, 56, 79, 123, 125, 128, 135, 146], "disabl": [25, 44, 52, 57, 67, 68, 72, 74, 78, 83, 101, 114, 123, 135, 146], "disallow": 128, "discoveri": [66, 135], "disk": [6, 92], "dispatch": 167, "displai": 38, "distinguish": 40, "distribut": [57, 152], "dmz": 123, "do": [134, 144, 156], "docker": [98, 99, 148, 152], "document": 14, "documentation_url": 57, "doe": [67, 144, 156], "domain": [59, 60, 66, 116, 123, 125, 135], "down": 134, "downgrad": 166, "download": 102, "drop": [40, 131], "dump": 96, "duplic": 79, "dure": 145, "edit": [68, 73, 74, 147], "email": [49, 60, 74, 160], "embed": [57, 61], "empti": [67, 146], "enabl": [15, 20, 25, 37, 47, 49, 52, 57, 58, 60, 72, 74, 78, 83, 101, 102, 123, 128, 129, 130, 146, 147, 165], "enable_lazy_object": 57, "enable_mail_link_password_expir": 57, "enable_non": 57, "enable_preview": 57, "enable_share_accept": 57, "enable_share_mail": 57, "enabledpreviewprovid": 57, "encod": [68, 135], "encrypt": [25, 26, 27, 45, 57, 60, 129, 130, 135, 146], "end": [6, 166], "energi": 87, "enforc": 78, "enforce_them": 57, "ensur": 123, "entri": 64, "envelop": 26, "environ": [57, 92, 97, 130, 146], "error": [19, 25, 96, 126, 134, 135], "errorlog": 64, "establish": 17, "ethic": [6, 8, 11, 14], "even": 60, "event": [111, 116, 146, 167], "everyth": 52, "exampl": [53, 55, 57, 64, 66, 72, 73, 74, 80, 90, 100, 104, 105, 108, 111, 112, 120, 121, 122, 146, 148, 149], "exapp": [98, 99, 101, 103], "exclud": [49, 55, 90], "execut": 105, "expand": 165, "experi": 57, "expert": 79, "expir": [40, 49], "explain": 64, "export": [111, 116, 146], "expos": 161, "extens": [68, 87], "extern": [25, 29, 37, 45, 49, 61, 98, 104, 130, 135, 146, 147], "external_storag": 57, "face": 6, "factor": [44, 78, 146], "fail": [116, 126], "fail2ban": 123, "failur": 35, "fair": 135, "faq": [98, 134, 168], "faster": 129, "featur": [14, 115], "feder": [23, 38, 57, 111, 135, 146], "field": [64, 74], "file": [2, 3, 23, 24, 25, 26, 27, 35, 37, 39, 40, 41, 42, 43, 52, 57, 64, 67, 68, 86, 91, 96, 104, 105, 108, 126, 129, 131, 135, 146, 147, 162, 163], "filelock": 57, "filenam": [47, 146], "files_external_allow_create_new_loc": 57, "files_no_background_scan": 57, "filesystem_cache_readonli": 57, "filesystem_check_chang": 57, "filter": [13, 123, 167], "final": 121, "find": [19, 60], "fingerprint": 57, "fix": 134, "flow": [106, 107], "folder": [25, 104, 137, 143], "follow": 114, "font": 147, "forbidden_filenam": 57, "forbidden_filename_basenam": 57, "forbidden_filename_charact": 57, "forbidden_filename_extens": 57, "forc": [55, 57, 63], "force_languag": 57, "force_local": 57, "force_share_accept": 57, "form": 2, "format": [26, 27, 57], "forwarded_for_head": 57, "found": 25, "fpm": [129, 130], "freebusi": 111, "frequent": [14, 154], "from": [45, 49, 55, 60, 74, 118, 141, 152], "front": 6, "frontend": 14, "ftp": 30, "fulli": 5, "function": 96, "further": [25, 127], "fusef": 128, "g": 57, "gatewai": 126, "gdpr": 110, "gener": [9, 14, 19, 26, 44, 123, 127, 135], "genr": 6, "get": [13, 40, 52, 60, 72, 73, 74, 86, 116, 146], "getenv": 67, "give": 123, "global": [68, 116], "gone": 19, "googl": 114, "gpg": 128, "grant": 83, "greater": 126, "green": 6, "group": [25, 37, 73, 74, 79, 83, 104, 146, 147], "groupfold": 49, "groupwar": [86, 113], "gui": 37, "guidanc": 123, "ha": 19, "handl": [51, 79, 90], "handler": [56, 126], "haproxi": 66, "harden": 123, "harp": [98, 99], "has_internet_connect": 57, "hash": 57, "hashing_default_password": 57, "hashingcost": 57, "hashingmemorycost": 57, "hashingthread": 57, "hashingtimecost": 57, "have": 67, "header": [67, 123], "heartbeat": 102, "hidden": 35, "hide": 111, "hide_login_form": 57, "hierarch": 146, "home": 56, "host": [15, 99], "how": [19, 55, 60, 145, 156], "htaccess": [57, 130], "http": [67, 123, 129, 130], "httpd": 121, "i": [14, 19, 52, 60, 67, 123, 134, 163, 164, 168], "ibm": 0, "icap": 52, "icon": [48, 69], "id": [13, 116, 135], "ident": 82, "identifi": [16, 96], "ignorefrontcontrol": 57, "imag": [1, 9, 14, 44, 79, 102, 123, 152], "imagick": 120, "imaginari": 163, "imap": [114, 116], "implement": 2, "implic": 45, "import": [146, 149], "improv": [0, 1, 14], "inconvert": 17, "index": 3, "indic": 146, "info": [52, 72, 146], "inform": 135, "ini": 127, "init": 102, "initi": [3, 22, 87], "insecur": 96, "insert": 116, "insight": 13, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 52, 57, 86, 90, 98, 118, 120, 121, 122, 123, 124, 125, 127, 130, 142, 146, 148, 149, 151, 166, 167, 168], "instanc": 123, "instanceid": 57, "instead": 129, "instruct": [72, 73, 74], "integr": [0, 64, 67, 79, 134, 146, 165], "intellig": [2, 12], "interact": 64, "interfac": [47, 64, 112, 114, 128], "intern": [79, 135], "interv": [79, 114], "introduct": [50, 55, 57, 117, 123], "invalid": [25, 47, 60, 134], "invis": 105, "invit": 111, "ip": [55, 123], "ipv6_normalized_subnet_s": 57, "isol": [19, 67, 96], "issu": [96, 116, 135, 136], "item": [46, 57, 112], "j": 126, "jail": 123, "javascript": [126, 146], "jit": 129, "job": [41, 46, 54, 111, 121, 129, 130, 146], "journal_mod": 57, "jpeg": 44, "json": 51, "keep": 60, "kei": [25, 26, 29, 80, 149], "keyboard": 96, "knowledgebas": 57, "knowledgebaseen": 57, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 67, 111, 156, 157], "l10n": 146, "languag": [5, 63], "larg": [5, 23], "lastseen": 146, "ldap": [25, 57, 79, 80, 81, 128, 146], "ldap_log_fil": 57, "ldapusercleanupinterv": 57, "length": [123, 166], "level": [19, 64, 67, 129], "libreoffic": 162, "life": 166, "limit": [2, 3, 5, 6, 7, 8, 9, 10, 11, 25, 51, 111, 112, 114, 123, 146], "line": [89, 90, 96, 112, 118, 144, 146], "link": [38, 40, 51, 57, 61, 156], "linux": 130, "list": [13, 72, 74, 79, 90, 100, 101, 146], "listen": [60, 167, 168], "live": 4, "live_transcript": 4, "llm": 114, "llm2": 5, "load": [3, 55, 57, 79, 129], "local": [5, 7, 9, 10, 11, 31, 57, 63, 81, 99, 111, 114], "localstorag": 57, "locat": [26, 56, 57, 125], "lock": [42, 57, 67, 129, 134], "log": [3, 4, 57, 64, 79, 96, 102, 116, 126, 129, 135, 146], "log_queri": 57, "log_request_id": 57, "log_rotate_s": 57, "log_typ": 57, "log_type_audit": 57, "logdateformat": 57, "logfil": [57, 135], "logfile_audit": 57, "logfilemod": 57, "login": [55, 65, 79, 126, 130, 142], "login_flow_v2": 57, "login_form_autocomplet": 57, "login_form_timeout": 57, "loglevel": 57, "loglevel_dirty_database_queri": 57, "loglevel_frontend": 57, "logo_url": 57, "logtimezon": 57, "long": [131, 145], "look": 60, "lookup_serv": 57, "loop": 126, "lost": 76, "lost_password_link": 57, "low": 92, "lt": 122, "machin": [1, 11, 14, 130], "maco": 96, "magic": 168, "mai": 165, "mail": [57, 60, 114, 116], "mail_domain": 57, "mail_from_address": 57, "mail_link_password_expiration_interv": 57, "mail_send_plaintext_onli": 57, "mail_sendmailmod": 57, "mail_smtpauth": 57, "mail_smtpdebug": 57, "mail_smtphost": 57, "mail_smtpmod": 57, "mail_smtpnam": 57, "mail_smtppassword": 57, "mail_smtpport": 57, "mail_smtpsecur": 57, "mail_smtpstreamopt": 57, "mail_smtptimeout": 57, "mail_template_class": 57, "mailbox": 114, "mainten": [57, 86, 137, 138, 145, 146, 166], "maintenance_window_start": [54, 57], "major": 166, "make": 5, "manag": [15, 25, 43, 48, 52, 71, 83, 100, 101, 103, 127, 130, 146, 155], "managerfactori": 57, "mandatori": 134, "manual": [8, 52, 116, 130, 139, 145], "map": [48, 79], "mariadb": [19, 129, 131, 137, 143], "mark": 52, "mass": 94, "master": 26, "max": [40, 57], "max_file_conversion_files": 57, "max_filesize_animated_gifs_public_shar": 57, "max_parallel_count": 57, "max_siz": 57, "maxautocompleteresult": 57, "maximum": [44, 57, 130, 164], "mcp": 2, "mechan": 29, "media": [127, 130], "member": 73, "memberof": 79, "memcach": [56, 57, 128], "memcache_customprefix": 57, "memcached_opt": 57, "memcached_serv": 57, "memori": [44, 56, 57, 131], "merg": 57, "messag": [96, 126, 134, 135], "metadata_max_files": 57, "metal": 99, "method": 25, "mib": 126, "microsoft": [45, 79, 114], "migrat": [22, 27, 114, 140, 141, 145, 152], "mimetyp": 48, "minimum": 57, "minsearchstringlength": 57, "misc": 146, "miscellan": 2, "misconfigur": [104, 108], "miss": [116, 146], "mobil": 131, "mod_fcgid": 23, "mod_proxy_fcgi": 23, "mode": [25, 60, 123, 129, 137, 144, 145, 146], "model": [2, 5, 7, 11], "modifi": [57, 60, 69, 80], "modul": [120, 123, 127, 135], "monitor": [162, 163, 164, 165], "mount": [37, 97], "mount_fil": 57, "mountpoint": 25, "move": [135, 146], "multibucket": [45, 57], "multilingu": 5, "multipl": [57, 66], "music": 6, "my": [14, 19, 60], "mysql": [19, 20, 53, 57, 116, 129, 131, 137, 143], "name": [67, 135], "nc": 99, "need": 165, "nest": 79, "network": [111, 128], "new": [38, 74, 83, 147], "next": 122, "nextcloud": [1, 2, 4, 23, 32, 38, 49, 51, 52, 56, 57, 58, 62, 69, 79, 81, 82, 96, 99, 100, 109, 120, 121, 123, 126, 133, 134, 135, 139, 147, 148, 160, 161, 162, 163, 164, 165, 167, 168], "nginx": [23, 66, 126], "no_unsupported_browser_warn": 57, "non": 135, "nor": 126, "note": [56, 79, 86, 121, 127, 133, 158, 159], "notif": [15, 35, 40, 111, 145], "notify_push": 68, "now": [163, 164], "nss": 67, "o": 131, "oauth": 114, "oauth2": 65, "object": [6, 23, 33, 45, 57], "objectstor": 57, "obtain": [96, 133], "occ": [3, 15, 25, 47, 55, 79, 100, 146], "off": 79, "offic": [86, 115, 147, 150, 162], "old": [27, 131], "olmo": 5, "one": [60, 99], "onli": [60, 67], "onlin": [147, 148, 152], "ooxml": 147, "opcach": 129, "open": [5, 134], "openai": 0, "openbsd": 121, "openid": 82, "openssl": [57, 67], "openstack": [33, 45], "oper": [123, 146], "option": [3, 37, 57, 64, 79, 95, 97, 100, 101, 120, 147], "optout": 57, "organ": 56, "other": [14, 57, 96, 116, 130, 135], "out": [19, 60, 115], "outdat": 67, "outlook": 116, "output": [72, 73, 74, 80], "outsid": 123, "over": 56, "overrid": [45, 64], "overview": [14, 25, 55, 130, 139, 145, 166], "overwrit": [57, 66], "overwritecondaddr": 57, "overwritehost": 57, "overwriteprotocol": 57, "overwritewebroot": 57, "owncloud": 141, "packag": [130, 142, 149, 152], "page": [55, 67], "pair": 26, "paramet": [19, 44, 53, 54, 57, 60, 66], "part_file_in_storag": 57, "pass": [67, 168], "password": [29, 70, 76, 77, 83, 84, 123, 163], "passwordsalt": 57, "patch": 133, "path": [37, 57, 67, 135], "pdf": 163, "per": [45, 79, 116], "perform": [0, 45, 129], "permiss": [37, 79], "persist": 40, "pgsql_ssl": 57, "photo": 6, "php": [23, 56, 60, 67, 114, 120, 121, 123, 126, 127, 129, 130, 131, 135, 164], "picker": 157, "pickup": [1, 14], "place": 123, "point": 25, "polici": [84, 135], "port": 60, "postgresql": [19, 53, 137, 143], "pre": 65, "prefer": 114, "prefix": 67, "prepar": 127, "prerequisit": [123, 130, 145], "pretti": 130, "prevent": [61, 104], "preview": [44, 57, 123, 129, 146, 147, 156, 162, 163, 164, 165], "preview_concurrency_al": 57, "preview_concurrency_new": 57, "preview_ffmpeg_path": 57, "preview_ffprobe_path": 57, "preview_imaginary_kei": 57, "preview_imaginary_url": 57, "preview_libreoffice_path": 57, "preview_max_filesize_imag": 57, "preview_max_i": 57, "preview_max_memori": 57, "preview_max_x": 57, "previou": 139, "primari": 45, "privaci": 112, "privat": [15, 25, 26, 56], "privileg": [50, 83], "problem": [96, 116, 135], "process": [1, 14, 114, 130], "profil": [57, 75, 79, 146], "project": 57, "promot": 74, "prompt": 14, "proper": 123, "properli": [67, 126], "properti": [75, 112], "protect": [55, 57, 165], "protocol": 60, "provid": [14, 24, 60, 78, 82, 156, 157], "provis": 85, "proxi": [55, 57, 66, 98, 99, 148, 152, 153], "proxyexclud": 57, "proxyuserpwd": 57, "public": [26, 29, 38, 108, 111], "pull": 102, "qmail": 60, "qualiti": 44, "query_log_fil": 57, "query_log_file_backtrac": 57, "query_log_file_paramet": 57, "query_log_file_requestid": 57, "question": [14, 154], "queue": 52, "quick": [125, 127], "quickstart": 142, "quota": [83, 135], "quota_include_external_storag": 57, "rainloop": 128, "rang": 123, "rate": [6, 8, 11, 14, 57, 111, 112], "ratelimit": 57, "ratelimit_overwrit": 57, "reachabl": [19, 60], "read": [19, 25, 26, 67, 79, 80, 123], "readabl": 67, "recogn": 6, "recognit": 6, "recommend": [56, 119, 127], "recoveri": [25, 26, 45, 143], "redi": [56, 57, 120, 121, 129], "redirect": 123, "redis_log_fil": 57, "reduc": 129, "reduce_to_languag": 57, "refer": [127, 155], "reference_opengraph": 57, "refresh": 111, "regist": [100, 101, 102], "reject": 60, "relat": [1, 123], "releas": [57, 86, 139, 158, 159, 166], "remember_login_cookie_lifetim": 57, "remind": [111, 114], "remirepo": 120, "remnant": 146, "remot": [99, 123, 128], "remov": [74, 78], "renam": 83, "repair": 146, "replic": 21, "report": [146, 166], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 149], "request": 57, "request_timeout": 57, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19, 120, 127, 131, 160, 161, 162, 163, 164, 165], "rescan": 134, "resend": 74, "reset": [76, 77, 83], "resetpassword": 146, "resolv": 67, "resourc": [111, 127], "respons": 67, "restor": 143, "restrict": [105, 123, 147], "retent": [108, 111, 112, 160], "retriev": 48, "return": [67, 146], "revalid": 129, "revers": [55, 66, 148, 152, 153], "revert": 133, "rewritebas": 57, "rich": 68, "right": 168, "room": 111, "root": 123, "rotat": 57, "rule": [3, 104, 105], "run": [5, 17, 67, 145, 146], "s3": [28, 45, 165], "same": 99, "sampl": 57, "sanit": [47, 146], "scale": [2, 3, 5, 6, 7, 9, 10, 44], "scan": [52, 146], "scanner": 52, "schedul": [49, 114, 166], "scope": [75, 112], "screen": [14, 167], "script": [130, 168], "seal": 26, "search": [2, 14, 73, 74, 146], "secret": 57, "secur": [57, 65, 67, 99, 123, 146, 147], "select": 168, "selector": 146, "self": [15, 37, 60], "selinux": [120, 123, 128, 130], "send": [60, 114], "sendmail": [60, 128], "serv": [123, 126], "server": [2, 19, 23, 25, 26, 27, 38, 56, 57, 60, 67, 79, 96, 111, 114, 123, 124, 128, 129, 130, 131, 133, 135, 140, 147, 148, 160, 161, 162, 163, 165], "server_log": 57, "servic": [0, 14, 45, 66, 135, 167], "session": [14, 56, 57, 167], "session_keepal": 57, "session_lifetim": 57, "session_relaxed_expiri": 57, "set": [40, 44, 55, 57, 60, 64, 67, 72, 73, 74, 79, 83, 111, 120, 127, 129, 130, 146, 147, 168], "setup": [8, 53, 56, 89, 98, 123, 162, 165], "setupcheck": 146, "sftp": 34, "share": [2, 23, 25, 26, 29, 38, 40, 43, 57, 111, 112, 114, 116, 135, 146], "share_fold": 57, "ship": 135, "shortcut": 96, "show": 146, "shown": [35, 57], "side": [23, 25, 26, 27], "siev": [114, 116], "sign": [26, 37, 60, 134, 149], "signatur": [25, 26], "simpl": 45, "simplesignuplink": 57, "singl": [52, 56, 73, 74, 146], "site": [61, 67], "size": [23, 44, 114, 129, 130, 135, 164], "skeletondirectori": 57, "skip": 65, "slow": 14, "small": 56, "smart": 157, "smb": [35, 128], "smtp": [60, 114, 116, 128], "snap": [130, 142], "snooz": 114, "socket": [56, 98, 99], "some": 67, "sort_groups_by_nam": 57, "sourc": [26, 134], "space": [3, 6, 8, 11, 92, 130], "special": [29, 79], "specif": [60, 79, 104, 123, 127, 147], "speech": [1, 7, 10, 14], "speed": [1, 14, 167], "split": [22, 26], "sql": 19, "sqlite": [53, 57, 129, 137, 143], "sse": 45, "ssl": [19, 57, 66, 79, 123, 130], "standalone_window": 57, "start": [86, 102, 125], "starttl": 60, "statu": [102, 146], "step": [25, 121, 122, 139, 145, 168], "storag": [1, 23, 25, 29, 33, 37, 45, 49, 83, 104, 123, 135], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 26, 45, 57, 109], "storecryptedpassword": 57, "strict": [67, 123], "stt_whisper2": 7, "subadmin": [73, 74], "subdir": 126, "subscript": [111, 146], "summar": 8, "summari": [8, 114], "suppli": [5, 7], "support": [3, 20, 37, 45, 57, 60, 68, 131, 166], "supporteddatabas": 57, "suppress": 126, "suspend": 168, "swift": 45, "switch": 11, "sync": [35, 79, 96, 111, 112, 114, 135, 146, 160], "synchron": [3, 67, 116], "synchronis": 143, "syslog": 64, "syslog_tag": 57, "syslog_tag_audit": 57, "system": [23, 112, 123, 129, 130, 131, 146, 160, 161, 162, 163, 164, 165], "systemd": [14, 54, 64, 167], "systemtag": 57, "tab": 79, "tabl": [17, 86, 127], "tag": [105, 108, 146], "talk": [2, 4, 8, 131], "target": [17, 117], "task": [1, 2, 13, 14, 52], "tcp": [56, 60], "team": [2, 25], "tempdirectori": 57, "templat": [24, 60], "templatedirectori": 57, "temporari": 64, "term": 131, "test": [57, 60, 67, 79, 102, 146], "text": [1, 7, 10, 14, 68], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 126, "thei": 156, "theme": [57, 60, 69], "thi": 67, "though": 60, "thread": [114, 116], "threshold": 57, "through": [64, 69], "timeout": [114, 116], "tip": [38, 79, 126, 130, 142], "tl": [56, 79, 114, 129], "tmux": [14, 167], "toggl": 146, "token": [65, 82, 111, 112, 123, 160], "token_auth_activity_upd": 57, "token_auth_enforc": 57, "tool": 2, "traefik": 66, "traffic": 123, "transact": [19, 42, 67, 129], "transcript": 4, "transfer": [40, 146], "transferincomingshar": 57, "translat": [1, 11, 14, 114, 146], "translate2": 11, "transport": [67, 123], "trash": [46, 57, 111], "trashbin": 146, "trashbin_retention_oblig": 57, "tree": 146, "trick": [79, 126], "trigger": [17, 52], "troubleshoot": [3, 19, 25, 55, 60, 79, 96, 116, 128, 133, 135, 136, 139, 144, 154], "truena": 130, "trust": [38, 66, 125], "trusted_domain": 57, "trusted_proxi": 57, "ttl": 57, "tune": 129, "turn": 79, "two": [78, 146], "type": [17, 26, 56, 57, 64, 111, 166], "ubuntu": [122, 149], "umask": 57, "unabl": 116, "unencrypt": 123, "unified_search": 57, "uninstal": 132, "unix": 56, "unknown": 96, "unlink_on_trunc": 57, "unregist": [100, 101], "unscan": 52, "unseal": 26, "up": [67, 70, 114, 120, 130, 163, 167, 168], "updat": [15, 22, 35, 57, 101, 116, 128, 135, 144, 145, 148, 152, 165], "updatecheck": 57, "updatedirectori": 57, "upgrad": [57, 131, 139, 142, 144, 145, 146, 152, 160, 161, 162, 163, 164, 165, 166], "upload": [23, 35, 104, 126, 130], "urandom": [67, 123], "url": [57, 130, 168], "us": [2, 14, 15, 19, 37, 40, 47, 56, 57, 60, 67, 79, 82, 114, 123, 129, 135, 144, 146, 147, 157, 162], "usag": [3, 6, 8, 11, 37, 50, 55, 90, 100, 147], "use_legacy_base64_encod": 57, "user": [19, 25, 26, 37, 40, 49, 57, 71, 74, 77, 79, 81, 82, 83, 84, 85, 86, 104, 112, 114, 135, 146, 163, 164, 165], "user_ini_additional_lin": 57, "utf8mb4": 57, "v": [56, 98], "valid": 82, "valu": [57, 146, 168], "variabl": [37, 57, 92, 97, 130, 146], "verif": [57, 79, 114], "version": [41, 57, 67, 131, 135, 146, 166], "versions_retention_oblig": 57, "via": [8, 15, 25, 38, 67, 79, 128, 130, 142, 144], "video": [6, 117], "view": 147, "virtual": 130, "vp": 130, "warn": [65, 67], "watsonx": 0, "we": [131, 134], "web": [23, 47, 57, 60, 64, 67, 123, 128, 130, 131, 135, 144, 160, 161, 162, 163, 165], "webauthn": 57, "webcron": 54, "webdav": [36, 135], "webhook": 167, "webroot": [126, 147], "webserv": 96, "websocket": 68, "welcom": 74, "well": 67, "what": [5, 60, 144], "when": 96, "where": [156, 157], "whisper": 7, "whole": 128, "why": [14, 60, 131, 134], "windmil": 168, "window": [47, 130, 146], "without": 126, "wizard": [125, 130], "wopi": 147, "work": [19, 52, 55, 156], "workflow": [64, 168], "workspac": [68, 168], "write": 128, "xml": [72, 73, 74, 80], "xoauth2": 114, "yellow": 6, "yet": 67, "you": [25, 67], "your": [23, 49, 58, 67, 116, 123]}}) \ No newline at end of file +Search.setIndex({"alltitles": {".htaccess": [[130, "htaccess"]], "/dev/urandom is not readable by PHP": [[67, "dev-urandom-is-not-readable-by-php"]], "1st login": [[130, "st-login"], [142, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[54, "ajax"]], "APCu": [[56, "apcu"]], "Account delegation": [[114, "account-delegation"]], "Activating": [[55, "activating"]], "Activities in groupfolders or external storages": [[49, "activities-in-groupfolders-or-external-storages"]], "Activity app": [[49, null], [57, "activity-app"]], "Add a new user": [[74, "add-a-new-user"]], "Add an OAuth2 Application": [[65, "add-an-oauth2-application"]], "Add missing indices": [[146, "add-missing-indices"]], "Add repository:": [[149, "add-repository"]], "Add user to group": [[74, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Adding files to external storages": [[37, "adding-files-to-external-storages"]], "Additional Apache configurations": [[130, "additional-apache-configurations"]], "Additional configuration options": [[147, "additional-configuration-options"]], "Additional configuration options via occ": [[79, "additional-configuration-options-via-occ"]], "Additional notes for Redis vs. APCu on memory caching": [[56, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[100, "additional-options"]], "Address Book Sync": [[112, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[23, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[64, "admin-audit-log-optional"]], "Administration interface": [[112, "administration-interface"]], "Administration privileges (Delegation)": [[50, null]], "Administrative Group mapping": [[79, "administrative-group-mapping"]], "Advanced Deploy Options": [[97, null], [101, "advanced-deploy-options"]], "Advanced settings": [[40, "advanced-settings"], [79, "advanced-settings"]], "Advantages of upgrading PHP": [[131, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[60, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[57, "all-other-configuration-options"]], "All parameters": [[53, "all-parameters"]], "Allow access to CIFS/SMB": [[128, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[128, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[128, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[128, "allow-access-to-ldap-server"]], "Allow access to SMTP/sendmail": [[128, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[128, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[128, "allow-access-to-network-memcache"]], "Allow access to remote network": [[128, "allow-access-to-remote-network"]], "Allow subscriptions on local network": [[111, "allow-subscriptions-on-local-network"]], "Allow users to mount external Storage": [[37, "allow-users-to-mount-external-storage"]], "Alternate Code Locations": [[57, "alternate-code-locations"]], "Amazon S3": [[28, null]], "Android 11 and Below": [[51, "android-11-and-below"]], "Android 12 and Above": [[51, "android-12-and-above"]], "Android Deep Link Handling": [[51, null]], "Anti-abuse alerts": [[114, "anti-abuse-alerts"]], "Antivirus": [[146, "antivirus"]], "Antivirus scanner": [[52, null]], "Apache": [[23, "apache"], [120, "apache"]], "Apache Web server configuration": [[130, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[23, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[23, "apache-with-mod-proxy-fcgi"]], "Apache2": [[66, "apache2"]], "App config options": [[57, "app-config-options"]], "App passwords": [[70, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[163, "appapi-app-api-is-now-a-default-app"], [164, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[165, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[98, null]], "Applying a patch": [[133, "applying-a-patch"]], "Approaching Upgrades": [[145, "approaching-upgrades"]], "Approval/Suspend steps": [[168, "approval-suspend-steps"]], "Apps": [[15, "apps"], [57, "apps"], [86, null]], "Apps commands": [[146, "apps-commands"]], "Apps management": [[15, null]], "Arguments": [[100, "arguments"], [101, "arguments"], [101, "id1"], [101, "id3"]], "Artificial Intelligence": [[12, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[105, "assigning-restricted-and-invisible-tags"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[114, "attachment-size-limit"]], "Authentication": [[70, null], [168, "authentication"]], "Authentication in Nextcloud": [[82, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig for your mail domain fails": [[116, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[70, "automated-clean-up"]], "Automated clean-up of app password": [[163, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[105, null]], "Automatic configurations examples": [[53, "automatic-configurations-examples"]], "Automatic setup": [[53, null]], "Available rules": [[104, "available-rules"], [105, "available-rules"]], "Available storage backends": [[37, "available-storage-backends"]], "Backend apps": [[14, "backend-apps"], [14, "id31"], [14, "id35"], [14, "id39"], [14, "id43"], [14, "id47"], [14, "id51"], [14, "id55"]], "Background job": [[41, "background-job"], [46, "background-job"]], "Background jobs": [[54, null], [111, "background-jobs"]], "Background jobs selector": [[146, "background-jobs-selector"]], "Background sync interval": [[79, "background-sync-interval"], [114, "background-sync-interval"]], "Backup": [[137, null]], "Backup database": [[137, "backup-database"]], "Backup folders": [[137, "backup-folders"]], "Backups": [[25, "backups"]], "Bad signature error": [[25, "bad-signature-error"]], "Batch mode for command line based updater": [[144, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[82, "bearer-token-validation"]], "Before You Enable Encryption": [[25, "before-you-enable-encryption"]], "Beta releases and Release candidates": [[166, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[49, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[16, null]], "Birthday calendar": [[111, "birthday-calendar"]], "Blocking user groups": [[104, "blocking-user-groups"]], "Branded clients": [[69, "branded-clients"]], "Brute force protection": [[55, null]], "Brute force protection and load balancers/reverse proxies": [[55, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Bug reporting": [[166, "bug-reporting"]], "Bugs": [[135, "bugs"]], "Building a workflow": [[168, "building-a-workflow"]], "CPU Architecture and OS": [[131, "cpu-architecture-and-os"]], "Cache Directory location": [[56, "cache-directory-location"]], "Cache warnings": [[67, "cache-warnings"]], "Caching": [[79, "caching"], [129, "id1"]], "Caddy": [[66, "caddy"]], "Calendar": [[116, "calendar"]], "Calendar / CalDAV": [[111, null]], "Calendar server settings": [[111, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[168, "can-i-create-a-script"]], "Canonical webroot": [[147, "canonical-webroot"]], "Certification Extension 2025/2026": [[87, "certification-extension-2025-2026"]], "Changelog": [[159, "changelog"]], "Changing the display of federated shares": [[38, "changing-the-display-of-federated-shares"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[26, "check-the-block-signatures"]], "Check the signature": [[26, "check-the-signature"]], "Checking for old files": [[27, "checking-for-old-files"]], "Chroot": [[121, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Cleanup": [[146, "cleanup"]], "Cleanup previews": [[146, "cleanup-previews"]], "Code signing": [[134, null]], "Collabora Online Server": [[147, "collabora-online-server"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[112, "command-line"]], "Command Line Client": [[90, null]], "Command line": [[96, "command-line"]], "Command line installation": [[146, "command-line-installation"]], "Command line upgrade": [[146, "command-line-upgrade"]], "Command-line Account Setup": [[89, null]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[57, "comments"], [129, "comments"]], "Common misconfigurations": [[104, "common-misconfigurations"], [108, "common-misconfigurations"]], "Common problems / error messages": [[135, "common-problems-error-messages"]], "Compression": [[129, "compression"]], "Config commands": [[146, "config-commands"]], "Config file": [[96, "config-file"]], "Configuration": [[1, "configuration"], [45, "configuration"], [75, "configuration"], [79, "configuration"], [86, null], [114, "configuration"], [130, "configuration"], [147, null], [149, "configuration"]], "Configuration File": [[91, null]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[57, null]], "Configuration keys": [[80, "configuration-keys"]], "Configuration tips": [[38, "configuration-tips"]], "Configurations preventing embedding": [[61, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[148, "configure-the-app-in-nextcloud"]], "Configure theming through CLI": [[69, "configure-theming-through-cli"]], "Configuring ClamAV on Nextcloud": [[52, "configuring-clamav-on-nextcloud"]], "Configuring External Storage (GUI)": [[37, null]], "Configuring Federation Sharing": [[38, null]], "Configuring ICAP on Nextcloud": [[52, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[23, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[45, null]], "Configuring PHP": [[23, "configuring-php"]], "Configuring Sendmail/qmail": [[60, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[19, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[60, "configuring-an-smtp-server"]], "Configuring through admin_audit app settings": [[64, "configuring-through-admin-audit-app-settings"]], "Configuring trusted Nextcloud servers": [[38, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the activity app": [[49, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[58, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[23, "configuring-your-web-server"]], "Confirm everything is working": [[52, "confirm-everything-is-working"]], "Connecting to Redis cluster over TLS": [[56, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[56, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[56, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[56, "connecting-to-single-redis-server-over-unix-socket"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[96, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[79, "connection-settings"]], "Connections to remote servers": [[123, "connections-to-remote-servers"]], "Consequences": [[47, "consequences"]], "Considerations for shared storage": [[29, "considerations-for-shared-storage"]], "Contacts": [[116, "contacts"]], "Contacts / CardDAV": [[112, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[102, "container-started"]], "Context Agent": [[1, "context-agent"]], "Context Chat": [[1, "context-chat"], [14, "context-chat"]], "Context Chat Search": [[14, "context-chat-search"]], "Controlling file versions and aging": [[41, null]], "Converting database type": [[17, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[109, null]], "Cookies stored by Nextcloud": [[109, "cookies-stored-by-nextcloud"]], "Core Dumps": [[96, "core-dumps"]], "Create Debug Archive": [[96, "create-debug-archive"]], "Create a addressbook for a user": [[146, "create-a-addressbook-for-a-user"]], "Create a calendar for a user": [[146, "create-a-calendar-for-a-user"]], "Create a calendar subscription for a user": [[146, "create-a-calendar-subscription-for-a-user"]], "Create a group": [[73, "create-a-group"]], "Creating Federation Shares via public Link Share": [[38, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[80, "creating-a-configuration"]], "Creating a new Federation Share": [[38, "creating-a-new-federation-share"]], "Creating a new user": [[83, "creating-a-new-user"]], "Creating assetlinks.json": [[51, "creating-assetlinks-json"]], "Creating persistent file Shares": [[40, "creating-persistent-file-shares"]], "Credential Handling": [[90, "credential-handling"]], "Critical changes": [[159, "critical-changes"]], "Cron": [[54, "cron"]], "Cron job": [[121, "cron-job"]], "Cron jobs": [[54, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[147, "custom-fonts"]], "Custom public calendars": [[111, "custom-public-calendars"]], "DAV sync tokens retention": [[160, "dav-sync-tokens-retention"]], "Dashboard app": [[58, null]], "Data Backup and Recovery Implications": [[45, "data-backup-and-recovery-implications"]], "Data Directory": [[53, "data-directory"]], "Data Not Encrypted": [[25, "data-not-encrypted"]], "Data directory location": [[125, "data-directory-location"]], "Data retention": [[111, "data-retention"], [112, "data-retention"]], "Database": [[120, "database"], [121, "database"]], "Database choice": [[125, "database-choice"]], "Database configuration": [[18, null], [19, null], [164, "database-configuration"]], "Database conversion": [[146, "database-conversion"]], "Database insert problems on MySQL": [[116, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[131, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[19, "database-read-committed-transaction-isolation-level"]], "Dav commands": [[146, "dav-commands"]], "Debug Mode": [[129, "debug-mode"]], "Debugging": [[146, "debugging"]], "Debugging sync issues": [[135, "debugging-sync-issues"]], "Deck tools": [[2, "deck-tools"]], "Declarations": [[88, null]], "Decrease sync delay": [[35, "decrease-sync-delay"]], "Decrypt the blocks": [[26, "decrypt-the-blocks"]], "Decrypt the private key": [[26, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[26, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[25, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[26, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[26, "decryption-read-the-file-key"]], "Decryption: read the private key": [[26, "decryption-read-the-private-key"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[99, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[57, "default-parameters"]], "Default file extension": [[68, "default-file-extension"]], "Default file templates": [[24, "default-file-templates"]], "Default language": [[63, "default-language"]], "Default locale": [[63, "default-locale"]], "Defaults": [[57, "defaults"]], "Defining trusted proxies": [[66, "defining-trusted-proxies"]], "Definitions": [[25, "definitions"]], "Delete a calendar for a user": [[146, "delete-a-calendar-for-a-user"]], "Delete a calendar subscription for a user": [[146, "delete-a-calendar-subscription-for-a-user"]], "Delete a group": [[73, "delete-a-group"]], "Delete a user": [[74, "delete-a-user"]], "Deleted Items (trash bin)": [[46, null], [57, "deleted-items-trash-bin"]], "Deleting a configuration": [[80, "deleting-a-configuration"]], "Deleting a single configuration value": [[146, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[81, "deleting-local-nextcloud-users"]], "Deleting users": [[83, "deleting-users"]], "Demote user from subadmin": [[74, "demote-user-from-subadmin"]], "Denied access": [[104, "denied-access"]], "Denying access to folders": [[104, "denying-access-to-folders"]], "DeployConfig": [[100, "deployconfig"]], "DeployConfig options": [[100, "deployconfig-options"]], "Deployment": [[123, "deployment"]], "Deployment configurations": [[99, null]], "Deployment recommendations": [[119, null]], "Derive the decryption key": [[26, "derive-the-decryption-key"]], "Derive the encryption key": [[26, "derive-the-encryption-key"]], "Desktop Clients": [[93, null]], "Desktop client": [[131, "desktop-client"]], "Differences from External Storage": [[45, "differences-from-external-storage"]], "Directory settings": [[79, "directory-settings"]], "Disable": [[101, "disable"]], "Disable 3rdparty / non-shipped apps": [[135, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[123, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[114, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[74, "disable-a-user"]], "Disable an app": [[72, "disable-an-app"]], "Disable and enable users": [[83, "disable-and-enable-users"]], "Disable creation of example events": [[146, "disable-creation-of-example-events"]], "Disable preview image generation": [[123, "disable-preview-image-generation"]], "Disable rich text editing": [[68, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[68, "disable-rich-workspaces-globally"]], "Disable users": [[146, "disable-users"]], "Disabling background scan task": [[52, "disabling-background-scan-task"]], "Disabling previews:": [[44, "disabling-previews"]], "Disabling two-factor authentication": [[78, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[128, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[40, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[134, "do-we-lock-down-nextcloud"]], "Docker Deploy Daemon": [[99, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[99, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[99, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[98, "docker-socket-proxy"]], "Docker Socket Proxy security": [[99, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[98, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[99, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[99, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[14, "document-generation"]], "Domain Change": [[59, null]], "Downgrading": [[166, "downgrading"]], "Download Logs": [[102, "download-logs"]], "Duplicating server configurations": [[79, "duplicating-server-configurations"]], "Edit data of a single group": [[73, "edit-data-of-a-single-group"]], "Edit data of a single user": [[74, "edit-data-of-a-single-user"]], "Email": [[60, null]], "Enable": [[101, "enable"]], "Enable HTTP Strict Transport Security": [[123, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[129, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[129, "enable-php-opcache"]], "Enable a user": [[74, "enable-a-user"]], "Enable access for external apps": [[147, "enable-access-for-external-apps"]], "Enable an app": [[72, "enable-an-app"]], "Enable hardening modules such as SELinux": [[123, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[128, "enable-updates-via-the-web-interface"]], "Enabled": [[102, "enabled"]], "Enabling Encryption (Step-by-Step)": [[25, "enabling-encryption-step-by-step"]], "Enabling External Storage Support": [[37, "enabling-external-storage-support"]], "Enabling MySQL 4-byte support": [[20, null]], "Enabling SSL": [[130, "enabling-ssl"]], "Enabling Windows compatible filenames": [[47, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[15, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[146, "enabling-autocompletion"]], "Enabling debug mode": [[60, "enabling-debug-mode"]], "Enabling the activity app": [[49, "enabling-the-activity-app"]], "Enabling the antivirus app for files": [[52, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[58, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[78, "enabling-two-factor-authentication"]], "Encrypt the blocks": [[26, "encrypt-the-blocks"]], "Encrypt the private key": [[26, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[26, "encrypt-seal-the-file-key"]], "Encrypting All Files": [[25, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[25, "encrypting-external-mountpoints-and-team-folders"]], "Encryption": [[146, "encryption"]], "Encryption Method Comparison": [[25, "encryption-method-comparison"]], "Encryption format": [[27, "encryption-format"]], "Encryption key cannot be found": [[25, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[25, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption: encrypt the file": [[26, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[26, "encryption-generate-the-file-key"]], "End-of-life": [[166, "end-of-life"]], "Energy consumption": [[87, null]], "Enforcing two-factor authentication": [[78, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[123, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[57, "environment-variables"], [92, null], [97, "environment-variables"]], "Environment variables": [[146, "environment-variables"]], "Errors": [[134, "errors"]], "Establishing the target database": [[17, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [14, "ethical-ai-rating"]], "Event alarm types": [[111, "event-alarm-types"]], "Events": [[111, "events"]], "ExApps management": [[103, null]], "Example": [[66, "example"], [72, "example"], [72, "id1"], [72, "id3"], [72, "id5"], [73, "example"], [73, "id1"], [73, "id3"], [73, "id5"], [73, "id8"], [74, "example"], [74, "id1"], [74, "id3"], [74, "id8"], [74, "id10"], [74, "id12"], [74, "id14"], [74, "id16"], [74, "id18"], [74, "id20"], [74, "id22"], [74, "id24"], [74, "id26"], [80, "example"], [80, "id1"], [80, "id3"], [80, "id5"], [90, "example"], [105, "example"], [108, "example"]], "Example contact": [[112, "example-contact"]], "Example event": [[111, "example-event"]], "Example installation on CentOS 8": [[120, null]], "Example installation on OpenBSD": [[121, null]], "Example installation on Ubuntu 22.04 LTS": [[122, null]], "Example log entries": [[64, "example-log-entries"]], "Example: The login page": [[55, "example-the-login-page"]], "Examples": [[57, "examples"], [73, "examples"], [74, "examples"], [74, "id6"], [104, "examples"]], "Exclude List": [[90, "exclude-list"]], "Excluding IP addresses from brute force protection": [[55, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from the activity expiration": [[49, "excluding-users-from-the-activity-expiration"]], "Executing actions": [[105, "executing-actions"]], "Expert settings": [[79, "expert-settings"]], "Export a calendar of a user": [[146, "export-a-calendar-of-a-user"]], "Export threading data": [[116, "export-threading-data"]], "Exposed system address book": [[161, "exposed-system-address-book"]], "External Storage authentication mechanisms": [[29, null]], "External media": [[130, "external-media"]], "External storage": [[104, "external-storage"]], "FAQ": [[98, "faq"], [134, "faq"], [168, "faq"]], "FTP/FTPS": [[30, null]], "Fail2ban introduction": [[123, "fail2ban-introduction"]], "Fair Use Policy": [[135, "fair-use-policy"]], "Features used by other apps": [[14, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[23, "federated-cloud-sharing"], [57, "federated-cloud-sharing"]], "Federated calendar shares": [[111, "federated-calendar-shares"]], "Federation sync": [[146, "federation-sync"]], "File Sharing": [[40, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[108, "file-age"]], "File conversion": [[39, null]], "File encodings": [[68, "file-encodings"]], "File format": [[26, "file-format"], [26, "id1"], [26, "id3"], [26, "id5"], [26, "id7"]], "File locations": [[26, "file-locations"], [26, "id2"], [26, "id4"], [26, "id6"], [26, "id8"]], "File operations": [[146, "file-operations"]], "File sharing and management": [[43, null]], "File type: file": [[26, "file-type-file"]], "File type: file key file": [[26, "file-type-file-key-file"]], "File type: private key file": [[26, "file-type-private-key-file"]], "File type: public key file": [[26, "file-type-public-key-file"]], "File type: share key file": [[26, "file-type-share-key-file"]], "File versions": [[57, "file-versions"]], "Files": [[86, null]], "Files App": [[131, "files-app"]], "Files Sharing": [[146, "files-sharing"]], "Files access control": [[104, null]], "Files external": [[146, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[167, "filters"]], "Fixing invalid code integrity messages": [[134, "fixing-invalid-code-integrity-messages"]], "Flow": [[107, null]], "Flow configuration": [[106, null]], "Follow-up reminders": [[114, "follow-up-reminders"]], "Force language": [[63, "force-language"]], "Force locale": [[63, "force-locale"]], "Format": [[57, "format"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[111, "freebusy"]], "Frequently Asked Questions": [[14, "frequently-asked-questions"]], "Frequently asked questions": [[154, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[14, "frontend-apps"], [14, "id29"], [14, "id32"], [14, "id37"], [14, "id41"], [14, "id45"], [14, "id49"], [14, "id53"]], "Further Reading": [[25, "further-reading"]], "Further Resources": [[127, "further-resources"]], "GDPR-compliance": [[110, null]], "General troubleshooting": [[135, null], [135, "id1"]], "Generate the file key": [[26, "generate-the-file-key"]], "Get a notification before a share expires": [[40, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[13, "get-a-task-by-id"]], "Get account IDs": [[116, "get-account-ids"]], "Get app info": [[72, "get-app-info"]], "Get data of a single user": [[74, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[52, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[72, "get-list-of-apps"]], "Get members of a group": [[73, "get-members-of-a-group"]], "Get subadmins of a group": [[73, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[74, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[74, "get-user-s-subadmin-groups"]], "Getting Started": [[86, null]], "Getting a single configuration value": [[146, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[123, "give-php-read-access-to-dev-urandom"]], "Globally": [[116, "globally"]], "Google OAuth": [[114, "google-oauth"]], "Granting administrator privileges to a user": [[83, "granting-administrator-privileges-to-a-user"]], "Group commands": [[146, "group-commands"]], "Groups tab": [[79, "groups-tab"]], "Groupware": [[86, null], [113, null]], "HAProxy": [[66, "haproxy"]], "HTTPD(8)": [[121, "httpd-8"]], "HTTPS encryption": [[130, "https-encryption"]], "HaRP": [[98, "harp"]], "Handling with backup server": [[79, "handling-with-backup-server"]], "Hardening and security guidance": [[123, null]], "Hashing": [[57, "hashing"]], "Heartbeat": [[102, "heartbeat"]], "Hidden files upload failure or not shown": [[35, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[111, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[60, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[60, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[19, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[60, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[19, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[60, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[60, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[156, "how-does-it-work"]], "How it works": [[55, "how-it-works"]], "How to upgrade": [[145, null]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[19, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[114, "imap-timeout"]], "Icon retrieval": [[48, "icon-retrieval"]], "Identifying Basic Functionality Problems": [[96, "identifying-basic-functionality-problems"]], "Image Pull": [[102, "image-pull"]], "Image generation": [[14, "image-generation"]], "Image storage": [[1, "image-storage"]], "Import a calendar to a user": [[146, "import-a-calendar-to-a-user"]], "Import signing keys:": [[149, "import-signing-keys"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [14, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[17, "inconvertible-tables"]], "Init": [[102, "init"]], "Initial Certification 2024/2025": [[87, "initial-certification-2024-2025"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[22, "initial-splitting"]], "Insight and debugging": [[13, null]], "Install": [[90, "install"]], "Install packages": [[149, "install-packages"]], "Install the Apache reverse proxy": [[148, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[148, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [86, null], [130, "installation"], [142, "installation"], [151, null], [167, "installation"], [168, "installation"]], "Installation and server configuration": [[124, null]], "Installation example on Ubuntu 24.04": [[149, null]], "Installation example with Docker": [[148, null]], "Installation on Linux": [[130, null]], "Installation on TrueNAS": [[130, "installation-on-truenas"]], "Installation version": [[166, "installation-version"]], "Installation via install script": [[130, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[130, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[125, null], [130, "installation-wizard"]], "Installing AppAPI": [[98, "installing-appapi"]], "Installing ClamAV": [[52, "installing-clamav"]], "Installing ExApps": [[98, "installing-exapps"]], "Installing Nextcloud": [[120, "installing-nextcloud"]], "Installing PHP and the required modules": [[120, "installing-php-and-the-required-modules"]], "Installing from command line": [[118, null]], "Installing on Windows (virtual machine)": [[130, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[120, "installing-optional-modules-redis-imagick"]], "Installing via Snap packages": [[130, "installing-via-snap-packages"]], "Instruction set for apps": [[72, null]], "Instruction set for groups": [[73, null]], "Instruction set for users": [[74, null]], "Integrating into the Web Interface": [[64, "integrating-into-the-web-interface"]], "Integrity check": [[146, "integrity-check"]], "Internal Server Errors": [[135, "internal-server-errors"]], "Introduction": [[50, "introduction"], [55, "introduction"], [57, "introduction"], [117, null]], "Invalid private key for encryption app": [[25, "invalid-private-key-for-encryption-app"]], "Invitations": [[111, "invitations"]], "Is code signing mandatory for apps?": [[134, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[96, "isolating-other-issues"]], "Issues and troubleshooting": [[136, null]], "Issues connecting to Outlook.com": [[116, "issues-connecting-to-outlook-com"]], "JIT": [[129, "jit"]], "JPEG quality setting:": [[44, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[126, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[25, "key-management-modes"]], "Key Points & Limitations": [[25, "key-points-limitations"]], "Key generation: generate the key pair": [[26, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[26, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[26, "key-generation-store-the-public-key"]], "Key type: master key": [[26, "key-type-master-key"]], "Key type: public sharing key": [[26, "key-type-public-sharing-key"]], "Key type: recovery key": [[26, "key-type-recovery-key"]], "Key type: user key": [[26, "key-type-user-key"]], "Keyboard shortcut": [[96, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[157, "known-smart-picker-providers"]], "Known backends": [[111, "known-backends"]], "Known link preview providers": [[156, "known-link-preview-providers"]], "LDAP": [[57, "ldap"]], "LDAP and External User Backends": [[25, "ldap-and-external-user-backends"]], "LDAP commands": [[146, "ldap-commands"]], "LDAP user cleanup": [[81, null]], "LLM Processing": [[114, "llm-processing"]], "Language & Locale": [[63, null]], "Large file upload on object storage": [[23, "large-file-upload-on-object-storage"]], "Length of support (\u201cmaintenance\u201d)": [[166, "length-of-support-maintenance"]], "Limit on password length": [[123, "limit-on-password-length"]], "Limitations": [[5, "limitations"]], "Limitations in maintenance mode": [[146, "limitations-in-maintenance-mode"]], "Link previews": [[156, null]], "Linking external sites": [[61, null]], "List": [[146, "list"]], "List ExApps": [[101, "list-exapps"]], "List all addressbooks of a user": [[146, "list-all-addressbooks-of-a-user"]], "List all calendar subscriptions of a user": [[146, "list-all-calendar-subscriptions-of-a-user"]], "List all calendars of a user": [[146, "list-all-calendars-of-a-user"]], "List and filter tasks": [[13, "list-and-filter-tasks"]], "List of editable data fields": [[74, "list-of-editable-data-fields"]], "List registered daemons": [[100, "list-registered-daemons"]], "Listening to events": [[167, "listening-to-events"]], "Loading": [[57, "loading"]], "Local": [[31, null]], "Local IMAP and SMTP servers": [[114, "local-imap-and-smtp-servers"]], "Log Files": [[96, "log-files"]], "Log Levels": [[129, "log-levels"]], "Log field breakdown": [[64, "log-field-breakdown"]], "Log fields explained": [[64, "log-fields-explained"]], "Log level": [[64, "log-level"]], "Log level interaction": [[64, "log-level-interaction"]], "Log type": [[64, "log-type"]], "Logfiles": [[135, "logfiles"]], "Logging": [[57, "logging"], [64, null], [79, "logging"]], "Logging commands": [[146, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[116, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[79, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[126, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[145, "long-running-migration-steps"]], "Long term support": [[131, "long-term-support"]], "Low Disk Space": [[92, "low-disk-space"]], "Machine translation": [[1, "machine-translation"], [14, "machine-translation"]], "Mail": [[114, null], [116, "mail"]], "Mail Parameters": [[57, "mail-parameters"]], "Mail Providers": [[60, "mail-providers"]], "Mailbox Share": [[114, "mailbox-share"]], "Maintenance": [[57, "maintenance"], [86, null], [138, null]], "Maintenance and release schedule": [[166, null]], "Maintenance commands": [[146, "maintenance-commands"]], "Maintenance mode": [[137, "maintenance-mode"], [145, "maintenance-mode"]], "Maintenance releases": [[166, "maintenance-releases"]], "Major releases": [[166, "major-releases"]], "Major version upgrades": [[166, "major-version-upgrades"]], "Manage addressbooks": [[146, "manage-addressbooks"]], "Manage calendar subscriptions": [[146, "manage-calendar-subscriptions"]], "Manage calendars": [[146, "manage-calendars"]], "Manage the background scanner": [[52, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[100, null]], "Managing Encryption via occ Commands": [[25, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[101, null]], "Managing apps": [[15, "managing-apps"]], "Managing groups": [[83, "managing-groups"]], "Manual account synchronization and threading": [[116, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[145, "manual-steps-during-upgrade"]], "Manually scan a single file": [[52, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[52, "manually-trigger-the-background-scan"]], "MariaDB": [[137, "mariadb"], [143, "mariadb"], [143, "id2"]], "Mark a file as scanned or unscanned": [[52, "mark-a-file-as-scanned-or-unscanned"]], "Mass Deployment And Account Creation": [[94, null]], "Maximum chunk size": [[164, "maximum-chunk-size"]], "Maximum memory for image generation:": [[44, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[44, "maximum-preview-size"]], "Maximum scale factor:": [[44, "maximum-scale-factor"]], "Maximum upload size": [[130, "maximum-upload-size"]], "Memcached": [[56, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[56, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[131, "memory"]], "Memory caching": [[56, null]], "Memory caching backend configuration": [[57, "memory-caching-backend-configuration"]], "Microsoft Active Directory": [[79, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[45, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[141, null]], "Migrating to a different server": [[140, null]], "Migration from Collabora Online": [[152, null]], "Migrations on updates": [[22, "migrations-on-updates"]], "Mimetype aliases": [[48, "mimetype-aliases"]], "Mimetype mapping": [[48, "mimetype-mapping"]], "Mimetypes management": [[48, null]], "Misc": [[146, "misc"]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[116, "missing-shared-calendars"]], "Mobile apps": [[131, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modify the appearance of Nextcloud": [[69, "modify-the-appearance-of-nextcloud"]], "Modifying": [[57, "modifying"]], "Modifying a configuration": [[80, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[60, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[162, "monitoring"]], "Monitoring: Counting of active users": [[163, "monitoring-counting-of-active-users"], [164, "monitoring-counting-of-active-users"], [165, "monitoring-counting-of-active-users"]], "Mount options": [[37, "mount-options"]], "Mounts": [[97, "mounts"]], "Move a calendar of a user": [[146, "move-a-calendar-of-a-user"]], "Moving the data directory / changing the datadirectory path": [[135, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multibucket Object Store": [[45, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[45, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multiple domains reverse SSL proxy": [[66, "multiple-domains-reverse-ssl-proxy"]], "Multiple/Merged Configuration Files": [[57, "multiple-merged-configuration-files"]], "MySQL": [[137, "mysql"], [143, "mysql"], [143, "id4"]], "MySQL database": [[53, "mysql-database"]], "NC & Docker on the Same-Host": [[99, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[99, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[99, "nc-to-exapp-communication"]], "NGINX": [[66, "nginx"]], "NGINX configuration": [[126, null]], "NOTE": [[121, "note"]], "Next steps": [[122, "next-steps"]], "Nextcloud": [[32, null]], "Nextcloud AIO": [[100, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[51, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[79, "nextcloud-ldap-internals"]], "Nextcloud Office App Settings": [[147, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[168, "nextcloud-scripts"]], "Nextcloud Verifications": [[57, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[167, "nextcloud-webhook-events"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[99, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[99, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[79, "nextcloud-avatar-integration"]], "Nextcloud configuration": [[62, null], [163, "nextcloud-configuration"], [164, "nextcloud-configuration"]], "Nextcloud final steps": [[121, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[99, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[126, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[126, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[135, "nextcloud-log-files"]], "Nextcloud prerequisites": [[123, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[96, "nextcloud-server-log-file"]], "Not open source anymore?": [[134, "not-open-source-anymore"]], "Note": [[79, "note"]], "Notes and troubleshooting": [[133, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[127, "notes-on-php-ini-configuration"]], "OAuth2": [[65, null]], "OCC CLI": [[100, "occ-cli"]], "Obtaining a patch": [[133, "obtaining-a-patch"]], "Obtaining the Client Log File": [[96, "obtaining-the-client-log-file"]], "Office": [[86, null], [150, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenStack Object Storage": [[33, null]], "OpenStack Swift": [[45, "openstack-swift"]], "Operating system": [[123, "operating-system"]], "Options": [[95, null], [100, "options"], [101, "options"], [101, "id2"], [101, "id4"]], "Organizations with clustered setups": [[56, "organizations-with-clustered-setups"]], "Organizations with single-server": [[56, "organizations-with-single-server"]], "Other Web servers": [[130, "other-web-servers"]], "Other issues": [[135, "other-issues"]], "Out-of-office feature": [[115, null]], "Outdated NSS / OpenSSL version": [[67, "outdated-nss-openssl-version"]], "Overview": [[14, null], [25, "overview"], [55, "overview"], [55, "id1"], [130, "overview"], [139, "overview"], [145, "overview"], [166, "overview"]], "Overview of AI features": [[14, "overview-of-ai-features"]], "Overwrite parameters": [[66, "overwrite-parameters"]], "PHP": [[120, "php"], [121, "php"]], "PHP Installation": [[127, "php-installation"]], "PHP Module Quick Reference Table": [[127, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[127, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[127, "php-modules-for-specific-applications"]], "PHP configuration": [[164, "php-configuration"]], "PHP ini Settings": [[127, "php-ini-settings"]], "PHP version and information": [[135, "php-version-and-information"]], "PHP-FPM configuration": [[130, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[126, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[19, "parameters"], [44, "parameters"], [53, "parameters"], [54, "parameters"]], "Passing values between blocks": [[168, "passing-values-between-blocks"]], "Password-based mechanisms": [[29, "password-based-mechanisms"]], "Passwords": [[123, "passwords"]], "Patching Nextcloud": [[133, null]], "Patching apps": [[133, "patching-apps"]], "Patching server": [[133, "patching-server"]], "Per mail account": [[116, "per-mail-account"]], "Performance Implications": [[45, "performance-implications"]], "Place config directory outside of the web root": [[123, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[123, "place-data-directory-outside-of-the-web-root"]], "PostgreSQL": [[137, "postgresql"], [143, "postgresql"], [143, "id5"]], "PostgreSQL database": [[19, "postgresql-database"], [53, "postgresql-database"]], "Preparing PHP": [[127, null]], "Prerequisites": [[145, "prerequisites"]], "Prerequisites for manual installation": [[130, "prerequisites-for-manual-installation"]], "Pretty URLs": [[130, "pretty-urls"]], "Prevent uploading of specific files": [[104, "prevent-uploading-of-specific-files"]], "Previews": [[57, "previews"], [129, "previews"], [147, "previews"], [164, "previews"], [165, "previews"]], "Previews configuration": [[44, null]], "Previews for Office files using LibreOffice": [[162, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[163, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[139, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[112, "privacy-and-user-property-scopes"]], "Process manager": [[130, "process-manager"]], "Profile configuration": [[75, null]], "Promote user to subadmin": [[74, "promote-user-to-subadmin"]], "Proper SSL configuration": [[123, "proper-ssl-configuration"]], "Property scopes": [[75, "property-scopes"]], "Provider apps": [[14, "provider-apps"], [14, "id52"]], "Provider removal": [[78, "provider-removal"]], "Providing default files": [[24, null]], "Proxy Configurations": [[57, "proxy-configurations"]], "Public collaborative tag": [[108, "public-collaborative-tag"]], "Public-key mechanisms": [[29, "public-key-mechanisms"]], "Quick start": [[125, "quick-start"]], "Rate limits": [[111, "rate-limits"], [112, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[26, "read-the-envelope-key"]], "Read the file key": [[26, "read-the-file-key"]], "Read the private key file": [[26, "read-the-private-key-file"]], "Read the public key": [[26, "read-the-public-key"]], "Reading a configuration": [[80, "reading-a-configuration"]], "Recommendations based on type of deployment": [[56, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[127, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[127, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[127, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[123, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[56, "redis"], [120, "redis"], [121, "redis"]], "Redis configuration in Nextcloud (config.php)": [[56, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[129, "reducing-system-load"]], "Reference management": [[155, null]], "Refresh rate": [[111, "refresh-rate"]], "Register": [[100, "register"], [101, "register"], [102, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[166, "release-channels"]], "Release notes": [[86, null], [158, null], [159, null]], "Release schedule": [[166, "release-schedule"]], "Release types": [[166, "release-types"]], "Reminder notifications": [[111, "reminder-notifications"]], "Remove user from group": [[74, "remove-user-from-group"]], "Renaming a user": [[83, "renaming-a-user"]], "Repair-Tree": [[146, "repair-tree"]], "Replication": [[21, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[127, "required-php-database-connectors"]], "Required PHP Modules": [[127, "required-php-modules"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [19, "requirements"]], "Rescans": [[134, "rescans"]], "Resend the welcome email": [[74, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[83, "reset-a-user-s-password"]], "Resetting a lost admin password": [[76, null]], "Resetting a user password": [[77, null]], "Resources and rooms": [[111, "resources-and-rooms"]], "Restore database": [[143, "restore-database"]], "Restore folders": [[143, "restore-folders"]], "Restoring": [[143, "restoring"]], "Restoring backup": [[143, null]], "Restrict admin actions to a specific range of IP addresses": [[123, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[147, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[147, "restrict-usage-to-specific-groups"]], "Retention of files": [[108, null]], "Revalidation": [[129, "revalidation"]], "Reverse proxy": [[66, null], [153, null]], "Reverting a patch": [[133, "reverting-a-patch"]], "Run the conversion": [[17, "run-the-conversion"]], "Running occ": [[146, "running-occ"]], "S3 SSE-C encryption support": [[45, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[165, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[120, "selinux"]], "SELinux configuration": [[128, null]], "SELinux configuration tips": [[130, "selinux-configuration-tips"]], "SFTP": [[34, null]], "SMB authentication": [[35, "smb-authentication"]], "SMB update notifications": [[35, "smb-update-notifications"]], "SMB/CIFS": [[35, null]], "SMTP": [[60, "smtp"]], "SMTP timeout": [[114, "smtp-timeout"]], "SQLite": [[137, "sqlite"], [143, "sqlite"]], "SQLite database": [[53, "sqlite-database"]], "SSL": [[57, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[79, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[19, "ssl-for-mysql-database"]], "Sanitize filenames": [[146, "sanitize-filenames"]], "Sanitizing invalid filenames": [[47, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Scan": [[146, "scan"]], "Scan appdata": [[146, "scan-appdata"]], "Screen or tmux session": [[14, "screen-or-tmux-session"], [167, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[73, "search-get-groups"]], "Search/get users": [[74, "search-get-users"]], "Secure view settings": [[147, "secure-view-settings"]], "Security": [[146, "security"]], "Security considerations": [[65, "security-considerations"]], "Selecting the right Workspace": [[168, "selecting-the-right-workspace"]], "Send a test email": [[60, "send-a-test-email"]], "Sendmail": [[60, "sendmail"]], "Serve security related headers by the Web server": [[123, "serve-security-related-headers-by-the-web-server"]], "Server": [[131, "server"]], "Server tab": [[79, "server-tab"]], "Server tuning": [[129, null]], "Server-side Encryption": [[25, null]], "Server-side encryption details": [[26, null]], "Server-side encryption migration": [[27, null]], "Service Discovery": [[66, "service-discovery"]], "Service discovery": [[135, "service-discovery"]], "Setting Storage quotas": [[83, "setting-storage-quotas"]], "Setting a hierarchical configuration value": [[146, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[146, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[146, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[60, "setting-mail-server-parameters-in-config-php"]], "Setting up background jobs": [[130, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[120, "setting-up-remirepo-with-php-8-2"]], "Setting up the Correct Nextcloud URL": [[168, "setting-up-the-correct-nextcloud-url"]], "Settings": [[129, "settings"]], "Settings app": [[57, "settings-app"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[162, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[123, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup deploy daemon": [[98, "setup-deploy-daemon"]], "Setup fail2ban": [[123, "setup-fail2ban"]], "Setupchecks": [[146, "setupchecks"]], "Share operations": [[146, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[112, "shared-items"]], "Sharing": [[57, "sharing"]], "Sieve timeout": [[114, "sieve-timeout"]], "Sign the blocks": [[26, "sign-the-blocks"]], "Sign the private key": [[26, "sign-the-private-key"]], "Simple Storage Service (S3)": [[45, "simple-storage-service-s3"]], "Sizing": [[129, "sizing"]], "Skipping pre-login warning": [[65, "skipping-pre-login-warning"]], "Small/Private home server": [[56, "small-private-home-server"]], "Snooze and scheduled sending": [[114, "snooze-and-scheduled-sending"]], "Some files have not passed the integrity check": [[67, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[26, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[79, "special-attributes"]], "Special mechanisms": [[29, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [14, "speech-to-text"]], "Speeding up webhook dispatch": [[167, "speeding-up-webhook-dispatch"]], "Split the file": [[26, "split-the-file"], [26, "id9"]], "Splitting databases": [[22, null]], "Status": [[146, "status"]], "Status Checks": [[102, "status-checks"]], "Status return code": [[146, "status-return-code"]], "Step-by-Step Manual Upgrade": [[139, "step-by-step-manual-upgrade"]], "Storage configuration": [[37, "storage-configuration"]], "Storage of access tokens": [[123, "storage-of-access-tokens"]], "Store the envelope keys": [[26, "store-the-envelope-keys"]], "Store the file": [[26, "store-the-file"]], "Store the file key": [[26, "store-the-file-key"]], "Store the private key": [[26, "store-the-private-key"]], "Subscriptions": [[111, "subscriptions"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[126, "suppressing-log-messages"]], "Sync birthday calendar": [[146, "sync-birthday-calendar"]], "Sync system address book": [[146, "sync-system-address-book"]], "Sync tokens": [[111, "sync-tokens"], [112, "sync-tokens"]], "Synchronising with clients after data recovery": [[143, "synchronising-with-clients-after-data-recovery"]], "System Address Book": [[112, "system-address-book"]], "System Tags": [[146, "system-tags"]], "System address book": [[165, "system-address-book"]], "System configuration": [[23, "system-configuration"]], "System email": [[160, "system-email"]], "System environment variables": [[130, "system-environment-variables"]], "System requirements": [[131, null], [160, "system-requirements"], [161, "system-requirements"], [162, "system-requirements"], [163, "system-requirements"], [164, "system-requirements"], [165, "system-requirements"]], "Systemd service": [[14, "systemd-service"], [167, "systemd-service"]], "TLS / encryption app": [[129, "tls-encryption-app"]], "Table of contents": [[86, null]], "Talk App": [[131, "talk-app"]], "Talk tools": [[2, "talk-tools"]], "Target audience": [[117, "target-audience"]], "Task processing": [[1, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[64, "temporary-overrides"]], "Test Deploy Daemon": [[102, null]], "Testing the configuration": [[79, "testing-the-configuration"]], "Text app": [[68, null]], "Text processing": [[1, "text-processing"], [14, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [14, "text-to-speech"]], "The LDAP configuration API": [[80, null]], "The Smart Picker": [[157, null]], "The access token": [[65, "the-access-token"]], "The brute force settings app": [[55, "the-brute-force-settings-app"]], "The magic listener script": [[168, "the-magic-listener-script"]], "The test with getenv(\"PATH\") only returns an empty response": [[67, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[67, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[67, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[69, null]], "Theming of icons": [[69, "theming-of-icons"]], "Thread Summary": [[114, "thread-summary"]], "Timeout and other connectivity issues": [[116, "timeout-and-other-connectivity-issues"]], "Timeouts": [[114, "timeouts"]], "Tips and tricks": [[126, "tips-and-tricks"]], "Toggle Windows compatibility": [[146, "toggle-windows-compatibility"]], "Traefik 1": [[66, "traefik-1"]], "Traefik 2": [[66, "traefik-2"]], "Transactional file locking": [[42, null]], "Transactional file locking is disabled": [[67, "transactional-file-locking-is-disabled"]], "Transfer": [[146, "transfer"]], "Transferring files to another user": [[40, "transferring-files-to-another-user"]], "Translation": [[114, "translation"]], "Trash bin": [[111, "trash-bin"]], "Trashbin": [[146, "trashbin"]], "Triggering the conversion": [[17, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [19, "troubleshooting"], [25, "troubleshooting"], [55, "troubleshooting"], [60, "troubleshooting"], [96, null], [116, null], [128, "troubleshooting"], [139, "troubleshooting"], [144, "troubleshooting"], [154, null]], "Troubleshooting Web server and PHP problems": [[135, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[135, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[135, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[135, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[135, "troubleshooting-encrypted-files"]], "Troubleshooting file encoding on external storages": [[135, "troubleshooting-file-encoding-on-external-storages"]], "Troubleshooting quota or size issues": [[135, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[135, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[79, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[125, "trusted-domains"]], "Tune PHP-FPM": [[129, "tune-php-fpm"]], "Two-factor authentication": [[78, null], [146, "two-factor-authentication"]], "Types of Values": [[57, "types-of-values"]], "Unable to update contacts or events": [[116, "unable-to-update-contacts-or-events"]], "Uninstallation": [[132, null]], "Unregister": [[100, "unregister"], [101, "unregister"]], "Update": [[101, "update"]], "Update notifications": [[15, "update-notifications"], [145, "update-notifications"]], "Update the reverse proxy configuration": [[152, "update-the-reverse-proxy-configuration"]], "Updating": [[148, "updating"]], "Upgrade distribution packages": [[152, "upgrade-distribution-packages"]], "Upgrade manually": [[139, null]], "Upgrade quickstart": [[142, "upgrade-quickstart"]], "Upgrade the docker image": [[152, "upgrade-the-docker-image"]], "Upgrade tips": [[142, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[160, null]], "Upgrade to Nextcloud 27": [[161, null]], "Upgrade to Nextcloud 28": [[162, null]], "Upgrade to Nextcloud 30": [[163, null]], "Upgrade to Nextcloud 31": [[164, null]], "Upgrade to Nextcloud 32": [[165, null]], "Upgrade via built-in updater": [[144, null]], "Upgrade via snap packages": [[142, null]], "Upload of files greater than 10 MiB fails": [[126, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[23, null]], "Usage": [[8, "usage"], [50, "usage"], [55, "usage"], [90, "usage"]], "Usage Examples": [[100, "usage-examples"]], "Usage of variables for mount paths": [[37, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[123, "use-https"]], "Use OOXML by default for new files": [[147, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[123, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[79, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[114, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[19, "useful-sql-commands"]], "User Experience": [[57, "user-experience"]], "User Interface Preference Defaults": [[114, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[25, "user-keys-sharing-recovery"]], "User Profile attributes": [[79, "user-profile-attributes"]], "User and group mapping": [[79, "user-and-group-mapping"]], "User and group permissions": [[37, "user-and-group-permissions"]], "User authentication with LDAP": [[79, null]], "User authentication with OpenID Connect": [[82, null]], "User commands": [[146, "user-commands"]], "User listing and login per nested groups": [[79, "user-listing-and-login-per-nested-groups"]], "User management": [[71, null], [83, null]], "User migration": [[114, "user-migration"]], "User password policy": [[84, null]], "User provisioning API": [[85, null]], "User session": [[57, "user-session"]], "Users": [[86, null]], "Users tab": [[79, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[135, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[40, "using-file-drop-share-links"]], "Using MariaDB/MySQL instead of SQLite": [[129, "using-mariadb-mysql-instead-of-sqlite"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[82, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[57, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[129, "using-redis-based-transactional-file-locking"]], "Using a self hosted apps store": [[15, "using-a-self-hosted-apps-store"]], "Using cron to perform background jobs": [[129, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[15, "using-custom-app-directories"]], "Using email templates": [[60, "using-email-templates"]], "Using private API": [[15, "using-private-api"]], "Using self-signed certificates": [[37, "using-self-signed-certificates"]], "Using the Redis session handler": [[56, "using-the-redis-session-handler"]], "Using the command line based updater": [[144, "using-the-command-line-based-updater"]], "Using the occ command": [[47, "using-the-occ-command"], [146, null]], "Using the web based updater": [[144, "using-the-web-based-updater"]], "Using the web interface": [[47, "using-the-web-interface"]], "Versions": [[146, "versions"]], "Videos and blogs": [[117, "videos-and-blogs"]], "Warnings on admin page": [[67, null]], "Web browser": [[131, "web-browser"]], "Web server and PHP modules": [[135, "web-server-and-php-modules"]], "Web server configuration": [[160, "web-server-configuration"], [161, "web-server-configuration"], [162, "web-server-configuration"], [163, "web-server-configuration"], [165, "web-server-configuration"]], "WebDAV": [[36, null]], "Webcron": [[54, "webcron"]], "Webhook Listeners": [[167, null]], "Webserver Log Files": [[96, "webserver-log-files"]], "Websocket support with notify_push": [[68, "websocket-support-with-notify-push"]], "What does the updater do?": [[144, "what-does-the-updater-do"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[157, "where-can-it-be-used"]], "Where do they appear?": [[156, "where-do-they-appear"]], "Why did Nextcloud add code signing?": [[134, "why-did-nextcloud-add-code-signing"]], "Why is my prompt slow?": [[14, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[60, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[131, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[168, null]], "Windows compatible filenames": [[47, null]], "Wopi settings": [[147, "wopi-settings"]], "Workflow log": [[64, "workflow-log"]], "XML output": [[72, "xml-output"], [72, "id2"], [72, "id4"], [72, "id6"], [73, "xml-output"], [73, "id2"], [73, "id4"], [73, "id6"], [73, "id7"], [73, "id9"], [74, "xml-output"], [74, "id2"], [74, "id4"], [74, "id5"], [74, "id7"], [74, "id9"], [74, "id11"], [74, "id13"], [74, "id15"], [74, "id17"], [74, "id19"], [74, "id21"], [74, "id23"], [74, "id25"], [74, "id27"], [80, "xml-output"], [80, "id2"], [80, "id4"], [80, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[114, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[67, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[67, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[67, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[67, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[57, "account-manager-default-property-scope"]], "allow_local_remote_servers": [[57, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[57, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[57, "allowed-admin-ranges"]], "allowed_no_password_confirmation_ranges": [[57, "allowed-no-password-confirmation-ranges"]], "appcodechecker": [[57, "appcodechecker"]], "apps_paths": [[57, "apps-paths"]], "appsallowlist": [[57, "appsallowlist"]], "appstoreenabled": [[57, "appstoreenabled"]], "appstoreurl": [[57, "appstoreurl"]], "auth.bruteforce.max-attempts": [[57, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[57, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[57, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[57, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[57, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[57, "auth-webauthn-enabled"]], "auto_logout": [[57, "auto-logout"]], "binary_search_paths": [[57, "binary-search-paths"]], "bulkupload.enabled": [[57, "bulkupload-enabled"]], "cache_app_config": [[57, "cache-app-config"]], "cache_chunk_gc_ttl": [[57, "cache-chunk-gc-ttl"]], "cache_path": [[57, "cache-path"]], "carddav_sync_request_timeout": [[57, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[57, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[57, "check-data-directory-permissions"]], "check_for_working_htaccess": [[57, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[57, "check-for-working-wellknown-setup"]], "cipher": [[57, "cipher"]], "comments.managerFactory": [[57, "comments-managerfactory"]], "config_is_read_only": [[57, "config-is-read-only"]], "connectivity_check_domains": [[57, "connectivity-check-domains"]], "cookie_domain": [[57, "cookie-domain"]], "copied_sample_config": [[57, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[57, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[57, "csrf-optout"]], "customclient_desktop": [[57, "customclient-desktop"]], "data-fingerprint": [[57, "data-fingerprint"]], "datadirectory": [[57, "datadirectory"]], "davstorage.request_timeout": [[57, "davstorage-request-timeout"]], "db.log_request_id": [[57, "db-log-request-id"]], "dbdriveroptions": [[57, "dbdriveroptions"]], "dbhost": [[57, "dbhost"]], "dbname": [[57, "dbname"]], "dbpassword": [[57, "dbpassword"]], "dbpersistent": [[57, "dbpersistent"]], "dbreplica": [[57, "dbreplica"]], "dbtableprefix": [[57, "dbtableprefix"]], "dbtype": [[57, "dbtype"]], "dbuser": [[57, "dbuser"]], "debug": [[57, "debug"]], "default_certificates_bundle_path": [[57, "default-certificates-bundle-path"]], "default_language": [[57, "default-language"]], "default_locale": [[57, "default-locale"]], "default_phone_region": [[57, "default-phone-region"]], "default_timezone": [[57, "default-timezone"]], "defaultapp": [[57, "defaultapp"]], "diagnostics.logging": [[57, "diagnostics-logging"]], "diagnostics.logging.threshold": [[57, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[57, "documentation-url-server-logs"]], "enable_lazy_objects": [[57, "enable-lazy-objects"]], "enable_non-accessible_features": [[57, "enable-non-accessible-features"]], "enable_previews": [[57, "enable-previews"]], "enabledPreviewProviders": [[57, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[57, "encryption-use-legacy-base64-encoding"]], "enforce_theme": [[57, "enforce-theme"]], "errorlog": [[64, "errorlog"]], "external_storage.auth_availability_delay": [[57, "external-storage-auth-availability-delay"]], "file": [[64, "file"]], "filelocking.debug": [[57, "filelocking-debug"]], "filelocking.ttl": [[57, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[57, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[57, "files-chunked-upload-max-size"]], "files.trash.delete": [[57, "files-trash-delete"]], "files_external_allow_create_new_local": [[57, "files-external-allow-create-new-local"]], "files_no_background_scan": [[57, "files-no-background-scan"]], "filesystem_cache_readonly": [[57, "filesystem-cache-readonly"]], "filesystem_check_changes": [[57, "filesystem-check-changes"]], "forbidden_filename_basenames": [[57, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[57, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[57, "forbidden-filename-extensions"]], "forbidden_filenames": [[57, "forbidden-filenames"]], "force_language": [[57, "force-language"]], "force_locale": [[57, "force-locale"]], "forwarded_for_headers": [[57, "forwarded-for-headers"]], "gs.enabled": [[57, "gs-enabled"]], "gs.federation": [[57, "gs-federation"]], "has_internet_connection": [[57, "has-internet-connection"]], "hashingCost": [[57, "hashingcost"]], "hashingMemoryCost": [[57, "hashingmemorycost"]], "hashingThreads": [[57, "hashingthreads"]], "hashingTimeCost": [[57, "hashingtimecost"]], "hashing_default_password": [[57, "hashing-default-password"]], "hide_login_form": [[57, "hide-login-form"]], "htaccess.IgnoreFrontController": [[57, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[57, "htaccess-rewritebase"]], "installed": [[57, "installed"]], "instanceid": [[57, "instanceid"]], "knowledgebase.embedded": [[57, "knowledgebase-embedded"]], "knowledgebaseenabled": [[57, "knowledgebaseenabled"]], "l10n, create JavaScript translation files for apps": [[146, "l10n-create-javascript-translation-files-for-apps"]], "ldap:check-group": [[146, "ldap-check-group"]], "ldap:check-user": [[146, "ldap-check-user"]], "ldap:create-empty-config": [[146, "ldap-create-empty-config"]], "ldap:delete-config": [[146, "ldap-delete-config"]], "ldap:search": [[146, "ldap-search"]], "ldap:set-config": [[146, "ldap-set-config"]], "ldap:show-remnants": [[146, "ldap-show-remnants"]], "ldap:test-config": [[146, "ldap-test-config"]], "ldap:test-user-settings": [[146, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[57, "ldapusercleanupinterval"]], "ldap_log_file": [[57, "ldap-log-file"]], "localstorage.allowsymlinks": [[57, "localstorage-allowsymlinks"]], "localstorage.umask": [[57, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[57, "localstorage-unlink-on-truncate"]], "log.backtrace": [[57, "log-backtrace"]], "log.condition": [[57, "log-condition"]], "log_query": [[57, "log-query"]], "log_rotate_size": [[57, "log-rotate-size"]], "log_type": [[57, "log-type"]], "log_type_audit": [[57, "log-type-audit"]], "logdateformat": [[57, "logdateformat"]], "logfile": [[57, "logfile"]], "logfile_audit": [[57, "logfile-audit"]], "logfilemode": [[57, "logfilemode"]], "login_form_autocomplete": [[57, "login-form-autocomplete"]], "login_form_timeout": [[57, "login-form-timeout"]], "loglevel": [[57, "loglevel"]], "loglevel_dirty_database_queries": [[57, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[57, "loglevel-frontend"]], "logo_url": [[57, "logo-url"]], "logtimezone": [[57, "logtimezone"]], "lookup_server": [[57, "lookup-server"]], "lost_password_link": [[57, "lost-password-link"]], "mail_domain": [[57, "mail-domain"]], "mail_from_address": [[57, "mail-from-address"]], "mail_send_plaintext_only": [[57, "mail-send-plaintext-only"]], "mail_sendmailmode": [[57, "mail-sendmailmode"]], "mail_smtpauth": [[57, "mail-smtpauth"]], "mail_smtpdebug": [[57, "mail-smtpdebug"]], "mail_smtphost": [[57, "mail-smtphost"]], "mail_smtpmode": [[57, "mail-smtpmode"]], "mail_smtpname": [[57, "mail-smtpname"]], "mail_smtppassword": [[57, "mail-smtppassword"]], "mail_smtpport": [[57, "mail-smtpport"]], "mail_smtpsecure": [[57, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[57, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[57, "mail-smtptimeout"]], "mail_template_class": [[57, "mail-template-class"]], "maintenance": [[57, "id1"]], "maintenance_window_start": [[54, "maintenance-window-start"], [57, "maintenance-window-start"]], "max_file_conversion_filesize": [[57, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[57, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[57, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[79, "memberof-read-memberof-permissions"]], "memcache.distributed": [[57, "memcache-distributed"]], "memcache.local": [[57, "memcache-local"]], "memcache.locking": [[57, "memcache-locking"]], "memcache_customprefix": [[57, "memcache-customprefix"]], "memcached_options": [[57, "memcached-options"]], "memcached_servers": [[57, "memcached-servers"]], "metadata_max_filesize": [[57, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[57, "minimum-supported-desktop-version"]], "mount_file": [[57, "mount-file"]], "mysql.collation": [[57, "mysql-collation"]], "mysql.utf8mb4": [[57, "mysql-utf8mb4"]], "nginx": [[23, "nginx"]], "no_unsupported_browser_warning": [[57, "no-unsupported-browser-warning"]], "objectstore": [[57, "objectstore"], [57, "id2"], [57, "id3"]], "objectstore.multibucket.preview-distribution": [[57, "objectstore-multibucket-preview-distribution"]], "occ command Directory": [[146, "occ-command-directory"]], "occ commands": [[55, "occ-commands"]], "openssl": [[57, "openssl"]], "overwrite.cli.url": [[57, "overwrite-cli-url"]], "overwritecondaddr": [[57, "overwritecondaddr"]], "overwritehost": [[57, "overwritehost"]], "overwriteprotocol": [[57, "overwriteprotocol"]], "overwritewebroot": [[57, "overwritewebroot"]], "part_file_in_storage": [[57, "part-file-in-storage"]], "passwordsalt": [[57, "passwordsalt"]], "pgsql_ssl": [[57, "pgsql-ssl"]], "preview_concurrency_all": [[57, "preview-concurrency-all"]], "preview_concurrency_new": [[57, "preview-concurrency-new"]], "preview_ffmpeg_path": [[57, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[57, "preview-ffprobe-path"]], "preview_imaginary_key": [[57, "preview-imaginary-key"]], "preview_imaginary_url": [[57, "preview-imaginary-url"]], "preview_libreoffice_path": [[57, "preview-libreoffice-path"]], "preview_max_filesize_image": [[57, "preview-max-filesize-image"]], "preview_max_memory": [[57, "preview-max-memory"]], "preview_max_x": [[57, "preview-max-x"]], "preview_max_y": [[57, "preview-max-y"]], "profile.enabled": [[57, "profile-enabled"]], "profiler": [[57, "profiler"]], "profiling.path": [[57, "profiling-path"]], "profiling.request": [[57, "profiling-request"]], "profiling.request.rate": [[57, "profiling-request-rate"]], "profiling.sample": [[57, "profiling-sample"]], "profiling.sample.rate": [[57, "profiling-sample-rate"]], "profiling.sample.rotation": [[57, "profiling-sample-rotation"]], "profiling.secret": [[57, "profiling-secret"]], "projects.enabled": [[57, "projects-enabled"]], "proxy": [[57, "proxy"]], "proxyexclude": [[57, "proxyexclude"]], "proxyuserpwd": [[57, "proxyuserpwd"]], "qmail": [[60, "qmail"]], "query_log_file": [[57, "query-log-file"]], "query_log_file_backtrace": [[57, "query-log-file-backtrace"]], "query_log_file_parameters": [[57, "query-log-file-parameters"]], "query_log_file_requestid": [[57, "query-log-file-requestid"]], "quota_include_external_storage": [[57, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[57, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[57, "ratelimit-overwrite"]], "redis": [[57, "redis"]], "redis.cluster": [[57, "redis-cluster"]], "redis_log_file": [[57, "redis-log-file"]], "reduce_to_languages": [[57, "reduce-to-languages"]], "reference_opengraph": [[57, "reference-opengraph"]], "remember_login_cookie_lifetime": [[57, "remember-login-cookie-lifetime"]], "secret": [[57, "secret"]], "security.ipv6_normalized_subnet_size": [[57, "security-ipv6-normalized-subnet-size"]], "session_keepalive": [[57, "session-keepalive"]], "session_lifetime": [[57, "session-lifetime"]], "session_relaxed_expiry": [[57, "session-relaxed-expiry"]], "share_folder": [[57, "share-folder"]], "sharing.allow_custom_share_folder": [[57, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[57, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[57, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[57, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[57, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[57, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[57, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[57, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[57, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[57, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[57, "sharing-minsearchstringlength"]], "simpleSignUpLink.shown": [[57, "simplesignuplink-shown"]], "skeletondirectory": [[57, "skeletondirectory"]], "sort_groups_by_name": [[57, "sort-groups-by-name"]], "sqlite.journal_mode": [[57, "sqlite-journal-mode"]], "supportedDatabases": [[57, "supporteddatabases"]], "syslog": [[64, "syslog"]], "syslog_tag": [[57, "syslog-tag"]], "syslog_tag_audit": [[57, "syslog-tag-audit"]], "systemd": [[54, "systemd"], [64, "systemd"]], "systemtags.managerFactory": [[57, "systemtags-managerfactory"]], "tempdirectory": [[57, "tempdirectory"]], "templatedirectory": [[57, "templatedirectory"]], "theme": [[57, "theme"]], "theming.standalone_window.enabled": [[57, "theming-standalone-window-enabled"]], "token_auth_activity_update": [[57, "token-auth-activity-update"]], "token_auth_enforced": [[57, "token-auth-enforced"]], "transferIncomingShares": [[57, "transferincomingshares"]], "trashbin_retention_obligation": [[57, "trashbin-retention-obligation"]], "trusted_domains": [[57, "trusted-domains"]], "trusted_proxies": [[57, "trusted-proxies"]], "unified_search.enabled": [[57, "unified-search-enabled"]], "updatechecker": [[57, "updatechecker"]], "updatedirectory": [[57, "updatedirectory"]], "updater.release.channel": [[57, "updater-release-channel"]], "updater.server.url": [[57, "updater-server-url"]], "upgrade.cli-upgrade-link": [[57, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[57, "upgrade-disable-web"]], "user:add": [[146, "user-add"]], "user:delete": [[146, "user-delete"]], "user:info": [[146, "user-info"]], "user:lastseen": [[146, "user-lastseen"]], "user:list": [[146, "user-list"]], "user:profile": [[146, "user-profile"]], "user:report": [[146, "user-report"]], "user:resetpassword": [[146, "user-resetpassword"]], "user:setting": [[146, "user-setting"]], "user_ini_additional_lines": [[57, "user-ini-additional-lines"]], "version": [[57, "version"]], "versions_retention_obligation": [[57, "versions-retention-obligation"]], "\u201cCSync unknown error\u201d": [[96, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[96, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/automatic_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_apps", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/accountcommand", "desktop/commandline", "desktop/configfile", "desktop/envvars", "desktop/index", "desktop/massdeployment", "desktop/options", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/index", "groupware/calendar", "groupware/contacts", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_command", "office/configuration", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/automatic_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_apps.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/accountcommand.rst", "desktop/commandline.rst", "desktop/configfile.rst", "desktop/envvars.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/options.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/index.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_command.rst", "office/configuration.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 23, 24, 25, 26, 28, 34, 37, 38, 41, 42, 45, 46, 52, 54, 55, 56, 57, 59, 60, 61, 64, 66, 71, 79, 81, 82, 86, 89, 90, 91, 92, 94, 96, 98, 99, 101, 102, 104, 105, 108, 111, 112, 114, 116, 121, 123, 125, 126, 127, 128, 129, 130, 133, 134, 135, 139, 142, 143, 144, 145, 146, 147, 149, 154, 162, 165, 166, 168], "0": [1, 2, 4, 5, 7, 8, 9, 10, 11, 14, 19, 20, 21, 23, 25, 26, 30, 38, 42, 45, 49, 56, 57, 60, 64, 66, 67, 68, 72, 73, 74, 75, 79, 80, 83, 91, 94, 96, 98, 99, 101, 102, 111, 112, 114, 115, 116, 121, 123, 125, 126, 127, 129, 131, 135, 141, 144, 145, 146, 147, 148, 154, 161, 162, 163, 164, 165, 166], "00": [19, 20, 51, 56, 57, 64, 146], "000": [26, 111, 112], "0000": 146, "001": 57, "0022": 57, "0082c9": 69, "00am": [54, 57], "00iv00": 26, "00sig00": 26, "01": [54, 57, 64, 81, 131, 146], "0100": 60, "0123": 74, "02": [6, 56, 64, 146], "03": [51, 64, 146], "04": [19, 69, 86, 124, 130, 131, 150, 151], "05": [54, 57, 126], "055": 19, "06": 146, "062": 19, "0640": 57, "07": [57, 126], "0750": 31, "0770": 25, "079e7bc89d69792839a5e1831b1cbc80": 116, "08": [57, 146], "09": 64, "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 134, "0e": 51, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15, 19, 20, 21, 23, 25, 26, 28, 30, 40, 44, 45, 52, 54, 55, 56, 57, 60, 63, 64, 67, 68, 72, 73, 74, 79, 80, 86, 90, 91, 92, 94, 96, 98, 99, 101, 102, 111, 112, 114, 116, 121, 123, 125, 126, 127, 129, 130, 131, 133, 141, 144, 145, 146, 148, 154, 160, 161, 163, 164, 165, 166, 167], "10": [1, 2, 4, 5, 6, 7, 9, 10, 14, 19, 20, 21, 38, 41, 44, 51, 52, 55, 57, 60, 64, 66, 79, 83, 84, 86, 91, 96, 99, 111, 112, 114, 120, 131, 141, 146, 147, 163, 164, 167], "100": [7, 23, 26, 44, 54, 57, 72, 73, 74, 114, 154, 162, 166], "1000": [5, 79, 92, 96, 121], "10000": [56, 121], "1000000": 96, "10000000": [91, 96], "100mb": [3, 8, 74, 96], "100mib": 164, "100px": 44, "101": [72, 73, 74], "102": [73, 74], "1024": [29, 57, 114], "103": [73, 74], "103f": 146, "104": 74, "1040": 135, "10485760": 52, "104857600": [23, 45, 57], "105": 74, "106": 74, "107": 74, "1071": 57, "108": 74, "108082": 25, "109": 74, "10gb": 23, "10mib": 164, "10min": 80, "10t15": 64, "10x100": 23, "11": [6, 14, 62, 86, 116, 131, 145, 146, 152], "110": [60, 74], "111": [57, 74], "1110": 146, "112": [57, 74], "11211": [56, 57], "1124": 5, "1125420102": [57, 69], "113": [57, 74], "113556": 79, "114": 64, "11g": [118, 125, 131], "12": [57, 62, 74, 79, 86, 126, 131, 146, 163], "120": 9, "123": 57, "1234": 4, "12345": [8, 74], "1255": 129, "127": [56, 57, 60, 91, 99, 102, 123, 125, 126, 146, 148, 154], "128": [57, 79], "128m": [19, 56], "128mb": 131, "12b": 2, "12gb": [3, 5], "13": [57, 64, 131, 141, 146], "1319": 57, "1393": 116, "13b": 5, "14": [19, 40, 64, 81, 108, 131, 141], "143": 60, "1465910968": 146, "14t08": 146, "15": [26, 35, 37, 45, 51, 57, 64, 79, 80, 109, 111, 112, 114, 131, 141, 146], "1524": 60, "155": 57, "15552000": [67, 123], "15768000": 121, "15778463": 126, "15857": 52, "15m": 114, "15t15": 57, "16": [4, 19, 26, 64, 123, 131, 141], "16000": 8, "162409623552": 146, "162409624662": 146, "164": 79, "168": [19, 38, 57, 60, 64, 90, 123, 125], "16g": 23, "17": [131, 144, 146], "1711971024": 167, "1759739453": 13, "1759739455": 13, "1759739466": 13, "1759739513": 13, "1759740266": 13, "1759743900": 13, "178": 90, "18": [69, 131, 145, 146], "1800": [57, 111, 112], "19": [57, 131, 145, 146], "192": [19, 38, 57, 60, 64, 90, 123, 125], "1941": 79, "19417": 116, "19563": 56, "1970": 131, "198": 57, "19c": 131, "1d": [67, 114], "1d4725ae1ac4e4798b541ca3f3cdce6": 116, "1gb": [2, 6, 23], "1h": 114, "1st": [86, 138, 167], "1und1": 114, "2": [2, 3, 4, 5, 7, 8, 9, 12, 14, 19, 21, 22, 23, 26, 41, 45, 52, 56, 57, 60, 64, 67, 70, 79, 86, 91, 98, 99, 108, 114, 116, 118, 121, 123, 124, 125, 126, 127, 131, 141, 144, 145, 146, 155, 160, 161, 162, 165], "20": [4, 5, 6, 7, 9, 27, 64, 80, 81, 114, 141, 145, 146], "200": [80, 81], "2000": 19, "2001": 57, "2002": 135, "2005": 57, "2006": [86, 135], "20080704": 19, "2013": [57, 60, 64], "2014": 57, "2015": 146, "2016": 23, "2019": 81, "2020": 116, "2021": [64, 120], "2023": 146, "2024": [86, 88, 126, 146, 167], "2025": [4, 86, 88, 126, 146], "2026": [86, 88], "203": 57, "2038": 131, "2048": [5, 79], "20971520": 23, "20mb": 23, "21": [30, 57, 64, 133, 146, 152], "215": 87, "21a7": 57, "21c": 131, "22": [34, 51, 60, 86, 124, 130, 131, 146], "220": 60, "221": 60, "222": 57, "22203": 56, "2245": 60, "23": [126, 146], "23000": 98, "2323": 57, "233": 57, "2375": [99, 100], "23999": 98, "23ai": 131, "23t09": 146, "24": [40, 41, 55, 57, 70, 92, 96, 109, 130, 131, 145, 146, 150, 151, 164], "24000": 100, "24001": 99, "24099": 99, "24b": 2, "25": [25, 51, 55, 57, 60, 64, 92, 126, 141, 145, 146], "250": 60, "2500": 57, "252": 57, "255": 57, "256": [26, 44, 57, 126], "256mb": 131, "2592000": [70, 111], "25t20": 146, "26": [6, 60, 64, 86, 111, 112, 141, 145, 146, 159, 166], "261535": 116, "262086": 116, "262087": 116, "26396": 133, "26406": 133, "27": [86, 112, 139, 141, 145, 159, 166], "28": [7, 57, 86, 115, 139, 141, 145, 159, 161, 166], "28451": 57, "288": 54, "28800": 57, "29": [15, 21, 57, 64, 139, 141, 145], "2b": 67, "2c5778476346786306303": 57, "2d": 51, "2def0f3597806ecb886da1d9cc323a7c": 116, "2f": 80, "2fa": [78, 114], "2fldap": 80, "2gb": [3, 23], "2k": 19, "2m": 19, "2nd": 79, "2x": 164, "3": [1, 2, 3, 5, 7, 8, 10, 13, 14, 15, 19, 21, 26, 52, 57, 60, 64, 69, 72, 90, 91, 96, 98, 99, 114, 118, 123, 125, 127, 130, 131, 135, 141, 144, 145, 146, 156, 162, 163, 164, 165, 166, 167], "30": [8, 11, 23, 38, 41, 46, 49, 55, 57, 60, 70, 79, 83, 86, 91, 98, 111, 112, 114, 116, 129, 141, 146, 159, 164, 165], "300": [57, 81, 91, 92, 99, 114, 126], "30000": [91, 111, 112], "301": [66, 121, 123, 126, 135], "302": 126, "30566": 48, "3060": 98, "31": [10, 47, 51, 57, 86, 116, 120, 141, 159], "3100": 165, "31536000": 126, "3166": 57, "31d4a230559d4f3e2c471d3ea094": 134, "32": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168], "32bit": 23, "32m": [19, 56], "33": 146, "3306": [17, 60], "34": 69, "34262": 129, "35": 25, "36": [19, 64], "3600": [23, 57, 79, 114, 121, 146], "3600000": 91, "365": [57, 70], "37": [57, 64, 116], "389": [79, 80], "39": 60, "3a": 80, "3mb": 114, "3rd": [57, 60, 109, 135, 139, 145, 147, 155, 157], "3rdparti": [86, 120, 126, 128], "4": [1, 2, 3, 4, 5, 11, 14, 18, 19, 23, 35, 45, 54, 56, 57, 60, 64, 67, 72, 79, 86, 114, 116, 120, 123, 126, 127, 129, 131, 137, 139, 145, 146, 147, 152, 160, 163, 164, 165, 166, 167], "40": 51, "400": 11, "4000": 5, "40000": 8, "404": 126, "4086": 123, "4096": [5, 57], "41395": 162, "42": [13, 57, 167], "4200": 45, "425": 60, "429": [55, 57], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 134, "43200": 123, "4389": 64, "44": 146, "4418": 60, "443": [45, 57, 121, 123, 126, 148], "444": 121, "45": 57, "450": 6, "456": 74, "46": 146, "465": 60, "46cfa6e729ff329e6ede076853154113": 116, "47": 52, "48": [55, 96], "483": 116, "49": [57, 116, 131], "4966612345678": 79, "497": 116, "4a87e94522a3cf26dba8977ae901094d": 116, "4gb": [6, 7, 23], "4h": [7, 10], "4k": 126, "5": [0, 1, 2, 3, 14, 15, 45, 54, 56, 57, 64, 83, 90, 91, 92, 99, 104, 111, 112, 114, 116, 121, 123, 130, 131, 135, 144, 145, 146, 163, 167], "50": [38, 41, 57, 81, 83, 96, 111, 112, 114, 125], "500": [25, 57, 80, 83, 126, 135, 146], "5000": [57, 91, 111, 112, 165], "5000000": 91, "50000000": 96, "5000000000": 91, "500mb": 3, "501": 116, "502": 86, "504": [23, 126], "50m": 57, "51": [57, 81], "512": [92, 116, 121], "512k": 126, "512m": 126, "512mb": [43, 86, 126, 127, 131], "512x512": 9, "513": 116, "513m": 121, "515a13302a6b3950a9d0fdb970191a": 57, "51747": 23, "52": [57, 131], "5226": 96, "5242880": 92, "52428800": 60, "524288000": [45, 57], "5242880000": 45, "53": 23, "537": 64, "537919488": 121, "55": [60, 64, 146], "5545": 146, "56": [19, 57, 60, 64], "5646": 57, "57b58edb6637fe3059b3595cf9c41b9": 57, "587": [60, 116], "5e": 51, "5f": 51, "5gb": 6, "5min": 54, "5pm": 104, "6": [3, 4, 11, 13, 20, 26, 27, 52, 56, 57, 67, 69, 92, 111, 114, 116, 121, 127, 131, 140, 146, 152, 164], "60": [14, 19, 44, 57, 70, 92, 126, 129, 167], "600": [79, 80], "6000": 96, "60000": 91, "6072": 26, "61": 51, "62": 69, "6226r": [7, 10], "6238": 78, "62mb": 116, "63072000": 70, "631": 60, "6321": 146, "636": 79, "6379": [42, 56, 57, 120, 121], "639": 63, "64": [19, 23, 26, 45, 51, 56, 57, 60, 126, 131], "640": 139, "64bit": [18, 86], "64m": [19, 60], "67336bcdf7630dd80b2b81a413d07": 57, "68": 64, "6f": 51, "7": [14, 26, 40, 49, 52, 57, 64, 114, 120, 126, 127, 131, 140, 141, 146, 160, 166], "7000": [56, 57], "7001": [56, 57], "7002": 56, "7003": 56, "7004": 56, "7005": 56, "70b": 5, "71d5": 146, "72": 123, "7200": 114, "7200000": 91, "7265": 146, "73": 51, "750": 139, "767": 57, "77": 11, "770": 56, "78": 165, "789": 74, "7b": [5, 11, 51], "7d": 126, "7urtvsj": 45, "8": [3, 4, 6, 7, 10, 11, 19, 20, 57, 68, 69, 86, 98, 114, 116, 123, 124, 126, 127, 129, 130, 131, 135, 141, 160, 161, 162, 163, 164, 165], "80": [6, 44, 51, 60, 120, 123, 126, 129, 130], "8000": 5, "800mb": 10, "8080": [57, 90, 91, 99, 130], "8081": 57, "8088": 57, "8096": 26, "8147": 26, "8192": 26, "83": 116, "83379f9bc36915d5024de878386060b5": 116, "84": [19, 60], "840": 79, "8443": 45, "8546": 25, "85a3": 57, "86": 146, "8601": 57, "86400": 123, "8651a9ac37674907606c936ced1333d7": 116, "8780": [99, 100], "8781": 99, "8782": [99, 100], "8802": 126, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 134, "89": 64, "8a": 51, "8a20": 57, "8b": [1, 2, 5], "8bitmim": 60, "8d3": 57, "8dd0e0ef2f7ab100b75922489ff26306": 116, "8e9f60369dce3d8b2b27430bd50ec46d": 116, "8gb": [3, 5, 9], "8m": 129, "9": [19, 25, 38, 57, 69, 72, 79, 83, 104, 114, 131, 146, 163], "90": [1, 19, 129], "9000": [126, 129], "9031": 8, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 134, "94": 116, "95": [11, 51, 57], "95a8": 146, "95af": 146, "97": [51, 116], "98": 146, "9825679": 2, "9839": 116, "98543234": 2, "9876": 79, "99": 57, "993": [60, 116], "995": 60, "9980": [148, 153], "9999": [45, 79], "9_": 79, "9am": 104, "9e": 51, "A": [3, 4, 5, 7, 9, 11, 19, 22, 25, 30, 32, 33, 37, 38, 40, 45, 49, 54, 56, 57, 60, 66, 67, 78, 79, 83, 84, 92, 94, 96, 98, 99, 111, 114, 116, 121, 123, 125, 126, 130, 131, 134, 135, 139, 140, 143, 146, 148, 151, 156, 160, 166], "AND": 135, "And": [3, 28, 35, 45, 54, 56, 60, 86, 93, 121, 139, 144, 146, 166], "As": [4, 14, 19, 23, 40, 44, 47, 52, 56, 75, 81, 96, 98, 104, 111, 116, 117, 120, 121, 123, 140, 141, 146, 162, 166], "At": [0, 1, 2, 3, 5, 6, 9, 11, 60, 67, 78, 79, 111, 112, 140], "BY": [19, 122], "Be": [8, 14, 20, 40, 56, 57, 60, 79, 98, 99, 111, 125, 126, 135, 154], "But": [44, 47, 55, 57, 99, 129, 164], "By": [15, 23, 25, 31, 38, 44, 45, 47, 48, 49, 50, 54, 57, 64, 69, 78, 79, 83, 97, 101, 111, 114, 123, 126, 130, 134, 142, 143, 146, 147, 149, 166], "For": [1, 3, 6, 7, 8, 13, 14, 15, 19, 20, 22, 23, 25, 26, 30, 34, 35, 37, 38, 41, 42, 46, 48, 49, 51, 52, 53, 54, 55, 56, 57, 61, 66, 67, 79, 81, 83, 89, 94, 96, 97, 98, 99, 102, 111, 112, 116, 120, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 145, 146, 147, 148, 151, 152, 162, 165, 166, 167, 168], "IF": [19, 122], "IT": 130, "If": [3, 5, 6, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 35, 37, 38, 40, 41, 42, 44, 45, 46, 47, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 66, 67, 69, 75, 76, 78, 79, 82, 83, 89, 91, 94, 96, 98, 99, 100, 104, 111, 112, 114, 115, 116, 120, 122, 123, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 162, 163, 164, 165, 166, 167, 168], "In": [0, 1, 3, 5, 6, 13, 14, 15, 19, 20, 22, 23, 25, 26, 28, 31, 37, 38, 39, 40, 45, 49, 52, 54, 55, 56, 57, 60, 63, 65, 67, 69, 75, 77, 78, 79, 82, 84, 90, 96, 98, 99, 100, 102, 104, 105, 111, 114, 116, 120, 121, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 141, 143, 144, 146, 147, 151, 154, 156, 162, 168], "It": [1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 16, 17, 19, 22, 23, 25, 28, 33, 38, 41, 42, 45, 46, 55, 56, 57, 58, 60, 61, 65, 67, 78, 79, 80, 90, 91, 94, 96, 97, 98, 99, 100, 104, 105, 111, 112, 115, 116, 118, 121, 123, 125, 126, 127, 128, 129, 130, 132, 134, 135, 139, 140, 143, 144, 145, 146, 147, 154, 160, 162, 164, 165, 166, 167, 168], "Its": 55, "NO": 140, "NOT": [19, 56, 57, 94, 99, 122, 146], "No": [2, 14, 22, 25, 35, 57, 67, 91, 98, 105, 109, 135, 144, 146, 154], "Not": [19, 43, 50, 55, 57, 86, 96, 116], "ON": [19, 20, 57, 122], "Of": [125, 135, 168], "On": [17, 19, 27, 35, 37, 38, 52, 54, 55, 56, 60, 61, 66, 79, 83, 91, 96, 120, 122, 130, 135, 140, 142, 148, 166], "One": [8, 40, 45, 96, 98, 130, 146, 151], "Or": [97, 117, 130], "TO": [19, 57, 122], "That": [19, 24, 52, 57, 59, 60, 79, 111, 112, 114, 139, 148], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 41, 44, 45, 46, 47, 49, 52, 53, 54, 56, 57, 58, 60, 61, 62, 63, 64, 66, 68, 69, 70, 71, 74, 75, 76, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 137, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 158, 160, 161, 162, 163, 164, 165, 166, 167], "Then": [19, 25, 26, 52, 60, 61, 69, 79, 81, 121, 122, 123, 125, 129, 130, 139, 140, 145, 146, 166], "There": [3, 23, 25, 28, 40, 44, 45, 49, 55, 56, 57, 60, 61, 67, 79, 81, 94, 96, 99, 100, 101, 108, 118, 123, 130, 132, 134, 135, 140, 145, 146, 151, 156], "These": [1, 2, 3, 24, 25, 26, 29, 31, 35, 37, 54, 57, 67, 78, 79, 81, 99, 114, 120, 123, 127, 129, 130, 139, 145, 146, 147, 159, 166], "To": [3, 4, 12, 15, 19, 24, 25, 28, 30, 35, 37, 41, 42, 45, 46, 47, 49, 52, 53, 54, 56, 57, 60, 65, 67, 68, 75, 78, 79, 81, 83, 86, 90, 95, 96, 101, 111, 112, 114, 115, 116, 117, 121, 122, 123, 128, 129, 130, 131, 132, 134, 135, 137, 139, 140, 143, 144, 145, 146, 147, 148, 157, 162, 166, 167, 168], "WITH": 19, "Will": [40, 146], "With": [0, 26, 40, 57, 60, 69, 99, 126, 135, 145, 146, 156, 164, 168], "_": [79, 83, 90], "__host": [62, 86], "_arm64": 126, "_bin": 57, "_complet": 146, "_context_chat_": 3, "_groupsr": 123, "_postgresql": 121, "_static": [57, 167, 168], "a2enmod": [130, 148], "a2ensit": 130, "a3b30430b1ccb41089170eecbe315d3a": 116, "a4": 51, "a92c": 57, "aaliyah": 81, "aaliyah_brown": 81, "aaliyah_hamm": 81, "aaliyah_johnston": 81, "aaliyah_kunz": 81, "aavx": 137, "aax": 143, "abbrevi": 83, "abil": [6, 13, 55, 106, 130, 146, 147], "abl": [2, 3, 8, 15, 20, 26, 29, 35, 37, 40, 47, 50, 54, 60, 63, 69, 74, 79, 83, 96, 98, 100, 102, 104, 105, 111, 114, 123, 127, 130, 142, 150, 153, 154], "abort": [57, 78, 92], "about": [1, 2, 3, 6, 7, 8, 11, 15, 25, 33, 42, 45, 48, 57, 64, 67, 74, 76, 78, 79, 81, 83, 86, 96, 99, 111, 114, 115, 116, 117, 120, 123, 126, 129, 130, 133, 134, 135, 140, 145, 146, 154, 162, 164, 165], "abov": [1, 3, 4, 5, 14, 17, 19, 23, 40, 49, 56, 57, 62, 69, 75, 79, 85, 86, 89, 94, 96, 99, 100, 111, 116, 118, 120, 123, 126, 129, 130, 133, 134, 135, 139, 144, 146, 162], "absenc": 79, "absolut": [15, 57, 66, 79, 101, 135, 146], "abstract": [129, 132], "abund": 135, "abus": 86, "abuse_detect": 114, "abuse_number_of_messages_per_15m": 114, "abuse_number_of_messages_per_1d": 114, "abuse_number_of_messages_per_1h": 114, "abuse_number_of_recipients_per_message_threshold": 114, "acc": 52, "accel": 23, "accent": [7, 57], "accept": [13, 28, 29, 37, 38, 45, 57, 60, 63, 67, 82, 96, 99, 100, 114, 115, 154, 167], "access": [0, 2, 8, 12, 13, 14, 15, 23, 25, 28, 29, 30, 31, 35, 37, 38, 40, 45, 49, 50, 54, 55, 57, 60, 61, 62, 64, 66, 75, 78, 79, 82, 83, 86, 90, 96, 98, 99, 100, 102, 105, 107, 108, 112, 116, 117, 120, 124, 125, 129, 130, 135, 140, 143, 144, 146, 150, 154, 157, 166, 167], "access_log": [96, 126], "accessible_featur": 86, "accident": [101, 144], "acclaim": 5, "accommod": [96, 139, 145], "accomplish": 111, "accord": [41, 57, 69, 79, 87, 141, 146, 147, 151], "accordingli": [19, 23, 25, 56, 57, 79, 99], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 26, 33, 40, 50, 54, 55, 57, 60, 65, 70, 75, 78, 79, 81, 83, 86, 93, 96, 113, 127, 130, 146, 150, 167], "account_kei": 45, "account_manag": [75, 79, 86], "account_nam": 45, "accountid": 116, "accountmanag": [57, 75], "accumul": 96, "accur": [135, 145, 162], "accuraci": [5, 7, 8, 10, 45], "accuweath": 13, "achiev": [9, 115, 123], "acl": [49, 57, 66, 114], "acm": [69, 126], "acquir": [56, 116], "across": [1, 7, 10, 29, 56, 57, 98, 114, 127], "act": [1, 2, 5, 7, 9, 10, 11, 64, 111], "action": [1, 2, 3, 14, 16, 38, 49, 52, 54, 55, 57, 67, 86, 95, 98, 99, 107, 114, 124, 135, 144, 146, 168], "activ": [15, 16, 22, 26, 40, 41, 42, 46, 52, 54, 56, 58, 60, 62, 64, 72, 77, 78, 80, 83, 85, 86, 91, 111, 112, 121, 123, 127, 129, 130, 131, 135, 140, 144, 146, 147, 166], "activity_": 22, "activity_dbdriveropt": 22, "activity_dbhost": 22, "activity_dbnam": 22, "activity_dbpassword": 22, "activity_dbport": 22, "activity_dbus": 22, "activity_expire_dai": [49, 57], "activity_expire_exclude_us": 49, "activity_use_cached_mountpoint": [49, 57], "actor": [55, 123], "actual": [1, 4, 19, 23, 26, 55, 67, 99, 127, 135, 144, 146, 165], "ad": [2, 6, 8, 17, 21, 24, 25, 26, 40, 43, 49, 54, 55, 56, 57, 60, 61, 64, 66, 67, 70, 79, 86, 94, 111, 112, 113, 115, 116, 121, 123, 129, 130, 131, 146, 147, 150, 160, 163, 164, 165, 168], "ad2dab17b2f9": 146, "adapt": [56, 99, 123, 126, 135, 140, 152, 166], "add": [0, 2, 6, 19, 20, 22, 37, 38, 40, 49, 50, 56, 57, 58, 60, 61, 62, 64, 73, 75, 78, 79, 83, 86, 96, 98, 100, 111, 112, 114, 116, 120, 121, 123, 126, 129, 130, 135, 137, 141, 145, 147, 148, 154, 155, 161, 162, 163, 167], "add_head": [23, 126], "addendum": [12, 86], "addit": [1, 3, 4, 15, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 41, 45, 50, 51, 52, 55, 57, 64, 69, 71, 78, 80, 83, 86, 93, 96, 97, 98, 99, 101, 102, 103, 111, 120, 122, 123, 125, 127, 128, 129, 131, 132, 134, 135, 139, 146, 150, 166, 167, 168], "addition": [38, 56, 79, 81, 111, 112, 135, 146, 165], "additional_opt": 99, "address": [2, 8, 19, 25, 38, 40, 52, 54, 57, 64, 66, 67, 74, 75, 76, 79, 80, 83, 86, 90, 91, 96, 98, 99, 100, 102, 104, 113, 114, 124, 125, 130, 142, 145, 147, 166], "address_of_remote_machin": 99, "addressbook": [38, 57, 86, 112, 123, 135], "addressbookchang": 112, "addressbookid": 135, "addserv": 57, "addus": 146, "adequ": [23, 79, 111, 112, 131], "adjust": [1, 8, 14, 19, 20, 41, 43, 44, 45, 47, 55, 57, 64, 69, 79, 86, 91, 92, 96, 99, 121, 126, 127, 128, 129, 130, 131, 135, 139, 141, 152, 163, 164, 165, 166, 167, 168], "adm": 73, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 25, 31, 37, 38, 40, 42, 49, 50, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 68, 69, 71, 72, 73, 74, 78, 79, 80, 83, 85, 86, 94, 96, 98, 99, 102, 111, 112, 114, 115, 116, 118, 120, 124, 125, 129, 130, 134, 135, 139, 140, 142, 144, 145, 146, 147, 148, 149, 162, 166, 168], "admin_": 167, "admin_audit": 86, "admin_manu": 57, "administ": 117, "administartor": 57, "administr": [0, 1, 2, 6, 13, 15, 19, 25, 26, 37, 40, 47, 48, 49, 54, 55, 57, 58, 60, 61, 62, 64, 65, 71, 75, 78, 84, 86, 96, 99, 104, 106, 108, 111, 114, 117, 123, 125, 130, 135, 142, 145, 146, 154, 155, 162, 165, 166, 167], "adminlogin": 53, "adminpass": 53, "adminw": [148, 153], "advanc": [35, 43, 49, 53, 66, 69, 71, 86, 100, 103, 130, 151, 168], "advantag": [26, 29, 53, 54, 86], "advertis": [54, 57], "advic": 57, "advis": [8, 147, 164], "ae": [3, 26, 57, 129], "aegi": 78, "affect": [14, 22, 23, 24, 25, 57, 58, 64, 79, 96, 104, 116, 129, 131, 135, 152], "after": [1, 3, 4, 8, 13, 14, 15, 17, 19, 24, 25, 29, 34, 35, 41, 42, 44, 45, 46, 47, 49, 53, 54, 55, 56, 57, 59, 60, 61, 64, 65, 70, 76, 77, 79, 83, 86, 91, 94, 95, 96, 98, 99, 101, 102, 104, 105, 108, 112, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 154, 162, 166, 167, 168], "afterward": [55, 78, 79, 114, 130, 141, 143, 144, 148], "ag": [7, 43, 57, 83, 86, 107, 121, 123, 126], "again": [3, 15, 17, 25, 27, 37, 40, 41, 49, 57, 67, 74, 78, 79, 83, 104, 111, 115, 116, 120, 121, 139, 141, 144, 145, 146, 154], "against": [0, 3, 25, 55, 66, 70, 79, 83, 84, 105, 166, 168], "agenda": 114, "agent": [5, 12, 14, 57, 61, 64, 86, 104], "aggreg": 57, "aggress": 166, "agpl": 72, "agplv3": 15, "agre": 123, "ahead": 166, "ai": [2, 3, 4, 5, 7, 12, 13, 86, 98, 114], "ai_provid": 8, "aim": [123, 152], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 86, 98, 103, 127, 129, 130, 167], "ajax": [86, 114, 126, 146, 147], "aka": 130, "alarm": [86, 113], "albert": 146, "alert": [52, 86], "algorithm": [57, 99, 100, 116, 123, 143], "alia": [79, 114, 130, 146], "alias": 86, "aliasgroup1": 148, "aliasgroup2": 148, "alic": [37, 79, 146], "alice_1337": 79, "align": 60, "aliv": 57, "all": [1, 2, 3, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 23, 24, 26, 30, 31, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 54, 55, 56, 58, 61, 62, 64, 68, 75, 78, 79, 80, 81, 83, 85, 86, 90, 91, 92, 95, 96, 98, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 117, 120, 121, 122, 125, 126, 128, 129, 130, 132, 134, 135, 139, 140, 142, 143, 144, 145, 147, 150, 151, 152, 155, 162, 165, 166, 167, 168], "allenai": [5, 11], "alloc": [44, 57], "allow": [1, 2, 3, 5, 7, 14, 15, 19, 22, 23, 24, 26, 28, 29, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 57, 60, 61, 62, 65, 66, 70, 74, 79, 80, 82, 83, 86, 89, 90, 94, 97, 98, 99, 101, 104, 105, 108, 112, 114, 115, 123, 124, 125, 126, 127, 129, 130, 131, 144, 146, 147, 151, 154, 155, 163, 168], "allow_custom_share_fold": 86, "allow_disabled_password_enforcement_group": 86, "allow_local_infil": 19, "allow_local_remote_serv": [86, 114], "allow_persist": 19, "allow_self_sign": 60, "allow_url_fopen": 30, "allow_user_to_change_display_nam": 86, "allowcleanup": 13, "allowed_admin_rang": [86, 123], "allowed_no_password_confirmation_rang": 86, "allowed_user_ag": 86, "allowencodedslash": 148, "allowoverrid": [120, 130, 135], "allowselfsignedcertif": 86, "allowsymlink": 86, "almost": [57, 79, 130], "along": [3, 5, 17, 41, 57, 90, 123, 146], "alongsid": 57, "alpin": [90, 131], "alpinelinux": 90, "alreadi": [3, 8, 15, 16, 17, 20, 25, 44, 53, 57, 58, 73, 74, 79, 96, 99, 102, 112, 114, 121, 123, 125, 127, 128, 129, 130, 141, 144, 146, 152, 162, 166], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 23, 25, 33, 37, 38, 39, 40, 44, 45, 47, 48, 49, 50, 54, 55, 56, 57, 61, 64, 66, 69, 74, 75, 78, 79, 81, 82, 83, 85, 89, 90, 92, 95, 96, 98, 99, 101, 102, 104, 105, 108, 111, 112, 114, 116, 120, 121, 122, 123, 126, 127, 129, 130, 131, 132, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 152, 154, 155, 162, 163, 164, 165, 166, 167, 168], "alter": [19, 20, 41, 46, 79, 164], "altern": [2, 23, 47, 54, 62, 69, 86, 96, 127, 130, 133, 137, 146], "although": [40, 69, 146], "altitud": 123, "alwai": [1, 3, 5, 7, 14, 15, 26, 36, 37, 40, 49, 52, 57, 63, 64, 68, 78, 79, 93, 99, 100, 117, 121, 123, 125, 126, 127, 129, 134, 135, 139, 145, 146, 148, 162, 166, 167, 168], "amazon": [37, 45, 57, 86, 165], "amazonaw": 45, "amd": [3, 102], "american": 10, "among": [0, 3, 82, 127, 166], "amongst": 98, "amount": [8, 44, 56, 79, 81, 96, 123, 129, 130, 165], "amp": 80, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 19, 23, 25, 26, 28, 29, 30, 33, 35, 37, 38, 40, 42, 45, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 66, 69, 71, 74, 75, 76, 77, 78, 79, 80, 83, 85, 86, 89, 90, 94, 96, 98, 99, 101, 104, 106, 111, 112, 114, 115, 116, 120, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 139, 142, 143, 144, 145, 147, 148, 149, 151, 154, 156, 160, 162, 164, 165, 166, 167, 168], "analyt": 14, "analyz": [57, 114], "andrew": 2, "android": [57, 61, 62, 69, 86, 104, 117, 131], "android_app": 51, "androidclienturl": 69, "angel": 87, "ani": [0, 2, 3, 5, 7, 13, 14, 15, 17, 19, 22, 23, 24, 25, 26, 29, 31, 34, 35, 36, 38, 40, 42, 45, 49, 50, 52, 53, 54, 55, 56, 57, 60, 61, 64, 66, 67, 78, 79, 81, 82, 83, 85, 86, 89, 90, 96, 97, 98, 99, 100, 101, 102, 104, 108, 111, 112, 114, 123, 125, 129, 130, 131, 134, 135, 140, 144, 145, 146, 154, 155, 160, 162, 166, 167, 168], "anim": [6, 57], "anna": 2, "anni": 146, "anniversari": 166, "announc": [60, 79, 123], "anon": 57, "anonym": [79, 123, 150], "anoth": [19, 25, 36, 43, 45, 66, 67, 68, 76, 78, 83, 86, 94, 96, 114, 123, 126, 128, 132, 134, 135, 145, 146, 148, 162, 163, 166], "ansi": 146, "answer": [1, 2, 57, 79, 168], "anti": [52, 57, 86], "anticip": 166, "antiviru": [62, 86], "anymor": [57, 74, 79, 86, 146, 165], "anyon": 40, "anyth": [13, 19, 28, 52, 55, 57, 111, 112, 139, 140, 146], "anytim": [46, 57, 83], "anywher": [29, 121, 125], "apach": [16, 38, 56, 57, 65, 67, 86, 96, 122, 123, 124, 125, 131, 135, 142, 146, 162], "apache2": [56, 86, 96, 122, 123, 127, 130, 135, 148], "apart": 120, "apc": [56, 57, 164], "apcu": [57, 62, 67, 86, 120, 127, 164], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 25, 33, 40, 57, 65, 71, 82, 84, 86, 96, 98, 99, 102, 114, 123, 126, 129, 147, 156, 162, 167, 168], "apirequest": [72, 73, 74, 80, 85], "app": [0, 12, 13, 17, 22, 24, 37, 38, 39, 40, 41, 44, 46, 50, 51, 54, 56, 59, 61, 62, 65, 67, 69, 71, 75, 78, 79, 80, 81, 82, 83, 85, 94, 96, 97, 101, 102, 103, 104, 105, 106, 108, 111, 112, 114, 115, 116, 120, 121, 122, 123, 124, 126, 127, 128, 130, 137, 139, 141, 142, 144, 145, 150, 151, 154, 155, 156, 157, 162, 165, 166, 167, 168], "app1": 146, "app2": 146, "app3": 146, "app_api": [2, 3, 4, 8, 86, 100, 101, 168], "app_api_haproxy_us": 99, "app_container_nam": 99, "app_display_nam": 8, "app_host": 8, "app_id": [8, 100, 102], "app_port": 8, "app_python_skeleton": 101, "app_secret": 8, "app_upd": 15, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 86, 97, 99, 100, 101, 102, 103, 168], "appapi_nextcloud": 168, "apparmor": 57, "appcodecheck": [15, 86], "appconfig": [57, 146], "appdata": [86, 91, 96], "appdata_instanceid": 57, "appdata_xxx": 146, "appear": [6, 19, 24, 25, 31, 53, 55, 57, 60, 61, 62, 67, 76, 79, 83, 86, 96, 98, 122, 125, 129, 134, 135, 146, 155], "appelman": 72, "append": [1, 16, 26, 40, 54, 57, 79, 133, 144], "appframework": 102, "appid": [3, 13, 72, 99, 101, 133, 134], "appimag": 131, "appinfo": [72, 134], "appl": [57, 69, 96, 131], "applewebkit": 64, "appli": [8, 20, 22, 23, 24, 26, 38, 40, 41, 53, 57, 60, 63, 67, 74, 75, 79, 83, 86, 99, 105, 116, 123, 130, 136, 143, 145, 146], "applianc": [130, 140], "applic": [0, 2, 8, 15, 25, 37, 45, 51, 56, 57, 62, 64, 70, 72, 79, 81, 85, 86, 95, 96, 98, 99, 104, 111, 114, 117, 124, 126, 129, 130, 132, 134, 135, 139, 140, 143, 145, 146, 147, 166], "appnam": 146, "appoint": [58, 111], "apppassword": 94, "appreci": [5, 7, 9, 10], "approach": [25, 54, 64, 86, 138, 139, 166], "appropri": [26, 37, 40, 55, 56, 57, 63, 99, 111, 114, 118, 122, 126, 129, 130, 133, 139, 140, 146, 166], "approv": 86, "approve_link": 168, "approxim": [57, 79, 91, 96, 166], "apps_path": [15, 86], "appsallowlist": 86, "appstor": [15, 57], "appstoreen": [15, 86], "appstoreurl": [15, 86], "april": [64, 167], "apt": [52, 122, 123, 148, 149], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 69, 70, 74, 75, 76, 77, 78, 79, 80, 81, 83, 86, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 162, 163, 165, 166, 167, 168], "arab": 4, "arbitrari": [1, 37, 57], "arch": [90, 146], "architectur": [23, 57, 86, 102, 130, 142], "archiv": [57, 86, 90, 116, 120, 122, 130, 139, 144, 145, 146], "area": [50, 66, 130, 157], "arg": 126, "arg_v": 126, "argon2": [57, 127], "argument": [16, 35, 45, 49, 57, 72, 73, 74, 79, 80, 86, 126, 135, 146], "aris": [57, 140, 166], "arm32v7": 146, "around": [10, 14, 15, 86, 104, 105, 117, 166], "arrai": [15, 42, 45, 48, 53, 57, 60, 65, 66, 74, 75, 79, 80, 86, 99, 111, 120, 121, 125, 134, 167], "arrang": 166, "arraycach": 57, "art": 123, "articl": [129, 135], "artifact": 11, "artifici": [0, 1, 14, 86, 98], "asc": [120, 122], "ascii": [57, 68, 79, 127, 134], "asdf": 64, "asid": 165, "ask": [1, 2, 3, 12, 13, 16, 17, 40, 60, 76, 79, 82, 83, 86, 91, 114, 135, 143, 144, 145, 146, 150, 156, 162], "aspect": [57, 146], "assembl": 23, "assembli": 23, "asset": [66, 69, 123, 126, 163], "asset_immut": 126, "assetlink": 86, "assign": [2, 35, 75, 79, 81, 83, 86, 104, 107, 108, 129, 146, 168], "assignable\u00b2": 146, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 57, 86, 96, 105, 114, 144], "assistant_en": 1, "associ": [17, 40, 51, 55, 78, 79, 96, 135, 166], "assum": [8, 19, 55, 57, 60, 79, 99, 111, 112, 121, 123, 130, 135, 140, 142, 143, 144], "assumpt": 126, "asterisk": 146, "astroc": 146, "astronomi": 146, "async": 168, "asynchron": 168, "atom": [57, 126], "attach": [1, 14, 35, 79, 86, 100, 167], "attack": [26, 55, 109, 123, 165], "attempt": [22, 25, 55, 76, 79, 86, 96, 102, 104, 123, 135, 146], "attend": 2, "attende": 111, "attr": 80, "attr_persist": 57, "attribut": [37, 57, 73, 74, 75, 80, 85, 86, 146], "attributenam": 80, "auckland": 57, "audienc": 86, "audio": [2, 4, 6, 14, 48, 57, 161, 162], "audit": [57, 62, 86, 123, 128], "auth": [55, 60, 78, 85, 86, 99, 126, 146, 168], "auth_availability_delai": 86, "authent": [2, 19, 25, 26, 28, 30, 31, 32, 33, 34, 36, 37, 43, 45, 55, 57, 60, 65, 71, 72, 73, 74, 77, 80, 83, 86, 89, 96, 99, 113, 123, 127, 130, 135, 140, 160, 167], "author": [2, 22, 50, 65, 72, 73, 74, 82, 83, 86, 111, 114, 127, 130, 134], "authorit": 143, "authorized_kei": [29, 34], "authtyp": 130, "auto": [4, 16, 25, 38, 40, 41, 46, 57, 69, 79, 80, 86, 120, 123, 146], "auto_index": 3, "auto_logout": 86, "auto_reset_persist": 19, "autocomplet": [40, 57, 79, 86, 112], "autoconfig": [53, 86], "autoconfigur": [57, 116], "autocr": [45, 57], "autofil": 98, "autom": [3, 57, 79, 86, 89, 104, 107, 108, 116, 130, 144, 168], "automat": [2, 3, 4, 6, 14, 17, 25, 35, 37, 40, 41, 46, 47, 49, 52, 54, 55, 56, 57, 60, 61, 62, 63, 66, 68, 69, 77, 78, 79, 81, 83, 85, 86, 91, 93, 96, 98, 99, 100, 108, 111, 112, 114, 123, 125, 127, 130, 135, 142, 143, 144, 146, 160, 162, 164, 168], "autotest": 126, "aux": 47, "av_background_scan": 52, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 25, 28, 30, 31, 33, 39, 40, 41, 42, 43, 44, 46, 49, 55, 56, 57, 59, 60, 61, 67, 69, 74, 75, 79, 81, 83, 86, 90, 91, 92, 93, 96, 97, 99, 100, 101, 102, 107, 108, 111, 116, 117, 120, 121, 123, 127, 130, 133, 135, 139, 140, 142, 144, 145, 146, 150, 151, 152, 155, 156, 162, 163, 166, 167, 168], "avatar": [60, 71, 75, 80, 86, 146], "avconv": 127, "averag": [23, 111, 112], "avoid": [16, 19, 22, 23, 42, 52, 54, 57, 64, 79, 80, 86, 96, 101, 105, 127, 129, 135, 144, 146, 167], "avx": [3, 5], "avx2": [3, 5], "aw": [28, 45, 57, 120, 128, 165], "awai": [86, 111, 129, 135], "awar": [8, 79, 96, 123], "ax": 56, "axi": 44, "azur": [86, 113], "b": [57, 99], "b2": 51, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 134, "b4af8db0ae269d73432e9a01e63a": 134, "b6": 51, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 134, "back": [3, 22, 23, 25, 52, 55, 57, 60, 99, 104, 112, 126, 132, 135, 137, 139, 140, 144, 145, 167], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 23, 29, 34, 35, 36, 42, 43, 45, 55, 56, 62, 73, 74, 77, 79, 81, 82, 83, 86, 96, 112, 123, 129, 130, 146, 165], "background": [0, 3, 6, 14, 29, 37, 43, 49, 57, 58, 62, 67, 69, 81, 86, 95, 124, 141, 145, 167], "background_job_expire_trash": 46, "background_job_expire_vers": 41, "backgroundcolor": 69, "backgroundjob": 167, "backport": [133, 166], "backportbot": 133, "backtrac": 86, "backup": [20, 43, 44, 57, 78, 86, 114, 130, 132, 135, 138, 139, 140, 141, 144, 145, 146, 152, 166], "backward": [19, 80], "bad": [5, 86, 123], "badger": 61, "bak": [137, 143], "balanc": [23, 56, 66, 79, 86, 125], "ban": 123, "bandwidth": [23, 126], "banner": [79, 145], "bantim": 123, "bar": [41, 46, 69, 146], "barcelona": 79, "bare": [86, 132], "barracuda": [19, 57], "base": [1, 3, 4, 5, 7, 9, 10, 14, 17, 25, 26, 35, 38, 40, 43, 52, 54, 55, 57, 62, 63, 64, 66, 69, 79, 80, 85, 86, 90, 102, 104, 105, 120, 121, 123, 124, 126, 127, 130, 131, 138, 139, 140, 145, 146, 150, 152, 166, 168], "base64": [26, 28, 45, 57, 146], "basenam": [57, 163], "baseurl": 168, "bash": [31, 120, 130, 146], "bash_profil": 146, "basi": 54, "basic": [47, 57, 60, 72, 73, 74, 75, 79, 80, 83, 85, 86, 99, 120, 123, 130, 135, 144, 160, 168], "batch": [11, 79, 86, 138], "bc95cbaff3abbed716e1d40bbdaa58a0": 116, "bcrypt": [123, 127], "bearer": [2, 65, 71, 86], "beauti": 168, "becaus": [16, 17, 19, 23, 24, 26, 29, 35, 40, 42, 45, 50, 51, 52, 53, 54, 56, 57, 59, 61, 67, 79, 82, 96, 111, 114, 116, 120, 123, 128, 129, 130, 131, 135, 139, 144, 146, 167], "becom": [37, 40, 57, 66, 129, 130, 135, 165], "been": [3, 26, 29, 35, 37, 38, 45, 49, 50, 52, 53, 54, 57, 60, 64, 67, 81, 90, 94, 96, 104, 108, 134, 141, 146, 152, 158, 160, 165, 166], "befor": [1, 3, 5, 7, 8, 13, 16, 17, 19, 20, 29, 43, 44, 45, 48, 49, 52, 54, 57, 60, 65, 79, 86, 96, 98, 108, 111, 114, 115, 116, 121, 125, 127, 129, 130, 131, 132, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 163, 166], "beforehand": [132, 166], "beforenodecopiedev": 167, "beforenodecreatedev": 167, "beforenodedeletedev": 167, "beforenodereadev": 167, "beforenoderenamedev": 167, "beforenoderestoredev": 167, "beforenodetouchedev": 167, "beforenodewrittenev": 167, "begin": [2, 3, 5, 7, 79, 128, 135, 139, 146, 162], "begin_of_text": 5, "behalf": [1, 168], "behav": 79, "behavior": [2, 23, 29, 38, 55, 57, 60, 64, 79, 80, 91, 92, 96, 129, 135], "behaviour": [57, 79, 123, 126], "behind": [14, 23, 55, 57, 66, 67, 96, 130, 134], "being": [3, 26, 40, 45, 55, 56, 57, 98, 102, 104, 105, 111, 114, 120, 123, 140, 146, 163, 166], "believ": 135, "belong": [2, 79, 83, 116, 147], "below": [1, 3, 8, 23, 25, 35, 40, 45, 55, 56, 57, 60, 62, 64, 67, 75, 78, 79, 80, 83, 86, 91, 92, 96, 98, 99, 104, 116, 126, 127, 139, 141, 145, 146, 148], "benchmark": [4, 57, 116], "bender": 146, "benefit": [45, 57, 98, 99, 123, 129, 130, 135, 166], "berlin": [2, 13, 57, 115, 146], "berni": 146, "besid": [55, 57, 79, 98, 126], "best": [13, 14, 25, 44, 55, 56, 60, 104, 114, 123, 125, 127, 130, 131, 135, 139, 140, 145, 149, 167], "beta": [15, 57, 86], "better": [1, 5, 6, 7, 9, 10, 11, 17, 22, 25, 45, 52, 62, 79, 86, 129, 135, 146, 166], "between": [13, 22, 25, 26, 35, 38, 43, 51, 54, 57, 66, 79, 86, 90, 93, 98, 99, 100, 104, 129, 139, 141, 143, 145, 146, 147, 166], "bewar": [37, 54], "beyond": [19, 45, 51, 86], "bia": [6, 11], "bias": 9, "big": [16, 43, 55, 86, 96, 126, 127, 135, 164, 166], "big_temp_fil": 23, "bigger": [54, 57, 145], "bigint": [18, 22, 86, 141], "bin": [14, 25, 43, 52, 54, 56, 62, 83, 86, 99, 113, 121, 130, 146, 167], "binari": [26, 35, 57, 60, 90, 99, 131, 134, 146], "binary_search_path": 86, "bind": [79, 99, 100, 127, 130, 146], "bind_address": 99, "bing": 156, "binlog_format": [19, 131], "bio": 129, "biographi": [75, 79], "birth": 79, "birthdai": [86, 113], "birthdat": 79, "bit": [1, 19, 20, 23, 29, 57, 79, 121, 131, 151], "bitmap": 57, "black": 2, "blacklist": 92, "blacklisted_fil": 163, "blob": [14, 60, 86], "block": [1, 8, 25, 37, 55, 57, 61, 79, 86, 102, 121, 123, 126, 129, 154, 163], "blocker": 61, "blog": [6, 8, 11, 25, 57, 86, 120, 126], "blue": 87, "blurri": 44, "bmp": [57, 126], "board": [2, 156, 157], "bob": [146, 167], "bock": 163, "bodi": [57, 121], "bold": 166, "book": [11, 40, 57, 75, 83, 86, 111, 113], "bookworm": 131, "bool": [111, 116, 167], "boolean": [3, 15, 17, 20, 38, 57, 68, 146, 168], "boolval": 99, "boot": [54, 56, 120], "bootstrap": [56, 57], "border": 37, "borrow": 126, "bot": [12, 14, 86], "both": [3, 14, 19, 22, 25, 34, 38, 44, 45, 46, 52, 56, 57, 60, 64, 67, 78, 79, 83, 89, 90, 99, 102, 105, 114, 116, 123, 126, 127, 129, 130, 135, 140, 145, 146, 147, 154, 155], "bottom": [139, 168], "bound": [3, 91, 96, 99], "box": [25, 50, 55, 60, 79, 96, 98, 116, 151, 160], "bracket": [79, 80], "branch": 134, "brand": [61, 62, 86, 149], "brazilian": 4, "breach": [84, 123], "break": [14, 57, 126, 131, 135, 146, 166], "breakdown": 86, "breton": 4, "brick": 168, "bridg": [99, 100], "brief": 160, "briefli": 99, "bring": [14, 90, 155], "british": 10, "broaden": 146, "broken": [20, 25, 67, 126, 135, 162], "brown": 81, "browser": [38, 57, 61, 63, 67, 86, 89, 96, 104, 120, 121, 123, 124, 125, 126, 129, 130, 135, 140, 142, 144, 146, 148, 152, 153, 154, 162, 165], "brute": [57, 62, 86, 123, 146], "bruteforc": [55, 86, 146], "bruteforce_attempt": 55, "bruteforceset": 55, "bsd": 121, "bt": 11, "bucket": [28, 33, 43, 57, 86], "bucketnam": 45, "buffer": [23, 96, 129], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 57, 67, 86, 96, 116, 129, 131, 136, 145, 146], "bugtrack": 135, "build": [6, 8, 52, 86, 116, 126], "built": [1, 2, 5, 7, 9, 10, 11, 25, 29, 50, 55, 57, 64, 67, 86, 96, 111, 126, 127, 130, 131, 135, 138, 139, 141, 145, 148, 151, 154], "bulk": [6, 57], "bulkupload": 86, "bundl": [3, 15, 56, 57, 167], "busi": [57, 130, 135, 154], "bust": 126, "button": [1, 4, 15, 24, 29, 37, 38, 57, 60, 69, 79, 83, 86, 96, 97, 98, 112, 114, 135, 144, 168], "byedvluwkxkmflpbgvxc": 64, "bypass": [45, 50, 57, 79, 96, 123], "byte": [18, 19, 23, 26, 28, 45, 52, 57, 60, 86, 91, 92, 96, 114, 116, 121, 129, 131, 135, 137, 146], "bytecod": 129, "bz2": [120, 122, 139], "bzip2": 120, "c": [6, 19, 25, 28, 43, 57, 64, 86, 89, 94, 96, 99, 116, 120, 122, 123, 127, 130, 135, 143, 146], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 134, "c478e6c156c5955ed53c40d06585": 134, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 57, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 134, "ca": [19, 56, 57, 99, 146], "ca_cert": 57, "cach": [8, 42, 55, 62, 66, 80, 86, 111, 124, 126, 132, 135, 146, 162], "cache_app_config": 86, "cache_chunk_gc_ttl": 86, "cache_path": [56, 86], "cache_s": 19, "cadav": [96, 135], "caddi": 86, "cadenc": 166, "cafil": [56, 57], "cal": 66, "calcul": [5, 6, 7, 9, 10, 26, 57, 83, 129], "caldav": [57, 62, 66, 86, 112, 113, 116, 121, 126, 130, 135, 146, 160, 167], "caldav_external_attendees_dis": 111, "calendar": [15, 20, 58, 60, 86, 113, 115, 134, 136, 141, 167], "calendarchang": [111, 146], "calendardata": 167, "calendarid": 167, "calendarobjectcreatedev": 167, "calendarobjectdeletedev": 167, "calendarobjectmovedev": 167, "calendarobjectmovedtotrashev": 167, "calendarobjectrestoredev": 167, "calendarobjectupdatedev": 167, "calendarretentionoblig": 111, "calendarserv": 167, "calendarsubscriptionrefreshr": 111, "call": [2, 3, 4, 14, 26, 38, 40, 53, 54, 56, 57, 64, 65, 73, 79, 85, 96, 98, 114, 126, 128, 130, 131, 135, 143, 144, 146, 147, 155, 167, 168], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 61, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 162, 163, 164, 165, 166, 167], "can_instal": 121, "cancel": 135, "candid": 86, "cannot": [0, 3, 5, 8, 9, 23, 26, 29, 31, 35, 42, 47, 48, 51, 52, 57, 60, 67, 74, 79, 83, 86, 116, 123, 131, 133, 134, 139, 143, 145, 146, 160, 166], "canon": 86, "cantonbeck": 146, "cap": [129, 148], "cap_add": 129, "capabl": [2, 14, 57, 79, 86, 99, 111, 129, 146, 148, 153, 154, 155], "capac": [5, 7, 9, 10], "carbonara": 2, "card": [2, 66, 83, 98, 112, 156, 157], "carddav": [40, 62, 66, 86, 111, 113, 121, 126, 130, 135, 160], "carddav_sync_request_timeout": 86, "carddav_sync_request_trunc": 86, "care": [3, 22, 52, 54, 57, 82, 99, 100, 121, 125, 126], "carefulli": [135, 146], "carla": 90, "carri": [2, 57], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 19, 20, 22, 25, 26, 35, 39, 40, 47, 52, 54, 55, 57, 60, 63, 67, 69, 77, 79, 84, 94, 96, 98, 99, 100, 102, 104, 105, 114, 116, 120, 123, 127, 129, 130, 131, 133, 135, 139, 140, 141, 143, 144, 146, 147, 154, 160, 162, 166, 168], "cast": 57, "cat": [2, 28, 146], "catalan": 4, "catch": 135, "categori": [2, 15, 98], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 25, 55, 56, 57, 67, 79, 96, 126, 128, 129, 130, 134, 135, 140, 143, 144, 162, 164, 165], "causal": 21, "caution": [8, 91, 116], "cautiou": [57, 60], "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "ccb": 3, "cd": [8, 14, 20, 25, 31, 118, 121, 146, 149, 167], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 134, "ce6cd914": 146, "ce8b61c2": 146, "ce9e248333c44a5a64ccad26f2550f95": 116, "ceas": 166, "center": 60, "cento": [52, 56, 86, 124, 126, 130, 131, 146], "central": [25, 26, 56], "ceph": 45, "cert": [19, 56, 57, 97, 99, 121, 148], "certain": [3, 9, 23, 44, 49, 55, 57, 66, 79, 92, 94, 96, 108, 111, 112, 123, 126, 130, 144, 146, 154, 168], "certfil": 99, "certif": [29, 30, 43, 57, 61, 80, 86, 88, 90, 96, 99, 114, 121, 123, 126, 130, 131, 134, 146, 148, 149, 160], "certifi": 87, "cfb": 57, "cfg": [91, 94, 96], "cgi": 126, "challeng": [123, 126, 146], "chanc": [116, 135, 166], "chang": [1, 2, 3, 8, 11, 13, 14, 15, 16, 17, 20, 22, 24, 25, 35, 36, 37, 40, 42, 43, 44, 45, 48, 49, 52, 56, 57, 58, 60, 62, 63, 68, 69, 75, 79, 80, 83, 86, 89, 90, 91, 94, 96, 98, 99, 104, 111, 112, 114, 116, 118, 120, 122, 123, 126, 127, 129, 130, 134, 137, 139, 140, 143, 145, 146, 152, 154, 160, 161, 162, 163, 164, 166, 167, 168], "changelog": [15, 86, 139], "channel": [15, 86, 117, 135], "chapter": [127, 130, 135, 166], "char": [79, 146], "charact": [8, 19, 20, 47, 57, 60, 79, 80, 84, 96, 122, 123, 127, 135, 137, 143, 146], "character_set_serv": 19, "characterist": 57, "charg": [82, 168], "charset": [22, 57], "chart": [83, 130], "chat": [2, 5, 12, 13, 58, 86, 104], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 14], "chatroom": 8, "chatti": 13, "cheap": 57, "cheat": 165, "check": [2, 3, 5, 6, 7, 11, 13, 14, 19, 25, 30, 35, 37, 38, 40, 52, 54, 55, 56, 57, 60, 62, 63, 69, 74, 78, 79, 81, 83, 84, 86, 91, 98, 99, 101, 103, 104, 114, 116, 121, 123, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 144, 145, 154, 163, 164, 166, 167, 168], "check_data_directory_permiss": 86, "check_for_working_htaccess": 86, "check_for_working_wellknown_setup": 86, "checkbox": [28, 37, 38, 69, 83, 99, 111, 112], "checker": [57, 67], "checkout": 3, "checksum": [79, 120, 122, 165], "chines": 4, "chmod": [25, 31, 99, 139], "choic": [8, 19, 52, 57, 78, 79, 86, 123, 124, 127, 145], "choos": [1, 5, 7, 15, 25, 40, 50, 55, 56, 57, 64, 66, 79, 98, 99, 111, 112, 121, 126, 127, 130, 135, 139, 146, 148, 155, 166, 168], "chooser": 57, "chose": [114, 145], "chosen": [1, 17, 19, 56, 57], "chown": [25, 31, 118, 120, 122, 126, 130, 139], "christoph": 116, "chrome": [64, 131], "chromium": [131, 165], "chroot": [86, 124], "chunk": [3, 40, 43, 57, 86, 91, 92, 96, 116, 126], "chunked_upload": [23, 86], "chunksiz": [91, 96], "ci": 57, "cid": 146, "cidr": [57, 66], "cif": [37, 86, 124, 127], "cipher": [26, 86, 96, 123], "circl": 86, "circumst": [44, 55, 79, 91], "circumv": 57, "cisco": 52, "citi": 79, "claim": 0, "clam": 52, "clamav": [62, 86], "clamd": 52, "clamp": 79, "clamscan": 52, "clarif": 13, "class": [28, 45, 57, 60, 75, 79, 134, 167], "classic": 130, "classif": 167, "classifi": [6, 96, 116], "clean": [1, 3, 46, 49, 54, 57, 78, 86, 102, 111, 130, 146, 160], "cleanup": [1, 44, 71, 78, 79, 86, 162], "cleanupjobchunks": 81, "clear": [6, 17, 55, 56, 57, 79, 80, 95, 116, 129, 146], "clear_env": 130, "cli": [54, 60, 62, 66, 86, 97, 101, 103, 111, 120, 123, 124, 130, 145, 146, 162], "click": [15, 24, 37, 38, 50, 57, 60, 61, 76, 79, 83, 96, 98, 114, 125, 134, 135, 144, 146, 168], "clickjack": [61, 123], "client": [16, 19, 23, 25, 28, 29, 35, 40, 42, 45, 47, 51, 55, 57, 60, 61, 62, 65, 66, 70, 78, 79, 83, 86, 89, 91, 92, 94, 95, 99, 100, 104, 111, 112, 114, 116, 117, 123, 124, 125, 126, 128, 129, 130, 134, 135, 138, 140, 144, 146, 147, 148, 153], "client_body_buffer_s": 126, "client_body_temp_path": 23, "client_body_timeout": 126, "client_max_body_s": [23, 126], "clone": [7, 8], "close": [7, 8, 10, 40, 57, 60, 66, 86, 135, 144], "cloud": [0, 1, 4, 8, 14, 38, 40, 43, 51, 62, 64, 65, 67, 69, 72, 73, 74, 85, 86, 89, 94, 96, 97, 123, 126, 130, 146, 148, 154], "cloud2": 148, "cloud_id": 146, "cloudfil": [33, 57], "cloudflar": [57, 96, 126, 135], "clue": 86, "cluster": [0, 3, 6, 86, 140], "cmd": [90, 120], "cn": [57, 79, 80, 146], "cname": 140, "cnf": [19, 57, 121], "co": [5, 11], "co2": [6, 11], "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 14, 25, 26, 44, 48, 60, 62, 63, 66, 67, 72, 73, 74, 75, 78, 79, 86, 94, 96, 118, 123, 126, 129, 132, 135, 136, 144, 145, 148, 149, 150, 151, 152, 154, 167], "code_docker_imag": 151, "codebas": [57, 141], "collabor": [29, 86, 104, 105], "collabora": [29, 86, 130, 149, 150, 151, 153, 154, 157, 162], "collaboraoffic": [149, 151, 152], "collaboraonlin": [147, 148, 149, 151, 152, 153], "collat": [19, 20, 86, 122, 143], "collation_serv": 19, "collect": [54, 57, 116, 123, 156, 157], "collis": [57, 79, 80], "colon": [57, 60], "color": [37, 69, 146], "column": [16, 22, 83, 114, 141, 145], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 19, 25, 32, 38, 45, 51, 52, 56, 57, 60, 66, 69, 72, 73, 74, 79, 80, 81, 84, 85, 86, 89, 90, 94, 96, 99, 111, 114, 117, 118, 120, 122, 123, 125, 126, 127, 129, 130, 131, 133, 134, 135, 139, 144, 146, 147, 148, 149, 151, 152, 153, 154, 162, 165, 167, 168], "combin": [12, 29, 55, 67, 86, 96, 127, 130, 142], "combo": 50, "come": [2, 4, 5, 23, 40, 44, 48, 49, 55, 57, 98, 99, 109, 120, 130, 131, 135, 146, 151, 167, 168], "comma": [57, 58, 79], "command": [1, 4, 6, 12, 13, 14, 16, 17, 27, 31, 35, 37, 38, 40, 43, 44, 45, 48, 49, 52, 54, 57, 58, 60, 64, 66, 68, 69, 75, 76, 79, 81, 86, 93, 94, 95, 99, 100, 101, 102, 106, 111, 114, 115, 116, 120, 122, 124, 127, 128, 129, 130, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 164, 165, 167], "comment": [20, 23, 40, 52, 62, 86, 130, 133, 139, 144, 150, 156, 157], "commentsmanag": 57, "commerci": [130, 135], "commit": [57, 62, 86, 131], "common": [11, 25, 48, 51, 55, 57, 67, 79, 84, 86, 98, 107, 114, 120, 123, 126, 130, 146, 153, 168], "commonli": [25, 45, 55, 56, 127, 135], "commonnam": [57, 130, 167], "commun": [1, 14, 15, 32, 67, 79, 82, 86, 90, 98, 100, 103, 116, 117, 118, 122, 127, 130, 135, 144, 146, 150, 153, 155, 164, 166], "compani": [2, 61, 79], "compar": [3, 17, 53, 54, 79, 139, 146], "comparison": [43, 57, 79, 86, 167], "comparison_of_file_system": 57, "compat": [0, 3, 5, 15, 19, 25, 28, 35, 37, 43, 45, 57, 78, 80, 86, 127, 135, 141, 145, 148, 166], "compil": [19, 56, 129], "complain": 146, "complet": [1, 2, 3, 11, 14, 17, 23, 25, 38, 40, 52, 57, 65, 79, 83, 91, 104, 118, 120, 121, 123, 125, 127, 128, 129, 130, 132, 141, 143, 144, 145, 146, 156, 159, 167], "completionexpectedat": 13, "complex": [25, 57, 99], "compli": [57, 146], "complianc": [57, 86, 135], "compliant": [78, 123, 131], "compon": [57, 126, 130, 135, 146, 155, 160, 167], "compos": 52, "composit": 157, "comprehens": 135, "compress": [52, 57, 83, 86, 96, 104, 123, 124, 164], "compromis": [25, 57], "comput": [47, 57, 83, 84, 93, 98, 99, 100, 102, 135], "compute_devic": 100, "computedevic": 100, "concaten": [26, 35], "concept": [22, 121, 146], "concern": [8, 23, 25, 26, 44, 57, 126, 166], "concert": 2, "concurr": [3, 4, 45, 57, 129, 162], "condit": [13, 14, 64, 67, 79, 86, 105, 135, 166, 167, 168], "condition": 57, "conf": [19, 52, 56, 79, 120, 121, 123, 126, 130, 135], "confdir": 95, "confer": [2, 117], "confidenti": [65, 104, 147], "config": [1, 2, 3, 5, 11, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 58, 62, 63, 64, 65, 66, 67, 68, 69, 70, 75, 77, 79, 80, 81, 82, 83, 86, 91, 94, 98, 99, 100, 101, 106, 111, 112, 114, 115, 116, 120, 121, 125, 126, 128, 129, 130, 132, 135, 137, 139, 140, 141, 143, 144, 145, 148, 154, 162, 163, 164, 165], "config_is_read_onli": 86, "configdata": 80, "configid": [79, 80, 146], "configur": [2, 4, 12, 15, 17, 20, 22, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40, 42, 43, 47, 50, 54, 55, 63, 65, 66, 68, 70, 71, 78, 81, 83, 84, 92, 93, 95, 96, 97, 98, 100, 102, 103, 104, 105, 107, 109, 111, 112, 113, 115, 116, 120, 122, 125, 129, 131, 132, 135, 139, 140, 141, 143, 144, 150, 153, 157, 159, 168], "configuration_serv": 57, "confin": [40, 130], "confirm": [4, 16, 19, 38, 45, 57, 62, 65, 67, 76, 79, 86, 91, 120, 122, 129, 130, 139, 140, 146], "conflict": [15, 57, 79, 116, 143, 146], "confus": 25, "congratul": [114, 148], "conjunct": [5, 146], "connect": [0, 3, 5, 19, 21, 22, 28, 29, 30, 33, 35, 37, 38, 42, 45, 55, 57, 60, 65, 66, 67, 70, 71, 80, 81, 86, 89, 91, 92, 98, 99, 100, 111, 112, 114, 121, 124, 126, 128, 130, 131, 135, 146, 147, 153, 154, 162], "connect_timeout": [19, 45], "connectivity_check_domain": 86, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 86, 124, 125, 146], "consecut": 31, "consent": 114, "consequ": [43, 86, 123, 126], "consid": [1, 8, 15, 25, 28, 38, 44, 45, 57, 60, 64, 78, 79, 96, 111, 112, 116, 123, 130, 131, 135, 143, 154, 166, 168], "consider": [43, 57, 62, 83, 86, 166], "consist": [17, 26, 57, 104, 114, 126, 135, 139, 146], "consol": [16, 49, 61, 101, 126, 130, 135, 139, 146, 148], "constant": [57, 75], "constraint": [130, 146], "consult": [15, 23, 25, 56, 57, 75, 123, 127, 131], "consum": [8, 23, 57, 145], "consumpt": [5, 6, 7, 11, 23, 86, 88], "contact": [15, 40, 69, 75, 79, 83, 86, 111, 113, 118, 130, 134, 136, 141, 146, 150], "contain": [3, 4, 5, 7, 8, 11, 14, 15, 19, 25, 26, 27, 28, 40, 45, 52, 57, 60, 67, 79, 80, 83, 86, 87, 90, 91, 96, 97, 98, 100, 101, 104, 109, 112, 114, 116, 123, 126, 129, 130, 132, 133, 135, 144, 146, 147, 148, 151, 154, 162, 168], "container": 130, "container_id": 148, "container_nam": 52, "content": [2, 3, 11, 14, 17, 25, 26, 28, 40, 45, 51, 57, 61, 85, 90, 96, 99, 105, 111, 112, 120, 121, 122, 123, 126, 134, 135, 139, 143, 146, 156, 167], "contentlength": 126, "context": [5, 8, 12, 35, 57, 64, 86, 104, 127, 146, 157, 165, 167], "context_ag": [1, 12, 86], "context_chat": [1, 3, 14], "context_chat_backend": [1, 3, 14], "contextchat": 3, "continu": [3, 16, 41, 64, 83, 99, 101, 123, 131, 141, 144, 146, 154], "contrari": 90, "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 135], "control": [12, 25, 38, 40, 43, 57, 60, 66, 75, 79, 83, 86, 92, 98, 105, 107, 108, 111, 112, 123, 126, 130, 142, 146, 162], "convei": 11, "conveni": 118, "convent": 26, "convers": [1, 2, 8, 13, 16, 18, 43, 57, 86, 116, 147, 156, 157], "convert": [16, 18, 20, 22, 57, 68, 79, 86, 105, 129, 135, 141, 146, 148], "cookbook": 86, "cooki": [57, 62, 86, 110], "cookie_domain": 86, "cool": [148, 152, 153], "coolconfig": [147, 149], "coolwsd": [147, 148, 149, 151, 152, 153], "coordin": [2, 127], "copi": [2, 3, 5, 7, 22, 24, 29, 34, 38, 57, 60, 79, 83, 99, 114, 120, 122, 126, 137, 139, 140, 143, 146, 168], "copied_sample_config": 86, "copyright": 111, "copysizelimit": 45, "core": [3, 5, 6, 7, 9, 10, 11, 13, 24, 40, 56, 58, 86, 121, 122, 126, 127, 129, 130, 134, 139, 142, 146, 162, 166, 168], "coreinfo": 129, "corner": 1, "corpor": [69, 130], "correct": [5, 6, 9, 11, 19, 25, 55, 57, 60, 66, 79, 86, 96, 98, 116, 123, 125, 126, 127, 130, 133, 134, 135, 139, 141, 146, 166], "correctli": [19, 23, 37, 38, 42, 55, 61, 67, 79, 81, 96, 97, 102, 115, 120, 126, 130, 135, 146, 163, 168], "correspond": [23, 42, 45, 79, 81, 94, 120, 122, 126, 127, 132, 135, 139, 146, 157], "corrupt": [42, 56, 57, 140, 144, 145], "cost": 57, "could": [1, 3, 17, 19, 23, 37, 40, 45, 54, 56, 57, 60, 74, 78, 79, 96, 104, 116, 121, 123, 126, 131, 134, 135, 137, 143, 146, 154], "couldn": 102, "count": [2, 57, 83, 86, 108, 123, 135, 146], "countri": [2, 57, 79], "courier": 60, "cours": [57, 78, 104, 125, 135, 144, 148, 168], "court": 79, "cover": [19, 99, 104, 114, 125, 126, 134, 145, 159, 164, 165], "coverag": [5, 9, 11], "cp": [3, 4, 120, 121, 122], "cpanel": 36, "cpp": 5, "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 52, 57, 86, 98, 99, 100, 123, 129], "cpuinfo": [3, 129], "cr": 79, "cram": 60, "crammd5": 60, "crash": 96, "crawl": 3, "crc32": 165, "creat": [0, 1, 2, 4, 13, 14, 15, 17, 24, 25, 26, 28, 30, 31, 33, 37, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 57, 61, 64, 66, 68, 71, 74, 79, 82, 85, 86, 94, 98, 99, 100, 102, 104, 105, 108, 111, 112, 114, 116, 120, 121, 122, 123, 125, 130, 132, 135, 139, 140, 141, 142, 143, 144, 147, 162, 167], "create_example_ev": [111, 146], "createdb": 19, "createj": 146, "creation": [3, 5, 7, 26, 40, 57, 86, 93, 99, 108, 111, 112, 130], "credenti": [17, 26, 29, 35, 37, 45, 53, 57, 60, 79, 86, 96, 114, 123, 146, 147], "crew": 146, "criteria": [7, 22, 104, 167], "critic": [3, 5, 7, 8, 57, 86, 123, 131, 135, 139, 145, 166], "crl": 57, "crlf": 79, "cromwel": 127, "cron": [6, 35, 37, 38, 41, 46, 49, 52, 57, 62, 86, 111, 114, 123, 124, 126, 127, 135, 139, 141, 145, 146, 167], "cronjob": [40, 54, 55, 121], "crontab": [49, 54, 111, 135, 139, 141], "crop": 79, "cross": 126, "crt": [56, 57, 99, 126, 146], "crucial": [57, 147], "crypto": 99, "cryptograph": 123, "cryptographi": 3, "csrf": [67, 86, 109], "css": [66, 86, 129, 146], "csync": 86, "ct2": 11, "ctl": 52, "ctr": [26, 57], "ctrl": [96, 127], "ctype": 127, "cuda": [3, 4, 5, 6, 7, 9, 11, 98, 100], "cudnn": 6, "cupsd": 60, "curl": [64, 67, 72, 73, 74, 80, 85, 120, 122, 127, 154, 162], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 19, 26, 29, 40, 41, 49, 54, 55, 56, 57, 59, 61, 63, 65, 69, 78, 79, 86, 96, 98, 99, 100, 104, 111, 114, 117, 118, 120, 121, 123, 129, 130, 131, 134, 139, 141, 145, 146, 154, 166], "currentvers": 144, "cursor": [79, 83], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 24, 45, 48, 57, 58, 61, 64, 66, 69, 77, 81, 83, 86, 96, 98, 99, 105, 112, 114, 119, 126, 127, 128, 129, 130, 134, 137, 146, 156, 163, 164, 168], "customclient_android": 57, "customclient_desktop": 86, "customclient_fdroid": 57, "customclient_io": 57, "customclient_ios_appid": 57, "customid": 13, "custompath": 24, "cut": 14, "cycl": 79, "czech": 4, "d": [19, 25, 26, 41, 46, 52, 57, 64, 73, 74, 75, 79, 80, 81, 89, 94, 99, 120, 121, 123, 126, 128, 129, 130, 137, 139, 143, 144, 148, 149], "d1": [41, 46, 57], "d2": [41, 46, 57], "d3c944a9a": 57, "d3c944a9af095aa08f": 57, "d5685c3b45aee373b09be54742ea": 134, "d7": 51, "daemon": [3, 4, 52, 56, 57, 64, 86, 101, 103, 153], "daemon_config_nam": 8, "daemonconfig": [99, 100], "dai": [1, 2, 16, 40, 41, 46, 54, 57, 58, 70, 79, 83, 92, 96, 108, 109, 111, 114, 120, 146, 166, 167], "daili": [49, 55, 57], "daisi": 146, "dall": 157, "danger": 61, "dark": 57, "dash": [64, 83, 146], "dashboard": [57, 62, 86, 114], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 24, 26, 31, 37, 42, 43, 48, 49, 52, 54, 56, 60, 64, 65, 70, 72, 76, 78, 79, 80, 81, 82, 83, 86, 96, 97, 99, 101, 109, 113, 114, 118, 120, 121, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 144, 145, 146, 147, 155, 157, 162, 165, 166, 167, 168], "databas": [3, 13, 16, 20, 21, 26, 29, 35, 42, 45, 49, 52, 54, 55, 62, 79, 81, 86, 96, 111, 112, 118, 122, 123, 124, 129, 130, 132, 135, 138, 139, 140, 141, 144, 145, 156, 157], "databaseid": 116, "datacent": [28, 45], "datadir": [25, 57, 128], "datadirectori": [26, 53, 64, 86, 132, 144], "dataintegr": [57, 165], "dataloss": 143, "dataset": 11, "date": [2, 13, 16, 38, 43, 54, 57, 63, 64, 67, 75, 79, 81, 86, 111, 114, 119, 120, 127, 129, 131, 135, 137, 143, 159, 166], "dateinterv": 111, "datepattern": 123, "datetim": 57, "dav": [32, 57, 66, 67, 79, 86, 96, 111, 112, 115, 116, 120, 121, 126, 130, 135], "davclnt": 126, "davstorag": [23, 38, 86], "davx\u2075": 116, "db": [3, 16, 17, 19, 22, 48, 52, 81, 86, 90, 96, 121, 125, 135, 137, 141, 143, 145, 146], "db8": 57, "db_": 126, "db_name": [137, 143], "dbal": 57, "dbdriveropt": [19, 22, 86], "dbhost": [19, 22, 53, 86, 132], "dbindex": [56, 57, 146], "dbname": [19, 21, 22, 53, 86], "dbpass": 53, "dbpassword": [19, 22, 53, 86, 125], "dbpersist": 86, "dbport": 22, "dbreplica": [21, 86], "dbtableprefix": [19, 53, 86], "dbtype": [17, 19, 53, 86, 132], "dbuser": [19, 22, 53, 86, 125], "dc": [79, 80, 81, 146], "dd": 79, "ddl": 164, "de": [57, 63, 66, 87], "de_d": [57, 63], "deactiv": [17, 41, 46, 111, 114, 163, 164, 165], "deal": [116, 130], "deb": [122, 149], "debian": [19, 52, 56, 69, 90, 118, 130, 131, 135, 146, 148], "debug": [12, 64, 67, 79, 86, 95, 116, 124, 134, 140, 144], "decemb": 120, "decid": [19, 25, 98, 108, 126, 145, 146, 166], "decim": 45, "decis": 132, "deck": [25, 86, 156, 157], "declar": [75, 79, 86, 126], "decreas": [57, 86, 96], "decrypt": [43, 45, 57, 86, 99, 109, 123, 129, 135, 146], "dedic": [2, 3, 6, 22, 23, 57, 79, 86, 111, 124, 129, 132, 144, 146, 151], "deem": 44, "deep": [25, 37, 62, 86], "deeper": 11, "deepl": [1, 14], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 14, 15, 17, 19, 20, 21, 23, 25, 26, 27, 28, 30, 31, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 58, 60, 62, 64, 65, 66, 69, 75, 78, 79, 80, 81, 83, 84, 85, 86, 89, 90, 91, 92, 94, 96, 97, 98, 100, 101, 111, 112, 113, 115, 116, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 135, 137, 142, 143, 145, 146, 149, 151, 153, 156, 165, 166, 167, 168], "default_certificates_bundle_path": 86, "default_en": 72, "default_file_extens": 68, "default_host": 19, "default_languag": [63, 86], "default_local": [63, 86], "default_password": 19, "default_phone_region": [79, 86], "default_port": 19, "default_property_scop": [75, 79, 86], "default_scop": 75, "default_socket": 19, "default_timezon": [86, 115], "default_us": 19, "defaultapp": 86, "defaultmodul": 146, "defaultpag": 58, "defaulttemplatedirectori": 24, "defin": [15, 25, 26, 29, 33, 42, 45, 46, 47, 54, 57, 62, 63, 64, 75, 79, 83, 86, 96, 97, 99, 104, 105, 106, 111, 123, 126, 134, 146, 147, 162, 166], "definit": [17, 43, 86, 123, 166], "defunct": 79, "degrad": 57, "degre": 132, "delai": [0, 14, 38, 54, 55, 57, 86, 111], "deleg": [62, 86, 113, 167], "delegate_permiss": 51, "delet": [1, 2, 3, 4, 24, 37, 40, 41, 43, 47, 49, 52, 54, 62, 70, 71, 72, 79, 85, 86, 91, 96, 101, 104, 108, 111, 112, 115, 116, 132, 134, 135, 139, 143, 144], "delete_timestamp": 26, "deliber": 166, "delimit": [28, 79, 146], "deliv": [69, 126, 166], "deliveri": 57, "demand": [8, 14, 52, 54, 79, 123], "demo": 57, "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 17, "demot": [79, 86], "deni": [3, 57, 86, 107, 126, 128, 146], "denial": [55, 123, 128], "denni": 146, "deno": 168, "denot": 26, "depart": 80, "depend": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 29, 40, 54, 55, 56, 57, 61, 66, 67, 69, 79, 98, 114, 120, 121, 123, 125, 130, 131, 132, 135, 139, 140, 142, 145, 146, 148, 157, 163, 164, 165], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 19, 86, 103, 120, 121, 126, 129, 135, 151, 166, 168], "deploy": [3, 57, 62, 86, 93, 98, 100, 102, 103, 120, 124, 127, 130, 131, 132, 135, 145, 150, 151, 166], "deployconfig": [86, 99], "deploydaemon": 99, "deprec": [57, 74, 131, 146, 161, 163, 164, 165], "deprovis": 132, "deriv": [79, 86, 123, 130], "describ": [23, 26, 38, 40, 49, 53, 54, 57, 60, 67, 78, 79, 92, 98, 99, 100, 104, 105, 108, 117, 135, 141, 148], "descript": [2, 14, 15, 25, 54, 72, 79, 80, 97, 111, 114, 120, 127, 129, 130, 146, 156, 167], "design": [2, 25, 42, 60, 69, 79, 84, 130, 142, 145, 154], "desir": [8, 22, 23, 35, 56, 57, 60, 64, 81, 105, 125, 126, 130, 140, 146], "desktop": [25, 29, 47, 61, 69, 79, 86, 89, 90, 94, 95, 96, 104, 117, 124], "despit": [40, 126], "destin": [2, 29, 34, 36, 122, 146], "destinationuid": 146, "detail": [2, 4, 7, 19, 25, 37, 40, 43, 57, 60, 64, 65, 69, 75, 79, 82, 86, 89, 94, 96, 98, 102, 116, 120, 122, 123, 125, 126, 127, 129, 130, 135, 139, 140, 146, 151, 152, 154, 163, 164, 165, 166, 168], "detect": [13, 14, 35, 37, 52, 55, 56, 57, 63, 66, 67, 68, 79, 80, 81, 86, 91, 99, 126, 135, 146], "detect_ord": 68, "determin": [2, 40, 57, 78, 79, 86, 96, 99, 109, 116, 130, 146], "dev": [57, 62, 64, 86, 90, 121, 131, 146, 168], "develop": [14, 15, 50, 57, 78, 93, 96, 97, 98, 116, 117, 123, 130, 131, 133, 134, 135, 142, 145, 146, 150, 166], "developer_manu": [57, 167, 168], "deviat": 123, "devic": [25, 37, 55, 57, 61, 66, 69, 78, 93, 96, 98, 99, 100, 102, 123, 129, 130, 142], "diagnos": [64, 79, 129, 162], "diagnost": [3, 86], "diagram": 99, "dialect": [7, 57], "dialog": [38, 40, 79, 91, 95, 146], "dialogu": [79, 143], "dictat": 99, "did": [17, 25, 27, 86, 102, 135, 146], "diff": 133, "differ": [2, 3, 5, 7, 14, 19, 22, 25, 26, 28, 29, 37, 43, 51, 52, 53, 54, 55, 56, 57, 61, 63, 66, 78, 79, 83, 86, 90, 96, 98, 99, 101, 102, 111, 112, 123, 125, 126, 130, 132, 134, 135, 138, 143, 146, 147, 162, 167, 168], "differenti": [14, 111, 112], "difficult": [57, 125, 134], "difficulti": [2, 143], "diffus": [14, 157], "digit": 131, "dimens": 57, "diminish": 57, "dir": [20, 25, 89, 96, 130, 135, 144, 146], "dirbkp": 143, "dirbkp_": 137, "direct": [23, 37, 56, 57, 77, 79, 104, 126, 130, 135, 164, 166], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 22, 23, 25, 29, 45, 51, 54, 57, 60, 79, 96, 99, 104, 109, 130, 132, 135, 144, 145, 146, 156], "directori": [3, 5, 7, 8, 23, 24, 25, 26, 30, 31, 34, 36, 37, 38, 40, 42, 45, 49, 51, 52, 54, 57, 62, 64, 77, 81, 86, 90, 93, 95, 96, 104, 105, 116, 118, 120, 121, 122, 124, 126, 130, 132, 133, 136, 137, 139, 140, 141, 143, 144], "directory2": 79, "directory_that_has_been_cr": 90, "dirnam": 95, "dirti": 57, "disabl": [1, 2, 3, 15, 20, 22, 23, 26, 27, 28, 29, 37, 38, 41, 43, 46, 47, 55, 60, 62, 64, 69, 71, 75, 79, 85, 86, 91, 96, 99, 100, 103, 104, 106, 111, 112, 115, 116, 126, 127, 128, 129, 130, 131, 139, 141, 144, 145, 149, 163, 164, 165, 168], "disable_act": 57, "disable_email": 57, "disable_funct": 127, "disablefreebusi": 111, "disadvantag": [26, 54], "disallow": [3, 57, 86, 124], "disappear": [40, 42, 55, 56, 120], "disapprov": 168, "discard": 114, "disclaim": 40, "disconnect": [38, 57, 81, 146], "discontinu": 60, "discourag": [44, 55, 57, 67, 146], "discover": [7, 10], "discoveri": [56, 57, 62, 67, 86, 91, 130, 136, 148, 153, 154], "discrep": 146, "discret": [55, 166], "discuss": [19, 40, 96, 165, 166], "disk": [3, 25, 36, 41, 57, 83, 86, 96, 129, 135, 146, 164], "dispar": 7, "dispatch": 86, "displai": [25, 40, 43, 44, 48, 57, 60, 61, 63, 73, 74, 77, 79, 80, 81, 83, 86, 95, 97, 98, 99, 100, 101, 111, 114, 116, 126, 134, 146], "display_nam": 146, "displaynam": [73, 74, 79, 80, 111, 146, 167], "disregard": 135, "disrupt": 145, "dist": [48, 104], "distinct": 45, "distinguish": [43, 57, 86], "distribut": [23, 24, 35, 42, 45, 48, 52, 55, 56, 67, 79, 86, 91, 93, 96, 98, 99, 120, 123, 126, 127, 128, 130, 131, 134, 135, 145, 146, 150, 151], "distro": [35, 57, 128, 130, 135, 142], "dive": 25, "divid": 57, "dmz": [86, 124], "dn": [56, 79, 80, 81, 99, 140, 154, 162], "dnextcloud": 19, "dnf": 120, "do": [0, 2, 3, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 19, 22, 23, 25, 29, 40, 44, 48, 52, 53, 55, 56, 57, 60, 61, 67, 69, 78, 79, 80, 83, 86, 90, 98, 99, 101, 104, 105, 115, 116, 120, 121, 123, 125, 126, 128, 129, 130, 131, 135, 138, 139, 141, 143, 145, 146, 147, 148, 155, 162, 163, 164, 165, 166, 167, 168], "doc": [1, 14, 57, 96, 102, 117, 121, 131, 147, 148, 149, 150, 151, 152, 153, 165, 167, 168], "docker": [3, 4, 5, 7, 8, 11, 14, 52, 57, 66, 79, 86, 100, 102, 103, 127, 129, 130, 145, 146, 150, 151, 154, 162, 167], "docker_aio": 99, "docker_instal": [98, 100], "docker_local_sock": [100, 101], "docker_socket_port": 100, "dockerfil": 8, "dockersocketproxi": [99, 168], "doctrin": 57, "document": [1, 2, 3, 19, 20, 23, 26, 28, 29, 32, 37, 40, 42, 44, 48, 52, 56, 57, 59, 61, 64, 67, 86, 90, 94, 96, 105, 115, 116, 120, 122, 123, 126, 127, 129, 130, 131, 134, 135, 141, 142, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 164, 165, 168], "document_root": 126, "documentation_url": 86, "documentroot": [120, 130], "docx": 150, "doe": [1, 2, 3, 5, 6, 7, 9, 10, 11, 14, 17, 19, 25, 26, 28, 29, 30, 33, 35, 40, 42, 45, 51, 52, 53, 54, 55, 56, 57, 60, 62, 63, 65, 66, 73, 74, 79, 83, 86, 90, 91, 98, 99, 100, 101, 104, 112, 114, 115, 116, 121, 123, 126, 128, 129, 130, 134, 135, 138, 139, 141, 143, 145, 146, 155, 162, 165, 166, 168], "doesn": [19, 25, 74, 79, 116, 120, 126, 144, 146, 154], "doesnotexist": 146, "dollar": 79, "dom": [52, 60, 127], "domain": [2, 28, 35, 38, 45, 51, 54, 57, 62, 67, 86, 98, 121, 124, 126, 130, 146, 148, 154], "don": [6, 13, 23, 25, 28, 41, 42, 49, 52, 54, 56, 57, 59, 60, 79, 98, 111, 116, 126, 128, 130, 134, 137, 139, 146], "done": [1, 3, 4, 14, 54, 57, 59, 60, 65, 72, 73, 74, 79, 80, 99, 101, 120, 121, 130, 140, 141, 144, 147, 148, 162, 167], "dora": 146, "dot": [8, 35, 37, 47, 98, 99, 126, 135, 163, 168], "doubl": [57, 135], "dow": 52, "down": [56, 86, 96, 111, 112, 114, 116, 129], "downgrad": [86, 144, 145], "download": [4, 5, 6, 15, 23, 25, 38, 52, 57, 83, 86, 87, 92, 96, 99, 103, 104, 118, 120, 122, 123, 130, 133, 135, 139, 140, 141, 144, 145, 146, 147, 148, 149], "downsid": [45, 162], "downstream": [5, 14], "downtim": 79, "dozen": 150, "draft": [2, 3, 5, 7, 116, 135], "draw": [2, 55], "drawback": [29, 130], "drawn": 57, "drive": [23, 57, 129], "driven": 130, "driver": [6, 19, 57, 102], "droid": 57, "drop": [3, 19, 43, 55, 60, 86, 121, 123, 125, 135, 143, 146], "dropbox": 96, "dropdown": [37, 40, 83], "dry": [145, 146], "dsheurist": 79, "dsnap": 121, "dsp": [98, 99, 100], "dst_path": 101, "duckduckgo": [2, 156], "due": [2, 23, 35, 44, 46, 49, 51, 57, 61, 68, 79, 96, 102, 104, 123, 126, 129, 135, 139, 146, 152], "dummi": 144, "dump": [86, 137, 140], "duplic": [3, 11, 86, 135, 146], "durat": [57, 91, 96], "dure": [3, 4, 15, 23, 25, 26, 29, 42, 52, 54, 57, 66, 79, 82, 86, 94, 99, 102, 120, 126, 130, 138, 144, 146, 164, 165, 168], "dutch": 4, "dynam": [20, 57, 80, 91, 96, 164], "e": [1, 5, 8, 14, 16, 17, 19, 20, 23, 25, 28, 29, 31, 37, 45, 48, 49, 50, 51, 52, 54, 55, 57, 60, 61, 65, 69, 70, 75, 76, 78, 79, 80, 81, 89, 90, 94, 95, 96, 98, 99, 100, 101, 102, 104, 111, 112, 114, 116, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 143, 144, 145, 146, 147, 148, 149, 152, 157, 166, 167, 168], "e2e": 25, "eacceler": 135, "each": [1, 2, 3, 6, 9, 13, 14, 25, 26, 29, 37, 40, 51, 52, 53, 54, 55, 57, 61, 75, 79, 83, 91, 95, 96, 98, 99, 102, 104, 114, 127, 129, 130, 135, 145, 146, 162, 166, 168], "earli": 79, "earlier": [54, 57, 79, 120, 135, 166, 167], "eas": [57, 166], "easi": [52, 56, 57, 60, 81, 83, 130, 141, 142, 151], "easier": [51, 57, 96, 116, 129, 130, 141], "easiest": [19, 55, 57, 60, 104, 123, 130, 135, 143, 145], "easili": [14, 38, 57, 60, 61, 130, 141, 142, 153, 167], "east": [45, 57], "easycron": 54, "echo": [14, 146, 149, 167], "ecosystem": [50, 55, 98], "ed": 51, "edg": [14, 40, 90, 114, 131], "edit": [11, 19, 29, 30, 38, 40, 42, 52, 62, 79, 80, 83, 85, 86, 117, 118, 129, 130, 134, 135, 137, 145, 146, 149, 150, 151, 166, 168], "editor": [57, 83, 111, 150], "edri": [57, 123], "edu": 57, "edward": 146, "eff": [57, 123], "effect": [14, 38, 55, 56, 57, 79, 96, 128, 129, 144, 162, 167, 168], "effici": [8, 57, 131], "effort": 166, "efss": 132, "eg": [129, 146], "egress": 121, "ehlo": 60, "eicar": 52, "eicar_hdb": 52, "either": [3, 5, 8, 13, 23, 35, 39, 47, 50, 56, 57, 60, 75, 79, 83, 90, 96, 98, 99, 104, 120, 122, 126, 130, 132, 134, 139, 144, 145, 146, 166, 168], "ej39ityzeuh5bgwdrufi": 45, "elect": 79, "element": [72, 73, 74, 129, 146], "elimin": [53, 79], "els": [13, 79, 99, 130, 134], "elseif": 99, "elsewher": [55, 57], "email": [2, 38, 40, 57, 58, 62, 75, 76, 79, 80, 83, 86, 111, 114, 117, 146, 157], "email_address_changed_by_admin": 57, "email_configur": 57, "emailtempl": [57, 60], "emb": [57, 61, 147], "embed": [3, 62, 86, 123, 164, 165], "embrac": [130, 142], "emf": [57, 162], "emit": 146, "emoji": [20, 131, 137, 143], "emot": 11, "emploi": [3, 8, 79, 84, 166], "empti": [3, 19, 24, 26, 55, 57, 62, 64, 66, 74, 75, 79, 80, 83, 86, 99, 130, 135, 139, 140, 167, 168], "en": [2, 7, 8, 57, 63, 120, 131, 146], "en_u": [57, 63], "enabl": [1, 2, 3, 6, 8, 14, 16, 17, 18, 19, 22, 26, 28, 36, 38, 39, 40, 43, 44, 46, 50, 54, 55, 56, 61, 62, 64, 65, 67, 68, 69, 70, 71, 75, 79, 81, 85, 86, 91, 93, 96, 97, 98, 99, 103, 104, 111, 112, 114, 115, 116, 120, 121, 124, 126, 127, 131, 134, 135, 137, 139, 141, 144, 145, 148, 149, 151, 152, 154, 157, 160, 162, 163, 164, 167, 168], "enable_encrypt": 25, "enable_lazy_object": 86, "enable_mail_link_password_expir": 86, "enable_non": 86, "enable_preview": [44, 86, 123], "enable_share_accept": 86, "enable_share_mail": 86, "enablecalendarfeder": 111, "enabledefaultcontact": 112, "enabledpreviewprovid": [44, 86, 123, 129, 162, 163], "encapsul": 126, "encf": 128, "encod": [19, 26, 28, 45, 62, 80, 81, 86, 126, 136, 146], "encount": [2, 3, 38, 47, 57, 116, 126, 134, 135, 139], "encourag": [84, 123, 130, 166], "encrypt": [28, 29, 37, 38, 42, 43, 79, 83, 86, 123, 124, 126, 136, 154, 160], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 25, 26, 48, 53, 57, 79, 86, 111, 120, 126, 140, 141, 145, 146, 162], "end_header_id": 5, "endedat": 13, "endedbefor": 13, "endpoint": [2, 28, 32, 33, 45, 57, 65, 67, 74, 85, 99, 112, 135, 144, 146, 148, 162, 168], "energi": [5, 6, 7, 8, 11, 86, 88], "enforc": [9, 19, 38, 40, 47, 57, 60, 61, 69, 71, 79, 84, 86, 98, 111, 120, 123, 126, 134, 146, 147, 160, 167], "enforce_home_folder_naming_rul": 79, "enforce_them": 86, "engin": [19, 52, 99, 102, 104, 129, 131, 137, 143, 166, 168], "english": [2, 4, 5, 7, 8, 9, 10, 11, 57, 63], "enhanc": [8, 15, 42, 55, 57, 67, 79, 84, 129], "enlarg": 61, "enough": [0, 1, 4, 11, 23, 56, 57, 79, 96, 102, 111, 123, 129, 135, 146, 148, 152, 164], "ensembl": 3, "ensur": [8, 15, 19, 23, 25, 35, 41, 51, 54, 56, 57, 67, 79, 86, 96, 98, 111, 114, 121, 124, 126, 127, 129, 130, 131, 134, 135, 139, 140, 146, 147, 154], "enter": [19, 23, 25, 28, 29, 30, 31, 33, 34, 35, 38, 40, 42, 57, 60, 65, 76, 77, 79, 83, 89, 96, 114, 121, 122, 123, 125, 130, 142, 144, 146], "enterpris": [52, 64, 117, 118, 119, 120, 123, 130, 131, 135, 146, 150, 166], "entir": [3, 5, 6, 7, 9, 10, 11, 40, 92, 115, 118, 135, 137, 146, 150, 166], "entri": [1, 19, 38, 49, 55, 56, 57, 66, 79, 81, 86, 111, 112, 121, 129, 130, 132, 134, 135, 139, 140, 141, 144, 146, 157, 162], "entrypoint": [55, 153], "entryuuid": 146, "enumer": [112, 161], "env": [4, 95, 99, 100, 101, 123, 130, 146], "env_nam": 101, "env_valu": 101, "envelop": 86, "environ": [3, 4, 8, 19, 23, 40, 55, 62, 67, 79, 86, 90, 93, 96, 99, 101, 103, 116, 123, 126, 127, 129, 131, 135, 137, 139, 140, 142, 143, 144, 145, 151, 166], "eof": 60, "eot_id": 5, "epel": [52, 120], "epoch": 131, "equal": [8, 26, 44, 57, 99], "equival": [46, 57, 79, 95], "eras": 96, "err": 4, "error": [3, 4, 7, 13, 23, 37, 52, 56, 57, 64, 66, 78, 79, 86, 92, 101, 102, 116, 118, 120, 123, 125, 127, 128, 130, 136, 139, 140, 144, 146, 154, 165], "error_log": [57, 64, 96, 135], "error_messag": 13, "errorlog": [57, 86, 146], "escal": 50, "escap": [60, 167], "esmtp": 60, "especi": [37, 54, 55, 79, 99, 105, 130, 135, 139, 141, 145, 146, 162, 167], "esperanto": 4, "essenti": [8, 57, 65, 79, 135, 168], "establish": [38, 40, 51, 60, 86, 96, 127, 131, 146], "estim": [4, 146], "esx": 130, "etag": [126, 146, 167], "etc": [3, 8, 14, 19, 22, 40, 45, 52, 54, 56, 57, 64, 66, 79, 83, 120, 121, 123, 126, 127, 128, 130, 135, 141, 146, 148, 149, 152, 154, 156, 160, 162, 167], "ethic": [5, 12, 86], "eu": [28, 45], "euc": 68, "europ": [57, 115, 146], "eval": 146, "evalu": 166, "even": [1, 15, 17, 19, 23, 28, 29, 35, 45, 49, 55, 56, 57, 66, 86, 91, 99, 101, 104, 111, 123, 128, 129, 130, 135, 139, 143, 145, 166], "event": [2, 20, 49, 57, 64, 79, 86, 96, 113, 114, 123, 125, 129, 168], "everi": [5, 14, 19, 29, 35, 37, 41, 45, 46, 50, 51, 52, 54, 56, 57, 60, 65, 78, 79, 83, 96, 111, 112, 120, 129, 131, 141, 144, 145, 156, 157, 166, 167], "everybodi": 135, "everyon": [78, 146, 166], "everyth": [56, 57, 60, 62, 79, 86, 130, 135, 166], "everywher": [79, 157], "evict": 57, "ex": [2, 89, 94, 96, 141, 146, 168], "ex_app_port": 99, "exact": [54, 57, 67, 79, 144, 168], "exactli": [45, 120, 145], "examin": 81, "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 13, 15, 17, 19, 23, 25, 29, 30, 31, 32, 37, 38, 40, 42, 44, 45, 47, 48, 49, 51, 52, 54, 56, 60, 61, 62, 65, 69, 75, 77, 79, 81, 83, 85, 86, 89, 94, 96, 97, 98, 99, 101, 107, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 139, 144, 145, 150, 151, 153, 154, 160, 166, 167, 168], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 14, 86, 97, 100, 102, 163, 164, 165, 168], "exapp_direct": 100, "exapp_resourc": 168, "exapphost": 99, "exce": [4, 41, 46, 57, 83, 165], "exceed": [23, 46, 57], "excel": 56, "except": [3, 56, 57, 64, 74, 78, 79, 126, 134, 139, 140, 144, 146], "excerpt": 96, "excess": 129, "exchang": [0, 5, 7, 38, 60, 160], "excim": 57, "exclud": [40, 57, 62, 78, 86, 96, 105], "exclus": [33, 45, 57, 67, 96, 99, 135, 146], "exec": [4, 14, 139, 167], "execcondit": 54, "execstart": [14, 54, 167], "execut": [1, 3, 4, 6, 8, 14, 16, 22, 35, 38, 52, 54, 57, 67, 79, 86, 94, 99, 107, 114, 123, 126, 128, 134, 139, 144, 145, 146, 167, 168], "exempt": [55, 57], "exhaust": 167, "exhibit": [7, 8, 126], "exif": 127, "exim": 60, "exim4": 60, "exist": [3, 6, 15, 17, 19, 20, 24, 25, 28, 30, 33, 45, 48, 50, 57, 58, 60, 64, 66, 73, 74, 75, 79, 81, 83, 96, 98, 111, 114, 116, 122, 125, 126, 127, 130, 134, 135, 139, 140, 143, 144, 145, 146, 152, 159, 162, 166, 168], "exit": [90, 94, 121, 146], "expand": 86, "expect": [6, 13, 57, 60, 79, 83, 114, 134, 144, 146, 147, 162, 163, 164, 165, 166], "expedit": 8, "expens": 111, "experi": [4, 15, 54, 62, 86, 112, 114, 123, 129, 131, 135, 154], "experienc": 96, "experiment": [57, 79, 83, 91], "expert": [25, 71, 86, 114], "expertis": [135, 166], "expir": [2, 29, 38, 41, 43, 46, 54, 55, 57, 62, 79, 84, 86, 96, 111, 114, 126, 146, 167], "expiri": 79, "explain": [52, 62, 75, 86, 120, 127], "explan": [135, 146], "explicitli": [5, 13, 26, 46, 56, 57, 64, 66, 85, 90, 126, 135, 146, 160], "explod": [57, 99], "exponenti": 123, "export": [86, 96, 114, 123, 168], "expos": [2, 25, 37, 38, 52, 57, 86, 98, 99, 100, 123, 125, 127, 135, 146], "exposur": [123, 135], "express": [57, 66, 104, 167], "extapp": 147, "extend": [2, 8, 40, 57, 60, 66, 131, 155, 166], "extendedsupport": 146, "extens": [3, 19, 48, 57, 60, 62, 64, 67, 86, 88, 89, 94, 116, 120, 123, 126, 127, 129, 130, 135, 140, 142, 161, 162, 163, 166], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 14, 28, 30, 31, 32, 33, 34, 35, 36, 38, 42, 43, 54, 57, 62, 65, 79, 82, 83, 85, 86, 103, 105, 111, 123, 127, 128, 129, 132, 136, 139, 162, 168], "external_db": 3, "external_storag": 86, "externalapp": 3, "extra": [15, 52, 57, 69, 79, 102, 120, 121, 134, 139], "extra_fil": 134, "extract": [1, 3, 26, 57, 99, 120, 122, 144], "extrem": [55, 67], "extstoragemount": 58, "f": [2, 4, 8, 14, 49, 54, 57, 64, 102, 111, 137, 139, 143, 145, 146, 167], "f12": [96, 135], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 134, "f6": 51, "fa829794448eaffbc9a04a29d216": 134, "face": [7, 9, 13, 14, 86, 126], "facebook": 57, "facebook100000123456789": 57, "facilit": [78, 129, 166], "fact": [123, 129], "facto": 66, "factor": [4, 8, 14, 23, 55, 70, 71, 86, 116, 123], "factori": 57, "fail": [3, 13, 15, 23, 38, 56, 57, 64, 66, 73, 74, 76, 79, 86, 96, 102, 111, 118, 123, 127, 134, 135, 142, 144, 146, 162], "fail2ban": [86, 124], "failov": [57, 79], "failover_distribut": 57, "failover_error": [56, 57], "failover_mod": [56, 57], "failover_non": 57, "failregex": 123, "failur": [57, 73, 74, 86, 94, 102, 135], "fair": [86, 136], "fairli": 96, "fall": [22, 23, 57, 92], "fallback": [48, 126, 156], "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 27, 38, 44, 45, 55, 56, 57, 60, 75, 79, 83, 91, 99, 100, 111, 114, 116, 123, 129, 135, 137, 145, 146, 149, 162], "familiar": [57, 130], "faq": [67, 86, 103, 130, 135, 136, 142], "far": [2, 14, 83, 114, 166], "farsi": 4, "fast": [5, 60, 114, 146], "fastcgi": [121, 130], "fastcgi_buff": 126, "fastcgi_connect_timeout": 126, "fastcgi_hide_head": 126, "fastcgi_intercept_error": 126, "fastcgi_max_temp_file_s": 126, "fastcgi_param": [123, 126], "fastcgi_pass": 126, "fastcgi_path_info": 126, "fastcgi_read_timeout": [23, 126], "fastcgi_request_buff": 126, "fastcgi_script_nam": 126, "fastcgi_send_timeout": 126, "fastcgi_split_path_info": 126, "faster": [0, 3, 7, 11, 14, 56, 86, 124, 130, 166], "fatal": [57, 64, 92, 118, 146], "fault": 23, "faulti": 60, "favicon": 69, "favor": 57, "favorit": 166, "fb": 51, "fcgidmaxrequestinmem": 23, "fcgidmaxrequestlen": 23, "fcontext": [120, 128], "fd00": 123, "fd9e": 57, "fe80": 125, "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 26, 35, 40, 47, 49, 53, 54, 55, 57, 59, 60, 67, 69, 79, 81, 86, 91, 111, 112, 113, 114, 116, 117, 120, 123, 129, 130, 131, 135, 146, 148, 150, 151, 155, 159, 165, 166, 167], "februari": 23, "feder": [40, 43, 62, 67, 75, 86, 112, 113, 123], "fedivers": 79, "fedora": [56, 90, 130, 146], "fedoraproject": 90, "feedback": [5, 7, 9, 10, 14, 144, 166], "feel": [69, 99], "felt": 146, "fetch": [2, 15, 57, 79, 80, 121, 143, 145, 146, 147], "few": [29, 38, 55, 57, 79, 100, 114, 130, 139, 144, 145], "fewer": 129, "ff5733": 146, "ffmpeg": [57, 127], "ffprobe": 57, "ffri": 66, "fidel": 150, "field": [1, 13, 15, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 52, 62, 73, 79, 80, 83, 86, 98, 99, 123, 130, 135, 166, 168], "figur": [145, 146], "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 20, 29, 30, 31, 34, 38, 44, 45, 46, 47, 48, 49, 51, 53, 54, 56, 58, 60, 62, 65, 66, 69, 72, 77, 79, 83, 89, 90, 92, 93, 94, 95, 99, 101, 102, 107, 111, 112, 115, 116, 117, 120, 121, 122, 123, 124, 125, 127, 130, 132, 133, 134, 136, 139, 140, 142, 143, 144, 145, 149, 150, 152, 156, 157, 161, 164, 165, 167], "filecach": [16, 22, 48, 57, 141, 146], "fileformat": 167, "fileid": [57, 147, 167], "fileinfo": 127, "filekei": [26, 146], "filelist": 35, "filelock": 86, "filenam": [25, 26, 43, 45, 57, 86, 95, 96, 143, 163], "filepart": 57, "filepath": [31, 128, 130, 146], "files_accesscontrol": 3, "files_antiviru": [52, 96, 146], "files_encrypt": [25, 26], "files_extern": [3, 35, 57, 146], "files_external_allow_create_new_loc": 86, "files_no_background_scan": 86, "files_pdfview": 144, "files_shar": [38, 83, 146], "files_texteditor": 72, "files_trashbin": [26, 46, 146], "files_vers": [26, 41, 146], "filescan": 54, "filesmatch": 130, "filesync": 72, "filesystem": [23, 25, 37, 42, 45, 57, 72, 79, 128, 146, 167], "filesystem_cache_readonli": 86, "filesystem_check_chang": 86, "filetyp": [44, 57, 123], "fill": [2, 3, 5, 32, 37, 38, 52, 60, 79, 83, 98, 111, 114, 168], "filter": [12, 15, 55, 57, 72, 79, 80, 83, 86, 127, 129, 146, 154, 165, 168], "final": [3, 5, 7, 23, 35, 60, 86, 99, 114, 120, 122, 123, 124, 130, 144, 146, 166], "financi": 135, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 23, 25, 30, 35, 37, 45, 52, 55, 57, 64, 67, 78, 79, 83, 86, 93, 96, 114, 119, 127, 129, 130, 133, 135, 139, 145, 146, 164, 166, 168], "finder": [57, 135], "findtim": 123, "fine": [5, 11, 57, 105, 123, 128, 130, 168], "fingerprint": [86, 140, 143, 146], "finish": [3, 4, 8, 13, 52, 53, 54, 99, 101, 102, 125, 135, 137, 139, 144, 145, 146], "fire": 167, "firefox": 131, "firewal": [15, 99, 102, 120, 123, 154, 162], "first": [17, 19, 22, 24, 25, 29, 41, 45, 52, 53, 55, 57, 59, 79, 80, 81, 82, 83, 96, 99, 101, 102, 104, 111, 112, 116, 120, 122, 123, 126, 129, 130, 132, 133, 134, 135, 139, 140, 141, 142, 145, 146, 163, 166, 168], "first_seen": 146, "fit": [1, 6, 56, 98, 130, 142, 160], "five": 137, "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 23, 25, 54, 55, 67, 86, 99, 127, 131, 133, 135, 136, 146, 166], "fix_pathinfo": 126, "flac": [126, 161, 162], "flag": [49, 57, 81, 82, 100, 129, 146], "flash": 52, "flat": 57, "flexibl": [49, 117, 130, 132, 166], "flite": 57, "float": [57, 146], "flow": [57, 64, 65, 82, 86, 91, 94, 104, 108, 168], "flow_input": 168, "flush": [95, 122], "focu": [0, 1], "focus": [25, 145, 166], "folder": [2, 7, 8, 15, 17, 23, 24, 28, 30, 31, 35, 36, 37, 38, 40, 43, 45, 46, 49, 57, 64, 66, 69, 79, 80, 81, 86, 89, 90, 91, 92, 94, 96, 97, 99, 105, 107, 120, 121, 126, 128, 130, 134, 135, 138, 139, 144, 146, 150, 167], "folder_nam": 146, "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 19, 20, 22, 23, 25, 35, 36, 37, 38, 40, 44, 45, 49, 52, 53, 54, 55, 56, 57, 58, 60, 61, 64, 65, 66, 67, 68, 69, 75, 78, 79, 81, 83, 86, 89, 90, 91, 94, 95, 96, 98, 99, 100, 104, 106, 111, 112, 113, 115, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 146, 148, 153, 154, 156, 162, 166, 167, 168], "followsymlink": [120, 130], "font": [57, 86, 126], "fontobject": 126, "foo": [57, 79, 146], "foobar": 74, "food": 6, "foolproof": [57, 129], "forbid": [47, 84, 111, 146], "forbidden": 57, "forbidden_char": 163, "forbidden_filenam": [86, 163], "forbidden_filename_basenam": [47, 86, 163], "forbidden_filename_charact": [47, 86, 163], "forbidden_filename_extens": [47, 86, 163], "forc": [8, 40, 62, 79, 86, 89, 91, 101, 112, 116, 123, 146], "force_languag": [63, 86], "force_local": [63, 86], "force_share_accept": 86, "forceeventalarmtyp": 111, "forceloginv2": 91, "forcesyncinterv": 91, "foreign": 60, "forest": 2, "forev": [46, 57, 109], "forgeri": 123, "forget": [25, 26, 57, 60, 129, 130, 137, 142], "forgot": 78, "form": [52, 57, 79, 85, 86, 98, 102, 120, 135, 167, 168], "formal": [57, 63], "format": [2, 5, 29, 43, 44, 62, 63, 64, 68, 79, 80, 81, 86, 89, 91, 94, 116, 129, 131, 146, 147, 150, 164], "formid": 167, "formsubmittedev": 167, "forum": [67, 135, 144, 145, 166], "forward": [14, 57, 66, 67, 99, 125, 130, 135, 139, 146, 153], "forwarded_for_head": [55, 66, 86], "found": [0, 1, 3, 6, 44, 48, 52, 55, 56, 57, 64, 67, 78, 79, 86, 96, 98, 99, 102, 120, 123, 126, 130, 133, 134, 135, 142, 145, 146, 147, 148, 149, 151, 152, 153, 154, 162, 165, 166], "foundat": 0, "four": [14, 52, 79, 143, 166], "fourth": 166, "fpm": [23, 57, 67, 86, 121, 123, 124, 126, 127, 131], "fr": [57, 63], "frame": [61, 111, 123, 126], "franc": 57, "frank": [73, 74], "franksnewemail": 74, "frankspassword": 74, "fred": 146, "freda": [38, 146], "free": [2, 14, 17, 41, 78, 92, 99, 116, 117, 123, 130, 135, 146, 150], "free_prompt_picker_en": 1, "freebsd": 127, "freebusi": [86, 113], "freedom": 156, "freeli": [6, 11, 14, 60, 61], "french": [4, 5, 10, 11, 57, 63], "frequenc": [37, 38, 129], "frequent": [12, 52, 56, 57, 86, 135, 150, 166], "fresh": [3, 79, 126, 139, 145, 146], "freshclam": 52, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 14, 15, 19, 23, 25, 26, 27, 29, 34, 36, 37, 38, 40, 42, 43, 47, 50, 51, 52, 54, 56, 57, 61, 62, 64, 66, 67, 69, 73, 78, 79, 80, 81, 83, 84, 86, 90, 94, 96, 97, 98, 99, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 132, 134, 135, 138, 139, 140, 143, 144, 145, 146, 147, 148, 150, 154, 156, 157, 162, 163, 164, 165, 166, 168], "front": [2, 3, 5, 7, 8, 9, 10, 11, 12, 86, 116, 126, 151], "front_controller_act": [126, 130], "frontend": [23, 57, 66, 86, 98, 155, 156], "frontend1": 66, "frp": [98, 99, 100], "frp_address": 100, "frpc": [99, 100], "fry": 146, "ftp": [37, 86, 121, 127, 134], "fulfil": [2, 125, 135], "full": [3, 25, 31, 40, 44, 48, 49, 50, 56, 57, 60, 64, 65, 75, 83, 91, 104, 112, 117, 123, 130, 131, 142, 146, 148, 149, 153, 166], "fulli": [0, 1, 12, 25, 38, 57, 60, 86, 130, 145, 146, 152, 166], "fulllocaldiscoveryinterv": 91, "fullscreen": 148, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 26, 36, 42, 50, 57, 60, 61, 64, 75, 85, 86, 98, 99, 105, 114, 123, 127, 128, 130, 131, 132, 135, 139, 140, 145, 147, 152, 154, 166, 168], "fundament": [57, 67, 79], "further": [19, 40, 43, 56, 57, 60, 64, 67, 74, 79, 86, 96, 120, 124, 130, 139, 141, 142, 146, 151, 166], "furthermor": [26, 49, 56, 57], "fuse": 128, "fusef": [86, 124], "fuserpwdsupport": 79, "futur": [22, 40, 55, 67, 111, 123, 163, 164, 165], "g": [5, 14, 19, 23, 25, 28, 29, 45, 49, 51, 54, 55, 56, 60, 61, 69, 75, 79, 80, 81, 86, 89, 90, 94, 98, 99, 100, 101, 102, 104, 111, 112, 114, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 135, 139, 140, 143, 144, 145, 146, 147, 148, 152, 166, 167], "gain": [3, 13, 123], "galleri": [44, 57, 144, 146], "garbag": [54, 57], "garbl": 5, "garm": [15, 123], "gatewai": [45, 86, 90, 130], "gather": [79, 135, 162], "gb": [3, 4, 11, 23, 57, 79, 83, 92, 98], "gc_maxlifetim": 57, "gcc": 19, "gd": [44, 120, 122, 127], "gdpr": [86, 109], "gear": 83, "gecko": 64, "gemma": 2, "gender": 7, "gener": [1, 2, 3, 5, 7, 8, 10, 12, 25, 28, 29, 33, 34, 37, 43, 45, 48, 49, 55, 57, 60, 66, 69, 78, 79, 80, 86, 91, 94, 96, 99, 111, 114, 120, 124, 126, 128, 129, 130, 132, 136, 145, 146, 147, 155, 156, 157, 162, 163, 164, 165, 166], "generalizedtim": 79, "genr": [14, 86], "geo": 126, "german": [4, 5, 57, 63], "germani": [2, 57], "get": [1, 2, 12, 15, 19, 23, 25, 26, 29, 35, 43, 44, 48, 57, 59, 64, 66, 68, 69, 78, 79, 80, 89, 94, 108, 120, 121, 123, 126, 128, 129, 130, 131, 133, 134, 135, 139, 144, 148, 151, 154, 157, 162, 168], "get_lin": 60, "getctag": 167, "getenv": [57, 62, 86, 130], "getpath": [133, 146], "gguf": 5, "ghcr": [99, 129], "gib": 23, "gid": 146, "gidnumb": [80, 146], "gif": [57, 101, 126, 156, 157], "giphi": [156, 157], "git": [7, 8, 133], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 25, 26, 52, 56, 57, 60, 79, 96, 123, 126, 129, 130, 133, 142, 156, 157, 162, 165, 166], "githubusercont": 123, "gitlab": [156, 157], "give": [1, 2, 14, 28, 29, 42, 52, 58, 67, 70, 79, 86, 106, 121, 128, 130, 134, 144, 166], "given": [2, 26, 48, 54, 55, 57, 60, 61, 63, 78, 79, 80, 99, 104, 108, 116, 123, 125, 130, 135, 146, 147, 162], "givennam": [80, 146], "glanc": 129, "global": [29, 57, 62, 75, 79, 86, 111, 114, 115, 126, 146, 157], "gmail": 114, "gmbh": [15, 69, 105, 123, 130, 135, 166], "gmp": [122, 127], "gnu": [6, 19], "go": [2, 3, 6, 15, 25, 37, 38, 40, 49, 50, 52, 55, 57, 58, 61, 66, 78, 79, 98, 99, 100, 111, 117, 120, 122, 129, 133, 139, 140, 144, 146, 148, 166, 168], "goal": [25, 79, 130], "goe": [13, 83, 99, 141], "gold": [7, 10], "gone": [83, 86, 135], "good": [1, 2, 4, 5, 17, 52, 56, 60, 79, 123, 125, 129, 130, 139, 145, 146, 166], "googl": [2, 14, 57, 69, 78, 86, 131, 156], "got": [105, 166], "gpg": [86, 120, 122, 124, 149], "gpt": [1, 157], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 98, 99, 100, 102], "grab": 120, "grace": 79, "grain": [128, 168], "granit": 14, "grant": [19, 50, 71, 79, 86, 116, 120, 122, 125, 130], "granular": 49, "graph": [14, 57], "graphic": [1, 14, 44, 98, 118, 130, 146], "great": 120, "greater": [57, 86], "greatli": [3, 130, 131], "green": [5, 14, 37, 38, 79, 86, 87], "grep": [3, 14, 17, 52, 56, 102, 127, 129, 167], "groceri": 2, "groqcloud": [0, 14], "group": [2, 6, 15, 28, 30, 31, 33, 35, 40, 43, 50, 52, 56, 57, 61, 71, 78, 80, 81, 85, 86, 112, 116, 130, 154, 167], "group1": 74, "group2": 74, "group_admin": 49, "groupfold": [25, 45, 57, 62, 86, 105, 146], "groupid": [73, 74, 79], "groupofnam": 146, "groupwar": [111, 112, 114, 135], "gt": 167, "gte": 167, "guacamol": 2, "guarante": [0, 1, 5, 13, 42, 46, 56, 57], "guess": 55, "guest": 15, "gui": [3, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 43, 63, 86, 90, 129, 146], "guid": [20, 25, 57, 60, 98, 114, 117, 120, 122, 123, 127, 129, 130, 143, 151, 152, 159, 160, 165], "guidanc": [86, 124, 127, 130], "guidelin": 126, "guzzl": 57, "gz": [57, 116], "gzip": [116, 126], "gzip_comp_level": 126, "gzip_min_length": 126, "gzip_proxi": 126, "gzip_typ": 126, "gzip_vari": 126, "h": [19, 52, 57, 64, 72, 73, 74, 80, 90, 95, 99, 123, 130, 137, 143, 146], "h2non": 57, "ha": [3, 5, 7, 9, 10, 13, 14, 15, 16, 23, 25, 26, 29, 35, 37, 38, 40, 44, 45, 48, 49, 50, 52, 53, 54, 55, 57, 60, 61, 63, 64, 65, 67, 69, 78, 79, 83, 86, 90, 94, 96, 98, 99, 100, 104, 111, 114, 115, 116, 120, 123, 128, 129, 130, 132, 134, 135, 140, 142, 144, 145, 146, 148, 152, 160, 165, 166, 168], "hackeron": 25, "had": [26, 49, 160, 162, 165], "half": 29, "hallucin": [5, 8], "halt": 57, "hamm": 81, "hand": [105, 166], "handl": [1, 3, 8, 17, 26, 55, 57, 61, 62, 66, 77, 86, 96, 97, 111, 114, 123, 126, 129, 135, 146, 153, 154], "handle_all_url": 51, "handler": [60, 86], "hanson": 146, "hansson": 130, "happen": [22, 25, 40, 45, 49, 55, 57, 78, 79, 80, 104, 111, 114, 126, 134, 135, 140, 144, 146, 148], "happi": [13, 28, 45], "haproxi": [86, 98, 99], "haproxy_host": 99, "haproxy_password": [99, 100], "haproxypass": 99, "hard": [23, 40, 61, 123], "hardcod": [123, 126], "harden": [57, 86, 124, 127], "harder": 55, "hardest": 52, "hardwar": [1, 3, 4, 14, 25, 98, 102, 129, 130, 140], "harp": [86, 100, 102, 103, 168], "harp_docker_socket_port": 100, "harp_exapp_direct": 100, "harp_frp_address": 100, "harp_proxy_dock": 100, "harp_proxy_host": 100, "harp_shared_kei": 100, "has_internet_connect": 86, "hash": [26, 62, 79, 80, 84, 86, 127, 134, 167, 168], "hash_equ": 26, "hash_hmac": 26, "hashing_default_password": 86, "hashingcost": 86, "hashingmemorycost": 86, "hashingthread": 86, "hashingtimecost": 86, "hashtag": 157, "hasmemberoffiltersupport": 80, "hasn": [57, 63], "haspagedresultsupport": 80, "hat": [56, 130, 131], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 22, 23, 25, 26, 27, 29, 30, 31, 35, 38, 40, 44, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 69, 75, 76, 78, 79, 81, 83, 86, 90, 93, 94, 95, 96, 98, 99, 100, 102, 104, 106, 108, 111, 112, 114, 116, 120, 121, 123, 125, 126, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 152, 153, 154, 156, 158, 162, 164, 166, 167, 168], "haveibeenpwnd": 84, "hbegin": 26, "hdr": 57, "head": [55, 65, 67, 120], "header": [2, 23, 26, 27, 57, 60, 61, 62, 65, 66, 69, 72, 73, 74, 80, 85, 86, 124, 125, 126, 130, 135, 162, 165, 168], "headless": 118, "headlin": [1, 75, 79], "health": 102, "healthi": [102, 135], "heartbeat": [57, 86], "heartbeat_count": 102, "heavi": [0, 1, 16, 42, 56, 99, 127, 150], "heavili": [55, 57], "heic": [57, 129, 130], "heif": [57, 130], "height": 57, "hello": [1, 60], "helm": 130, "help": [2, 3, 4, 8, 13, 25, 26, 55, 56, 57, 60, 64, 69, 79, 92, 95, 96, 104, 105, 111, 112, 116, 120, 128, 129, 130, 133, 135, 139, 143, 144, 145, 146, 166], "helper": 14, "henc": [78, 146], "hend": 26, "her": 2, "here": [1, 2, 3, 5, 6, 11, 13, 15, 17, 19, 25, 28, 40, 52, 57, 60, 64, 65, 66, 79, 93, 94, 98, 99, 114, 116, 123, 126, 129, 130, 145, 146, 156], "heurist": 67, "hex": 146, "hexadecim": 26, "hf_model_path": 11, "hidden": [40, 79, 86, 90, 96, 111, 116, 123, 126, 135], "hide": [35, 57, 86, 115, 116, 126], "hide_absence_set": 115, "hide_disabled_user_shar": 83, "hide_login_form": 86, "hideeventexport": 111, "hierarch": 86, "hierarchi": 37, "high": [4, 5, 6, 7, 11, 14, 19, 23, 25, 35, 52, 54, 114, 123, 129, 130, 131, 132, 150, 164, 166], "highcontrast": 57, "higher": [2, 5, 6, 7, 9, 11, 23, 42, 57, 60, 64, 112, 141, 166], "highest": [2, 79, 145, 166], "highli": [55, 57, 67, 79, 116, 123, 127, 129, 134, 147, 151, 166], "highlight": [14, 130, 139, 145, 166], "hike": 2, "him": 2, "hinder": 54, "hindi": [4, 5, 10], "hint": [57, 67, 74, 126, 145], "histor": 25, "histori": [13, 14, 55, 84, 146], "hit": [1, 52, 55, 79], "hlocalhost": 19, "hmac": 26, "hog": [5, 7, 9, 10], "hold": [23, 26, 29, 45, 79, 98, 104, 146], "holidai": 111, "home": [25, 37, 60, 79, 81, 86, 89, 90, 91, 94, 96, 130, 135, 146, 154], "homefoldernamingrul": 80, "hood": [5, 7, 10, 166], "hook": [146, 168], "hope": 22, "hopefulli": 144, "hord": 116, "horde_": 116, "horde_imap": 116, "hors": 52, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 14, 19, 21, 28, 34, 35, 42, 45, 51, 52, 56, 57, 60, 66, 67, 79, 80, 86, 91, 97, 98, 100, 111, 114, 116, 120, 121, 123, 125, 126, 130, 135, 139, 144, 146, 147, 148, 149, 153, 154, 162, 167], "hoster": [19, 57, 114], "hostnam": [17, 19, 28, 45, 52, 57, 60, 66, 79, 98, 114, 126, 130, 140, 142, 146, 154], "hour": [2, 5, 9, 16, 40, 41, 49, 52, 54, 55, 57, 79, 95, 96, 111, 112, 114, 139, 140, 145], "hourli": 49, "hous": [28, 139], "housekeep": [54, 139], "hover": [79, 83, 156], "how": [2, 6, 7, 10, 14, 23, 25, 28, 29, 30, 32, 38, 45, 52, 57, 62, 63, 64, 67, 79, 80, 83, 86, 94, 98, 109, 111, 112, 114, 116, 120, 123, 126, 127, 129, 130, 134, 135, 138, 140, 144, 146, 148, 155, 159, 160, 164, 165, 166], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 19, 26, 27, 52, 54, 55, 56, 57, 64, 68, 77, 78, 99, 111, 115, 123, 129, 130, 131, 141, 142, 145, 146, 151, 153, 162, 168], "hp_frp_address": 99, "hp_shared_kei": [98, 99], "hr": 91, "href": 167, "hst": [67, 121, 123, 126], "hstspreload": 126, "htaccess": [23, 86, 120, 123, 126, 128, 135, 146, 162, 163, 165], "htaccesstest": 126, "htdoc": 53, "html": [57, 60, 64, 96, 120, 126, 127, 128, 131, 135, 144, 146, 147, 148, 149, 151, 152, 153, 165, 167, 168], "htop": 129, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 17, 23, 25, 28, 31, 32, 33, 36, 37, 38, 42, 45, 51, 52, 54, 57, 60, 61, 62, 64, 65, 66, 69, 72, 73, 74, 77, 79, 80, 81, 85, 86, 89, 90, 91, 94, 96, 97, 98, 99, 100, 102, 111, 114, 116, 118, 120, 121, 122, 124, 125, 126, 127, 128, 131, 133, 134, 135, 137, 139, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 162, 165, 167, 168], "http2": 126, "http_author": 130, "http_forwarded_for": 57, "http_proxi": 57, "http_user_ag": 126, "http_x_forward": 57, "http_x_forwarded_for": [57, 66], "httpd": [86, 96, 104, 105, 120, 124, 130], "httpd_can_connect_ldap": 128, "httpd_can_network_connect": [120, 128], "httpd_can_network_connect_db": 128, "httpd_can_network_memcach": 128, "httpd_can_sendmail": 128, "httpd_sys_rw_content_t": [120, 128], "httpd_unifi": 128, "httpd_use_cif": 128, "httpd_use_fusef": 128, "httpd_use_gpg": 128, "httpdavmodul": 135, "httpproxi": 90, "https_proxi": 57, "hub": [0, 2, 14, 152, 168], "hug": 7, "huge": [16, 57, 129], "huggingfac": [5, 11], "human": [6, 11, 79, 168], "hundr": 135, "hurri": 60, "hy000": 135, "hyperlink": 40, "hypervisor": 130, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 161, 162, 165, 166, 167], "i686": 19, "iaccountmanag": [57, 75], "iana": [57, 115], "ibm": [1, 8, 12, 14, 86], "ic": [111, 146], "ical": 146, "icalendar": 146, "icap": [62, 86], "icmp_req": [19, 60], "ico": 126, "icon": [37, 38, 44, 57, 61, 62, 83, 86, 91, 126, 146], "id": [2, 8, 12, 15, 25, 28, 35, 40, 57, 60, 64, 69, 72, 74, 79, 80, 82, 83, 86, 99, 100, 109, 114, 123, 146, 148, 154, 167, 168], "id1125420102": [57, 69], "idea": [2, 52, 139, 145], "ideal": [1, 130, 135, 142], "ident": [33, 45, 57, 69, 71, 79, 86, 130], "identif": 79, "identifi": [18, 19, 26, 45, 57, 58, 65, 79, 80, 86, 102, 109, 115, 116, 122, 123, 129, 134, 135, 147, 168], "ie": [1, 3, 120], "ie11": 23, "ie6": 23, "ie8": 23, "ie9": 23, "iemailtempl": 60, "ietf": 167, "ifmodul": [120, 123, 130, 135], "ifram": [57, 61, 123], "igbinari": 57, "ignor": [3, 17, 25, 28, 40, 45, 46, 56, 57, 60, 83, 90, 96, 127, 146, 147], "ignore_notic": 19, "ignorefrontcontrol": [86, 130], "illustr": [57, 130], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 25, 30, 48, 52, 57, 66, 69, 86, 126, 127, 129, 130, 146, 148, 150, 151, 154, 156, 157, 163, 164, 165], "imagegd": 57, "imagick": [69, 86, 122, 127], "imagin": 40, "imaginari": [57, 86, 129, 130], "imaginarypdf": [57, 163], "imap": [60, 86, 127], "imap4": 60, "immedi": [52, 57, 60, 83], "immut": [79, 126], "impact": [25, 45, 55, 57, 60, 99, 106, 129, 135, 166], "imperson": [123, 168], "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 25, 26, 29, 45, 49, 50, 52, 57, 60, 65, 78, 79, 86, 99, 111, 116, 130, 131, 140, 146, 156], "implic": [57, 86], "implicitli": 146, "import": [29, 31, 37, 54, 55, 57, 61, 69, 86, 111, 112, 114, 120, 122, 125, 127, 130, 132, 135, 140, 150, 159], "importantli": 130, "impos": 14, "imprinturl": 69, "improv": [2, 3, 12, 23, 35, 42, 56, 57, 67, 79, 86, 98, 120, 126, 127, 129, 131, 145, 146, 150, 151], "in_arrai": 99, "inaccess": [20, 25, 45], "inaccur": 8, "inact": 57, "inadvert": [55, 129], "inbox": [14, 116], "inc": 69, "incid": 64, "inclin": 166, "includ": [1, 4, 7, 11, 15, 17, 26, 28, 35, 37, 40, 44, 50, 52, 55, 57, 60, 65, 79, 83, 90, 96, 100, 102, 114, 115, 116, 117, 123, 126, 127, 129, 130, 132, 135, 137, 144, 145, 146, 147, 150, 151, 163, 164, 165, 166, 168], "includedir": 19, "includesubdomain": [123, 126], "incom": [57, 58, 146], "incoming_server2server_share_en": 146, "incompat": [57, 129, 141], "inconsist": [137, 146], "inconvert": [18, 86], "incorpor": [45, 57], "incorrect": [57, 77, 91, 96, 168], "incorrectli": [57, 66, 116], "increas": [23, 29, 35, 38, 56, 57, 60, 92, 102, 114, 121, 123, 126, 129, 130, 131, 135, 146, 164], "increment": 16, "indefinit": 55, "independ": [3, 26, 96, 104], "index": [2, 25, 26, 38, 57, 65, 66, 86, 99, 104, 121, 123, 126, 130, 134, 135, 144, 146, 151, 167, 168], "indexerjob": 3, "indi": 126, "indic": [15, 22, 37, 38, 57, 60, 79, 80, 86, 102, 114, 128, 135, 141, 145, 166], "indirectli": 105, "individu": [23, 25, 29, 37, 50, 55, 57, 75, 96, 116, 123, 129, 146], "industri": 140, "inetorgperson": [79, 80, 146], "inevit": [123, 131], "infect": 52, "infer": [5, 6, 11], "inferenc": [6, 14], "infinit": 126, "influenc": [8, 29, 92, 111, 112], "info": [8, 40, 57, 64, 67, 75, 79, 85, 86, 96, 101, 135], "inform": [0, 1, 3, 4, 5, 7, 8, 13, 15, 19, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 45, 49, 53, 55, 56, 57, 60, 61, 63, 64, 66, 67, 72, 74, 75, 79, 83, 86, 90, 92, 93, 96, 101, 104, 109, 111, 112, 114, 115, 116, 118, 121, 123, 126, 129, 130, 131, 134, 139, 142, 144, 145, 146, 156, 160, 162, 164, 165], "infrastructur": [57, 135], "inher": 54, "inhibit": 90, "ini": [19, 23, 30, 56, 57, 68, 86, 91, 120, 121, 123, 124, 126, 128, 130, 135, 164], "init": [52, 86, 146], "initdb": 121, "initi": [12, 18, 24, 25, 26, 46, 53, 57, 83, 86, 88, 94, 99, 101, 102, 105, 146, 166, 168], "initialis": [121, 130, 142], "inject": 57, "inlin": 14, "innodb": [20, 57, 131], "innodb_buffer_pool_inst": 19, "innodb_buffer_pool_s": 19, "innodb_file_format": [19, 57], "innodb_file_per_t": [19, 20, 57], "innodb_flush_log_at_trx_commit": 19, "innodb_large_prefix": [19, 57], "innodb_log_buffer_s": 19, "innodb_max_dirty_pages_pct": 19, "input": [3, 5, 7, 13, 29, 40, 57, 72, 73, 79, 146, 157, 168], "insecur": [60, 86, 131], "insensit": [47, 57, 104], "insert": [57, 86, 126, 146, 150, 157], "insid": [3, 5, 7, 8, 14, 23, 35, 42, 54, 57, 61, 63, 66, 79, 96, 99, 105, 111, 121, 129, 144, 146, 167], "insight": [1, 12, 86], "inspect": [4, 52], "inspector": 67, "instal": [12, 14, 15, 17, 19, 20, 23, 26, 27, 32, 35, 36, 38, 42, 46, 50, 53, 54, 56, 60, 61, 62, 66, 67, 68, 69, 72, 78, 79, 82, 96, 97, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 117, 126, 128, 129, 131, 132, 134, 135, 137, 138, 139, 140, 141, 143, 144, 145, 147, 150, 152, 153, 155, 157, 159, 160, 162], "installed_vers": 146, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16, 17, 19, 20, 25, 26, 40, 44, 45, 53, 54, 57, 60, 65, 69, 75, 79, 82, 86, 96, 98, 99, 109, 111, 112, 114, 116, 120, 124, 126, 129, 130, 131, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 151, 154, 164, 166, 168], "instanceid": [26, 86, 144], "instancesecret": 26, "instanti": 57, "instantli": 57, "instead": [3, 5, 14, 20, 23, 28, 29, 35, 44, 45, 48, 49, 54, 57, 60, 61, 63, 64, 67, 69, 74, 75, 79, 80, 81, 86, 89, 91, 114, 116, 120, 123, 124, 126, 130, 134, 135, 141, 142, 144, 145, 146, 148, 160], "instruct": [1, 2, 3, 5, 17, 19, 52, 61, 67, 71, 79, 85, 86, 116, 122, 123, 127, 129, 130, 132, 139, 141, 145], "insuffici": [74, 96], "int": [23, 70, 73, 74, 80, 99, 116, 167], "int8_float32": 11, "integ": [1, 16, 45, 54, 57, 99, 111, 112, 146], "integr": [1, 2, 3, 8, 12, 14, 40, 52, 55, 57, 62, 68, 71, 80, 86, 114, 115, 127, 130, 135, 136, 144, 148, 156, 157, 163, 164, 168], "integration_deepl": [1, 14], "integration_openai": [0, 1, 2, 5, 8, 114], "integration_repl": [0, 1, 14], "integration_watsonx": [0, 1], "integritycheck": 134, "intel": [7, 10, 129], "intellig": [0, 1, 14, 86, 98], "intend": [57, 78, 79, 94, 123], "intens": [54, 129], "intent": 146, "intention": 116, "interact": [1, 2, 16, 17, 38, 52, 54, 56, 57, 79, 86, 90, 144, 146, 168], "intercept": 123, "interchang": [25, 60, 127], "interest": [69, 91, 166], "interfac": [1, 2, 5, 7, 9, 10, 11, 14, 15, 19, 25, 38, 40, 45, 55, 57, 60, 67, 69, 76, 83, 86, 91, 96, 98, 111, 113, 115, 116, 117, 122, 123, 124, 129, 130, 131, 135, 145, 146, 165, 168], "intermedi": 145, "intern": [3, 13, 25, 37, 38, 45, 54, 57, 67, 71, 80, 83, 86, 100, 104, 114, 129, 130, 147, 157, 167, 168], "internal_defaultexpdai": 40, "interned_strings_buff": 121, "internet": [54, 57, 60, 123, 130, 146], "interpret": [98, 123], "interrupt": [25, 42, 54, 127], "interv": [35, 52, 54, 57, 81, 86, 91, 111, 166, 167], "intervent": [6, 52, 123], "intl": [120, 122, 127], "introduc": [14, 47, 79, 98, 166, 168], "introduct": [62, 86, 99, 120], "invalid": [43, 55, 57, 61, 67, 72, 73, 74, 79, 86, 90, 123, 126, 129, 136, 146, 162], "invalid_hash": 134, "invalidsignatur": 134, "invalidsignatureexcept": 134, "invert": 104, "investig": 57, "invis": [86, 104, 107, 108, 146], "invit": [60, 86, 113, 150, 160], "invite": 111, "invoc": [57, 123, 162], "invok": [57, 90, 144, 146, 162], "involv": [23, 131, 162], "io": [42, 57, 61, 69, 99, 104, 117, 126, 129, 130, 131, 135, 142], "iono": [0, 14], "iosclienturl": 69, "iot": [130, 142], "iotop": 129, "ip": [8, 19, 38, 52, 57, 60, 64, 66, 67, 79, 86, 90, 98, 99, 100, 102, 104, 114, 124, 125, 130, 142, 146, 147, 154], "ipad": 66, "iphon": 66, "iptabl": [123, 154], "ipv4": [55, 57, 66], "ipv6": [55, 57, 66], "ipv6_normalized_subnet_s": 86, "irrevers": 78, "is_arg": 126, "isanonym": 167, "isn": [20, 25, 57, 79, 116, 129, 130, 146], "iso": [57, 63], "iso_639": 57, "isol": [62, 86, 129, 130, 131, 144], "isset": 99, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 25, 47, 49, 55, 56, 57, 60, 67, 79, 86, 102, 111, 112, 122, 123, 125, 126, 129, 131, 133, 134, 142, 144, 145, 146, 148, 154, 156, 157, 164, 165], "isvfsen": 94, "italian": [4, 5, 10], "item": [3, 40, 43, 62, 81, 86, 90, 105, 111, 113, 139], "iter": [55, 57], "ithem": 57, "its": [0, 1, 2, 3, 8, 13, 14, 17, 23, 26, 28, 34, 38, 51, 52, 57, 67, 70, 79, 80, 90, 91, 92, 96, 114, 120, 122, 128, 130, 134, 135, 139, 144, 146, 155, 162, 165], "itself": [5, 19, 29, 57, 82, 98, 99, 104, 115, 122, 130, 134, 135, 142, 144, 146, 154, 162], "itun": [57, 69], "itunesappid": 69, "iv": 26, "j": [48, 57, 66, 86, 146, 148, 162], "jail": [86, 121], "jan": 60, "januari": 64, "japanes": [4, 10], "javascript": [86, 123, 129, 135, 161, 162], "jcal": 146, "jeroboam": 146, "ji": 68, "jit": 86, "jit_buffer_s": 129, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 94, "job": [6, 14, 35, 37, 38, 43, 49, 52, 57, 62, 79, 86, 92, 114, 124, 127, 135, 139, 141, 145, 167], "johnston": 81, "join": [2, 22], "joke": 2, "jone": 146, "journal": [57, 64], "journal_mod": 86, "journalctl": [14, 102, 167], "journald": 102, "jp": 68, "jpeg": [57, 86, 129], "jpeg_qual": 44, "jpegphoto": 79, "jpg": 126, "json": [2, 4, 5, 8, 11, 13, 15, 48, 57, 80, 81, 86, 101, 102, 104, 111, 116, 120, 123, 126, 134, 146, 167], "json_pretti": [13, 146], "jump": [89, 139], "just": [19, 24, 54, 60, 61, 79, 83, 104, 111, 116, 121, 123, 125, 126, 130, 135, 139, 140, 144, 146, 148, 166], "jwfcftvztglwtje": 38, "k": 74, "karlsruh": 13, "kazakh": 4, "kb": 57, "keep": [3, 14, 25, 38, 41, 46, 47, 53, 54, 55, 56, 57, 66, 67, 78, 79, 86, 96, 102, 104, 111, 112, 114, 116, 120, 121, 122, 130, 131, 135, 139, 140, 144, 145, 146, 159, 166, 167], "keepal": [57, 135], "keepalivetimeout": 135, "kei": [2, 3, 11, 15, 16, 19, 22, 28, 33, 34, 37, 38, 42, 43, 45, 56, 57, 71, 73, 74, 75, 79, 83, 86, 98, 99, 100, 114, 121, 122, 123, 126, 129, 130, 132, 135, 141, 145, 146, 157], "kept": [46, 56, 57, 144], "keyboard": 86, "keyfil": 99, "keyformat": 26, "keypair": 29, "keyr": 149, "keyston": [33, 45, 57], "keyvalu": 45, "keyword": 90, "khtml": 64, "kib": 57, "kick": [55, 57], "killmod": 54, "kind": [1, 13, 57, 66, 99, 123], "kink": 52, "kitchen": 2, "know": [26, 28, 57, 79, 82, 111, 116, 135, 146, 148], "knowledg": [11, 135], "knowledgebas": 86, "knowledgebaseen": 86, "known": [12, 17, 25, 45, 49, 51, 55, 57, 60, 62, 66, 79, 86, 104, 116, 121, 126, 131, 135, 146, 155], "kokoro": 10, "korean": 4, "krita": [57, 129], "kubernet": 3, "kunz": 81, "kvm": 130, "l": [19, 54, 56, 66, 96, 121, 135, 146], "l10n": 86, "lab": 123, "label": [2, 14, 38, 66, 79, 100, 128, 135, 168], "labeleduri": 79, "lamp": 130, "lan": [19, 38, 60], "landmark": 6, "landscap": 6, "lang": [57, 146], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 24, 57, 61, 62, 74, 86, 98, 114, 127, 131], "laptop": 2, "larg": [2, 7, 8, 9, 12, 13, 14, 19, 38, 43, 52, 57, 86, 96, 111, 114, 116, 126, 129, 130, 135, 145], "larger": [3, 11, 23, 25, 52, 57, 67, 83, 129, 146], "largest": 98, "last": [1, 13, 26, 54, 55, 57, 81, 83, 102, 108, 125, 141, 142, 144, 146, 166], "last_seen": 146, "lastjpegphotolookup": 80, "lastli": [28, 45], "lastlogin": 146, "lastmodifi": 167, "lastprofilechecksum": 79, "lastseen": 86, "lastupd": [13, 167], "latenc": 129, "later": [17, 40, 57, 72, 81, 105, 114, 116, 130, 135, 141, 147, 154, 168], "latest": [1, 2, 4, 23, 45, 57, 58, 93, 117, 120, 122, 129, 130, 131, 139, 142, 145, 152, 159, 165, 166], "latitud": 123, "latter": [56, 146], "launch": [2, 51, 52, 53, 56, 94, 95, 96, 98, 100, 139, 167], "launchpad": 90, "layer": [25, 78, 129, 134], "layla": 146, "layout": [57, 58, 145, 150], "lazi": [57, 146], "ld": [79, 126], "ldap": [37, 43, 62, 71, 77, 86, 120, 124, 127, 130, 140], "ldap_group_map": 79, "ldap_log_fil": 86, "ldap_matching_rule_in_chain": 79, "ldap_opt_network_timeout": 80, "ldap_user_map": 79, "ldapadmingroup": 79, "ldapagentnam": 80, "ldapagentpassword": 80, "ldapattributesforgroupsearch": 80, "ldapattributesforusersearch": [80, 146], "ldapbackuphost": 80, "ldapbackupport": 80, "ldapbas": 80, "ldapbasegroup": 80, "ldapbaseus": 80, "ldapcachettl": [79, 80], "ldapconfigurationact": 80, "ldapconnectiontimeout": 80, "ldapdefaultppolicydn": 80, "ldapdynamicgroupmemberurl": 80, "ldapemailattribut": [80, 146], "ldapexperiencedadmin": 80, "ldapexpertusernameattr": [80, 146], "ldapexpertuuidgroupattr": 80, "ldapexpertuuiduserattr": 80, "ldapgidnumb": 80, "ldapgroupdisplaynam": 80, "ldapgroupfilt": [80, 146], "ldapgroupfiltergroup": 80, "ldapgroupfiltermod": 80, "ldapgroupfilterobjectclass": 80, "ldapgroupmemberassocattr": [80, 146], "ldaphost": 80, "ldapignorenamingrul": 80, "ldaploginfilt": 80, "ldaploginfilterattribut": 80, "ldaploginfilteremail": 80, "ldaploginfiltermod": 80, "ldaploginfilterusernam": 80, "ldapnestedgroup": 80, "ldapoverridemainserv": 80, "ldappagings": 80, "ldapport": 80, "ldapquotaattribut": 80, "ldapquotadefault": 80, "ldaptl": 80, "ldapuseravatarrul": [79, 80], "ldapusercleanupinterv": [81, 86], "ldapuserdisplaynam": [80, 146], "ldapuserdisplayname2": 80, "ldapuserfilt": 80, "ldapuserfiltergroup": 80, "ldapuserfiltermod": 80, "ldapuserfilterobjectclass": 80, "ldapuuidgroupattribut": 80, "ldapuuiduserattribut": [80, 146], "lead": [30, 54, 55, 56, 57, 67, 111, 112, 123, 126, 129, 130, 135], "leak": [49, 57, 126, 135, 167], "leakag": 123, "leap": 131, "learn": [5, 6, 8, 11, 30, 32, 42, 44, 48, 56, 76, 81, 83, 117, 123, 134, 145, 146], "least": [2, 3, 4, 5, 6, 7, 9, 11, 15, 19, 23, 41, 46, 54, 57, 67, 78, 79, 127, 131, 141, 145, 146, 147, 162, 166, 167], "leav": [2, 24, 25, 28, 30, 36, 55, 57, 66, 74, 79, 83, 114, 133, 146], "leela": 146, "left": [37, 45, 54, 57, 60, 79, 83, 129, 134, 144, 146, 168], "leftov": 79, "legaci": [27, 28, 29, 45, 57, 64, 126, 146], "legacy_auth": 45, "legacy_format_support": 27, "legal": [11, 69], "legibl": 9, "legitim": [25, 55], "length": [8, 29, 45, 52, 57, 84, 86], "lengthen": 129, "less": [6, 7, 10, 11, 45, 52, 55, 57, 64, 92, 123, 127, 129, 131, 166], "let": [14, 17, 55, 60, 83, 99, 126, 130, 135, 140, 148], "letsencrypt": 126, "letter": [83, 168], "level": [4, 14, 21, 22, 25, 40, 42, 52, 57, 60, 62, 83, 86, 95, 96, 123, 124, 131, 135, 144, 146], "leverag": 8, "lf": 79, "lib": [6, 15, 19, 52, 57, 60, 126], "libapache2": 122, "libargon2": 127, "liber": 96, "libmagickcor": 69, "librari": [11, 44, 57, 60, 85, 91, 96, 123, 160], "libreoffic": [57, 86, 127], "libsmbclient": 35, "libxml": 127, "libxml2": 127, "licenc": 72, "licens": [14, 15, 123], "life": [86, 120, 141, 145], "lifetim": [57, 79, 109], "lift": 99, "light": [38, 57, 79], "lighter": 166, "lighttpd": 135, "lightweight": [57, 125], "like": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 20, 24, 25, 28, 29, 35, 38, 42, 45, 47, 49, 50, 54, 56, 57, 58, 61, 64, 75, 78, 79, 81, 84, 85, 96, 98, 99, 105, 111, 112, 114, 115, 116, 118, 120, 123, 125, 126, 129, 130, 135, 137, 139, 141, 142, 144, 145, 146, 154, 155, 156, 157, 162, 167], "likelihood": [57, 129], "limit": [0, 1, 12, 14, 23, 35, 40, 41, 43, 44, 46, 49, 50, 52, 54, 57, 60, 73, 74, 79, 86, 96, 98, 99, 113, 116, 120, 121, 125, 129, 130, 131, 135, 140, 144, 162, 165, 166], "limitrequestbodi": 23, "line": [17, 19, 23, 27, 54, 56, 57, 60, 64, 66, 75, 79, 86, 93, 94, 111, 114, 116, 122, 124, 126, 127, 129, 130, 135, 138, 139, 145, 165], "link": [2, 15, 43, 62, 69, 74, 75, 76, 77, 83, 86, 104, 114, 123, 129, 130, 133, 134, 135, 144, 150, 155, 157, 168], "link_defaultexpdai": 40, "linux": [19, 25, 31, 35, 47, 48, 52, 56, 64, 81, 86, 89, 91, 93, 94, 96, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 131, 135, 137, 139, 145, 146, 151], "list": [1, 2, 3, 11, 12, 14, 15, 16, 17, 20, 25, 35, 38, 40, 44, 50, 55, 56, 57, 58, 60, 63, 68, 73, 75, 84, 85, 86, 97, 98, 103, 104, 111, 116, 120, 123, 125, 126, 130, 131, 134, 135, 139, 145, 147, 148, 149, 154, 159, 161, 162, 166, 167, 168], "listen": [35, 42, 52, 56, 86, 90, 91, 99, 102, 121, 126, 146, 148, 153], "listen_to_ev": 168, "listexapp": 101, "liter": 168, "littl": [4, 14, 67, 83, 99], "live": [0, 2, 7, 12, 57, 79, 86, 146], "live_transcript": [12, 86], "ll": [15, 19, 25, 35, 40, 57, 60, 79, 83, 111, 114, 126, 130, 139, 146, 148, 166], "llama": [1, 5, 14], "llama3": 5, "llm": [2, 5, 8, 13, 14, 86, 113], "llm2": [1, 2, 8, 12, 14, 86], "ln": [15, 121], "load": [5, 7, 12, 19, 23, 25, 35, 42, 52, 56, 60, 62, 66, 78, 86, 123, 124, 125, 127, 135, 146], "loadbalanc": 23, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 14, 15, 19, 23, 25, 28, 30, 35, 36, 37, 38, 40, 56, 60, 62, 69, 70, 71, 75, 79, 83, 86, 89, 90, 91, 94, 96, 98, 100, 101, 104, 112, 120, 121, 123, 126, 129, 130, 133, 135, 142, 146, 148, 162], "local_cert": [56, 57], "local_dock": 100, "local_pk": [56, 57], "local_summary_bot": 8, "localai": [0, 3, 8, 14], "localdir": 31, "localdirpath": 94, "localdomain": [130, 142], "localhost": [19, 42, 53, 56, 57, 60, 66, 99, 100, 102, 114, 120, 121, 122, 125, 130, 135, 142, 146, 148], "localitynam": 79, "localsocket": 52, "localstorag": 86, "localtim": 8, "locat": [2, 3, 8, 15, 20, 23, 25, 54, 55, 62, 66, 79, 83, 86, 90, 91, 93, 96, 98, 99, 104, 105, 121, 123, 124, 126, 130, 132, 135, 137, 139, 140, 144, 145, 146, 152, 156, 157, 168], "lock": [29, 43, 56, 62, 86, 104, 120, 124, 127, 135, 137, 145, 146], "lock_retri": 56, "lock_wait_tim": 56, "locking_en": 56, "lockout": [57, 84], "log": [12, 13, 14, 19, 25, 29, 33, 37, 38, 50, 52, 55, 60, 62, 65, 66, 78, 83, 86, 90, 94, 95, 99, 103, 104, 111, 112, 114, 120, 123, 124, 125, 127, 128, 130, 131, 132, 137, 140, 142, 144, 145, 154, 165, 167], "log_error": 135, "log_not_found": 126, "log_notic": 19, "log_queri": 86, "log_request_id": 86, "log_rotate_s": 86, "log_secret": 57, "log_typ": [64, 86], "log_type_audit": [64, 86], "logdateformat": [64, 86], "logdebug": [95, 96], "logdir": [95, 96], "logexpir": [95, 96], "logfil": [3, 23, 64, 86, 95, 96, 121, 126, 132, 140, 146], "logfile_audit": [64, 86, 132], "logfilemod": [86, 123], "logflush": 95, "logic": [49, 78, 101, 102, 143, 167], "login": [14, 19, 24, 25, 29, 34, 35, 49, 54, 57, 60, 61, 62, 64, 69, 70, 74, 76, 77, 78, 81, 82, 83, 84, 86, 90, 91, 94, 122, 123, 125, 135, 137, 138, 139, 145, 146], "login_flow_v2": 86, "login_form_autocomplet": 86, "login_form_timeout": 86, "loginfailexit": 99, "loglevel": [55, 60, 64, 79, 86, 116, 123, 129], "loglevel_dirty_database_queri": 86, "loglevel_frontend": 86, "logo": [57, 69], "logo_url": 86, "logohead": 69, "logon": 35, "logout": 57, "logpath": 123, "logread": 64, "logtimezon": [86, 146], "logwindow": [95, 96], "loleaflet": 152, "long": [3, 6, 15, 19, 42, 56, 57, 79, 80, 86, 91, 96, 108, 111, 112, 125, 126, 130, 139, 144, 164, 166], "long_query_tim": 19, "longer": [23, 45, 55, 57, 60, 63, 83, 111, 120, 126, 129, 146, 160, 162, 163], "longest": 23, "longitud": 123, "look": [2, 3, 14, 17, 19, 20, 45, 48, 54, 55, 57, 67, 69, 79, 81, 86, 99, 104, 114, 116, 125, 126, 130, 133, 134, 139, 144, 146, 147, 149, 150, 156, 168], "lookup": [57, 66, 75, 123], "lookup_serv": 86, "lool": [148, 152], "loolwsd": 152, "loop": [86, 99], "loopback": 125, "lose": [25, 42, 57, 146], "loss": [19, 25, 57, 83, 96, 131, 135], "lost": [25, 26, 71, 78, 86, 135, 146], "lost_password_link": [77, 86], "lostpassword": 57, "lot": [14, 44, 55, 56, 57, 64, 79, 116, 129, 135, 139, 145], "love": 79, "low": [7, 10, 23, 56, 57, 86, 130, 131], "lower": [4, 5, 7, 10, 26, 54, 57, 83, 84, 129, 130], "lowest": [131, 166], "lsof": 102, "lst": 90, "lt": [4, 86, 124, 130, 131, 167], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [15, 123], "lte": 167, "luk": 25, "lukasreschk": 146, "lunar": 146, "m": [13, 19, 52, 56, 81, 121, 123, 126, 127, 129, 130, 137, 146], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 45, "mac": [37, 52, 89, 94, 135], "machin": [3, 5, 6, 7, 9, 10, 12, 19, 47, 57, 60, 86, 90, 98, 99, 123, 124, 132, 140], "macintosh": 79, "maco": [86, 91, 93, 117, 131, 135], "made": [3, 14, 17, 35, 44, 48, 55, 57, 96, 116, 129, 130, 132, 140, 166, 168], "madlad": [11, 14], "madlad400": 11, "madrid": 79, "mageia": 127, "magic": 86, "mai": [1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 37, 38, 39, 40, 41, 45, 46, 48, 54, 55, 56, 57, 60, 61, 64, 66, 74, 75, 77, 78, 79, 80, 81, 83, 86, 92, 96, 98, 102, 111, 112, 114, 115, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 137, 139, 142, 143, 144, 145, 146, 147, 152, 154, 162, 164, 166, 167, 168], "mail": [2, 5, 14, 49, 62, 74, 79, 80, 83, 86, 113, 115, 128, 146, 157, 160], "mail_domain": [60, 86], "mail_from_address": 86, "mail_link_password_expiration_interv": 86, "mail_send_plaintext_onli": 86, "mail_sendmailmod": 86, "mail_smtpauth": [60, 86], "mail_smtpauthtyp": 60, "mail_smtpdebug": [60, 86], "mail_smtphost": [60, 86], "mail_smtpmod": [60, 86], "mail_smtpnam": [60, 86], "mail_smtppassword": [60, 86], "mail_smtpport": [60, 86], "mail_smtpsecur": [60, 86], "mail_smtpstreamopt": [60, 86], "mail_smtptimeout": [60, 86], "mail_template_class": [60, 86], "mailbox": [86, 113, 116], "mailcow": 114, "mailer": [57, 60, 160], "mailprimaryaddress": 79, "main": [1, 4, 11, 14, 19, 57, 79, 80, 91, 95, 98, 99, 102, 105, 126, 135, 137, 143, 144, 148, 152, 168], "mainli": [15, 25, 57, 59, 145], "maintain": [1, 38, 57, 67, 96, 112, 123, 130, 135, 142, 144, 145, 146, 166], "mainten": [16, 20, 22, 25, 48, 62, 118, 129, 130, 131, 139, 140, 143, 144, 151, 164], "maintenance_window_start": 86, "major": [3, 39, 52, 86, 123, 126, 130, 135, 139, 141, 145, 151], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 22, 23, 25, 28, 30, 31, 35, 37, 38, 40, 44, 45, 49, 50, 51, 55, 56, 57, 61, 63, 65, 68, 70, 74, 75, 79, 81, 82, 86, 91, 96, 99, 104, 108, 111, 114, 116, 120, 121, 123, 126, 127, 129, 130, 131, 132, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 155, 160, 161, 162, 163, 166, 167, 168], "malform": 146, "malfunct": 57, "malici": [25, 55], "malwar": [52, 57, 60], "man": [52, 54, 123], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 38, 42, 50, 51, 55, 56, 57, 62, 66, 69, 72, 79, 82, 85, 86, 97, 98, 104, 105, 108, 111, 120, 123, 124, 144, 145, 151, 163, 164, 165], "managerfactori": 86, "mandarin": 10, "mandatori": [49, 54, 70, 79, 86, 146], "mani": [6, 11, 14, 19, 20, 50, 52, 55, 57, 79, 96, 111, 112, 116, 126, 129, 130, 135, 144, 146, 150, 162, 166], "manifest": [51, 126], "manipul": 146, "manner": [1, 90, 163, 164, 165], "manual": [3, 4, 6, 15, 16, 17, 19, 22, 23, 25, 29, 47, 49, 50, 54, 56, 57, 61, 66, 79, 80, 81, 86, 93, 94, 96, 98, 99, 100, 105, 114, 117, 120, 122, 123, 124, 129, 132, 133, 134, 135, 138, 141, 142, 144, 146, 147, 151, 163, 166, 168], "manual_instal": [8, 98, 100], "manual_install_harp": 100, "map": [2, 45, 57, 81, 86, 126, 129, 141, 146, 156], "march": 23, "marco": 2, "margin": 129, "mariadb": [17, 20, 22, 57, 86, 118, 120, 122, 124, 125, 127, 130, 146, 163, 164], "mark": [2, 37, 57, 60, 81, 86, 146], "markdown": [57, 68, 129], "market": [2, 11, 141], "martin": 2, "mask": 116, "mass": [86, 93], "master": [25, 43, 57, 60, 86, 146], "master_": 26, "mastodon": [156, 157], "match": [3, 22, 40, 45, 56, 57, 60, 73, 74, 79, 80, 99, 104, 112, 116, 121, 126, 130, 135, 140, 146, 152, 154, 167], "math": 5, "matter": [40, 162], "max": [1, 23, 43, 52, 86, 90, 121, 123, 126, 146], "max_accelerated_fil": 121, "max_allowed_packet": 19, "max_children": 130, "max_execution_tim": [23, 57, 127], "max_file_conversion_files": 86, "max_filesize_animated_gifs_public_shar": 86, "max_heap_table_s": 19, "max_image_generation_idle_tim": 1, "max_input_tim": 23, "max_link": 19, "max_parallel_count": 86, "max_persist": 19, "max_siz": [23, 86], "max_token": 5, "maxautocompleteresult": 86, "maxchunks": [91, 96], "maxim": [40, 55], "maximum": [8, 23, 25, 40, 45, 46, 55, 79, 83, 86, 90, 91, 92, 96, 111, 112, 126], "maximumadressbook": 112, "maximumcalendarssubscript": 111, "maxkeepaliverequest": 135, "maxretri": 123, "mayb": [96, 129], "mb": [44, 57, 80, 83, 91, 92, 96], "mb4": 57, "mbstring": [68, 120, 122, 127], "mcp": [12, 86], "md": [2, 25, 68], "md5": [60, 120, 121, 122], "md5sum": [120, 122], "me": [2, 13, 57, 109], "mean": [11, 13, 14, 38, 47, 55, 57, 65, 67, 78, 79, 83, 91, 99, 114, 120, 123, 126, 129, 131, 134, 145, 162, 166, 167], "meaningless": 126, "meant": [55, 57, 166], "measur": [7, 10, 57, 67], "mechan": [26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 42, 43, 54, 55, 57, 60, 64, 86, 146, 160, 168], "media": [1, 2, 6, 7, 86, 90, 104, 124], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 28, 41, 45, 139, 166], "megabyt": [52, 57], "member": [2, 40, 50, 61, 74, 78, 79, 80, 83, 86, 104, 146, 147, 156, 157], "memberof": [80, 86, 146], "membership": [40, 79, 80, 83, 104, 116, 146], "memberuid": 80, "memcach": [23, 42, 62, 67, 79, 86, 120, 121, 124, 127, 132], "memcache_customprefix": 86, "memcached_opt": 86, "memcached_serv": [56, 86], "memori": [23, 25, 42, 52, 55, 62, 67, 79, 86, 102, 116, 127, 129, 130, 164, 167], "memory_consumpt": [121, 129], "memory_limit": [23, 52, 127], "mention": [1, 3, 13, 49, 69, 96, 98, 104, 120, 121, 123, 134, 144], "menu": [1, 8, 14, 37, 54, 57, 61, 83, 98, 99, 135, 157, 163, 164, 165], "mere": [17, 55, 166], "merg": [62, 86, 114, 156, 157], "messag": [1, 2, 8, 13, 16, 25, 26, 57, 58, 60, 64, 66, 67, 73, 74, 77, 79, 80, 86, 94, 95, 114, 115, 116, 118, 123, 136, 139, 140, 146, 154, 155, 156, 157, 168], "met": [2, 14, 46, 57, 79, 123, 130], "meta": [14, 72, 73, 74, 79, 80, 127], "metadata": [40, 45, 57, 83, 99, 116, 132, 135, 146], "metadata_max_files": 86, "metal": [86, 132], "method": [19, 22, 26, 29, 37, 43, 54, 57, 60, 64, 72, 73, 74, 78, 80, 86, 96, 98, 100, 116, 127, 130, 135, 140, 145, 146, 168], "metric": [57, 87], "mg": 121, "mib": [4, 23, 57, 86, 92, 129], "micro": 130, "microservic": 129, "microsoft": [47, 52, 57, 60, 86, 91, 96, 113, 117, 126, 131, 160], "middl": 123, "middlewar": 66, "might": [0, 2, 3, 11, 14, 15, 17, 19, 22, 29, 35, 37, 44, 45, 47, 48, 49, 52, 54, 56, 57, 60, 67, 79, 80, 91, 96, 98, 99, 102, 106, 112, 114, 116, 122, 123, 126, 128, 129, 131, 133, 135, 140, 141, 146, 147, 154, 155, 161, 165], "migrat": [16, 17, 18, 29, 43, 46, 57, 79, 86, 98, 113, 116, 127, 138, 144, 146, 150, 164], "millisecond": [45, 57, 91, 96], "milliwai": 146, "mime": [104, 114, 126, 130, 162], "mimetyp": [44, 57, 86, 104, 123, 126, 146], "mimetypealias": [48, 104], "mimetypelist": 146, "mimetypemap": [48, 146], "min": 91, "minchunks": [91, 96], "mind": [3, 53, 56, 57, 98, 104, 121, 122, 130, 144, 168], "minif": 57, "minim": [3, 7, 8, 10, 11, 52, 55, 84, 120, 121, 131, 135, 166], "minimum": [6, 45, 46, 67, 79, 86, 91, 92, 96, 98, 101, 114, 131, 166], "minio": 45, "miniredir": 57, "minor": [3, 129, 139], "minsearchstringlength": 86, "mint": [52, 56, 130], "minut": [0, 7, 10, 14, 35, 37, 41, 46, 52, 54, 55, 57, 79, 81, 91, 96, 109, 111, 112, 114, 139, 140, 145, 167], "mirror": 123, "misbehav": 55, "misbehavior": 67, "misc": 86, "miscellan": 86, "misconfigur": [55, 57, 86, 96, 102, 107, 116, 123, 126], "misformat": 79, "mismatch": [129, 165], "miss": [22, 40, 78, 79, 86, 102, 123, 127, 141, 143, 145], "missing_fil": 134, "mission": [135, 166], "mistak": [57, 79, 135], "mistakenli": 116, "mistral": 2, "mistralai": [0, 14], "mit": 57, "mitig": [60, 123], "mitm": 123, "mix": [38, 167], "mixer": 123, "mixtur": 57, "mj": [126, 161, 162], "mkdir": [25, 31, 99, 120, 121], "mknod": 148, "mlocat": 120, "mm": 79, "mnt": [79, 130], "mobil": [25, 29, 40, 66, 69, 79, 86, 93, 104, 117, 123, 124], "mod": 122, "mod_dav": [120, 130, 135], "mod_defl": 135, "mod_dir": 130, "mod_env": [57, 65, 123, 130], "mod_evas": 135, "mod_fastcgi": 135, "mod_fcgi": 130, "mod_fcgid": [86, 135], "mod_head": [65, 123, 130], "mod_mim": 130, "mod_pagespe": 135, "mod_php": [129, 130, 131, 135], "mod_proxy_fcgi": [86, 135], "mod_reqtimeout": [23, 135], "mod_rewrit": [38, 57, 65, 130, 135], "mod_secur": 135, "mod_spdi": 135, "mod_webdav": 130, "mod_xsendfil": 135, "modal": 97, "mode": [6, 16, 19, 20, 22, 23, 26, 27, 43, 52, 54, 57, 79, 80, 86, 94, 100, 101, 111, 116, 120, 122, 124, 134, 135, 138, 139, 140, 143], "model": [0, 1, 3, 4, 6, 8, 9, 10, 12, 13, 14, 86, 98, 114, 123, 132], "model_nam": 11, "moder": 40, "modern": [4, 47, 56, 61], "modheadersavail": 126, "modif": [19, 40, 60, 96, 108, 111, 112, 130, 139, 146], "modifi": [28, 35, 45, 47, 48, 49, 55, 56, 62, 63, 71, 79, 83, 86, 96, 104, 105, 108, 111, 112, 116, 123, 125, 129, 130, 134, 135, 146], "modul": [19, 23, 25, 26, 35, 42, 56, 57, 69, 79, 86, 121, 122, 124, 125, 126, 130, 131, 146, 148, 161, 162], "modular": [1, 14], "module_nam": 127, "molli": [79, 146], "mollybook": 146, "mollyc": 146, "moment": [8, 154], "momentj": 63, "mon": [49, 52], "mondai": 49, "monitor": [15, 55, 56, 86, 90, 123, 129, 146], "monterei": 131, "month": [1, 2, 13, 123, 126, 130], "monument": 6, "moodl": 65, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 19, 20, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 49, 52, 55, 56, 57, 58, 60, 67, 74, 76, 79, 81, 82, 92, 93, 96, 97, 98, 99, 102, 104, 111, 112, 114, 115, 116, 117, 118, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 139, 140, 143, 145, 146, 148, 150, 151, 153, 154, 160, 162, 164, 165, 166, 167, 168], "moreov": 15, "morn": 49, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 45, 54, 55, 56, 57, 60, 61, 64, 67, 79, 98, 99, 116, 123, 127, 128, 129, 130, 131, 135, 141, 142, 145, 146, 151, 152, 153, 159, 160, 166, 168], "mostli": 130, "mount": [3, 4, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 42, 43, 45, 52, 54, 57, 86, 99, 101, 103, 104, 130, 135, 146], "mount_fil": 86, "mount_id": 35, "mount_nam": 146, "mountpoint": [28, 30, 35, 36, 37, 43, 57, 86], "move": [2, 23, 25, 57, 66, 86, 91, 123, 125, 139, 140, 144, 145, 164, 166], "movetotrash": 91, "movi": [57, 156, 157], "mozilla": [64, 116, 123, 126, 131], "mp3": [48, 57, 164, 165], "mp4": 126, "mpeg": 48, "mrtumnu": 66, "msoffice2003": 57, "msoffice2007": 57, "msofficedoc": 57, "mt": [11, 57, 69], "mtime": 40, "much": [23, 58, 96, 99, 125, 128, 129, 135, 143], "multi": [14, 55, 56, 79, 167], "multibucket": [43, 86], "multibyt": 143, "multilingu": [7, 12, 86], "multipart": 45, "multipartupload": 23, "multipl": [2, 3, 5, 6, 9, 14, 17, 23, 29, 37, 42, 45, 52, 53, 54, 55, 56, 62, 67, 70, 79, 80, 81, 82, 86, 98, 99, 101, 114, 123, 127, 129, 130, 141, 143, 146, 147, 150, 151, 166, 167], "multiview": [120, 130], "music": [14, 86, 90, 94, 146], "must": [3, 4, 5, 6, 8, 15, 23, 25, 26, 28, 30, 31, 33, 37, 38, 42, 45, 52, 53, 54, 56, 57, 60, 65, 66, 67, 78, 79, 80, 81, 83, 90, 96, 98, 99, 101, 111, 114, 118, 123, 125, 126, 127, 128, 129, 130, 131, 132, 135, 137, 139, 141, 143, 145, 146, 167, 168], "mx": [114, 116], "my": [2, 15, 45, 48, 69, 73, 79, 86, 98, 100, 111, 154], "my_sync_fold": 90, "myapp": 60, "myapplic": 65, "myclass": 60, "mycloud": [2, 57], "mycustomprefix": 57, "mygroup": [73, 146], "myisam": 131, "mylogfil": 128, "mylogo": 69, "mypictur": 37, "myserv": 38, "mysql": [17, 18, 22, 86, 118, 120, 122, 124, 125, 127, 130, 135, 142, 146, 164], "mysql_attr_init_command": 57, "mysql_attr_ssl_ca": [19, 57], "mysql_attr_ssl_cert": [19, 57], "mysql_attr_ssl_kei": [19, 57], "mysql_attr_ssl_verify_server_cert": [19, 57], "mysql_secure_instal": 120, "mysql_user_password": 17, "mysqld": [19, 20, 57, 60], "mysqldump": [20, 137], "mysqlnd": 120, "n": [1, 5, 14, 16, 17, 26, 79, 90, 94, 102, 146, 167], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 15, 17, 19, 20, 25, 28, 29, 30, 31, 33, 35, 36, 37, 38, 40, 41, 45, 47, 51, 52, 53, 56, 57, 60, 62, 64, 65, 69, 72, 73, 74, 75, 79, 80, 81, 83, 86, 90, 95, 96, 98, 99, 100, 101, 104, 111, 114, 116, 118, 120, 121, 122, 123, 125, 126, 129, 130, 134, 146, 152, 168], "namespac": [13, 51, 57, 60, 146], "nativ": [21, 35], "natur": [14, 82, 147], "navig": [51, 57, 96, 98, 104, 105, 108, 111, 112, 114, 121, 133, 168], "nc": [57, 60, 64, 86, 103, 126], "nc_app_": 102, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 146, "nc_domain": 99, "nc_instance_url": [98, 99], "nc_loglevel": 146, "nc_password": 90, "nc_samesitecookielax": 67, "nc_samesitecookiestrict": 67, "nc_user": 90, "ncdata": 135, "ncp": 127, "ncvm": 130, "ne": 167, "nearli": [120, 162], "necessari": [2, 15, 19, 22, 23, 33, 44, 49, 54, 56, 57, 60, 82, 114, 116, 120, 125, 126, 127, 130, 135, 146, 147, 164, 168], "necessarili": [55, 98, 99, 135], "need": [0, 1, 3, 4, 6, 8, 11, 14, 15, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 42, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 64, 67, 78, 79, 80, 82, 83, 86, 89, 91, 92, 98, 99, 100, 102, 104, 105, 109, 111, 112, 114, 116, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 155, 160, 163, 164, 166, 167, 168], "needsdbupgrad": 146, "neg": [6, 123], "neither": 76, "nest": [80, 86], "net": [57, 90, 99, 100, 120, 141, 146, 147], "netdata": 129, "netrc": 90, "netstat": [52, 60], "network": [14, 19, 37, 55, 57, 86, 91, 92, 96, 98, 99, 100, 102, 104, 123, 124, 130, 131, 142, 146, 162, 167, 168], "never": [25, 37, 41, 49, 57, 79, 123, 129, 146], "nevertheless": 145, "new": [2, 3, 5, 6, 11, 17, 20, 22, 23, 24, 25, 27, 29, 30, 34, 37, 41, 42, 43, 45, 49, 54, 57, 60, 65, 71, 73, 75, 76, 78, 79, 80, 81, 86, 91, 95, 96, 98, 99, 101, 111, 114, 116, 117, 121, 123, 125, 127, 128, 129, 130, 131, 135, 137, 139, 140, 144, 145, 146, 148, 152, 160, 162, 163, 164, 166, 168], "newer": [20, 35, 67, 98, 129, 131, 143, 166], "newest": [141, 166], "newgroup": [73, 74], "newli": [17, 25, 45, 49, 52, 54, 57, 79, 108, 130, 146, 166, 168], "newpassword": 146, "newroot": 146, "newus": 146, "next": [1, 2, 15, 19, 24, 25, 37, 38, 40, 52, 56, 79, 80, 81, 86, 90, 91, 97, 111, 112, 120, 124, 144, 145, 146, 151, 156, 166, 168], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 53, 54, 55, 59, 60, 61, 63, 64, 65, 66, 67, 70, 71, 72, 73, 74, 76, 77, 78, 83, 85, 86, 89, 90, 91, 92, 93, 94, 95, 98, 101, 102, 103, 104, 105, 108, 110, 111, 112, 114, 115, 116, 117, 118, 122, 124, 125, 127, 128, 129, 130, 131, 132, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 166], "nextcloud_": 45, "nextcloud_1": 45, "nextcloud_admin": 79, "nextcloud_config_dir": [57, 123], "nextcloud_docker_network_nam": 99, "nextcloud_host": 66, "nextcloud_imaginari": 129, "nextcloud_install_product": 130, "nextcloud_log": 96, "nextcloud_redirectregex": 66, "nextcloud_url": [8, 99, 100], "nextcloudcmd": 90, "nextcloudcron": 54, "nextclouden": 80, "nextcloudgroup": 80, "nextcloudpi": 130, "nextcloudquota": 79, "nextcloudresourc": 168, "nextcloudsystemus": 79, "nextcloudtemp": 57, "nextcloudurl": 90, "nextcloudus": [79, 80], "nf": 57, "nfc": 135, "nfd": [37, 135], "nginx": [16, 67, 86, 99, 123, 124, 130, 131, 135, 160, 161, 162], "ngo": 135, "ngx_pagespe": [126, 135], "ni": 129, "nice": 48, "nin": 167, "nix": [54, 60], "no_etag": 126, "no_last_modifi": 126, "no_proxi": 57, "no_unsupported_browser_warn": 86, "nobodi": 134, "nocanon": 148, "node": [6, 57, 146, 167], "nodecod": 148, "nodecopiedev": 167, "nodecreatedev": 167, "nodedeletedev": 167, "nodeinfo": 135, "noderenamedev": 167, "noderestoredev": 167, "nodetouchedev": 167, "nodewrittenev": 167, "nofollow": [123, 126], "noindex": [123, 126], "nologon": 146, "nomatim": 2, "nominatim": 123, "non": [3, 8, 17, 23, 25, 28, 31, 37, 45, 57, 74, 79, 86, 90, 91, 94, 100, 127, 140, 144, 146, 147], "none": [14, 29, 55, 57, 60, 79, 80, 83, 126, 139, 146, 148, 160], "nonexist": 79, "noon": 2, "nor": [35, 49, 54, 86, 98, 144, 167], "norepli": 57, "normal": [3, 6, 16, 22, 23, 42, 49, 53, 54, 57, 63, 64, 76, 79, 83, 91, 132, 135, 140, 145, 146, 168], "nosniff": [123, 126], "notat": [57, 66], "note": [0, 1, 2, 5, 13, 19, 28, 35, 37, 40, 44, 45, 46, 54, 57, 60, 65, 71, 75, 85, 94, 96, 99, 105, 111, 112, 118, 123, 124, 125, 126, 130, 131, 135, 136, 139, 145, 146, 154, 156, 166, 167], "noth": [3, 16, 146], "notic": [42, 44, 55, 69, 129, 140], "notif": [43, 49, 57, 60, 66, 78, 79, 83, 86, 91, 108, 113, 123, 128, 130, 135, 138, 144, 146, 160, 168], "notifi": [15, 25, 35, 60, 108, 146], "notificationrefreshinterv": 91, "notify_guest": 15, "notify_push": [62, 86], "notion": [156, 157], "notori": [5, 6, 7, 11], "now": [14, 19, 20, 22, 23, 38, 52, 54, 57, 65, 79, 83, 86, 98, 99, 111, 112, 114, 116, 118, 120, 121, 122, 125, 130, 133, 135, 139, 144, 148, 160, 161, 162, 165, 167], "nowadai": [57, 165], "nsign": 149, "nss": [62, 86], "nsuit": 149, "ntlm": [60, 160], "nuanc": 25, "nuisanc": 55, "null": [13, 44, 57, 64, 100, 121, 146, 165, 167], "num_bucket": 45, "num_nucket": 45, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 13, 14, 16, 23, 30, 40, 45, 46, 52, 53, 55, 56, 57, 60, 79, 80, 83, 92, 96, 111, 112, 114, 120, 122, 123, 131, 135, 139, 144, 146, 152, 162, 166, 167], "numer": [44, 57, 84], "numeric_id": 26, "nuri": 149, "nvidia": [3, 4, 5, 6, 7, 9, 11, 98, 100, 102], "o": [23, 25, 57, 79, 86, 90, 121, 127, 130, 135, 140, 146], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 45, "oauth": [29, 86], "oauth2": [62, 86], "object": [11, 14, 28, 37, 42, 43, 56, 62, 79, 86, 111, 123, 129, 146, 156, 165, 167, 168], "objectclass": [79, 80, 146], "objectdata": 167, "objectid": 167, "objectprefix": 57, "objectstor": [45, 86, 132], "objectstore_multibucket": 45, "objecttyp": 167, "obscur": 135, "obsolet": 44, "obtain": [3, 60, 65, 86, 136], "obviou": [55, 162], "oc": [15, 42, 45, 56, 57, 60, 64, 72, 73, 74, 75, 80, 85, 120, 121, 126, 129, 134, 144, 146, 162, 163, 167, 168], "oc8c0fd71e03": 57, "oc_": [19, 57, 125], "oc_act": 22, "oc_activity_mq": 22, "oc_addressbook": 135, "oc_appconfig": 3, "oc_calendar_calendar": 17, "oc_calendar_object": 17, "oc_calendar_share_calendar": 17, "oc_calendar_share_ev": 17, "oc_cards_properti": 135, "oc_carla": 57, "oc_context_chat_action_queu": 3, "oc_context_chat_content_queu": 3, "oc_context_chat_fs_ev": 3, "oc_context_chat_queu": 3, "oc_databas": 146, "oc_dav_shar": 116, "oc_dbus": 146, "oc_default_modul": [26, 146], "oc_filecach": [26, 135], "oc_fscach": 17, "oc_log": 17, "oc_mail_messag": 116, "oc_mail_recipi": 116, "oc_media_album": 17, "oc_media_artist": 17, "oc_media_sess": 17, "oc_media_song": 17, "oc_media_us": 17, "oc_molli": 125, "oc_pass": 146, "oc_permiss": 17, "oc_prefer": 81, "oc_privatedata": 17, "oc_queuedtask": 17, "oc_shar": 17, "oc_storag": [26, 81, 135], "oca": [60, 162, 167], "occ": [1, 4, 6, 8, 12, 13, 14, 16, 17, 20, 22, 23, 24, 26, 27, 35, 37, 38, 40, 41, 43, 44, 45, 46, 48, 49, 52, 54, 57, 58, 64, 65, 68, 69, 70, 71, 75, 76, 78, 81, 83, 86, 101, 103, 106, 111, 112, 114, 115, 116, 118, 123, 126, 129, 130, 133, 134, 135, 137, 139, 141, 144, 145, 163, 164, 165, 167, 168], "occ6f7365735": 57, "occasion": [8, 139, 148], "occur": [2, 23, 60, 99, 101, 129, 135, 140, 144, 165], "occurr": 23, "oci": [17, 57, 118, 146], "ocp": [57, 75, 167], "ocsp": 126, "octal": 57, "odd": 129, "odf": [147, 150], "off": [19, 20, 22, 23, 27, 30, 52, 68, 80, 86, 99, 114, 116, 120, 126, 128, 130, 139, 144, 146, 148], "offer": [0, 1, 14, 15, 25, 52, 57, 61, 114, 116, 123, 130, 132, 135, 144, 166], "offic": [2, 14, 39, 44, 48, 55, 113, 130, 148, 151, 152, 153, 154, 156, 157], "offici": [52, 55, 57, 79, 99, 117, 120, 121, 123, 126, 127, 129, 130, 131, 134, 135, 159, 166], "offlin": [79, 96, 111, 112, 140], "offload": [0, 1, 99, 129], "offset": [73, 74, 146], "often": [1, 23, 54, 55, 57, 96, 111, 112, 114, 123, 127, 130, 162, 164, 166], "ogg": [126, 161, 162], "oid": 57, "oidc": 82, "oidc_provider_bearer_valid": 82, "ok": [72, 73, 74, 80], "okai": 139, "old": [1, 14, 17, 25, 41, 57, 79, 86, 91, 134, 135, 139, 144, 146, 160, 165], "older": [1, 4, 14, 26, 41, 46, 49, 57, 67, 83, 95, 96, 127, 129, 133, 135, 141, 144, 145], "oldest": [41, 83], "oldgroup": 74, "oldtim": 56, "ollama": [0, 14], "olmo": 86, "omit": [17, 57, 66, 67, 79, 146], "onbootsec": 54, "onc": [2, 13, 23, 27, 37, 40, 45, 48, 54, 57, 78, 79, 96, 111, 116, 120, 122, 123, 126, 139, 144, 146, 148, 159, 162, 166, 167, 168], "one": [2, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 19, 25, 26, 29, 33, 37, 38, 40, 41, 44, 52, 55, 56, 57, 64, 65, 67, 69, 74, 75, 78, 79, 80, 83, 86, 89, 90, 92, 93, 98, 100, 104, 105, 111, 114, 116, 120, 127, 130, 131, 132, 133, 135, 139, 140, 141, 144, 145, 146, 147, 148, 151, 156, 162, 166, 167, 168], "ones": [17, 50, 56, 57, 75, 90, 130, 139, 141, 144, 156, 162, 166, 168], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 21, 24, 25, 26, 28, 29, 31, 35, 37, 40, 45, 47, 49, 50, 52, 54, 55, 56, 57, 61, 62, 63, 64, 65, 66, 75, 76, 77, 78, 79, 81, 82, 83, 86, 96, 97, 98, 99, 100, 101, 102, 104, 105, 109, 111, 112, 114, 115, 116, 118, 120, 123, 125, 126, 127, 128, 130, 131, 134, 135, 137, 140, 141, 143, 144, 146, 147, 154, 156, 162, 165, 166, 167, 168], "onlin": [29, 57, 86, 116, 117, 120, 130, 140, 145, 149, 150, 151, 153, 154], "onlyoffic": [29, 130], "onunitactivesec": 54, "onward": 64, "ooxml": 86, "opcach": [56, 57, 86, 120, 121, 124, 126, 127], "opcod": [56, 129], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 20, 29, 42, 52, 57, 68, 69, 79, 86, 89, 95, 96, 99, 114, 117, 123, 127, 130, 135, 144, 147, 154], "open_basedir": [23, 123, 127], "openai": [1, 3, 5, 7, 8, 12, 14, 86, 157], "openapi": [57, 167, 168], "openbsd": [86, 124], "opendocu": [57, 129, 147], "opendyslex": 57, "opengraph": 156, "openid": [71, 86], "openldap": [79, 80], "openoffic": [57, 127], "openproject": 2, "openshift": 57, "openssl": [45, 62, 86, 116, 121, 127, 129], "openssl_decrypt": 26, "openssl_encrypt": 26, "openssl_open": 26, "openssl_pkey_export": 26, "openssl_pkey_new": 26, "openssl_s": 26, "openstack": [37, 86], "openstreetmap": [123, 156, 157], "opensus": [131, 146], "opentopodata": 123, "opentyp": 126, "openweathermap": 13, "oper": [6, 8, 19, 21, 23, 25, 42, 47, 52, 54, 55, 57, 64, 67, 78, 79, 81, 86, 92, 96, 104, 117, 118, 124, 129, 130, 131, 132, 135, 139, 144, 145, 147, 148, 166, 167, 168], "opinion": [130, 142], "opportunist": 60, "opt": [14, 26, 37, 57, 91, 114, 120, 125, 132, 146, 165, 167], "opt_binary_protocol": 57, "opt_compress": 57, "opt_connect_timeout": 57, "opt_libketama_compat": 57, "opt_poll_timeout": 57, "opt_recv_timeout": 57, "opt_retry_timeout": 57, "opt_send_timeout": 57, "opt_seri": 57, "optim": [0, 1, 2, 6, 23, 32, 117, 123, 126, 127, 129, 130, 166], "optimis": [6, 11, 135], "option": [0, 1, 4, 12, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 28, 30, 31, 32, 33, 34, 35, 36, 38, 40, 41, 42, 43, 44, 45, 49, 52, 54, 55, 56, 60, 61, 62, 65, 66, 68, 69, 71, 72, 73, 74, 75, 76, 78, 80, 81, 82, 83, 86, 90, 91, 92, 93, 94, 96, 98, 99, 102, 103, 104, 108, 111, 112, 114, 115, 116, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 139, 140, 144, 145, 146, 149, 150, 151, 156, 162, 163, 166, 168], "optout": 86, "oracl": [17, 19, 22, 57, 118, 125, 131, 146], "orang": 14, "orchestr": 99, "order": [0, 1, 13, 14, 19, 20, 22, 40, 60, 68, 78, 79, 98, 99, 114, 123, 130, 131, 137, 146, 147, 166, 168], "org": [52, 57, 65, 74, 77, 90, 96, 123, 126, 130, 167], "organ": [25, 69, 83, 86, 131, 146], "organis": [75, 79, 131, 135], "organiz": [79, 83, 114], "organizationnam": 79, "orient": 127, "origin": [11, 24, 38, 44, 57, 66, 79, 83, 109, 116, 123, 135, 139, 140, 146], "orphan": [135, 146], "otf": 126, "other": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 19, 22, 23, 24, 25, 29, 33, 35, 37, 38, 39, 40, 41, 42, 44, 46, 50, 52, 54, 55, 56, 61, 62, 63, 64, 78, 79, 82, 83, 85, 86, 90, 92, 95, 99, 100, 101, 111, 112, 114, 115, 121, 122, 123, 124, 125, 126, 127, 129, 134, 136, 139, 142, 144, 146, 147, 150, 151, 161, 162, 163, 164, 165, 166, 168], "otherdomain": 57, "otherwis": [16, 20, 23, 54, 55, 56, 57, 66, 79, 98, 104, 108, 111, 114, 126, 129, 130, 135, 140], "ou": [79, 80, 81, 146], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 17, 20, 57, 60, 64, 67, 69, 79, 98, 99, 104, 105, 117, 119, 120, 121, 123, 127, 129, 130, 131, 134, 135, 141, 150, 162, 166], "out": [15, 22, 23, 25, 37, 45, 49, 52, 55, 57, 67, 86, 96, 98, 104, 113, 126, 128, 129, 130, 131, 134, 135, 139, 140, 144, 145, 146, 151, 160, 162, 166], "outbound": [60, 162], "outdat": [57, 62, 86, 111, 112, 120, 143], "outdoor": 2, "outgo": [60, 114, 116, 146], "outlin": [2, 52], "outlook": [60, 86, 114], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 23, 35, 57, 64, 81, 86, 90, 95, 96, 116, 127, 129, 134, 145, 146], "output_buff": 23, "outright": [55, 131], "outsid": [15, 26, 31, 38, 45, 52, 57, 61, 86, 99, 104, 111, 122, 125, 126, 129, 130, 132, 135, 137, 139], "outstand": [2, 7, 146], "ova": 130, "over": [19, 22, 28, 30, 45, 48, 55, 57, 60, 65, 67, 79, 83, 86, 96, 99, 120, 123, 129, 130, 131, 139, 146, 156, 161], "overal": 129, "overcom": 57, "overflow": 37, "overhead": [57, 96, 129], "overlai": 79, "overlap": [35, 166], "overload": 135, "overrid": [23, 24, 28, 43, 57, 60, 62, 75, 79, 80, 86, 89, 90, 92, 99, 100, 146], "overridden": 66, "override_app_host": [99, 100, 102], "overridelocaldir": 89, "overrideserverurl": [89, 94], "overview": [0, 1, 3, 12, 15, 43, 56, 58, 86, 117, 134, 135, 138, 141, 146, 160, 162], "overwrit": [24, 60, 62, 86, 91, 111, 130, 146, 162], "overwritecondaddr": [66, 86], "overwritehost": [66, 86], "overwriteprotocol": [66, 67, 86], "overwritewebroot": [66, 86], "overwritten": [24, 57, 70, 75, 79, 111, 146], "owasp": 165, "own": [0, 1, 3, 4, 14, 15, 23, 24, 25, 26, 37, 39, 40, 48, 50, 51, 55, 57, 60, 61, 63, 64, 69, 83, 90, 91, 96, 104, 106, 111, 112, 121, 125, 130, 135, 145, 148, 162, 168], "owncloud": [27, 64, 67, 86, 96, 135, 137, 138, 143, 146, 167], "owncloud_blacklist_time_max": 92, "owncloud_blacklist_time_min": 92, "owncloud_chunk_s": 92, "owncloud_core_dump": 96, "owncloud_critical_free_space_byt": 92, "owncloud_free_space_byt": 92, "owncloud_max_parallel": 92, "owncloud_timeout": 92, "owner": [19, 40, 104, 105, 108, 116, 120, 146], "ownerid": 167, "ownership": [3, 31, 40, 57, 118, 122, 130, 139, 146], "p": [8, 19, 56, 90, 99, 102, 120, 121, 128, 129, 133, 137, 143, 146, 148], "pacif": 57, "packag": [2, 52, 56, 57, 86, 90, 120, 121, 122, 123, 124, 125, 127, 128, 131, 138, 145, 146, 147, 150, 151, 168], "package_nam": 51, "packet": 19, "pad": 26, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 24, 25, 31, 37, 38, 40, 49, 50, 52, 54, 56, 57, 58, 60, 61, 62, 64, 69, 76, 79, 80, 83, 86, 87, 96, 97, 98, 102, 111, 114, 120, 122, 123, 126, 127, 130, 134, 135, 139, 141, 144, 145, 146, 156, 157, 159, 168], "pagespe": 126, "paid": [144, 145], "pain": 98, "pair": [25, 34, 43, 57, 86, 100, 114], "pan": 168, "pandoc": 39, "pane": [14, 83, 167], "panel": [52, 57, 63, 79, 83, 129, 130], "pant": 60, "paper": 7, "paragraph": [123, 156], "parallel": [14, 19, 23, 57, 67, 92, 98, 129, 135, 167], "param": 167, "paramet": [3, 5, 13, 15, 17, 18, 22, 23, 24, 28, 29, 40, 43, 45, 55, 56, 62, 63, 64, 69, 74, 75, 79, 80, 86, 89, 94, 96, 99, 111, 123, 126, 127, 129, 130, 146, 162, 166, 167, 168], "parameter_nam": 127, "paramount": [14, 79], "parent": [42, 104, 130, 135, 146], "pars": [3, 26, 57], "part": [3, 5, 13, 14, 15, 38, 47, 48, 54, 56, 57, 60, 79, 83, 96, 118, 120, 123, 130, 131, 134, 146, 148, 153, 166], "part_file_in_storag": 86, "parti": [6, 14, 15, 19, 25, 26, 54, 57, 60, 109, 131, 135, 139, 145, 146, 147, 155, 157], "partial": [60, 116, 167], "particip": 111, "particular": [1, 7, 19, 35, 45, 50, 79, 126, 129, 166], "particularli": [55, 166], "partit": [23, 57], "partnership": 150, "pass": [2, 5, 19, 29, 35, 52, 57, 62, 79, 86, 90, 94, 99, 100, 101, 118, 121, 126, 134, 135, 146, 147, 166, 167], "passphras": 26, "passwd": 52, "password": [2, 3, 17, 19, 21, 25, 26, 30, 33, 34, 35, 36, 37, 38, 40, 42, 43, 45, 53, 55, 56, 57, 60, 71, 74, 78, 79, 80, 86, 90, 94, 96, 98, 99, 100, 114, 116, 118, 120, 121, 122, 124, 125, 127, 130, 135, 137, 142, 143, 146, 149, 160, 168], "password1": [21, 57], "password2": [21, 57], "password_argon2_default_memory_cost": 57, "password_argon2_default_thread": 57, "password_argon2_default_time_cost": 57, "password_default": 57, "passwordconfirmationrequir": 57, "passwordsalt": 86, "past": [52, 67, 134], "pasta": 2, "patch": [60, 67, 86, 116, 136, 166], "path": [8, 14, 15, 19, 24, 25, 26, 27, 28, 31, 32, 43, 52, 54, 62, 64, 66, 79, 86, 89, 90, 94, 96, 99, 100, 101, 116, 121, 123, 126, 128, 130, 133, 140, 141, 146, 152, 167, 168], "path_info": 126, "path_to_dir": 146, "pathto": 146, "pattern": [41, 46, 57, 90], "pauvo": 66, "payload": 168, "payment": 0, "pbkdf2": 26, "pc": [19, 139], "pcntl": 127, "pcntl_signal": 127, "pcntl_signal_dispatch": 127, "pdf": [2, 3, 44, 52, 57, 86, 105, 127, 130], "pdo": [19, 57], "pdo_mysql": [19, 127], "pdo_pgsql": [19, 121, 127], "pdo_sqlit": 127, "pecl": [35, 56, 57, 120], "pecl82": 121, "peer": [19, 60, 114], "peertub": [156, 157], "pem": [19, 26, 57, 121], "pencil": 83, "pend": 123, "peopl": [6, 9, 40, 49, 55, 81, 105, 135, 146, 156, 157], "per": [4, 5, 7, 9, 10, 14, 25, 37, 43, 54, 57, 80, 86, 90, 111, 112, 131, 146, 156, 158, 162, 167], "perbucket": 45, "percentag": 166, "perfect": [9, 130, 142], "perfectli": 166, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 20, 22, 23, 25, 29, 35, 42, 44, 52, 54, 55, 56, 57, 64, 67, 79, 85, 86, 90, 91, 94, 96, 98, 99, 102, 106, 116, 123, 124, 125, 126, 127, 130, 131, 135, 140, 141, 144, 145, 146, 151, 164, 165, 166, 168], "period": [37, 54, 55, 57, 79, 83, 84, 108, 111, 112, 114, 115, 131, 139, 145, 146, 166], "peripher": 130, "perman": [25, 26, 40, 46, 57, 66, 79, 83, 120, 123, 146], "permiss": [2, 31, 40, 43, 49, 56, 57, 65, 86, 104, 116, 121, 125, 126, 128, 130, 135, 139, 140, 144, 146], "permit": [50, 57, 123, 126, 146, 166], "persian": 4, "persist": [4, 19, 43, 57, 83, 86, 101, 116, 132, 154], "person": [2, 25, 37, 38, 57, 60, 63, 75, 76, 78, 79, 83, 109, 111, 114, 130, 134, 146, 151, 157], "personnel": 96, "perspect": 14, "pertain": [23, 96], "pg_ctl": [3, 121], "pg_dump": 137, "pg_hba": 19, "pg_user": 19, "pgp": [120, 122, 128], "pgpassword": [137, 143], "pgsql": [3, 17, 19, 53, 57, 118, 146], "pgsql_ssl": 86, "pgvector": 3, "phar": [127, 144], "phase": 144, "philip": 146, "phone": [40, 57, 74, 75, 78, 79, 112, 117, 146], "phonebook": 40, "photo": [15, 24, 28, 79, 86, 94], "photor": 9, "photoshop": 57, "photothumb": 90, "php": [1, 2, 3, 6, 8, 14, 15, 16, 17, 19, 20, 24, 25, 26, 27, 30, 32, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 52, 53, 54, 55, 57, 62, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 85, 86, 96, 98, 99, 111, 112, 115, 116, 118, 122, 124, 125, 128, 133, 134, 136, 137, 139, 140, 141, 142, 144, 145, 146, 154, 160, 161, 162, 163, 165, 167, 168], "php7": 19, "php70": 146, "php74": 120, "php8": 126, "php82_fpm": 121, "php_valu": 23, "phpinfo": [127, 135], "phpredi": [56, 57, 127], "physic": [25, 52, 99, 125, 140], "pi": [57, 130], "pick": [14, 19, 63, 96, 140, 157], "picker": [1, 2, 14, 86, 155], "pickup": [0, 3, 12, 86], "pictur": [44, 79, 127], "ping": [19, 60], "pipe": [57, 116, 146], "pipelin": 60, "pix": 9, "pixel": [44, 57], "pkg": [90, 121], "pkg_add": 121, "pki": 126, "place": [1, 23, 24, 42, 52, 57, 60, 86, 90, 114, 116, 118, 121, 125, 126, 128, 129, 133, 134, 135, 139, 144, 146, 153, 155, 156], "placehold": [26, 29, 57, 79], "plai": [57, 69], "plain": [13, 57, 60, 67, 68, 104, 126, 130, 135, 146], "plaintext": 79, "plan": [2, 8, 22, 79, 122, 127, 130, 131, 145, 166], "planetexpress": 146, "platform": [28, 45, 89, 94, 96, 120, 129, 131, 132], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 19, 23, 37, 44, 52, 54, 55, 57, 63, 65, 67, 75, 79, 83, 96, 104, 105, 112, 115, 116, 117, 120, 123, 129, 130, 131, 134, 135, 139, 141, 144, 145, 154, 162, 166], "plu": 64, "pluggabl": 78, "plugin": [99, 131], "plusserv": [0, 14], "pm": 130, "png": [28, 57, 69, 126], "podman": [3, 130], "point": [6, 14, 15, 19, 22, 23, 29, 37, 40, 43, 55, 56, 57, 58, 86, 98, 104, 111, 112, 125, 130, 131, 135, 140, 144, 145], "poison": 57, "polici": [40, 46, 57, 61, 69, 71, 74, 79, 86, 123, 126, 127, 128, 136], "policycoreutil": 120, "polish": 4, "polit": [1, 13], "poll": 91, "pool": [56, 123, 126, 130], "poor": [5, 9], "pop": 79, "pop3": 60, "popul": [2, 79, 130, 139], "popular": [42, 98, 99], "popup": 114, "port": [8, 17, 28, 30, 34, 42, 45, 52, 56, 57, 66, 79, 80, 86, 90, 91, 98, 99, 100, 102, 120, 121, 123, 129, 146, 147, 153], "portal": [45, 60, 64, 105, 114, 119], "portion": 135, "portugues": [4, 5, 10], "pose": 57, "posgresql": 57, "posit": [6, 11, 26, 55, 57, 162, 166], "posix": [47, 127], "posixgroup": 79, "possibl": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 19, 22, 25, 38, 40, 41, 45, 46, 47, 50, 51, 55, 56, 57, 58, 60, 61, 78, 79, 80, 82, 94, 96, 98, 99, 100, 102, 104, 105, 111, 112, 114, 116, 118, 123, 126, 127, 128, 129, 130, 131, 134, 135, 139, 141, 143, 144, 146, 147, 148, 154, 166, 168], "possibli": [57, 116, 123, 135], "post": [11, 25, 52, 64, 72, 73, 74, 80, 85, 116, 125, 126, 133, 146, 147], "post_allow": 147, "post_max_s": [23, 121, 130], "postaladdress": 79, "postfix": [45, 57, 60], "postgr": [19, 121], "postgresql": [3, 17, 57, 86, 118, 121, 125, 127, 131, 146, 163], "postrgresql": 22, "postscript": 57, "potenti": [22, 37, 49, 55, 57, 64, 129], "power": [3, 5, 6, 7, 9, 10, 13, 57, 104, 126, 130, 140], "powerpoint": 2, "ppa": 90, "ppolici": [79, 80], "ppolicy_hash_cleartext": 79, "ppt": 150, "pptx": [2, 150], "pr": 133, "practic": [44, 116, 123, 140], "pre": [47, 57, 62, 69, 86, 98, 102, 123, 127, 135, 145, 166, 168], "preced": [48, 57, 78], "precis": [45, 79, 97], "precompil": 129, "preconfigur": 104, "predefin": [47, 96], "predict": 166, "prefer": [14, 17, 19, 28, 35, 54, 56, 57, 60, 63, 79, 81, 83, 86, 91, 96, 113, 115, 116, 118, 126, 127, 129, 130, 135, 146, 167], "prefix": [3, 22, 28, 57, 62, 64, 86, 125, 126, 130, 146], "preinstal": 151, "preliminari": 146, "preload": [121, 123, 126], "prem": 14, "prematur": [111, 112], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 14], "premium": 131, "prepar": [14, 86, 98, 124, 130], "prepend": [1, 57, 126, 135, 146], "prereleas": 19, "prerequisist": 38, "prerequisit": [81, 86, 122, 124, 125, 138, 140], "present": [2, 48, 50, 57, 60, 61, 75, 79, 99, 129, 130, 144, 148, 149], "preserv": [0, 1, 4, 40, 83, 120, 129, 139, 143, 146, 150], "preset": 83, "press": [2, 38, 60, 96, 111, 112, 135, 157], "pretrain": 5, "pretti": [65, 86, 122, 124, 126], "prettier": 130, "prevent": [23, 25, 26, 40, 42, 55, 56, 57, 62, 86, 96, 107, 109, 111, 114, 123, 126, 129, 131, 134, 135, 137, 143, 145, 146, 162, 165], "preview": [25, 37, 43, 62, 86, 124, 127, 130, 155], "preview_concurrency_al": [86, 162], "preview_concurrency_new": [86, 162], "preview_ffmpeg_path": 86, "preview_ffprobe_path": 86, "preview_format": 129, "preview_imaginary_kei": [86, 129], "preview_imaginary_url": [86, 129], "preview_libreoffice_path": 86, "preview_max_filesize_imag": 86, "preview_max_i": [44, 86], "preview_max_memori": [44, 86], "preview_max_scale_factor": 44, "preview_max_x": [44, 86], "preview_office_cl_paramet": 162, "previews_hpb": 57, "previou": [8, 19, 37, 40, 79, 86, 99, 116, 134, 138, 143, 144, 145, 152, 168], "previous": [64, 98, 127, 135, 152, 162, 164], "previousvalu": 167, "primari": [1, 22, 23, 28, 43, 55, 69, 79, 80, 86, 141, 145, 146], "primary_color": 69, "princip": [135, 167], "principaluri": 135, "print": [94, 101], "printenv": 130, "prior": [23, 55, 96, 141, 167], "prioriti": [2, 15, 68], "privaci": [0, 1, 4, 14, 57, 61, 67, 69, 86], "privacyurl": 69, "privat": [14, 29, 34, 43, 57, 60, 75, 86, 112, 114, 121, 123, 126, 146], "privatedata": 17, "privatekei": [26, 146], "privileg": [19, 62, 71, 74, 79, 86, 122, 125], "proactiv": 40, "probabl": [45, 79, 126, 149], "probe": 123, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 25, 30, 40, 55, 57, 64, 67, 79, 86, 92, 111, 112, 126, 128, 129, 130, 134, 136, 140, 144, 166], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 55, 144], "proc": [3, 129], "proce": [26, 114, 120, 144], "procedur": [25, 96, 144], "proceed": [25, 139, 145], "process": [2, 3, 5, 6, 7, 8, 13, 19, 23, 25, 35, 48, 54, 57, 79, 81, 86, 90, 96, 98, 100, 102, 113, 120, 123, 126, 127, 129, 131, 134, 135, 139, 144, 145, 146, 167], "processor": 129, "produc": [5, 8, 11, 91], "product": [2, 3, 4, 5, 7, 17, 55, 57, 79, 120, 123, 128, 129, 130, 135, 146], "productnam": 146, "profession": [11, 14, 25, 131, 135], "profil": [37, 40, 71, 82, 86, 112, 123, 128, 162], "profile_en": 146, "profile_enabled_by_default": 75, "profile_secret": 57, "profilepag": 57, "profit": 135, "program": [54, 60, 89, 94, 96, 98, 140, 146], "programm": 79, "programmat": 81, "progress": [13, 25, 41, 46, 52, 57], "project": [2, 45, 82, 86, 122, 134, 166], "promin": [164, 168], "promot": [79, 86], "prompt": [0, 2, 3, 5, 19, 29, 79, 86, 90, 91, 96, 114, 122, 130, 142, 146, 168], "promptdeleteallfil": 91, "pronoun": 146, "proof": 22, "propag": [48, 90], "proper": [55, 57, 65, 86, 129, 134, 135, 144, 162], "properli": [9, 25, 51, 55, 57, 62, 63, 84, 86, 96, 102, 109, 123, 127, 134, 135, 139, 146, 148], "properti": [57, 71, 79, 83, 86, 96, 146, 167, 168], "property_phon": [57, 75], "property_rol": 75, "propfind": [64, 96], "propget": 96, "proprietari": [8, 14], "prospect": 166, "protect": [3, 25, 26, 38, 40, 52, 60, 61, 62, 66, 67, 86, 105, 130, 146], "proto": 60, "protocol": [2, 8, 33, 34, 52, 57, 66, 80, 86, 96, 98, 99, 100, 102, 116, 123, 147, 154], "prototyp": 99, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 19, 22, 25, 26, 28, 29, 31, 33, 35, 37, 39, 43, 44, 45, 47, 52, 53, 56, 57, 58, 62, 64, 65, 66, 67, 69, 71, 72, 74, 79, 80, 83, 86, 90, 96, 97, 100, 111, 112, 114, 120, 121, 123, 126, 127, 129, 130, 131, 134, 135, 140, 142, 146, 147, 150, 151, 155, 160, 162, 163, 164, 165, 166, 168], "provider_id": [78, 146], "providerfactori": 57, "provis": [45, 71, 82, 86, 114], "provisioning_api": [72, 146], "proxi": [2, 15, 45, 62, 67, 86, 90, 91, 100, 102, 103, 126, 130, 149, 150, 151, 168], "proxy_buff": 23, "proxy_connect_timeout": [99, 126], "proxy_hide_head": 66, "proxy_http": 148, "proxy_max_temp_file_s": 23, "proxy_pass": 99, "proxy_protocol": 99, "proxy_read_timeout": 126, "proxy_send_timeout": 126, "proxy_set": [148, 149, 152, 153], "proxy_timeout": 99, "proxy_wstunnel": 148, "proxyexclud": 86, "proxyfcgibackendtyp": 130, "proxypass": 148, "proxypassmatch": 148, "proxypassrevers": 148, "proxypreservehost": 148, "proxytimeout": 23, "proxyuserpwd": 86, "prune": [41, 102, 116], "pseudo": 123, "psql": [19, 143], "pt6h": 111, "public": [2, 15, 19, 34, 37, 40, 43, 55, 57, 60, 67, 72, 75, 79, 83, 86, 99, 102, 104, 120, 121, 123, 126, 130, 146, 150, 156, 157], "public_html": 30, "publiccalendar": 111, "publickei": 26, "publicli": [5, 26, 75, 116, 130, 146], "publish": [2, 57, 75, 99, 150, 166], "pubshare_": 26, "pull": [3, 79, 86, 126, 133, 148, 152, 156, 157, 162], "pure": 3, "purg": 111, "purpos": [17, 40, 45, 46, 54, 55, 57], "push": [111, 123, 134], "pushfe": 123, "put": [20, 23, 25, 57, 60, 66, 73, 74, 79, 80, 116, 121, 125, 129, 130, 135, 137, 139, 140, 145, 146], "putsizelimit": 45, "pwa": 57, "pwd": 99, "px": 69, "px65ty5drhqkype5hrsdvyfhlzzhcm": 125, "python": [3, 120], "q": [19, 60, 146], "q16": 69, "qmail": [57, 62, 86], "qt": 95, "qt_logging_rul": 95, "quali": 123, "qualifi": [38, 60], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 54, 86, 129, 146, 166], "quantiz": [5, 7], "queri": [1, 3, 14, 21, 22, 40, 57, 74, 79, 85, 111, 135, 145, 146, 167], "query_cache_limit": 19, "query_cache_min_res_unit": 19, "query_cache_s": 19, "query_cache_typ": 19, "query_log_fil": 86, "query_log_file_backtrac": 86, "query_log_file_paramet": 86, "query_log_file_requestid": 86, "question": [1, 2, 3, 12, 17, 19, 57, 79, 86, 90, 116, 144, 146, 150], "queu": [3, 49], "queue": [3, 86, 146], "quick": [2, 52, 61, 86, 114, 124, 130], "quickli": [15, 47, 83, 96, 146], "quickstart": [86, 138], "quiet": [41, 46, 52, 146], "quit": [16, 19, 52, 60, 122, 141, 145, 146], "quot": [57, 80, 99], "quota": [23, 25, 41, 46, 57, 71, 74, 79, 80, 85, 86, 136, 146], "quota_include_external_storag": [83, 86], "qwen": 2, "r": [7, 10, 25, 31, 66, 80, 118, 120, 122, 127, 130, 133, 135, 139], "race": [7, 67], "rackspac": 33, "rainloop": [86, 124], "rais": [19, 23, 92, 129, 135], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 129, 131], "ramdisk": 57, "ran": [6, 57, 67, 162], "rand": 45, "random": [26, 45, 79, 116, 123, 125], "random_byt": 26, "randomli": 57, "rang": [45, 55, 57, 64, 66, 86, 98, 99, 104, 124, 145], "rapid": 166, "rapidli": 166, "rare": [25, 28, 45, 57, 143], "raspberri": 57, "rate": [0, 5, 7, 12, 86, 113], "ratelimit": 86, "ratelimit_overwrit": 86, "ratelimitaddressbookcr": 112, "ratelimitcalendarcr": 111, "ratelimitperiodaddressbookcr": 112, "ratelimitperiodcalendarcr": 111, "rather": [15, 29, 32, 38, 42, 57, 60, 79, 126, 135, 146, 162], "ration": 57, "raw": [14, 26, 68, 79, 99, 134, 135], "rc4": 146, "rcctl": 121, "re": [3, 19, 23, 25, 28, 37, 40, 45, 50, 52, 55, 56, 57, 60, 67, 79, 83, 97, 104, 114, 116, 125, 126, 130, 131, 135, 139, 140, 144, 145, 146, 164, 165, 166, 167], "reach": [40, 55, 57, 67, 79, 98, 102, 109, 120, 123, 129, 130, 131, 135, 140, 141, 142, 144, 145, 154, 162, 166, 168], "reachabl": [8, 55, 57, 86, 98, 99, 102, 130, 135, 162], "react": 146, "read": [2, 21, 23, 33, 37, 43, 49, 52, 56, 57, 58, 62, 65, 69, 71, 77, 86, 90, 91, 104, 111, 112, 116, 120, 121, 126, 130, 131, 132, 134, 146, 147, 164, 165], "read_timeout": [56, 57], "readabl": [24, 31, 57, 62, 79, 86, 126], "reader": [17, 146], "readi": [37, 57, 79, 102, 130, 154, 166], "readili": 25, "readm": [3, 82, 98, 99, 102, 121, 130], "readonli": 167, "real": [4, 5, 7, 9, 10, 13, 35, 66, 68, 116, 126, 150, 166], "realiz": [14, 146], "realli": 123, "realtim": 55, "reason": [5, 14, 45, 53, 55, 57, 60, 61, 67, 79, 116, 123, 125, 127, 128, 129, 130, 131, 135, 140, 146, 148, 162, 164, 165], "reassign": 104, "recalcul": 79, "receiv": [14, 38, 40, 50, 57, 60, 66, 79, 82, 83, 114, 120, 131, 134, 145, 166, 168], "recent": [23, 40, 55, 79, 129, 140, 146, 148, 152], "recid": 123, "recip": 2, "recipi": [26, 38, 57, 114, 116, 146], "recogn": [8, 12, 14, 57, 61, 79, 86], "recognis": 29, "recognit": [14, 86], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 14, 19, 23, 24, 25, 27, 35, 36, 37, 39, 42, 49, 54, 57, 61, 62, 65, 66, 67, 79, 86, 96, 98, 99, 104, 116, 121, 122, 123, 124, 125, 126, 129, 130, 131, 134, 135, 137, 141, 142, 143, 145, 146, 147, 148, 151, 155, 160, 161, 162, 164, 165, 166, 167, 168], "recommended": [19, 166], "recommended_fil": 14, "record": [49, 57, 78, 80, 96, 116, 140], "recov": [25, 26, 76, 83, 143], "recoveri": [43, 78, 86, 138, 146], "recoverykey_": 26, "recreat": 143, "recurs": 146, "recv": 60, "red": [14, 37, 38, 56, 96, 130, 131], "redact": [96, 116], "reddit": [156, 157], "redeploi": 3, "redhat": 52, "redi": [23, 42, 62, 67, 86, 124, 127, 132, 146], "redir": 66, "redirect": [57, 61, 65, 66, 67, 69, 86, 98, 102, 114, 130, 135], "redirectregex": 66, "redis_log_fil": 86, "redisclust": [56, 57], "reduc": [5, 7, 57, 79, 86, 92, 116, 124, 135, 166], "reduce_to_languag": 86, "refer": [3, 19, 25, 26, 37, 40, 52, 54, 56, 57, 60, 67, 75, 79, 86, 102, 115, 116, 117, 120, 124, 129, 135, 145, 156, 162, 168], "referenc": [13, 26, 135], "reference_opengraph": 86, "referr": [123, 126], "refil": 56, "reflect": 126, "refman": [57, 131], "reformat": 79, "reformul": 1, "refresh": [56, 79, 86, 142, 146], "regard": [82, 109, 116, 127, 132, 166], "regardless": [14, 28, 40, 45, 57, 79, 146, 166], "regener": 29, "regex": [66, 123, 126], "region": [28, 33, 45, 57], "regionon": [45, 57], "regist": [3, 4, 8, 14, 54, 57, 86, 98, 99, 103, 111, 114, 140, 146, 155, 156, 167, 168], "registr": [54, 114], "registrar": 130, "regress": 131, "regular": [23, 26, 52, 54, 57, 66, 104, 144, 145, 146, 151, 167], "regularli": [14, 49, 54, 92, 130, 145, 146, 166], "reindex": 3, "reinforc": 5, "reinstal": [3, 135, 141], "reject": 86, "rel": [26, 130, 146], "relat": [3, 12, 14, 23, 51, 52, 55, 57, 64, 73, 74, 79, 86, 96, 98, 109, 112, 116, 124, 127, 129, 130, 132, 133, 140, 146, 163, 164, 165, 166, 168], "relationship": 51, "relax": 57, "releas": [2, 4, 15, 42, 52, 96, 99, 120, 122, 123, 127, 129, 130, 131, 133, 134, 138, 141, 142, 145, 146, 148, 149, 152], "relev": [0, 1, 3, 14, 23, 48, 79, 96, 109, 114, 121, 123, 126, 140, 166], "reli": [14, 49, 82, 115, 131, 155, 157, 166], "reliabl": [13, 35, 52, 54, 56, 67, 79, 127, 131, 135, 139, 140, 150, 154], "reliev": 42, "reload": [37, 61, 120, 129, 130], "remain": [25, 40, 57, 79, 83, 92, 99, 114, 121, 140], "remedi": [57, 112, 135], "rememb": [57, 79, 83, 109, 120, 121, 128], "remember_login_cookie_lifetim": 86, "remi": 120, "remind": [86, 113, 146], "remirepo": 86, "remnant": [17, 57, 79, 81, 86], "remot": [2, 3, 19, 30, 32, 34, 35, 36, 37, 38, 40, 52, 56, 57, 60, 64, 66, 67, 70, 72, 79, 85, 86, 90, 91, 94, 96, 98, 100, 104, 111, 114, 116, 121, 124, 126, 130, 131, 135, 144, 146], "remote_addr": 57, "remoteaddr": [64, 123], "remotedirpath": 94, "remotepollinterv": 91, "remoteport": [99, 100], "remov": [2, 3, 4, 11, 15, 17, 23, 25, 27, 40, 49, 50, 53, 55, 57, 60, 67, 71, 73, 75, 79, 81, 83, 85, 86, 95, 101, 102, 104, 105, 108, 111, 112, 114, 116, 123, 126, 128, 130, 132, 134, 146, 148, 152, 154, 161, 162, 165], "removeus": 146, "renam": [42, 47, 57, 71, 86, 139, 146, 152], "render": [9, 57, 68, 150, 155, 156], "renew": 130, "repair": [2, 20, 25, 48, 57, 86, 139, 145], "repeat": [28, 90, 102, 140], "repeatedli": [6, 123], "replac": [11, 14, 19, 25, 26, 37, 45, 48, 54, 57, 58, 60, 66, 69, 79, 99, 111, 120, 122, 123, 127, 130, 134, 144, 145, 146, 148, 160, 163, 167], "repli": [60, 114, 150], "replic": [0, 1, 14, 18, 22, 86, 146, 157], "replica": [21, 57, 79, 80], "replica1": 57, "replica2": 57, "repo": 149, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 25, 55, 57, 67, 79, 86, 87, 96, 128, 129, 135, 154, 163, 164, 165], "repositori": [12, 26, 52, 55, 86, 90, 91, 120, 152, 156, 157, 166], "repres": [26, 44, 116, 167], "reproduc": 67, "reqid": 64, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 19, 23, 28, 29, 33, 45, 53, 55, 56, 64, 65, 66, 67, 74, 79, 82, 83, 85, 86, 96, 98, 99, 100, 102, 104, 109, 116, 121, 123, 126, 127, 129, 131, 133, 134, 135, 147, 153, 156, 157, 162, 167, 168], "request_checksum_calcul": [57, 165], "request_timeout": [23, 38, 86], "request_uri": 126, "requestreadtimeout": 23, "requir": [1, 12, 14, 15, 18, 20, 23, 25, 26, 28, 29, 30, 33, 34, 35, 37, 38, 39, 42, 45, 46, 47, 51, 52, 53, 54, 56, 57, 60, 64, 67, 69, 72, 74, 78, 79, 80, 85, 86, 90, 94, 96, 98, 99, 100, 102, 114, 122, 123, 124, 125, 126, 128, 129, 130, 134, 135, 139, 140, 143, 144, 145, 146, 147, 148, 151, 152, 154, 166], "rerun": 25, "rescan": [37, 86, 135, 136, 139, 146], "resend": 86, "reserv": [47, 164], "reset": [23, 25, 55, 56, 57, 60, 64, 71, 79, 86, 111, 112, 116, 120, 129, 135, 144, 146, 160], "resetpassword": [76, 86], "reshar": 40, "resid": [19, 99, 128], "resist": 55, "resiz": 79, "resolut": [9, 154, 162], "resolv": [25, 55, 57, 62, 86, 96, 99, 121, 123, 144, 145, 156, 162], "resolveexappurl": 99, "resourc": [0, 1, 7, 10, 14, 26, 40, 44, 48, 54, 57, 69, 86, 98, 112, 113, 116, 123, 124, 130, 135, 139, 142, 168], "respect": [0, 3, 7, 14, 19, 49, 54, 75, 98, 99, 111, 114, 117, 146], "respond": [57, 102, 104], "respons": [2, 13, 26, 62, 86, 99, 123, 126, 135, 144, 156, 165], "response_checksum_valid": [57, 165], "rest": [25, 109, 116, 120, 135], "restart": [3, 5, 7, 11, 14, 19, 20, 52, 56, 96, 99, 120, 123, 126, 127, 129, 130, 135, 139, 148, 149, 167], "restor": [20, 26, 57, 86, 135, 137, 138, 139, 140, 144, 145, 146, 166], "restorecon": [120, 128], "restrict": [3, 15, 30, 37, 40, 57, 65, 74, 80, 86, 104, 107, 108, 111, 112, 116, 124, 135, 146, 161], "restructur": 146, "result": [2, 6, 9, 20, 25, 26, 57, 60, 79, 80, 91, 96, 98, 99, 114, 116, 126, 129, 130, 134, 162, 168], "resum": 168, "resync": 112, "retain": [13, 37, 40, 137], "retent": [46, 57, 86, 105, 107, 113, 146], "retrain": 166, "retreat": 2, "retri": [57, 90, 92, 144, 148], "retriesmaxattempt": 57, "retriev": [2, 26, 56, 57, 66, 73, 74, 79, 80, 86, 146, 168], "return": [23, 25, 26, 38, 54, 55, 56, 57, 60, 62, 66, 72, 73, 74, 79, 80, 86, 99, 111, 120, 121, 126, 129, 130, 135, 156], "reus": 116, "revalid": 86, "revalidate_freq": [121, 129], "reveal": 154, "revers": [25, 57, 62, 67, 86, 98, 99, 102, 130, 133, 149, 150, 151], "reverse_proxi": 66, "revert": [86, 96, 111, 136, 142, 144, 145], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19, 52, 55, 57, 64, 123, 135, 139, 145, 162, 164, 166], "revis": [139, 145], "revisit": [139, 145], "revok": 50, "rewrit": [112, 126, 130, 146, 162], "rewritebas": [86, 130], "rewriteengin": [66, 135], "rewriterul": [66, 135], "rf": 128, "rfc": [57, 78, 123, 146], "rfc6749": 65, "rh": [120, 146], "rhel": 130, "rich": [62, 86, 156], "rich_editing_en": 68, "richdocu": 162, "richdocumentscod": 126, "rid": [44, 146], "right": [1, 22, 30, 37, 56, 57, 60, 74, 79, 83, 86, 111, 126, 130, 139, 144, 162, 167], "rim": 126, "risk": [25, 31, 57, 60, 123, 135, 144, 145, 166], "rm": [101, 143, 148], "ro": 8, "rob": 146, "robbi": 146, "robert": 146, "roberta": 146, "robin": [72, 146], "robot": [123, 126], "robust": [130, 142], "rocm": [98, 100, 102], "role": [75, 79, 83], "roll": 166, "roman": 2, "room": [8, 86, 113], "root": [15, 19, 25, 30, 32, 34, 36, 53, 57, 80, 83, 86, 90, 94, 105, 116, 118, 120, 121, 122, 125, 126, 128, 130, 133, 134, 135, 144, 146], "rootcert": 57, "rosa": 146, "rotat": [4, 86, 127, 146], "rough": [5, 7, 9, 10, 14], "round": 26, "rout": [2, 57, 99], "router": [57, 66], "routin": [146, 166], "row": [19, 20, 37, 116, 131, 146, 164], "row_format": [20, 57], "rowaddedev": 167, "rowdeletedev": 167, "rowid": 167, "rowupdatedev": 167, "rpm": 120, "rsa": [26, 29, 37], "rss": 126, "rsync": [96, 137, 140, 143], "rtrim": 99, "rtx": 98, "rule": [12, 41, 57, 79, 80, 84, 86, 99, 106, 107, 108, 120, 123, 126, 130, 147, 153], "ruleset": 128, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 27, 35, 37, 41, 42, 44, 46, 47, 49, 52, 54, 55, 56, 57, 60, 62, 64, 66, 69, 75, 78, 79, 81, 86, 90, 91, 96, 98, 99, 100, 111, 112, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 143, 144, 148, 149, 151, 154, 162, 166, 167, 168], "runner": 14, "runtim": [80, 131], "runus": 146, "russian": 4, "rv": 128, "rw": 80, "s01": [79, 80, 146], "s02": 80, "s3": [23, 25, 37, 43, 57, 86], "s_time": 116, "sabin": 146, "sabr": [135, 167], "sabredav": [130, 135, 167], "safari": [64, 131], "safe": [14, 16, 17, 25, 56, 57, 60, 65, 120, 122, 126, 127, 135, 140, 144], "safest": 104, "safeti": 61, "sai": [60, 144], "said": 14, "sake": 120, "sale": [15, 69, 146, 150], "salt": [26, 57], "samaccountnam": 79, "samba": [25, 35], "same": [2, 3, 5, 13, 14, 17, 19, 22, 23, 25, 26, 29, 38, 40, 42, 45, 48, 52, 55, 56, 57, 60, 64, 67, 69, 79, 85, 86, 89, 90, 94, 96, 98, 100, 101, 104, 109, 111, 112, 116, 120, 121, 123, 126, 130, 132, 133, 135, 140, 142, 144, 145, 146, 147, 148, 154, 162, 163, 164, 165, 167], "sameorigin": [123, 126], "samesit": 57, "saml": [26, 29], "sampl": [23, 42, 49, 53, 86, 121, 146], "sandbox": 130, "sanit": [43, 86], "sapi": 127, "satisfi": [52, 125, 130], "save": [29, 35, 37, 42, 45, 60, 61, 68, 79, 96, 98, 114, 116, 146], "save_com": [121, 129], "sbin": [57, 60, 130], "scalabl": [45, 129, 130, 142, 150, 151, 154], "scale": [12, 17, 22, 57, 86, 131, 135], "scan": [3, 27, 29, 35, 37, 57, 62, 67, 86, 96, 134, 135, 139, 143], "scanner": [57, 60, 62, 86, 135], "scenario": [8, 14, 19, 25, 45, 49, 57, 87, 123, 132, 143, 151], "scene": 14, "schedul": [2, 3, 8, 13, 14, 52, 54, 57, 62, 79, 86, 111, 113, 115, 145, 146, 167, 168], "schedulecalendartransp": 167, "scheduledaft": 13, "scheduledat": 13, "schema": [17, 19, 22, 132, 141, 144, 146], "scheme": [26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 66, 99], "school": 135, "scl": 146, "scope": [8, 19, 45, 57, 65, 71, 79, 86, 101, 134, 146], "scope_feder": 75, "scope_priv": [57, 75], "score": 5, "scratch": [78, 130, 144], "screen": [38, 53, 60, 76, 77, 86, 130, 144, 146, 168], "screenshar": 131, "screenshot": [24, 61], "script": [14, 45, 54, 56, 57, 86, 118, 124, 129, 146, 147, 167], "script_filenam": 126, "scroll": [38, 83, 111, 112, 114, 144], "sdk": [6, 120, 128, 147, 148, 149, 151, 152, 153, 165], "sdkref": [57, 165], "seal": 86, "sealert": 128, "seamless": 79, "search": [3, 17, 25, 40, 48, 57, 79, 80, 81, 86, 90, 98, 111, 123, 127, 129, 130, 135, 155], "searchon": 90, "sec": [19, 20, 80, 91, 116], "second": [1, 14, 23, 33, 38, 40, 41, 45, 55, 57, 65, 67, 70, 78, 79, 83, 91, 92, 104, 111, 114, 116, 123, 129, 130, 134, 146, 148, 167], "second_admin": 49, "secondari": [37, 78], "secr3tpasswordt7": [45, 57], "secret": [8, 25, 26, 28, 29, 34, 45, 65, 72, 73, 74, 80, 86, 90, 109, 114, 123, 129, 146, 147], "secretvalu": 45, "section": [0, 1, 3, 6, 8, 14, 23, 25, 29, 38, 40, 45, 47, 50, 53, 54, 56, 57, 60, 67, 69, 75, 79, 83, 84, 91, 92, 94, 96, 99, 102, 104, 105, 111, 112, 114, 115, 116, 125, 126, 129, 130, 135, 141, 144, 145, 146, 148, 154, 166, 168], "secur": [8, 15, 19, 25, 26, 29, 30, 31, 36, 38, 42, 44, 55, 60, 61, 62, 66, 78, 84, 86, 96, 100, 111, 116, 120, 124, 125, 126, 127, 128, 130, 131, 134, 135, 141, 142, 145, 148, 166], "see": [0, 1, 2, 3, 4, 7, 11, 14, 15, 19, 20, 23, 24, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 44, 45, 48, 49, 50, 52, 55, 56, 57, 60, 65, 67, 75, 76, 79, 80, 81, 83, 91, 94, 96, 98, 99, 102, 104, 105, 111, 112, 114, 116, 117, 118, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 134, 135, 137, 139, 140, 141, 144, 145, 146, 151, 154, 159, 160, 161, 163, 164, 165, 168], "seed": [56, 57], "seem": [3, 57, 60, 67, 144], "seen": [57, 96, 98, 105, 112, 126, 134, 146], "segment": 23, "segreg": 123, "select": [1, 2, 3, 4, 5, 7, 8, 19, 25, 26, 28, 37, 38, 40, 50, 54, 55, 56, 57, 60, 61, 69, 78, 79, 83, 86, 89, 90, 114, 135, 144, 146], "selector": [86, 168], "self": [0, 1, 2, 14, 30, 43, 57, 86, 96, 99, 114, 130, 146, 160], "selfiephoto": 79, "selinux": [37, 57, 79, 86, 124], "semanag": [120, 128], "semant": 3, "semaphor": 127, "semicolon": 57, "send": [2, 8, 38, 40, 49, 57, 62, 63, 65, 72, 73, 74, 80, 83, 86, 96, 99, 111, 113, 123, 125, 126, 128, 130, 144, 146, 155, 160, 168], "send_timeout": 126, "sendemail": 146, "sender": [60, 114], "sendeventremindersmod": 111, "sendfil": 135, "sendmail": [57, 62, 86, 124], "sens": [22, 49], "sensibl": 44, "sensit": [14, 47, 49, 54, 55, 57, 79, 96, 116, 123, 130, 135, 146], "sent": [57, 60, 64, 79, 99, 109, 111, 114, 116, 146], "sentri": 116, "separ": [3, 5, 7, 9, 10, 14, 19, 22, 23, 38, 53, 57, 58, 60, 64, 79, 80, 96, 102, 129, 145, 146], "septemb": 4, "seri": [156, 157, 165], "serial": 57, "serializer_igbinari": 57, "seriou": 135, "serious": 67, "serv": [3, 5, 7, 23, 57, 60, 67, 79, 86, 104, 124, 130, 140, 147, 148, 162, 163, 165], "server": [0, 1, 3, 4, 5, 6, 7, 12, 14, 15, 16, 17, 20, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 42, 43, 44, 45, 47, 48, 49, 52, 53, 54, 55, 61, 62, 64, 65, 66, 69, 72, 73, 74, 75, 76, 77, 80, 81, 83, 86, 89, 90, 91, 93, 94, 98, 99, 100, 102, 108, 109, 113, 115, 116, 117, 118, 120, 121, 122, 125, 126, 127, 132, 134, 136, 137, 138, 139, 143, 144, 145, 146, 151, 153, 154, 156, 159, 166, 167, 168], "server0": 56, "server1": [56, 125], "server2": 56, "server_address": 90, "server_log": 86, "server_nam": [66, 99, 121, 126], "server_token": 126, "serveraddr": 99, "serverinfo": [56, 135, 162], "servernam": [99, 120, 123, 130], "servernotavailableexcept": 146, "serverport": 99, "serverroot": [15, 57], "serverurl": 94, "servic": [1, 2, 3, 5, 12, 19, 28, 29, 33, 37, 52, 54, 55, 56, 57, 60, 62, 64, 65, 67, 69, 79, 80, 82, 86, 96, 102, 120, 121, 123, 129, 130, 136, 147, 149, 151, 152, 155, 157, 166], "servicenam": [45, 57], "session": [29, 35, 37, 40, 62, 86, 96, 109, 116, 126, 127, 137, 145, 146], "session_keepal": 86, "session_lifetim": [23, 86], "session_relaxed_expiri": 86, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 17, 19, 20, 23, 24, 25, 27, 28, 29, 30, 31, 33, 35, 37, 38, 41, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 61, 62, 63, 65, 66, 68, 69, 70, 71, 75, 78, 80, 81, 82, 84, 85, 86, 91, 94, 95, 96, 97, 98, 99, 100, 102, 104, 105, 106, 108, 112, 113, 114, 115, 116, 121, 122, 123, 124, 125, 126, 128, 131, 134, 135, 137, 139, 140, 141, 143, 144, 145, 149, 150, 154, 160, 161, 162, 164, 166, 167], "setenv": [123, 130], "setenvif": 130, "setroubleshoot": 128, "setsebool": [120, 128], "settl": 19, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 15, 19, 29, 37, 41, 45, 46, 54, 55, 57, 59, 60, 62, 78, 79, 86, 93, 94, 96, 99, 100, 103, 120, 124, 125, 126, 130, 131, 135, 141, 145, 146, 148, 149, 151, 152, 153, 160, 163, 164, 168], "setupcheck": 86, "sever": [23, 25, 55, 57, 60, 75, 99, 101, 114, 123, 126, 127, 130, 135, 140, 145, 151, 166], "sf": [15, 121], "sftp": [29, 37, 86, 127], "sh": [14, 130, 167], "sha256": [26, 120, 122], "sha256_cert_fingerprint": 51, "sha256sum": [120, 122], "sha512": 26, "shall": [49, 57, 63, 79, 91, 146], "shallow": 146, "share": [3, 19, 35, 37, 42, 49, 56, 60, 62, 67, 79, 83, 86, 96, 98, 100, 104, 105, 113, 117, 121, 123, 128, 130, 132, 136, 139, 143, 144, 147, 149, 150, 157, 167], "share20": 57, "share_fold": 86, "shareapi_restrict_user_enumeration_full_match_email": 40, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 40, "shareapi_restrict_user_enumeration_full_match_userid": 40, "sharebymail": 57, "shared_secret": 57, "sharekei": 26, "sharer": 49, "shares_extern": 146, "sheet": 165, "shell": [14, 20, 54, 57, 146, 167], "shibbol": 147, "ship": [5, 15, 24, 48, 49, 50, 55, 57, 58, 72, 79, 86, 112, 120, 123, 126, 129, 144, 146, 155, 163], "shm_size": [56, 164], "shop": 2, "short": [57, 79, 81, 98, 111, 112, 114, 135], "shortcut": 86, "shorter": [26, 130], "shortli": 108, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 17, 19, 20, 24, 26, 33, 35, 36, 38, 42, 48, 52, 54, 56, 57, 60, 63, 65, 66, 68, 69, 75, 79, 80, 89, 91, 94, 96, 98, 99, 100, 102, 104, 108, 111, 112, 114, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 135, 140, 141, 144, 145, 146, 147, 148, 150, 153, 160, 161, 164, 166, 167, 168], "shouldn": 57, "show": [1, 2, 3, 7, 10, 16, 19, 20, 24, 25, 35, 40, 44, 45, 48, 52, 56, 57, 60, 61, 78, 79, 80, 81, 83, 86, 91, 96, 101, 102, 111, 112, 116, 129, 134, 135, 139, 144, 145, 150, 162], "show_federated_shares_as_intern": 38, "showexperimentalopt": 91, "showexpir": 167, "showmaindialogasnormalwindow": 91, "shown": [23, 29, 40, 44, 65, 69, 79, 86, 91, 123, 126, 127, 129, 134, 135, 139, 144, 145, 146], "showonli": 146, "showpassword": 80, "shutdown": 16, "sick": 2, "side": [28, 37, 43, 45, 57, 60, 79, 83, 86, 111, 123, 125, 126, 129, 135, 144, 146, 162, 164], "sidebar": [83, 97, 168], "siev": 86, "sign": [30, 43, 57, 79, 83, 86, 96, 114, 120, 126, 130, 131, 135, 136, 146, 160], "signal": 4, "signatur": [52, 86, 114, 120, 122, 134, 146], "signific": [8, 31, 42, 129, 134, 166], "significantli": [8, 23, 56, 57, 131, 145], "signup": [2, 57], "silent": [90, 101, 128], "similar": [0, 6, 16, 23, 33, 64, 79, 94, 96, 105, 108, 116, 120, 123, 128, 129, 130, 132, 134, 146], "similarli": [140, 146, 147, 165], "simpl": [17, 48, 57, 86, 105, 130, 142, 146, 168], "simplesignuplink": 86, "simplest": [99, 135], "simplexml": 127, "simpli": [3, 8, 15, 40, 45, 49, 52, 57, 58, 60, 66, 78, 79, 83, 98, 104, 105, 129, 139, 143, 144, 146, 167], "simplifi": 99, "simul": 146, "simultan": [42, 129, 130, 146, 166], "sinc": [2, 5, 14, 15, 17, 25, 29, 31, 54, 55, 56, 57, 60, 96, 104, 106, 108, 121, 126, 131, 141, 144, 146, 152, 162, 164, 166, 168], "singl": [3, 17, 23, 38, 54, 55, 57, 64, 79, 83, 86, 90, 114, 116, 120, 122, 125, 126, 128, 129, 130, 137], "sink": 2, "site": [23, 62, 86, 109, 123, 130, 135], "situat": [3, 5, 7, 45, 55, 57, 66, 92, 96, 120, 123, 129, 135, 146], "sixteen": 166, "sixti": 57, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 25, 26, 40, 43, 56, 57, 60, 79, 83, 86, 91, 92, 96, 98, 104, 121, 123, 126, 136, 139, 140, 146, 160, 167], "sji": 68, "skeleton": [24, 57], "skeletondirectori": [24, 86], "skill": [130, 142], "skip": [53, 54, 57, 62, 79, 86, 89, 92, 94, 100, 116, 145, 146], "skip_name_resolv": 19, "skipapp": 162, "skipauthpickerappl": 65, "sky": 1, "skydriv": 96, "sl": 56, "slash": [30, 48, 96, 135, 167], "slate": 3, "slave": [57, 79], "sleep": 57, "slide": 2, "slightli": [5, 26, 55, 101], "slogan": 69, "slot": 2, "slow": [6, 19, 52, 55, 56, 86, 96, 129, 146], "slow_query_log": 19, "slow_query_log_fil": 19, "slower": [54, 55, 151], "sm": 146, "small": [2, 40, 44, 54, 86, 111, 112, 129, 135, 146, 151, 166], "smaller": [5, 7, 23, 57, 144], "smallest": [11, 79], "smart": [1, 2, 14, 86, 114, 155], "smb": [37, 86, 124, 127], "smbclient": [35, 127], "sme": 130, "smili": 20, "smith": 146, "smtp": [57, 62, 86, 124], "sn": [80, 146], "snap": [86, 124, 127, 138, 145], "snapcraft": [130, 142], "snapd": [130, 142], "snapshot": [79, 99], "sni": 67, "sniff": 123, "snip": 54, "snooz": [86, 113], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 17, 19, 23, 24, 25, 26, 27, 32, 35, 37, 38, 40, 42, 45, 47, 48, 49, 52, 55, 56, 57, 60, 65, 69, 74, 76, 79, 81, 82, 83, 97, 98, 99, 100, 104, 105, 108, 111, 114, 115, 116, 120, 121, 123, 125, 126, 127, 128, 129, 130, 134, 135, 139, 141, 143, 144, 145, 146, 149, 152, 155, 162, 166, 167, 168], "sock": [19, 42, 56, 57, 99, 100, 121, 126, 146], "socket": [19, 42, 52, 57, 86, 100, 102, 103, 121, 126, 153], "socks5": 91, "sodium": 127, "softwar": [0, 4, 6, 11, 14, 19, 66, 87, 96, 131, 160], "soldier": 2, "solid": 25, "solut": [1, 14, 23, 40, 66, 96, 114, 117, 130, 134, 135, 140, 150, 152, 154], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 47, 128, 133, 144, 165], "some": [0, 1, 2, 14, 15, 19, 22, 25, 26, 28, 29, 37, 40, 44, 45, 48, 54, 55, 56, 57, 60, 62, 69, 70, 79, 83, 85, 86, 91, 96, 97, 98, 99, 101, 104, 111, 112, 114, 116, 120, 121, 123, 125, 126, 127, 129, 130, 131, 134, 135, 139, 140, 141, 144, 145, 146, 147, 148, 151, 155, 156, 159, 162, 164], "some_secure_password": 100, "some_very_secure_password": [99, 100], "someon": 25, "someth": [2, 3, 13, 38, 40, 57, 79, 98, 99, 126, 129, 134, 141, 154], "sometim": [2, 5, 14, 40, 45, 54, 83, 129, 135, 139, 144, 166], "somewher": [79, 99, 126, 130, 168], "soon": [14, 59, 111, 129, 166], "sooner": 166, "sophist": [55, 96], "sorri": 154, "sort": [57, 127, 151], "sort_groups_by_nam": 86, "sortbi": 57, "sound": 139, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 29, 43, 48, 52, 55, 57, 60, 86, 111, 117, 120, 123, 127, 129, 130, 132, 135, 143, 146, 147, 149, 167], "sourcecalendardata": 167, "sourcecalendarid": 167, "sourcecod": 26, "sourcedir": 90, "sourceshar": 167, "sourceuid": 146, "sovereignti": [0, 1, 4], "space": [4, 23, 41, 46, 47, 57, 79, 83, 86, 96, 124, 135, 146, 164], "spaghetti": 2, "spam": [57, 60, 114], "span": [70, 104], "spanish": [4, 5, 10, 11], "speaker": 7, "spec": 57, "special": [1, 11, 19, 32, 37, 40, 43, 49, 57, 61, 66, 78, 83, 84, 86, 111, 125, 130, 135, 167], "specialis": 48, "specif": [1, 5, 6, 7, 9, 10, 11, 13, 15, 19, 25, 26, 29, 30, 35, 37, 39, 40, 45, 50, 51, 56, 57, 58, 63, 65, 72, 75, 83, 86, 89, 90, 94, 96, 99, 107, 111, 112, 116, 124, 130, 140, 146, 156, 162, 163, 166, 167, 168], "specifi": [1, 17, 19, 22, 28, 29, 30, 33, 35, 36, 45, 48, 53, 54, 55, 56, 57, 64, 66, 72, 74, 77, 79, 80, 81, 89, 90, 91, 92, 93, 95, 96, 99, 111, 123, 126, 129, 130, 134, 146, 147, 148, 167, 168], "speech": [4, 12, 86, 157], "speech_to_text_picker_en": 1, "speed": [3, 6, 12, 79, 86, 96, 98, 126, 129], "speedscop": 57, "split": [18, 21, 86, 158], "spoof": [57, 66], "sporad": 96, "spread": 130, "spreadsheet": [2, 48], "spreed": [4, 8], "sprintf": 99, "sql": [57, 86, 135, 145, 146], "sqlbkp": 143, "sqlbkp_": 137, "sqlite": [17, 22, 86, 118, 124, 125, 131, 132, 135, 146], "sqlite3": [17, 57, 118, 137, 143, 146], "sqlstate": 135, "squeez": 19, "src": [120, 128], "src_path": 101, "sse": [25, 28, 43, 86], "sse_c_kei": 45, "ssh": [29, 34], "ssl": [25, 28, 30, 38, 56, 60, 61, 62, 67, 86, 90, 97, 116, 121, 124, 126, 146, 148, 149, 153], "ssl_certif": 126, "ssl_certificate_kei": 126, "ssl_context": [56, 57], "ssl_stapl": 126, "ssl_stapling_verifi": 126, "sslproxycheckpeercn": 148, "sslproxycheckpeernam": 148, "sslproxyengin": 148, "sslproxyverifi": 148, "sslrenegbuffers": 23, "sso": [29, 57], "ssrf": 123, "stabil": [67, 131, 164, 165], "stabilityai": 14, "stabl": [14, 57, 121, 130, 131, 134, 142, 150, 157, 166], "stable_bas": 52, "stablediffus": 14, "stack": [130, 151], "stage": [118, 166], "stai": [130, 145, 146, 166], "stall": 57, "standalon": [4, 72, 151, 168], "standalone_window": 86, "standard": [17, 45, 53, 56, 57, 64, 66, 79, 87, 90, 111, 120, 123, 130, 131, 135, 139, 140, 146, 163, 164, 165], "staroffic": 57, "start": [3, 13, 14, 15, 19, 26, 27, 35, 49, 51, 52, 54, 55, 56, 57, 58, 63, 64, 79, 95, 96, 99, 111, 116, 120, 121, 122, 124, 129, 130, 135, 139, 140, 142, 144, 145, 146, 148, 152, 154, 162, 163, 164, 165, 167, 168], "start_header_id": 5, "startedat": 13, "startlimitburst": [14, 167], "startlimitinterv": [14, 167], "startpag": [57, 123], "starttl": [57, 80, 86, 160], "startup": [56, 102], "stash": 146, "stat": [1, 3], "state": [25, 57, 60, 78, 90, 116, 123, 143, 146, 167], "static": [26, 57, 66, 123, 126, 148, 161, 162, 163, 168], "statist": [1, 3, 116, 123, 146], "statu": [13, 14, 25, 38, 52, 54, 55, 56, 64, 72, 73, 74, 78, 80, 86, 101, 103, 115, 123, 126, 133, 145, 149, 154, 166, 167], "status": 146, "status_cancel": 13, "status_fail": 13, "status_run": 13, "status_schedul": 13, "status_success": 13, "status_unknown": 13, "statuscod": [72, 73, 74, 80], "stdin": [57, 146], "stdout": [4, 95, 146], "step": [3, 8, 17, 19, 20, 38, 43, 51, 55, 57, 59, 60, 65, 78, 79, 86, 94, 96, 98, 101, 102, 114, 116, 120, 124, 125, 129, 130, 133, 135, 138, 140, 144, 146, 148, 151, 152], "stephani": 146, "stereotyp": 9, "stick": 57, "still": [2, 3, 8, 17, 20, 22, 23, 27, 40, 44, 45, 47, 54, 55, 56, 57, 61, 64, 78, 79, 81, 83, 91, 98, 116, 123, 126, 127, 135, 140, 144, 146, 162, 163, 164, 165, 166], "stolen": 78, "stop": [5, 6, 23, 52, 57, 64, 96, 99, 105, 135, 139, 140, 144, 148, 152], "storag": [3, 26, 28, 30, 31, 32, 34, 35, 36, 41, 42, 43, 54, 57, 62, 71, 79, 85, 86, 96, 101, 105, 125, 127, 128, 130, 131, 132, 136, 146, 149], "storage43": 79, "storageclass": 45, "store": [0, 12, 16, 19, 25, 28, 29, 35, 41, 42, 43, 44, 56, 58, 61, 62, 64, 65, 67, 69, 78, 79, 80, 86, 98, 110, 112, 114, 123, 125, 126, 128, 129, 132, 135, 146, 163, 164, 165], "storecryptedpassword": 86, "str_ends_with": 99, "straight": 89, "straightforward": 51, "strain": 116, "strategi": [20, 45], "stream": [23, 49, 52, 57, 99, 120, 131], "streamable_http": 2, "street": 2, "strengthen": 67, "strict": [13, 55, 62, 86, 126], "strictli": [99, 109, 129, 130], "string": [1, 3, 5, 26, 45, 47, 52, 57, 60, 66, 72, 73, 74, 79, 99, 101, 126, 146, 166, 167, 168], "strip": [65, 130, 146], "strive": 14, "strong": 84, "stronger": 128, "strongli": [57, 61, 67, 96, 129, 130, 131, 166], "structur": [25, 26, 45, 57, 64, 79, 99, 146], "stt_whisper2": [1, 12, 14, 86], "stuck": 139, "studio": 57, "stuff": 102, "stuttgart": 146, "style": [11, 28, 57, 156], "su": [121, 146], "sub": [6, 74, 79, 146, 159, 168], "subadmin": 86, "subdir": [86, 124], "subdirectori": [33, 130], "subdomain": [57, 66, 121, 123, 130, 148], "subfold": [30, 34, 35, 36, 90, 94, 130, 135, 146], "subgroup": 79, "subject": [25, 111, 116], "submiss": [60, 167, 168], "submissionmessag": 167, "submit": [123, 146], "submitmultipl": 167, "subnet": 57, "subpag": 158, "subpath": 99, "subreddit": [156, 157], "subscrib": 111, "subscript": [69, 86, 113, 118, 123, 131, 150, 154, 166], "subsecond": 45, "subsequ": [94, 116, 130, 142, 146], "subset": 40, "substitut": [37, 57, 76], "substr": [57, 99], "succe": [64, 99], "succeed": [14, 144], "success": [16, 17, 38, 55, 57, 64, 72, 73, 74, 79, 98, 120, 121, 123, 135, 139, 144, 146], "successfulli": [13, 38, 57, 76, 94, 102, 131, 144, 146], "suddenli": 3, "sudo": [1, 8, 14, 16, 17, 19, 20, 23, 25, 31, 37, 48, 52, 65, 70, 76, 78, 79, 81, 111, 112, 116, 118, 122, 127, 130, 133, 135, 137, 139, 142, 144, 145, 146, 147, 149, 167], "suexec": 57, "suffer": 11, "suffici": [120, 129, 130, 141], "suggest": [4, 13, 40, 57, 67, 99, 120, 128, 129, 130, 166], "suit": [25, 90, 99, 123], "suitabl": [42, 54, 56, 57, 98, 123, 166], "sum": [120, 122], "summar": [1, 5, 12, 14, 86, 114], "summari": [12, 14, 86, 113, 129, 168], "summary_bot": 8, "sun": 79, "super": [79, 83], "supersed": [57, 146], "superus": 121, "supplement": 57, "supplementari": 130, "suppli": [56, 79, 86, 111, 114, 130], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 22, 25, 27, 28, 34, 35, 38, 39, 42, 43, 47, 50, 55, 56, 59, 62, 63, 65, 67, 69, 70, 73, 74, 78, 79, 80, 86, 89, 90, 94, 95, 96, 97, 98, 99, 100, 102, 104, 111, 114, 116, 117, 118, 120, 121, 123, 125, 126, 127, 128, 129, 130, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 150, 154, 155, 156, 160, 161, 162, 163, 164, 165, 167], "supportedcalendarcomponentset": 167, "supporteddatabas": 86, "suppress": [16, 57, 86], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19, 20, 22, 23, 25, 30, 31, 35, 38, 40, 45, 55, 56, 57, 63, 65, 68, 75, 79, 81, 96, 99, 104, 108, 111, 116, 120, 121, 123, 126, 129, 130, 131, 134, 135, 139, 140, 141, 143, 145, 146, 148, 154, 160, 161, 162, 163, 164, 166, 167, 168], "surfer": 61, "surnam": 79, "surround": 57, "surveyserv": 123, "surviv": 83, "suse": 131, "suspect": 166, "suspend": 86, "suspici": [14, 54, 57], "sustain": [8, 135], "sv1b7krauqmf8qq": 130, "svg": [44, 57, 69, 126, 129, 130], "swap": [23, 26, 129], "swift": [33, 57, 86], "switch": [12, 15, 57, 75, 79, 86, 90, 112, 116, 123, 146, 151, 168], "symbol": 15, "symlink": [57, 135], "symmetr": 26, "sync": [3, 16, 19, 23, 38, 40, 42, 57, 69, 83, 86, 89, 90, 93, 94, 116, 129, 140, 143, 167], "sync_xxxxxxx": 96, "synchron": [47, 57, 62, 86, 90, 91, 92, 93, 95, 96, 104, 111, 112, 117, 125, 146, 168], "synchronis": [86, 138], "syntax": [48, 54, 57, 72, 73, 74, 79, 80, 131, 146], "sys_nic": 129, "sysadmin": 118, "syslog": [57, 86, 146], "syslog_tag": [64, 86], "syslog_tag_audit": [64, 86], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 17, 19, 20, 25, 29, 40, 41, 42, 43, 44, 45, 46, 47, 48, 52, 54, 55, 56, 57, 60, 64, 67, 70, 75, 78, 79, 83, 85, 86, 90, 91, 96, 102, 106, 109, 111, 113, 116, 117, 120, 121, 122, 124, 127, 128, 135, 139, 140, 141, 147, 155, 156, 166, 167, 168], "system_addressbook_expos": 112, "system_prompt": [5, 13], "systemctl": [14, 52, 54, 56, 120, 148, 149, 167], "systemd": [52, 57, 86, 102, 146, 149], "systempl": 147, "systemtag": [86, 167], "systemtagsmanag": 57, "systran": 7, "sysus": 79, "sysvar_innodb_large_prefix": 57, "sysvsem": [127, 162], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 19, 20, 23, 25, 28, 40, 41, 42, 49, 52, 54, 56, 57, 59, 60, 63, 74, 79, 98, 102, 111, 116, 120, 123, 126, 128, 129, 130, 134, 135, 137, 139, 140, 144, 146, 148, 154, 167], "tab": [86, 146, 168], "tabl": [3, 14, 16, 18, 19, 20, 22, 25, 26, 55, 57, 60, 79, 80, 81, 111, 112, 116, 122, 124, 135, 141, 143, 146, 156, 157, 164, 167], "tableid": 167, "tag": [6, 15, 40, 57, 86, 104, 107, 123, 126, 134, 147], "tagassignedev": 167, "tagid": 167, "tagunassignedev": 167, "tail": [4, 126, 146], "tajik": 4, "take": [3, 6, 16, 19, 23, 26, 29, 38, 44, 52, 53, 54, 55, 56, 57, 67, 78, 79, 80, 82, 83, 91, 96, 99, 100, 118, 121, 123, 126, 129, 130, 134, 139, 140, 142, 144, 145, 146, 164, 168], "taken": [3, 40, 54, 60, 67, 79, 99, 112, 146], "talk": [1, 5, 6, 7, 9, 10, 11, 12, 14, 15, 40, 56, 86, 130, 135, 155, 156, 157, 162, 168], "talk_bot": 8, "talo": 52, "tamper": 25, "tar": [57, 120, 122, 130, 139, 146], "tarbal": [118, 130, 139, 146], "target": [14, 15, 25, 26, 51, 54, 57, 79, 86, 91, 96, 123, 139, 146, 154, 167], "targetcalendardata": 167, "targetcalendarid": 167, "targetchunkuploaddur": [91, 96], "targetshar": 167, "task": [0, 3, 5, 6, 8, 10, 12, 17, 29, 54, 62, 86, 111, 117, 121, 130, 146], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 13, 14, 167], "tb": 83, "tbsua2ue86diod0s8f9j": 64, "tcp": [86, 99, 123, 126], "te": 146, "team": [15, 43, 45, 69, 86, 130, 142, 151], "team1": 74, "teamfoldernam": 45, "technic": [11, 25, 57, 79, 134, 135, 168], "techniqu": 135, "technologi": [14, 67, 130, 142], "telegu": 4, "telephonenumb": 79, "tell": [17, 23, 27, 67, 79, 135, 139], "telnet": 60, "temp": [23, 57, 96, 130], "tempdirectori": [23, 86], "temperatur": 5, "templat": [5, 19, 43, 57, 62, 83, 86, 99, 126, 147, 157], "template0": 19, "template1": [19, 143], "templatedirectori": 86, "temporari": [23, 54, 57, 62, 83, 86, 108, 146, 168], "temporarili": [55, 60, 79, 81], "tempt": 1, "ten": [37, 52, 78, 79], "tenant": [33, 114], "tenantnam": [45, 57], "term": [15, 33, 86, 146], "termin": [6, 25, 67, 122, 130, 149, 153], "terri": 146, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 25, 52, 55, 62, 71, 86, 91, 96, 98, 99, 101, 103, 104, 116, 123, 125, 126, 128, 131, 134, 135, 162, 166], "tester": 104, "testfil": 52, "testgroup": 74, "tex2image_stablediffusion2": 1, "text": [2, 3, 5, 8, 9, 11, 12, 25, 40, 44, 48, 57, 60, 62, 79, 80, 86, 104, 114, 123, 126, 130, 134, 135, 146, 148, 155, 156, 157, 162], "text2image_stablediffus": 14, "text2image_stablediffusion2": [12, 86], "text2speech_kokoro": [1, 12, 14, 86], "text2text": 13, "text_to_image_picker_en": 1, "textbas": 20, "textual": 3, "tflite": 126, "thai": 5, "than": [1, 2, 3, 5, 7, 8, 9, 15, 23, 32, 38, 40, 41, 42, 44, 45, 46, 52, 55, 56, 57, 79, 83, 86, 95, 96, 111, 114, 120, 123, 125, 127, 129, 130, 131, 134, 135, 139, 143, 146, 148, 151, 162, 164, 165, 166], "thank": [66, 166], "theft": 25, "thei": [0, 1, 2, 3, 4, 5, 8, 14, 15, 22, 24, 27, 38, 39, 40, 41, 42, 44, 47, 49, 55, 56, 57, 58, 59, 60, 68, 78, 79, 82, 83, 85, 86, 90, 93, 96, 98, 104, 105, 106, 111, 114, 116, 122, 123, 125, 129, 131, 135, 139, 146, 147, 155, 164, 166], "them": [3, 6, 7, 13, 14, 15, 19, 20, 23, 24, 25, 35, 38, 40, 44, 47, 50, 57, 60, 61, 67, 68, 79, 81, 83, 84, 90, 91, 96, 98, 104, 105, 109, 111, 116, 120, 122, 123, 126, 130, 134, 135, 139, 143, 145, 146, 147, 162, 168], "theme": [61, 62, 86, 137, 139, 143, 144, 146], "themselv": [40, 50, 54, 57, 67, 104, 146], "theori": [5, 9], "therefor": [8, 19, 23, 26, 29, 40, 44, 49, 57, 64, 79, 104, 105, 111, 112, 130, 132, 143, 145, 146, 156], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 74, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 90, 91, 92, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 111, 112, 114, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 151, 152, 154, 156, 160, 162, 163, 164, 165, 166, 167, 168], "thing": [14, 57, 78, 123, 130, 137, 143, 144, 166], "think": [33, 135], "third": [14, 15, 19, 25, 54, 76, 131, 139, 145, 146], "thisisanimportantvalu": 57, "thorough": 4, "thoroughli": 5, "those": [6, 14, 15, 22, 23, 24, 25, 29, 35, 40, 44, 45, 47, 49, 52, 57, 61, 65, 66, 67, 69, 79, 83, 96, 105, 109, 111, 120, 123, 126, 127, 131, 134, 135, 144, 145, 146, 155, 166], "though": [36, 40, 52, 56, 86, 91, 123, 126, 130, 134, 146, 162], "thousand": 135, "thread": [4, 7, 10, 14, 57, 86, 113, 135], "threat": [25, 123], "three": [8, 37, 49, 52, 54, 60, 78, 98, 99, 114, 116, 118, 125, 143, 168], "threshold": [55, 86, 92, 114], "throttl": 55, "through": [3, 8, 14, 23, 29, 37, 40, 48, 55, 57, 60, 62, 65, 66, 75, 79, 86, 90, 96, 98, 99, 106, 111, 114, 116, 120, 130, 135, 146, 150, 151, 153, 154, 166], "throughout": [26, 55, 166], "throughput": [7, 10, 57], "throw": 146, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 19, 57, 60, 90, 98, 123, 126, 130, 131, 145, 167], "thumb": 90, "thumbnail": [25, 38, 44, 57, 83], "thumbnailphoto": 79, "thunderbird": [111, 112, 116], "ti": [8, 40], "ticket": [58, 144, 145, 156, 157], "tidewai": 135, "tidi": 146, "tiff": [57, 130], "time": [2, 3, 6, 8, 13, 14, 19, 22, 23, 26, 35, 38, 40, 41, 42, 44, 46, 50, 52, 54, 55, 56, 57, 60, 64, 68, 69, 70, 79, 81, 83, 90, 91, 96, 98, 104, 108, 111, 112, 114, 115, 116, 120, 122, 123, 129, 130, 131, 139, 140, 142, 144, 145, 146, 150, 164, 166, 167, 168], "timeout": [14, 23, 33, 38, 42, 45, 56, 57, 60, 86, 91, 92, 102, 121, 126, 130, 139, 144, 146, 167], "timer": 54, "timestamp": [13, 26, 140, 146, 167], "timezon": [8, 54, 57, 64, 104, 127, 146, 167], "tip": [43, 67, 71, 86, 124, 138, 164], "titl": [1, 2, 79, 156, 167], "tl": [25, 57, 60, 67, 80, 86, 98, 99, 116, 121, 123, 124, 126, 130], "tld": [66, 67, 80, 99, 116, 121, 123, 146], "tld_fullchain": 121, "tld_privat": 121, "tls_reqcert": 79, "tmp": [3, 4, 57, 69, 90, 96, 116, 130, 146], "tmp_table_s": 19, "tmpdir": [57, 130], "tmux": 86, "to_gif_exampl": 101, "tocker": 57, "todai": 13, "togeth": [0, 2, 3, 46, 57, 131, 135], "toggl": [69, 75, 79, 86, 111, 112, 129, 135], "token": [1, 2, 29, 55, 57, 62, 71, 86, 99, 109, 146, 147, 167], "token_auth_activity_upd": 86, "token_auth_enforc": 86, "token_auth_token_retent": 70, "token_auth_wipe_token_retent": 70, "tom": 73, "toml": [66, 99], "tomorrow": 2, "too": [1, 19, 23, 35, 55, 56, 57, 96, 111, 112, 123, 130, 135, 139, 142, 146, 162], "took": 116, "tool": [5, 12, 17, 25, 26, 57, 61, 66, 67, 79, 86, 87, 96, 98, 101, 114, 123, 128, 129, 135, 145], "toolkit": 6, "tooltip": 79, "toot": [156, 157], "top": [1, 15, 37, 57, 60, 61, 67, 83, 135, 144, 145, 157], "topic": [1, 25, 42, 57, 130, 135], "topologi": 168, "total": [6, 26, 33, 57, 79, 83, 85, 146], "totalnumberofsynctokenstokeep": [111, 112], "totp": 78, "touch": [121, 139], "town": 74, "trace": [64, 129], "trace_mod": 19, "track": [96, 111, 112, 116], "traefik": 86, "traffic": [38, 55, 79, 86, 130, 148], "trai": 91, "trail": [47, 146], "train": [5, 6, 7, 9, 10, 11, 14, 54, 57], "transact": [23, 43, 56, 62, 86, 124, 127, 131, 135, 137], "transaction_isol": 19, "transaction_read_commit": 19, "transcrib": [2, 14, 157], "transcript": [1, 7, 10, 12, 14, 86], "transfer": [34, 43, 57, 86, 126, 129, 134, 139], "transferincomingshar": [86, 146], "transient": 129, "transifex": 63, "transit": [57, 130, 135], "translat": [12, 24, 86, 113, 127, 157], "translate2": [1, 12, 14, 86], "transmit": 123, "transp": 167, "transpar": [14, 26], "transport": [2, 62, 79, 86, 96, 99, 114, 126, 131], "trash": [25, 26, 38, 43, 62, 83, 86, 91, 113, 116, 146], "trashbin": [40, 46, 57, 86, 135], "trashbin_retention_oblig": [46, 86], "trashcan": 37, "treat": [57, 66, 67, 79, 135], "tree": [1, 2, 79, 86], "tremend": 96, "tri": [90, 123, 125], "trick": [71, 86, 124, 164], "trigger": [16, 37, 49, 54, 55, 57, 64, 74, 79, 86, 91, 112, 116, 134, 135, 144, 146, 162, 167, 168], "triplecheck": 154, "trojan": 52, "troubl": [79, 135, 162], "troubleshoot": [12, 18, 43, 57, 62, 71, 86, 93, 113, 123, 124, 129, 138, 145, 150], "true": [3, 13, 14, 15, 17, 19, 20, 25, 28, 38, 45, 49, 57, 60, 63, 66, 68, 72, 73, 74, 80, 82, 83, 85, 95, 96, 104, 114, 116, 123, 126, 130, 135, 137, 145, 146, 149, 167], "truena": [86, 124], "truncat": [26, 57], "trust": [25, 43, 55, 57, 62, 65, 75, 86, 90, 114, 123, 124, 146], "trusted_domain": [38, 86, 125, 146, 162], "trusted_proxi": [55, 66, 86], "trustedcafil": 99, "try": [2, 22, 25, 55, 56, 57, 60, 61, 67, 79, 96, 98, 99, 104, 116, 126, 128, 131, 134, 135, 139, 143, 144, 146, 154, 160, 166], "try_fil": 126, "trystack": 57, "ttf": 126, "ttl": [19, 60, 86], "tue": 60, "tune": [5, 86, 123, 124, 126, 127, 130], "tunisian": 4, "tunnel": [98, 99, 100], "turkish": 4, "turn": [23, 48, 57, 68, 80, 86, 91, 114, 130, 144, 146, 166, 168], "turnkei": [127, 130], "turnoffcertcheck": 80, "turnonpasswordchang": 80, "tutori": [117, 120, 121], "tweak": [20, 79], "tweet": 58, "twice": [57, 79, 126], "twitter": [74, 75, 79], "two": [3, 4, 17, 23, 25, 33, 38, 44, 46, 52, 53, 54, 55, 56, 57, 64, 66, 70, 71, 81, 83, 86, 96, 98, 99, 111, 116, 123, 130, 144, 145, 166, 167, 168], "twofactor_totp": 146, "twofactorauth": [78, 146], "txt": [25, 47, 57, 68, 126, 128, 129, 146], "type": [1, 2, 3, 10, 13, 14, 15, 18, 20, 22, 23, 25, 38, 39, 40, 43, 44, 45, 52, 54, 55, 60, 62, 65, 68, 70, 72, 78, 83, 85, 86, 91, 99, 100, 104, 112, 113, 114, 116, 122, 123, 126, 129, 135, 139, 145, 146, 149, 156, 160, 162, 165, 167, 168], "typic": [25, 54, 56, 57, 79, 87, 96, 111, 116, 122, 125, 135, 140, 166], "u": [1, 2, 8, 13, 14, 16, 17, 19, 20, 23, 25, 31, 37, 45, 48, 49, 52, 54, 56, 57, 65, 69, 70, 76, 78, 79, 81, 90, 102, 111, 112, 116, 118, 121, 127, 130, 133, 135, 137, 139, 140, 143, 144, 145, 146, 162, 167, 168], "ubo": 57, "ubuntu": [19, 25, 31, 48, 52, 56, 69, 79, 81, 86, 90, 118, 124, 130, 131, 137, 139, 142, 145, 146, 148, 150, 151], "uc": 130, "udp": 60, "ui": [14, 55, 57, 80, 83, 89, 91, 94, 98, 100, 101, 114, 135, 144, 145, 146], "uid": [26, 78, 79, 80, 81, 116, 146, 167], "uid1": 146, "uid2": 146, "uidn": 146, "ukrainian": 4, "ultim": 55, "umask": 86, "un": [8, 25, 38], "unabl": [45, 57, 60, 63, 79, 86, 92, 146], "unaffect": [57, 92], "unansw": 114, "unauthent": 40, "unauthor": [25, 154], "unavail": [3, 37, 48, 57, 78, 99, 127, 146], "unban": 123, "uncheck": [36, 79], "unclear": [7, 10], "uncom": [56, 126, 130], "unconfigur": 45, "undefin": [2, 57], "under": [1, 2, 5, 6, 7, 10, 14, 15, 19, 37, 44, 47, 50, 54, 55, 56, 57, 60, 64, 66, 75, 78, 79, 87, 92, 96, 98, 120, 125, 126, 127, 130, 134, 135, 145, 150, 154, 162, 166], "undergo": 91, "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 47, 55, 57, 60, 127, 130], "underscor": [28, 45, 83, 146], "undershoot": 57, "understand": [1, 8, 11, 13, 25, 53, 57, 132, 135], "undertak": 6, "underutil": 130, "undesir": 57, "undetect": 135, "undo": 83, "unencrypt": [25, 60, 83, 86], "unencrypted_s": 135, "unevenli": [7, 10], "unexpect": [56, 57, 135, 154, 166], "unexpectedli": 57, "unexplain": 130, "unfavor": 162, "unforeseen": 140, "unfortun": 54, "unicod": [57, 135], "unicodepwd": 79, "unifi": [1, 57, 153], "unified_search": 86, "uninstal": [3, 4, 86, 124, 128], "unintend": 91, "uniqu": [45, 57, 58, 61, 79, 83, 98, 99, 100, 101, 123, 135, 146], "uniquememb": [79, 80], "unison": 96, "unit": [14, 54, 114, 146, 167], "univent": 130, "unix": [13, 42, 52, 57, 79, 86, 104, 105, 126, 131], "unix_domain_socket": 99, "unixpath": 99, "unixsocketperm": 56, "unknown": [73, 74, 86], "unless": [25, 26, 28, 45, 52, 55, 57, 60, 79, 90, 99, 114, 127, 130, 135, 146], "unlik": [56, 96], "unlimit": [23, 57], "unlink_on_trunc": 86, "unlock": 25, "unnecessari": [17, 44, 57, 79, 123], "unnecessarili": 54, "unoffici": 142, "unpack": [118, 122, 130, 139, 146], "unpredict": 25, "unreach": 79, "unrecover": 25, "unregist": [8, 86, 103], "unreli": [57, 96, 114], "unrequir": 134, "unscan": [35, 57, 86, 146], "unseal": 86, "unselect": 28, "unset": [57, 79], "unshar": 116, "unsign": 146, "unspecifi": [53, 57], "unstabl": 146, "unsuccess": 57, "unsuccessfulli": 13, "unsupport": [28, 44, 57, 145, 154, 156], "unsur": [3, 23, 126], "unsync": 90, "unsyncedfold": 90, "until": [1, 6, 14, 25, 41, 46, 49, 52, 55, 57, 64, 79, 83, 91, 96, 101, 122, 123, 129, 143, 145, 146, 162, 165, 166], "untouch": 146, "untrust": 123, "unus": [57, 70, 102, 163], "unusu": [1, 129], "unwant": [116, 129, 135], "unzip": [120, 122, 139], "up": [0, 1, 2, 3, 5, 13, 14, 16, 17, 19, 23, 25, 29, 46, 49, 52, 53, 54, 55, 56, 57, 59, 62, 69, 75, 78, 79, 83, 86, 94, 98, 102, 111, 113, 116, 119, 123, 124, 125, 129, 131, 132, 135, 139, 140, 143, 146, 149, 159, 160, 162, 164, 166], "upcom": [58, 111, 166], "updat": [2, 3, 4, 13, 16, 17, 18, 24, 25, 27, 40, 45, 48, 52, 54, 56, 59, 60, 67, 68, 73, 74, 79, 80, 86, 103, 111, 112, 114, 120, 122, 123, 124, 126, 127, 130, 131, 134, 138, 139, 141, 142, 143, 146, 147, 149, 150, 162, 164, 166, 168], "updatecheck": 86, "updatedirectori": 86, "updatenotif": 15, "updater_serv": 57, "upgrad": [20, 27, 48, 60, 66, 67, 86, 121, 122, 129, 134, 135, 138, 141, 148, 150, 159], "upload": [25, 38, 40, 42, 43, 45, 52, 57, 61, 79, 83, 86, 91, 92, 96, 105, 107, 108, 114, 121, 127, 134, 135, 140, 142, 148, 162, 164, 165], "upload_max_files": [23, 121, 130], "upload_tmp_dir": [23, 127], "uploadparts": [45, 57], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 79, 81, 123, 130, 135, 142], "upostgr": 19, "upper": 84, "upscal": [44, 45, 101], "upscaler_exampl": 101, "upstream": [126, 131], "urandom": [62, 86], "urg": 141, "urgent": [2, 58], "uri": [57, 66, 79, 114, 116, 126, 135, 146, 167], "url": [2, 3, 8, 15, 30, 32, 33, 35, 36, 38, 45, 51, 54, 56, 60, 61, 64, 65, 66, 67, 69, 72, 73, 74, 77, 79, 80, 83, 85, 86, 89, 90, 94, 98, 99, 100, 101, 104, 111, 120, 121, 122, 124, 125, 126, 129, 133, 135, 144, 146, 147, 148, 152, 154, 162], "url_discoveri": 66, "urlencod": 85, "urltyp": [45, 57], "urn": [57, 167], "uroot": 19, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 41, 42, 43, 44, 45, 48, 50, 51, 52, 53, 54, 55, 58, 61, 62, 63, 64, 65, 66, 68, 69, 71, 74, 75, 76, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 105, 108, 109, 111, 112, 115, 116, 118, 120, 121, 122, 124, 125, 126, 127, 128, 130, 131, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 145, 148, 151, 152, 153, 154, 155, 156, 160, 163, 164, 165, 166, 167, 168], "usag": [4, 5, 7, 10, 12, 25, 26, 43, 52, 54, 57, 62, 64, 70, 79, 86, 87, 123, 127, 129, 143, 146, 154, 166], "use_legacy_base64_encod": 86, "use_path_styl": 45, "use_ssl": [45, 57], "useappapiauth": 168, "usememberoftodetectmembership": 80, "usemultipartcopi": 45, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 21, 23, 24, 28, 29, 30, 31, 33, 35, 36, 38, 41, 42, 43, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 68, 69, 70, 73, 75, 76, 78, 80, 89, 90, 91, 93, 94, 96, 99, 100, 101, 105, 106, 108, 109, 111, 113, 115, 116, 117, 118, 120, 121, 122, 123, 125, 126, 127, 128, 130, 131, 132, 134, 137, 140, 142, 143, 144, 145, 147, 150, 154, 155, 161, 162, 166, 167, 168], "user1": 40, "user123": 116, "user2": 40, "user_directori": 146, "user_id": 146, "user_ini_additional_lin": 86, "user_ldap": [79, 80, 81, 146], "user_oidc": 82, "user_prompt": 5, "user_scope_dis": 106, "userag": 64, "userdeletedev": 146, "userdirectori": 37, "userid": [2, 13, 25, 74, 79, 94, 116, 135, 167, 168], "useridfilt": 13, "usermod": [56, 130], "usernam": [3, 17, 19, 26, 29, 30, 33, 35, 36, 37, 38, 40, 45, 53, 55, 57, 60, 74, 76, 79, 80, 83, 90, 94, 96, 112, 120, 122, 125, 130, 135, 137, 142, 143, 146], "userpassword": 79, "usr": [52, 54, 56, 57, 60, 99, 121, 130, 146, 149], "usual": [3, 5, 7, 9, 10, 14, 22, 35, 40, 44, 45, 51, 55, 56, 57, 60, 61, 79, 98, 123, 127, 130, 132, 133, 134, 135, 139, 145, 146, 162, 166], "utc": [54, 57, 115, 146], "utf": 68, "utf8": [19, 57, 121, 131, 143], "utf8mb4": [17, 19, 20, 22, 86, 122, 137, 143], "utf8mb4_0900_as_ci": 57, "utf8mb4_bin": [19, 57], "utf8mb4_general_ci": [20, 122, 143], "util": [6, 8, 50, 57, 64, 116, 120, 146, 166], "uuid": [79, 80, 146], "uusernam": 19, "uz": 87, "uzbek": 4, "v": [8, 14, 26, 35, 52, 86, 99, 103, 126, 127, 135, 146, 167], "v1": [3, 15, 57, 64, 65, 72, 73, 74, 80, 85, 116, 129, 144], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 28, 33, 45, 57, 80], "v27": [139, 145], "v28": [14, 139, 145], "v3": [2, 5, 7, 9, 11, 45, 57], "v4": [28, 104], "v6": 104, "v9": 25, "valid": [19, 47, 57, 63, 67, 71, 79, 80, 86, 96, 126, 134, 146, 148, 162], "valu": [1, 3, 8, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26, 38, 40, 41, 42, 44, 45, 46, 49, 52, 54, 56, 58, 60, 63, 64, 65, 66, 68, 69, 70, 73, 74, 75, 79, 80, 81, 83, 86, 89, 91, 92, 94, 95, 98, 99, 100, 101, 106, 111, 112, 114, 115, 116, 122, 123, 129, 130, 132, 135, 140, 162, 164, 165, 167], "value1": 57, "value2": 57, "vanish": 116, "var": [15, 19, 20, 23, 49, 52, 54, 57, 64, 76, 79, 81, 95, 96, 99, 100, 111, 118, 120, 121, 122, 123, 126, 127, 128, 130, 132, 135, 139, 144, 145, 146], "vari": [3, 4], "variabl": [3, 4, 5, 8, 19, 20, 26, 43, 55, 56, 62, 67, 86, 91, 93, 96, 101, 103, 123, 131, 167, 168], "variable_nam": [19, 20], "variant": 52, "varieti": [1, 68, 168], "variou": [1, 14, 44, 49, 52, 55, 57, 61, 64, 67, 78, 79, 93, 96, 129, 135, 146, 147, 150, 152, 155], "vboxsf": 130, "vcard": [112, 126], "vcf": 112, "ve": [116, 129, 159, 166], "vector": [3, 26, 48, 123, 165], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 166, "vendor": 129, "verbos": [52, 64, 90, 96, 129, 146], "veri": [4, 37, 49, 54, 55, 56, 57, 61, 79, 96, 135, 144, 146, 168], "verif": [55, 60, 62, 86, 116, 134, 146], "verifi": [8, 19, 20, 38, 51, 52, 54, 56, 57, 61, 81, 96, 98, 102, 114, 120, 122, 123, 128, 129, 133, 134, 139, 141, 144, 146, 154, 162, 166], "verify_bucket_exist": 45, "verify_p": 60, "verify_peer_nam": [56, 60], "version": [2, 3, 6, 7, 8, 10, 11, 14, 19, 20, 21, 23, 25, 26, 27, 29, 30, 43, 45, 46, 52, 54, 56, 60, 62, 64, 69, 70, 72, 73, 74, 79, 80, 83, 86, 98, 101, 111, 112, 114, 115, 116, 120, 121, 122, 123, 126, 127, 129, 130, 133, 134, 139, 140, 141, 142, 144, 145, 148, 150, 152, 157, 165, 168], "version_timestamp": 26, "versions_retention_oblig": [41, 86], "versionstr": 146, "vf": 94, "vhd": 130, "vhdx": 130, "vhost": 135, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 24, 37, 40, 41, 43, 45, 46, 52, 54, 55, 56, 57, 60, 62, 65, 66, 69, 71, 78, 81, 82, 83, 84, 85, 86, 94, 96, 97, 99, 104, 111, 114, 116, 118, 123, 124, 126, 127, 129, 132, 133, 135, 138, 140, 145, 146, 147, 149, 156, 162, 163, 164, 165, 166, 167, 168], "video": [2, 14, 44, 57, 86, 127, 131, 156, 157], "vietnames": 4, "view": [1, 4, 15, 17, 55, 57, 64, 83, 86, 96, 135, 146, 150], "viewer": [57, 64], "virtual": [2, 45, 57, 86, 99, 123, 124, 129, 132, 140], "virtualbox": 130, "virtualhost": [120, 121, 123, 130, 148], "viru": [52, 96], "virus": 52, "virus_db": 52, "visibl": [3, 14, 37, 49, 66, 75, 79, 102, 115, 135, 143, 146, 162, 163, 164, 165, 166, 167], "visible\u00b9": 146, "visio": 150, "visit": [54, 104, 114, 117, 120, 130, 142, 144, 145, 168], "visitor": 123, "vm": [129, 130, 145], "vmdk": 130, "vmp": 130, "vmware": 130, "vnd": 126, "vo": 121, "volum": [4, 52, 57, 90, 101, 131], "volunt": 166, "vosk": 4, "vp": [86, 124], "vpn": 99, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 98], "vtt": 126, "vulkan": 3, "vulner": [123, 166], "vv": 146, "vvv": [116, 135, 146], "w": [25, 121, 123, 148, 153], "wa": [7, 8, 10, 13, 14, 17, 25, 40, 47, 54, 55, 57, 64, 69, 74, 79, 91, 98, 108, 112, 114, 115, 116, 127, 130, 134, 135, 140, 141, 142, 143, 144, 145, 146, 162, 163, 164, 165, 168], "wai": [1, 7, 14, 19, 22, 29, 38, 40, 45, 52, 54, 55, 57, 60, 61, 65, 76, 79, 96, 98, 99, 104, 111, 123, 126, 130, 135, 139, 143, 144, 145, 146, 151, 163, 164, 165], "wait": [4, 8, 57, 101, 140, 145, 166, 168], "wait_timeout": [19, 57], "wal": 57, "walk": [120, 130], "want": [5, 6, 7, 14, 15, 17, 19, 23, 28, 31, 37, 38, 40, 42, 44, 45, 48, 49, 52, 53, 55, 56, 57, 59, 60, 63, 66, 69, 79, 81, 82, 83, 89, 93, 96, 98, 99, 102, 106, 112, 114, 117, 120, 121, 123, 125, 128, 129, 130, 131, 132, 133, 134, 135, 144, 145, 146, 148, 154, 155, 159, 165, 166, 167, 168], "wantedbi": [14, 54, 167], "wapp_us": 168, "warn": [4, 25, 56, 57, 62, 64, 78, 79, 86, 96, 120, 123, 126, 129, 130, 134, 135, 141, 142, 146, 154, 164], "wasm": 126, "watch": 146, "watermark": 147, "watsonx": [1, 8, 12, 14, 86], "watt": 2, "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 17, 19, 22, 23, 35, 36, 37, 41, 44, 54, 57, 60, 67, 79, 86, 96, 99, 109, 116, 120, 121, 123, 125, 126, 127, 129, 130, 135, 141, 145, 146, 148, 150, 154, 162, 164, 166, 167, 168], "weaken": 61, "weather": [2, 13, 123], "web": [2, 5, 7, 9, 10, 11, 15, 25, 36, 38, 40, 43, 54, 55, 56, 61, 62, 63, 66, 69, 76, 80, 83, 86, 96, 98, 102, 114, 116, 117, 120, 121, 122, 124, 125, 126, 127, 129, 136, 138, 139, 140, 145, 146, 153, 168], "webauthn": 86, "webcal": [57, 146], "webcalallowlocalaccess": 111, "webcron": [37, 49, 86, 146], "webdav": [23, 32, 37, 57, 67, 72, 79, 86, 96, 116, 123, 126, 130, 136, 146], "webdavf": 57, "webfing": [121, 135], "webhook": [86, 168], "webhook_listen": [167, 168], "webhookcal": 167, "webhooklisten": 167, "webinterfac": 126, "webm": 126, "webmail": 128, "webp": [57, 126, 129, 130, 163], "webp_qual": 129, "webpag": 126, "webroot": [8, 57, 66, 86, 124], "webserv": [23, 24, 54, 56, 66, 86, 120, 123, 126, 130, 131, 151, 165], "websit": [13, 51, 61, 67, 74, 75, 79, 123, 135], "websocket": [62, 86, 98, 148], "webspac": 130, "week": [2, 41, 49, 52, 166], "weekli": 49, "weight": 57, "welcom": [86, 117, 146], "well": [0, 1, 2, 3, 4, 5, 6, 14, 26, 40, 44, 51, 52, 55, 56, 57, 60, 62, 66, 79, 83, 86, 92, 116, 120, 121, 126, 128, 129, 130, 132, 135, 139, 140, 142, 144, 146, 154, 159, 166, 167, 168], "went": [139, 146], "were": [2, 13, 17, 25, 38, 57, 60, 64, 91, 115, 127, 134, 135, 144, 145, 146, 162], "west": [28, 45], "wget": [120, 122, 133, 149, 162], "what": [2, 13, 23, 28, 37, 42, 45, 53, 55, 57, 59, 64, 67, 79, 81, 83, 86, 96, 98, 99, 117, 123, 129, 135, 138, 146, 168], "whatev": [17, 40, 57, 126], "whatsoev": [26, 29], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 17, 19, 23, 25, 26, 29, 30, 32, 35, 37, 38, 40, 41, 42, 45, 46, 48, 49, 52, 53, 54, 55, 56, 57, 60, 63, 64, 66, 67, 68, 69, 78, 79, 80, 82, 83, 86, 89, 91, 92, 94, 97, 98, 99, 104, 105, 108, 111, 112, 114, 116, 120, 122, 123, 125, 126, 127, 128, 129, 130, 132, 134, 135, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 154, 156, 162, 165, 166, 167, 168], "when_requir": [57, 165], "when_support": 57, "whenev": [40, 129, 135, 166], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 19, 25, 26, 27, 29, 35, 52, 54, 55, 56, 57, 60, 64, 79, 86, 90, 94, 96, 98, 99, 111, 114, 120, 122, 123, 130, 132, 133, 135, 139, 141, 144, 146, 154, 155, 166, 168], "wherev": 93, "whether": [2, 3, 5, 6, 7, 9, 10, 11, 19, 57, 60, 78, 80, 83, 91, 94, 98, 104, 114, 123, 126, 132, 146, 166], "which": [1, 2, 3, 5, 7, 8, 14, 15, 17, 19, 22, 23, 25, 26, 28, 29, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 52, 54, 55, 56, 57, 58, 60, 61, 64, 65, 66, 67, 68, 69, 70, 74, 75, 78, 79, 80, 83, 91, 96, 98, 99, 100, 102, 104, 109, 114, 116, 117, 120, 121, 123, 126, 127, 128, 129, 130, 131, 134, 135, 140, 142, 144, 145, 146, 147, 149, 151, 155, 156, 164, 165, 166, 168], "whichev": 57, "while": [1, 11, 14, 16, 25, 44, 45, 50, 52, 55, 57, 79, 104, 116, 123, 129, 130, 140, 142, 144, 145, 146, 166, 167], "whisper": [12, 14, 86, 157], "whitelist": [15, 55, 125], "whitespac": 146, "who": [3, 13, 25, 28, 31, 35, 40, 57, 79, 112, 117, 118, 135, 146], "whole": [36, 86, 98, 99, 111, 116, 120, 124, 143], "whom": 168, "whose": [146, 167], "why": [61, 86, 116, 146], "wide": [25, 78, 123, 146], "widenetworkaddress": 99, "wider": 98, "widespread": 166, "widget": [58, 155, 156], "width": 57, "wiki": [57, 130, 142], "wikipedia": 57, "wildcard": [57, 90, 146], "win": 52, "windmil": 86, "window": [14, 35, 43, 52, 57, 79, 83, 86, 90, 91, 93, 94, 95, 96, 117, 124, 131, 164, 167], "wipe": 70, "wise": 116, "wish": [19, 25, 34, 50, 56, 57, 64, 83, 96, 111, 125, 168], "within": [19, 26, 29, 40, 47, 51, 55, 57, 64, 66, 67, 79, 91, 96, 100, 111, 112, 123, 126, 127, 131, 132, 134, 135, 139, 146, 166], "without": [4, 6, 14, 24, 25, 26, 37, 40, 41, 46, 49, 50, 52, 54, 55, 57, 65, 67, 68, 70, 79, 83, 86, 89, 95, 97, 98, 99, 100, 105, 111, 112, 114, 123, 125, 127, 130, 135, 142, 143, 144, 145, 146, 150, 151, 156, 160, 162, 163], "wizard": [19, 38, 57, 60, 80, 86, 89, 94, 118, 120, 121, 124, 146], "woff2": 126, "won": [14, 40, 57, 79, 111, 146], "wopi": [86, 148, 149, 154], "word": [7, 48, 127], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 20, 25, 29, 35, 37, 40, 42, 47, 49, 54, 57, 60, 61, 62, 63, 66, 67, 76, 77, 78, 79, 83, 86, 89, 94, 96, 98, 101, 104, 105, 109, 111, 121, 123, 126, 127, 128, 129, 130, 132, 133, 135, 139, 141, 142, 144, 145, 146, 151, 154, 155, 160, 168], "workaround": [23, 25], "worker": [0, 3, 14, 56, 167], "workflow": [62, 86, 105], "workflowengin": [64, 106], "workload": [42, 98, 146], "workspac": [62, 86], "workspace_avail": 68, "world": [1, 4, 5, 7, 9, 10, 99, 166], "worm": 52, "worri": 3, "wors": 57, "worst": [14, 96], "worthi": 55, "would": [5, 13, 14, 15, 19, 22, 25, 37, 44, 50, 54, 55, 57, 64, 66, 79, 90, 92, 98, 99, 102, 111, 112, 116, 126, 135, 140, 141, 143, 144, 146, 152, 162, 167], "wrapper": [60, 146], "writabl": [15, 31, 47, 57, 130, 144, 146], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 21, 56, 57, 60, 65, 79, 86, 95, 96, 114, 120, 124, 130, 134, 144, 146], "writeabl": [15, 123], "written": [3, 26, 27, 57, 64, 75, 94, 98, 112, 116, 123, 125, 140, 146], "wrong": [13, 25, 40, 77, 134, 135, 139, 141, 146, 154, 168], "wsdlcach": 126, "wss": [4, 148], "wurst": 116, "www": [1, 8, 14, 16, 17, 20, 23, 25, 31, 37, 48, 49, 51, 52, 53, 54, 56, 57, 64, 65, 70, 76, 78, 79, 81, 85, 111, 112, 116, 118, 120, 121, 122, 123, 126, 127, 128, 130, 132, 133, 135, 137, 139, 141, 144, 145, 146, 149, 151, 167, 168], "wwwhomepag": 79, "wwwrun": [54, 146], "wysiwyg": 150, "w\u00fcrzburg": 2, "x": [6, 23, 35, 44, 48, 57, 61, 66, 72, 73, 74, 79, 80, 85, 99, 104, 120, 122, 123, 125, 126, 135, 141, 146, 165, 166], "x11": 64, "x86": [4, 6, 11, 129], "x86_64": [3, 4, 5, 7, 9, 10, 11, 64, 90], "xbitmap": 57, "xcal": 146, "xeon": [7, 10], "xeu": [14, 167], "xhtml": 126, "xjf": 139, "xjvf": 122, "xl": [14, 150], "xlii": 80, "xloc": 126, "xlsx": 150, "xml": [57, 86, 101, 116, 122, 126, 127, 146, 147, 149, 152, 167], "xmlreader": 127, "xmlwriter": 127, "xoauth2": [60, 86, 113], "xss": 165, "xtradbinnodb": 57, "xxx": 26, "xxxxxxxxxx": 45, "y": [16, 44, 57, 64, 79, 81, 120, 122, 123, 137, 139, 144, 145], "ye": [14, 35, 40, 57, 69, 79, 80, 83, 94, 106, 111, 115, 135, 141, 146, 154], "year": [70, 131, 166], "yellow": [14, 37, 38, 79, 86], "yet": [1, 14, 50, 57, 62, 65, 79, 86, 134, 140, 157], "yield": 57, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 23, 24, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 75, 76, 77, 78, 79, 81, 82, 83, 84, 86, 89, 90, 91, 93, 94, 95, 96, 98, 99, 101, 102, 104, 105, 106, 108, 111, 112, 114, 116, 118, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 154, 159, 162, 163, 164, 165, 166, 167, 168], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 42, 43, 45, 47, 48, 50, 51, 52, 54, 55, 56, 57, 60, 61, 62, 63, 64, 65, 66, 68, 69, 75, 76, 77, 78, 79, 81, 82, 83, 84, 86, 93, 95, 96, 97, 98, 99, 102, 104, 109, 111, 114, 115, 118, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 152, 154, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [116, 154], "yourself": [5, 52, 123, 146], "yourserv": 96, "yourswifthost": 57, "youtub": [2, 117], "yum": [52, 120], "yyyi": 79, "yyyymmdd": 79, "z": [83, 120, 122, 123, 139, 145], "z0": 79, "za": 79, "zammad": [156, 157], "zend": 56, "zero": 26, "zip": [83, 96, 104, 120, 122, 127, 139], "zlib": 127, "zone": [115, 120], "zsh": 146, "zshrc": 146, "\u00b2": 146, "\u00b9": 146}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "Configuring External Storage (GUI)", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Automatic setup", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for apps", "Instruction set for groups", "Instruction set for users", "Profile configuration", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Command-line Account Setup", "Command Line Client", "Configuration File", "Environment Variables", "Desktop Clients", "Mass Deployment And Account Creation", "Options", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "GDPR-compliance", "Calendar / CalDAV", "Contacts / CardDAV", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Installing from command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 22.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Using the occ command", "Configuration", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [74, 83], "04": [122, 149], "1": 66, "10": 126, "11": 51, "12": 51, "1st": [130, 142], "2": [11, 66, 120, 129], "2006": 19, "2024": 87, "2025": 87, "2026": 87, "22": 122, "24": 149, "26": 160, "27": 161, "28": 162, "30": 163, "31": 164, "32": 165, "3rdparti": 135, "4": 20, "502": 126, "512mb": 23, "64bit": 16, "8": [120, 121], "And": 94, "Not": [25, 134], "The": [55, 65, 67, 80, 157, 168], "To": [1, 7, 10, 14], "__host": 67, "about": 52, "abov": 51, "abus": 114, "access": [3, 19, 65, 67, 104, 123, 126, 128, 147], "accessible_featur": 57, "account": [89, 94, 114, 116], "account_manag": 57, "action": [6, 105, 123], "activ": [49, 55, 57, 79, 163, 164, 165], "ad": [37, 114], "add": [65, 74, 134, 146, 149], "addendum": 5, "addit": [56, 79, 100, 130, 147], "address": [55, 60, 112, 123, 146, 161, 165], "addressbook": 146, "adjust": 23, "admin": [64, 67, 76, 123], "admin_audit": 64, "administr": [50, 79, 83, 112], "advanc": [40, 79, 97, 101], "advantag": 131, "after": [135, 143], "ag": [41, 108], "agent": [1, 2], "ai": [0, 1, 6, 8, 11, 14], "aio": [99, 100], "ajax": 54, "alarm": 111, "alert": 114, "alias": 48, "all": [25, 53, 57, 60, 99, 123, 146], "allow": [37, 67, 111, 128], "allow_custom_share_fold": 57, "allow_disabled_password_enforcement_group": 57, "allow_local_remote_serv": 57, "allow_user_to_change_display_nam": 57, "allowed_admin_rang": 57, "allowed_no_password_confirmation_rang": 57, "allowed_user_ag": 57, "allowselfsignedcertif": 57, "allowsymlink": 57, "altern": [5, 7, 57], "amazon": 28, "an": [60, 65, 67, 72, 82, 146], "android": 51, "ani": 126, "anoth": 40, "anti": 114, "antiviru": [52, 146], "anymor": 134, "apach": [23, 120, 130, 148], "apache2": 66, "apcu": 56, "api": [15, 80, 85], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 25, 49, 52, 55, 57, 58, 60, 64, 68, 70, 72, 86, 98, 129, 131, 133, 134, 135, 146, 147, 148, 163, 164], "app_api": [163, 164, 165], "appapi": [98, 163, 164, 165], "appcodecheck": 57, "appdata": 146, "appear": [69, 156], "appli": 133, "applic": [65, 127], "approach": 145, "approv": 168, "apps_path": 57, "appsallowlist": 57, "appstoreen": 57, "appstoreurl": 57, "ar": 67, "architectur": 131, "archiv": 96, "argument": [100, 101], "around": 19, "arrai": 146, "artifici": [2, 12], "ask": [14, 154], "assetlink": 51, "assign": 105, "assist": 1, "attach": 114, "attempt": 57, "attribut": 79, "audienc": 117, "audit": 64, "auth": 57, "auth_availability_delai": 57, "authent": [29, 35, 70, 78, 79, 82, 114, 146, 168], "author": 60, "auto": 3, "auto_logout": 57, "autocomplet": 146, "autoconfig": 116, "autom": [70, 105, 163], "automat": 53, "avail": [37, 104, 105], "avatar": 79, "avoid": 126, "awai": 19, "azur": [45, 114], "backend": [14, 25, 37, 57, 111], "background": [41, 46, 52, 54, 79, 111, 114, 129, 130, 146], "backtrac": 57, "backup": [25, 45, 79, 137, 143], "bad": [25, 126], "balanc": 55, "bare": 99, "base": [29, 56, 129, 144], "basic": 96, "batch": 144, "bearer": 82, "befor": [25, 40], "below": 51, "beta": 166, "better": 49, "between": [40, 168], "beyond": 60, "big": 23, "bigint": 16, "bin": [46, 57, 111], "binary_search_path": 57, "birthdai": [111, 146], "blob": 45, "block": [26, 104, 168], "blog": 117, "book": [112, 146, 161, 165], "bot": 8, "brand": 69, "breakdown": 64, "browser": 131, "brute": 55, "bruteforc": 57, "bucket": 45, "bug": [135, 166], "build": 168, "built": 144, "bulkupload": 57, "button": 111, "byte": 20, "c": 45, "cach": [56, 57, 67, 79, 127, 129], "cache_app_config": 57, "cache_chunk_gc_ttl": 57, "cache_path": 57, "caddi": 66, "caldav": [67, 111], "calendar": [2, 111, 116, 135, 146], "can": [19, 60, 157, 168], "candid": 166, "cannot": 25, "canon": 147, "capabl": 60, "carddav": [67, 112], "carddav_sync_request_timeout": 57, "carddav_sync_request_trunc": 57, "cento": 120, "certif": [37, 60, 79, 87], "chang": [38, 59, 135, 159], "changelog": 159, "channel": [57, 166], "chat": [1, 3, 8, 14], "check": [26, 27, 67, 102, 146, 162, 165], "check_data_directory_permiss": 57, "check_for_working_htaccess": 57, "check_for_working_wellknown_setup": 57, "choic": 125, "chroot": 121, "chunk": [23, 164], "chunked_upload": 57, "cif": [35, 128], "cipher": 57, "circl": 2, "clamav": 52, "clean": [70, 163], "cleanup": [81, 146], "cli": [57, 69, 100, 127], "client": [69, 90, 93, 96, 131, 143], "close": 96, "cloud": [23, 57, 135], "clue": 126, "cluster": [56, 57], "code": [57, 134, 146], "collabor": 108, "collabora": [147, 148, 152], "collat": 57, "com": 116, "combin": 2, "command": [3, 15, 19, 25, 47, 55, 89, 90, 96, 112, 118, 144, 146], "comment": [57, 129], "commit": [19, 67], "common": [104, 108, 135], "commun": 99, "comparison": 25, "compat": [47, 146], "complianc": 110, "compress": 129, "condit": 57, "config": [56, 57, 60, 96, 123, 146], "config_is_read_onli": 57, "configur": [1, 3, 5, 18, 19, 23, 37, 38, 44, 45, 49, 51, 52, 53, 56, 57, 58, 60, 61, 62, 64, 67, 69, 75, 79, 80, 86, 91, 99, 106, 114, 123, 124, 126, 127, 128, 130, 146, 147, 148, 149, 152, 160, 161, 162, 163, 164, 165], "confirm": 52, "connect": [56, 79, 82, 96, 116, 123], "connectivity_check_domain": 57, "connector": 127, "consequ": 47, "consider": [29, 65], "consumpt": 87, "contact": [2, 112, 116, 135], "contain": [99, 102], "content": 86, "context": [1, 2, 3, 14], "context_ag": 2, "control": [3, 41, 104], "convers": [17, 39, 146], "convert": 17, "cookbook": 2, "cooki": [67, 109], "cookie_domain": 57, "copied_sample_config": 57, "core": [57, 96], "correct": 168, "count": [163, 164, 165], "cpu": 131, "creat": [19, 38, 40, 51, 73, 80, 83, 96, 146, 168], "creation": [94, 146], "credenti": 90, "critic": 159, "cron": [54, 121, 129], "csrf": 57, "css": 126, "csync": 96, "current": 2, "custom": [2, 15, 111, 147], "customclient_desktop": 57, "daemon": [98, 99, 100, 102], "dashboard": 58, "data": [3, 25, 45, 53, 57, 73, 74, 111, 112, 116, 123, 125, 135, 143], "databas": [17, 18, 19, 22, 53, 57, 67, 116, 120, 121, 125, 127, 128, 131, 137, 143, 146, 164], "datadirectori": [57, 135], "date": 40, "dav": [146, 160], "davstorag": 57, "db": 57, "dbdriveropt": 57, "dbhost": 57, "dbname": 57, "dbpassword": 57, "dbpersist": 57, "dbreplica": 57, "dbtableprefix": 57, "dbtype": 57, "dbuser": 57, "debug": [13, 57, 60, 96, 123, 129, 135, 146], "deck": 2, "declar": 88, "decreas": 35, "decrypt": [25, 26], "dedic": 123, "deep": 51, "default": [24, 40, 57, 63, 68, 99, 114, 147, 163, 164], "default_certificates_bundle_path": 57, "default_languag": 57, "default_local": 57, "default_phone_region": 57, "default_property_scop": 57, "default_timezon": 57, "defaultapp": 57, "defin": 66, "definit": 25, "delai": 35, "deleg": [50, 114], "delet": [46, 57, 73, 74, 80, 81, 83, 146], "demot": 74, "deni": 104, "deploi": [97, 98, 99, 100, 101, 102], "deploy": [56, 94, 99, 119, 123], "deployconfig": 100, "deriv": 26, "desktop": [57, 93, 131], "detail": 26, "detect": 6, "determin": 60, "dev": [67, 123], "diagnost": 57, "did": 134, "differ": [45, 60, 140], "directori": [15, 53, 56, 79, 123, 125, 128, 135, 146], "disabl": [25, 44, 52, 57, 67, 68, 72, 74, 78, 83, 101, 114, 123, 135, 146], "disallow": 128, "discoveri": [66, 135], "disk": [6, 92], "dispatch": 167, "displai": 38, "distinguish": 40, "distribut": [57, 152], "dmz": 123, "do": [134, 144, 156], "docker": [98, 99, 148, 152], "document": 14, "documentation_url": 57, "doe": [67, 144, 156], "domain": [59, 60, 66, 116, 123, 125, 135], "down": 134, "downgrad": 166, "download": 102, "drop": [40, 131], "dump": 96, "duplic": 79, "dure": 145, "edit": [68, 73, 74, 147], "email": [49, 60, 74, 160], "embed": [57, 61], "empti": [67, 146], "enabl": [15, 20, 25, 37, 47, 49, 52, 57, 58, 60, 72, 74, 78, 83, 101, 102, 123, 128, 129, 130, 146, 147, 165], "enable_lazy_object": 57, "enable_mail_link_password_expir": 57, "enable_non": 57, "enable_preview": 57, "enable_share_accept": 57, "enable_share_mail": 57, "enabledpreviewprovid": 57, "encod": [68, 135], "encrypt": [25, 26, 27, 45, 57, 60, 129, 130, 135, 146], "end": [6, 166], "energi": 87, "enforc": 78, "enforce_them": 57, "ensur": 123, "entri": 64, "envelop": 26, "environ": [57, 92, 97, 130, 146], "error": [19, 25, 96, 126, 134, 135], "errorlog": 64, "establish": 17, "ethic": [6, 8, 11, 14], "even": 60, "event": [111, 116, 146, 167], "everyth": 52, "exampl": [53, 55, 57, 64, 66, 72, 73, 74, 80, 90, 100, 104, 105, 108, 111, 112, 120, 121, 122, 146, 148, 149], "exapp": [98, 99, 101, 103], "exclud": [49, 55, 90], "execut": 105, "expand": 165, "experi": 57, "expert": 79, "expir": [40, 49], "explain": 64, "export": [111, 116, 146], "expos": 161, "extens": [68, 87], "extern": [25, 29, 37, 45, 49, 61, 98, 104, 130, 135, 146, 147], "external_storag": 57, "face": 6, "factor": [44, 78, 146], "fail": [116, 126], "fail2ban": 123, "failur": 35, "fair": 135, "faq": [98, 134, 168], "faster": 129, "featur": [14, 115], "feder": [23, 38, 57, 111, 135, 146], "field": [64, 74], "file": [2, 3, 23, 24, 25, 26, 27, 35, 37, 39, 40, 41, 42, 43, 52, 57, 64, 67, 68, 86, 91, 96, 104, 105, 108, 126, 129, 131, 135, 146, 147, 162, 163], "filelock": 57, "filenam": [47, 146], "files_external_allow_create_new_loc": 57, "files_no_background_scan": 57, "filesystem_cache_readonli": 57, "filesystem_check_chang": 57, "filter": [13, 123, 167], "final": 121, "find": [19, 60], "fingerprint": 57, "fix": 134, "flow": [106, 107], "folder": [25, 104, 137, 143], "follow": 114, "font": 147, "forbidden_filenam": 57, "forbidden_filename_basenam": 57, "forbidden_filename_charact": 57, "forbidden_filename_extens": 57, "forc": [55, 57, 63], "force_languag": 57, "force_local": 57, "force_share_accept": 57, "form": 2, "format": [26, 27, 57], "forwarded_for_head": 57, "found": 25, "fpm": [129, 130], "freebusi": 111, "frequent": [14, 154], "from": [45, 49, 55, 60, 74, 118, 141, 152], "front": 6, "frontend": 14, "ftp": 30, "fulli": 5, "function": 96, "further": [25, 127], "fusef": 128, "g": 57, "gatewai": 126, "gdpr": 110, "gener": [9, 14, 19, 26, 44, 123, 127, 135], "genr": 6, "get": [13, 40, 52, 60, 72, 73, 74, 86, 116, 146], "getenv": 67, "give": 123, "global": [68, 116], "gone": 19, "googl": 114, "gpg": 128, "grant": 83, "greater": 126, "green": 6, "group": [25, 37, 73, 74, 79, 83, 104, 146, 147], "groupfold": 49, "groupwar": [86, 113], "gui": 37, "guidanc": 123, "ha": 19, "handl": [51, 79, 90], "handler": [56, 126], "haproxi": 66, "harden": 123, "harp": [98, 99], "has_internet_connect": 57, "hash": 57, "hashing_default_password": 57, "hashingcost": 57, "hashingmemorycost": 57, "hashingthread": 57, "hashingtimecost": 57, "have": 67, "header": [67, 123], "heartbeat": 102, "hidden": 35, "hide": 111, "hide_login_form": 57, "hierarch": 146, "home": 56, "host": [15, 99], "how": [19, 55, 60, 145, 156], "htaccess": [57, 130], "http": [67, 123, 129, 130], "httpd": 121, "i": [14, 19, 52, 60, 67, 123, 134, 163, 164, 168], "ibm": 0, "icap": 52, "icon": [48, 69], "id": [13, 116, 135], "ident": 82, "identifi": [16, 96], "ignorefrontcontrol": 57, "imag": [1, 9, 14, 44, 79, 102, 123, 152], "imagick": 120, "imaginari": 163, "imap": [114, 116], "implement": 2, "implic": 45, "import": [146, 149], "improv": [0, 1, 14], "inconvert": 17, "index": 3, "indic": 146, "info": [52, 72, 146], "inform": 135, "ini": 127, "init": 102, "initi": [3, 22, 87], "insecur": 96, "insert": 116, "insight": 13, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 52, 57, 86, 90, 98, 118, 120, 121, 122, 123, 124, 125, 127, 130, 142, 146, 148, 149, 151, 166, 167, 168], "instanc": 123, "instanceid": 57, "instead": 129, "instruct": [72, 73, 74], "integr": [0, 64, 67, 79, 134, 146, 165], "intellig": [2, 12], "interact": 64, "interfac": [47, 64, 112, 114, 128], "intern": [79, 135], "interv": [79, 114], "introduct": [50, 55, 57, 117, 123], "invalid": [25, 47, 60, 134], "invis": 105, "invit": 111, "ip": [55, 123], "ipv6_normalized_subnet_s": 57, "isol": [19, 67, 96], "issu": [96, 116, 135, 136], "item": [46, 57, 112], "j": 126, "jail": 123, "javascript": [126, 146], "jit": 129, "job": [41, 46, 54, 111, 121, 129, 130, 146], "journal_mod": 57, "jpeg": 44, "json": 51, "keep": 60, "kei": [25, 26, 29, 80, 149], "keyboard": 96, "knowledgebas": 57, "knowledgebaseen": 57, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 67, 111, 156, 157], "l10n": 146, "languag": [5, 63], "larg": [5, 23], "lastseen": 146, "ldap": [25, 57, 79, 80, 81, 128, 146], "ldap_log_fil": 57, "ldapusercleanupinterv": 57, "length": [123, 166], "level": [19, 64, 67, 129], "libreoffic": 162, "life": 166, "limit": [2, 3, 5, 6, 7, 8, 9, 10, 11, 25, 51, 111, 112, 114, 123, 146], "line": [89, 90, 96, 112, 118, 144, 146], "link": [38, 40, 51, 57, 61, 156], "linux": 130, "list": [13, 72, 74, 79, 90, 100, 101, 146], "listen": [60, 167, 168], "live": 4, "live_transcript": 4, "llm": 114, "llm2": 5, "load": [3, 55, 57, 79, 129], "local": [5, 7, 9, 10, 11, 31, 57, 63, 81, 99, 111, 114], "localstorag": 57, "locat": [26, 56, 57, 125], "lock": [42, 57, 67, 129, 134], "log": [3, 4, 57, 64, 79, 96, 102, 116, 126, 129, 135, 146], "log_queri": 57, "log_request_id": 57, "log_rotate_s": 57, "log_typ": 57, "log_type_audit": 57, "logdateformat": 57, "logfil": [57, 135], "logfile_audit": 57, "logfilemod": 57, "login": [55, 65, 79, 126, 130, 142], "login_flow_v2": 57, "login_form_autocomplet": 57, "login_form_timeout": 57, "loglevel": 57, "loglevel_dirty_database_queri": 57, "loglevel_frontend": 57, "logo_url": 57, "logtimezon": 57, "long": [131, 145], "look": 60, "lookup_serv": 57, "loop": 126, "lost": 76, "lost_password_link": 57, "low": 92, "lt": 122, "machin": [1, 11, 14, 130], "maco": 96, "magic": 168, "mai": 165, "mail": [57, 60, 114, 116], "mail_domain": 57, "mail_from_address": 57, "mail_link_password_expiration_interv": 57, "mail_send_plaintext_onli": 57, "mail_sendmailmod": 57, "mail_smtpauth": 57, "mail_smtpdebug": 57, "mail_smtphost": 57, "mail_smtpmod": 57, "mail_smtpnam": 57, "mail_smtppassword": 57, "mail_smtpport": 57, "mail_smtpsecur": 57, "mail_smtpstreamopt": 57, "mail_smtptimeout": 57, "mail_template_class": 57, "mailbox": 114, "mainten": [57, 86, 137, 138, 145, 146, 166], "maintenance_window_start": [54, 57], "major": 166, "make": 5, "manag": [15, 25, 43, 48, 52, 71, 83, 100, 101, 103, 127, 130, 146, 155], "managerfactori": 57, "mandatori": 134, "manual": [8, 52, 116, 130, 139, 145], "map": [48, 79], "mariadb": [19, 129, 131, 137, 143], "mark": 52, "mass": 94, "master": 26, "max": [40, 57], "max_file_conversion_files": 57, "max_filesize_animated_gifs_public_shar": 57, "max_parallel_count": 57, "max_siz": 57, "maxautocompleteresult": 57, "maximum": [44, 57, 130, 164], "mcp": 2, "mechan": 29, "media": [127, 130], "member": 73, "memberof": 79, "memcach": [56, 57, 128], "memcache_customprefix": 57, "memcached_opt": 57, "memcached_serv": 57, "memori": [44, 56, 57, 131], "merg": 57, "messag": [96, 126, 134, 135], "metadata_max_files": 57, "metal": 99, "method": 25, "mib": 126, "microsoft": [45, 79, 114], "migrat": [22, 27, 114, 140, 141, 145, 152], "mimetyp": 48, "minimum": 57, "minsearchstringlength": 57, "misc": 146, "miscellan": 2, "misconfigur": [104, 108], "miss": [116, 146], "mobil": 131, "mod_fcgid": 23, "mod_proxy_fcgi": 23, "mode": [25, 60, 123, 129, 137, 144, 145, 146], "model": [2, 5, 7, 11], "modifi": [57, 60, 69, 80], "modul": [120, 123, 127, 135], "monitor": [162, 163, 164, 165], "mount": [37, 97], "mount_fil": 57, "mountpoint": 25, "move": [135, 146], "multibucket": [45, 57], "multilingu": 5, "multipl": [57, 66], "music": 6, "my": [14, 19, 60], "mysql": [19, 20, 53, 57, 116, 129, 131, 137, 143], "name": [67, 135], "nc": 99, "need": 165, "nest": 79, "network": [111, 128], "new": [38, 74, 83, 147], "next": 122, "nextcloud": [1, 2, 4, 23, 32, 38, 49, 51, 52, 56, 57, 58, 62, 69, 79, 81, 82, 96, 99, 100, 109, 120, 121, 123, 126, 133, 134, 135, 139, 147, 148, 160, 161, 162, 163, 164, 165, 167, 168], "nginx": [23, 66, 126], "no_unsupported_browser_warn": 57, "non": 135, "nor": 126, "note": [56, 79, 86, 121, 127, 133, 158, 159], "notif": [15, 35, 40, 111, 145], "notify_push": 68, "now": [163, 164], "nss": 67, "o": 131, "oauth": 114, "oauth2": 65, "object": [6, 23, 33, 45, 57], "objectstor": 57, "obtain": [96, 133], "occ": [3, 15, 25, 47, 55, 79, 100, 146], "off": 79, "offic": [86, 115, 147, 150, 162], "old": [27, 131], "olmo": 5, "one": [60, 99], "onli": [60, 67], "onlin": [147, 148, 152], "ooxml": 147, "opcach": 129, "open": [5, 134], "openai": 0, "openbsd": 121, "openid": 82, "openssl": [57, 67], "openstack": [33, 45], "oper": [123, 146], "option": [3, 37, 57, 64, 79, 95, 97, 100, 101, 120, 147], "optout": 57, "organ": 56, "other": [14, 57, 96, 116, 130, 135], "out": [19, 60, 115], "outdat": 67, "outlook": 116, "output": [72, 73, 74, 80], "outsid": 123, "over": 56, "overrid": [45, 64], "overview": [14, 25, 55, 130, 139, 145, 166], "overwrit": [57, 66], "overwritecondaddr": 57, "overwritehost": 57, "overwriteprotocol": 57, "overwritewebroot": 57, "owncloud": 141, "packag": [130, 142, 149, 152], "page": [55, 67], "pair": 26, "paramet": [19, 44, 53, 54, 57, 60, 66], "part_file_in_storag": 57, "pass": [67, 168], "password": [29, 70, 76, 77, 83, 84, 123, 163], "passwordsalt": 57, "patch": 133, "path": [37, 57, 67, 135], "pdf": 163, "per": [45, 79, 116], "perform": [0, 45, 129], "permiss": [37, 79], "persist": 40, "pgsql_ssl": 57, "photo": 6, "php": [23, 56, 60, 67, 114, 120, 121, 123, 126, 127, 129, 130, 131, 135, 164], "picker": 157, "pickup": [1, 14], "place": 123, "point": 25, "polici": [84, 135], "port": 60, "postgresql": [19, 53, 137, 143], "pre": 65, "prefer": 114, "prefix": 67, "prepar": 127, "prerequisit": [123, 130, 145], "pretti": 130, "prevent": [61, 104], "preview": [44, 57, 123, 129, 146, 147, 156, 162, 163, 164, 165], "preview_concurrency_al": 57, "preview_concurrency_new": 57, "preview_ffmpeg_path": 57, "preview_ffprobe_path": 57, "preview_imaginary_kei": 57, "preview_imaginary_url": 57, "preview_libreoffice_path": 57, "preview_max_filesize_imag": 57, "preview_max_i": 57, "preview_max_memori": 57, "preview_max_x": 57, "previou": 139, "primari": 45, "privaci": 112, "privat": [15, 25, 26, 56], "privileg": [50, 83], "problem": [96, 116, 135], "process": [1, 14, 114, 130], "profil": [57, 75, 79, 146], "project": 57, "promot": 74, "prompt": 14, "proper": 123, "properli": [67, 126], "properti": [75, 112], "protect": [55, 57, 165], "protocol": 60, "provid": [14, 24, 60, 78, 82, 156, 157], "provis": 85, "proxi": [55, 57, 66, 98, 99, 148, 152, 153], "proxyexclud": 57, "proxyuserpwd": 57, "public": [26, 29, 38, 108, 111], "pull": 102, "qmail": 60, "qualiti": 44, "query_log_fil": 57, "query_log_file_backtrac": 57, "query_log_file_paramet": 57, "query_log_file_requestid": 57, "question": [14, 154], "queue": 52, "quick": [125, 127], "quickstart": 142, "quota": [83, 135], "quota_include_external_storag": 57, "rainloop": 128, "rang": 123, "rate": [6, 8, 11, 14, 57, 111, 112], "ratelimit": 57, "ratelimit_overwrit": 57, "reachabl": [19, 60], "read": [19, 25, 26, 67, 79, 80, 123], "readabl": 67, "recogn": 6, "recognit": 6, "recommend": [56, 119, 127], "recoveri": [25, 26, 45, 143], "redi": [56, 57, 120, 121, 129], "redirect": 123, "redis_log_fil": 57, "reduc": 129, "reduce_to_languag": 57, "refer": [127, 155], "reference_opengraph": 57, "refresh": 111, "regist": [100, 101, 102], "reject": 60, "relat": [1, 123], "releas": [57, 86, 139, 158, 159, 166], "remember_login_cookie_lifetim": 57, "remind": [111, 114], "remirepo": 120, "remnant": 146, "remot": [99, 123, 128], "remov": [74, 78], "renam": 83, "repair": 146, "replic": 21, "report": [146, 166], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 149], "request": 57, "request_timeout": 57, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19, 120, 127, 131, 160, 161, 162, 163, 164, 165], "rescan": 134, "resend": 74, "reset": [76, 77, 83], "resetpassword": 146, "resolv": 67, "resourc": [111, 127], "respons": 67, "restor": 143, "restrict": [105, 123, 147], "retent": [108, 111, 112, 160], "retriev": 48, "return": [67, 146], "revalid": 129, "revers": [55, 66, 148, 152, 153], "revert": 133, "rewritebas": 57, "rich": 68, "right": 168, "room": 111, "root": 123, "rotat": 57, "rule": [3, 104, 105], "run": [5, 17, 67, 145, 146], "s3": [28, 45, 165], "same": 99, "sampl": 57, "sanit": [47, 146], "scale": [2, 3, 5, 6, 7, 9, 10, 44], "scan": [52, 146], "scanner": 52, "schedul": [49, 114, 166], "scope": [75, 112], "screen": [14, 167], "script": [130, 168], "seal": 26, "search": [2, 14, 73, 74, 146], "secret": 57, "secur": [57, 65, 67, 99, 123, 146, 147], "select": 168, "selector": 146, "self": [15, 37, 60], "selinux": [120, 123, 128, 130], "send": [60, 114], "sendmail": [60, 128], "serv": [123, 126], "server": [2, 19, 23, 25, 26, 27, 38, 56, 57, 60, 67, 79, 96, 111, 114, 123, 124, 128, 129, 130, 131, 133, 135, 140, 147, 148, 160, 161, 162, 163, 165], "server_log": 57, "servic": [0, 14, 45, 66, 135, 167], "session": [14, 56, 57, 167], "session_keepal": 57, "session_lifetim": 57, "session_relaxed_expiri": 57, "set": [40, 44, 55, 57, 60, 64, 67, 72, 73, 74, 79, 83, 111, 120, 127, 129, 130, 146, 147, 168], "setup": [8, 53, 56, 89, 98, 123, 162, 165], "setupcheck": 146, "sftp": 34, "share": [2, 23, 25, 26, 29, 38, 40, 43, 57, 111, 112, 114, 116, 135, 146], "share_fold": 57, "ship": 135, "shortcut": 96, "show": 146, "shown": [35, 57], "side": [23, 25, 26, 27], "siev": [114, 116], "sign": [26, 37, 60, 134, 149], "signatur": [25, 26], "simpl": 45, "simplesignuplink": 57, "singl": [52, 56, 73, 74, 146], "site": [61, 67], "size": [23, 44, 114, 129, 130, 135, 164], "skeletondirectori": 57, "skip": 65, "slow": 14, "small": 56, "smart": 157, "smb": [35, 128], "smtp": [60, 114, 116, 128], "snap": [130, 142], "snooz": 114, "socket": [56, 98, 99], "some": 67, "sort_groups_by_nam": 57, "sourc": [26, 134], "space": [3, 6, 8, 11, 92, 130], "special": [29, 79], "specif": [60, 79, 104, 123, 127, 147], "speech": [1, 7, 10, 14], "speed": [1, 14, 167], "split": [22, 26], "sql": 19, "sqlite": [53, 57, 129, 137, 143], "sse": 45, "ssl": [19, 57, 66, 79, 123, 130], "standalone_window": 57, "start": [86, 102, 125], "starttl": 60, "statu": [102, 146], "step": [25, 121, 122, 139, 145, 168], "storag": [1, 23, 25, 29, 33, 37, 45, 49, 83, 104, 123, 135], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 26, 45, 57, 109], "storecryptedpassword": 57, "strict": [67, 123], "stt_whisper2": 7, "subadmin": [73, 74], "subdir": 126, "subscript": [111, 146], "summar": 8, "summari": [8, 114], "suppli": [5, 7], "support": [3, 20, 37, 45, 57, 60, 68, 131, 166], "supporteddatabas": 57, "suppress": 126, "suspend": 168, "swift": 45, "switch": 11, "sync": [35, 79, 96, 111, 112, 114, 135, 146, 160], "synchron": [67, 116], "synchronis": 143, "syslog": 64, "syslog_tag": 57, "syslog_tag_audit": 57, "system": [23, 112, 123, 129, 130, 131, 146, 160, 161, 162, 163, 164, 165], "systemd": [14, 54, 64, 167], "systemtag": 57, "tab": 79, "tabl": [17, 86, 127], "tag": [105, 108, 146], "talk": [2, 4, 8, 131], "target": [17, 117], "task": [1, 2, 13, 14, 52], "tcp": [56, 60], "team": [2, 25], "tempdirectori": 57, "templat": [24, 60], "templatedirectori": 57, "temporari": 64, "term": 131, "test": [57, 60, 67, 79, 102, 146], "text": [1, 7, 10, 14, 68], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 126, "thei": 156, "theme": [57, 60, 69], "thi": 67, "though": 60, "thread": [114, 116], "threshold": 57, "through": [64, 69], "timeout": [114, 116], "tip": [38, 79, 126, 130, 142], "tl": [56, 79, 114, 129], "tmux": [14, 167], "toggl": 146, "token": [65, 82, 111, 112, 123, 160], "token_auth_activity_upd": 57, "token_auth_enforc": 57, "tool": 2, "traefik": 66, "traffic": 123, "transact": [19, 42, 67, 129], "transcript": 4, "transfer": [40, 146], "transferincomingshar": 57, "translat": [1, 11, 14, 114, 146], "translate2": 11, "transport": [67, 123], "trash": [46, 57, 111], "trashbin": 146, "trashbin_retention_oblig": 57, "tree": 146, "trick": [79, 126], "trigger": [17, 52], "troubleshoot": [3, 19, 25, 55, 60, 79, 96, 116, 128, 133, 135, 136, 139, 144, 154], "truena": 130, "trust": [38, 66, 125], "trusted_domain": 57, "trusted_proxi": 57, "ttl": 57, "tune": 129, "turn": 79, "two": [78, 146], "type": [17, 26, 56, 57, 64, 111, 166], "ubuntu": [122, 149], "umask": 57, "unabl": 116, "unencrypt": 123, "unified_search": 57, "uninstal": 132, "unix": 56, "unknown": 96, "unlink_on_trunc": 57, "unregist": [100, 101], "unscan": 52, "unseal": 26, "up": [67, 70, 114, 120, 130, 163, 167, 168], "updat": [15, 22, 35, 57, 101, 116, 128, 135, 144, 145, 148, 152, 165], "updatecheck": 57, "updatedirectori": 57, "upgrad": [57, 131, 139, 142, 144, 145, 146, 152, 160, 161, 162, 163, 164, 165, 166], "upload": [23, 35, 104, 126, 130], "urandom": [67, 123], "url": [57, 130, 168], "us": [2, 14, 15, 19, 37, 40, 47, 56, 57, 60, 67, 79, 82, 114, 123, 129, 135, 144, 146, 147, 157, 162], "usag": [3, 6, 8, 11, 37, 50, 55, 90, 100, 147], "use_legacy_base64_encod": 57, "user": [19, 25, 26, 37, 40, 49, 57, 71, 74, 77, 79, 81, 82, 83, 84, 85, 86, 104, 112, 114, 135, 146, 163, 164, 165], "user_ini_additional_lin": 57, "utf8mb4": 57, "v": [56, 98], "valid": 82, "valu": [57, 146, 168], "variabl": [37, 57, 92, 97, 130, 146], "verif": [57, 79, 114], "version": [41, 57, 67, 131, 135, 146, 166], "versions_retention_oblig": 57, "via": [8, 15, 25, 38, 67, 79, 128, 130, 142, 144], "video": [6, 117], "view": 147, "virtual": 130, "vp": 130, "warn": [65, 67], "watsonx": 0, "we": [131, 134], "web": [23, 47, 57, 60, 64, 67, 123, 128, 130, 131, 135, 144, 160, 161, 162, 163, 165], "webauthn": 57, "webcron": 54, "webdav": [36, 135], "webhook": 167, "webroot": [126, 147], "webserv": 96, "websocket": 68, "welcom": 74, "well": 67, "what": [5, 60, 144], "when": 96, "where": [156, 157], "whisper": 7, "whole": 128, "why": [14, 60, 131, 134], "windmil": 168, "window": [47, 130, 146], "without": 126, "wizard": [125, 130], "wopi": 147, "work": [19, 52, 55, 156], "workflow": [64, 168], "workspac": [68, 168], "write": 128, "xml": [72, 73, 74, 80], "xoauth2": 114, "yellow": 6, "yet": 67, "you": [25, 67], "your": [23, 49, 58, 67, 116, 123]}}) \ No newline at end of file diff --git a/server/32/user_manual/cs/groupware/sync_ios.html b/server/32/user_manual/cs/groupware/sync_ios.html index 6e322f79a0e..e7bbbd01a4f 100644 --- a/server/32/user_manual/cs/groupware/sync_ios.html +++ b/server/32/user_manual/cs/groupware/sync_ios.html @@ -167,7 +167,7 @@Poznámka
Od verze iOS 12 je SSL šifrování nezbytné. Proto nevypínejte SSL (Z tohoto důvodu je pro vaši doménu zapotřebí certifikát, postačí i ten ze služby https://letsencrypt.org/ ).
-Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
+Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
À partir de iOS 12, un cryptage SSL est nécessaire. Par conséquent, ne désactivez pas le SSL (Pour cette raison, un certificat est requis pour votre domaine, comme https://letsencrypt.org/ ).
-Si cela ne fonctionne toujours pas, regardez dans Dépannage des contacts et calendriers ou Dépannage de la découverte de service.
+Si cela ne fonctionne toujours pas, regardez dans Dépannage des contacts et calendriers ou Dépannage de la découverte de service.
diff --git a/server/32/user_manual/gl/groupware/sync_ios.html b/server/32/user_manual/gl/groupware/sync_ios.html index e785b2524ec..79999211785 100644 --- a/server/32/user_manual/gl/groupware/sync_ios.html +++ b/server/32/user_manual/gl/groupware/sync_ios.html @@ -171,7 +171,7 @@A partir de iOS 12 é necesario un cifrado SSL. Polo tanto, non desactive SSL (Por este motivo é necesario que o seu dominio dispoña dun certificado, pode obtelo en: https://letsencrypt.org/).
-Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.
+Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.
diff --git a/server/32/user_manual/nl/groupware/sync_ios.html b/server/32/user_manual/nl/groupware/sync_ios.html index 1fac95994fa..434c483981c 100644 --- a/server/32/user_manual/nl/groupware/sync_ios.html +++ b/server/32/user_manual/nl/groupware/sync_ios.html @@ -167,7 +167,7 @@Vanaf iOS 12 is SSL-versleuteling noodzakelijk. Schakel daarom SSL niet uit (Om deze reden is een certificaat op jouw domein vereist, https://letsencrypt.org/ is voldoende).
-Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
+Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
diff --git a/server/32/user_manual/pt_BR/groupware/sync_ios.html b/server/32/user_manual/pt_BR/groupware/sync_ios.html index 9d271a9862f..7682f6737e6 100644 --- a/server/32/user_manual/pt_BR/groupware/sync_ios.html +++ b/server/32/user_manual/pt_BR/groupware/sync_ios.html @@ -167,7 +167,7 @@A partir do iOS 12, é necessária uma criptografia SSL. Portanto, não desative o SSL (por esse motivo, um certificado é necessário em seu domínio, https://letsencrypt.org/ o fará).
-Se ainda não estiver funcionando, dê uma olhada em Solução de Problemas de Contatos & Calendário ou Resolução de Problemas de Descoberta de Serviços.
+Se ainda não estiver funcionando, dê uma olhada em Solução de Problemas de Contatos & Calendário ou Resolução de Problemas de Descoberta de Serviços.
diff --git a/server/32/user_manual/tr/groupware/sync_ios.html b/server/32/user_manual/tr/groupware/sync_ios.html index fc278c8572c..1b200c0d8cf 100644 --- a/server/32/user_manual/tr/groupware/sync_ios.html +++ b/server/32/user_manual/tr/groupware/sync_ios.html @@ -167,7 +167,7 @@Not
iOS 12 sürümüyle birlikte SSL şifrelemesi kullanılması zorunlu oldu. Bu nedenle SSL seçeneğini kullanımdan kaldırmayın** (SSL şifrelemeyi kullanabilmek için etki alanınıza bir sertifika almanız gerekir, https://letsencrypt.org/ bunu ücretsiz olarak sağlar).
-Sorun çıkarsa, Kişi ve Takvim sorunlarını çözme ya da Hizmet keşfetme sorunlarını çözme bölümlerine bakabilirsiniz.
+Sorun çıkarsa, Kişi ve Takvim sorunlarını çözme ya da Hizmet keşfetme sorunlarını çözme bölümlerine bakabilirsiniz.
diff --git a/server/33/Nextcloud_Developer_Manual.epub b/server/33/Nextcloud_Developer_Manual.epub index 3a564aa7acc..fb0fb115193 100644 Binary files a/server/33/Nextcloud_Developer_Manual.epub and b/server/33/Nextcloud_Developer_Manual.epub differ diff --git a/server/33/Nextcloud_Server_Administration_Manual.epub b/server/33/Nextcloud_Server_Administration_Manual.epub index bbb0eae2770..6122ecfb886 100644 Binary files a/server/33/Nextcloud_Server_Administration_Manual.epub and b/server/33/Nextcloud_Server_Administration_Manual.epub differ diff --git a/server/33/Nextcloud_Server_Administration_Manual.pdf b/server/33/Nextcloud_Server_Administration_Manual.pdf index 023d1657aa3..d478b475dac 100644 Binary files a/server/33/Nextcloud_Server_Administration_Manual.pdf and b/server/33/Nextcloud_Server_Administration_Manual.pdf differ diff --git a/server/33/Nextcloud_User_Manual.epub b/server/33/Nextcloud_User_Manual.epub index 60292dbe035..4cc378dcdae 100644 Binary files a/server/33/Nextcloud_User_Manual.epub and b/server/33/Nextcloud_User_Manual.epub differ diff --git a/server/33/Nextcloud_User_Manual.pdf b/server/33/Nextcloud_User_Manual.pdf index 16bf7bec041..63e01ff5e0a 100644 Binary files a/server/33/Nextcloud_User_Manual.pdf and b/server/33/Nextcloud_User_Manual.pdf differ diff --git a/server/33/admin_manual/ai/app_context_chat.html b/server/33/admin_manual/ai/app_context_chat.html index 4e5ca7c6757..84f288ba98b 100644 --- a/server/33/admin_manual/ai/app_context_chat.html +++ b/server/33/admin_manual/ai/app_context_chat.html @@ -111,7 +111,6 @@Minimal Nextcloud version: 30
Minimal Nextcloud version: 32
Nextcloud AIO is supported
We currently support NVIDIA GPUs and x86_64 CPUs
We currently support NVIDIA GPUs, AMD GPUs (via Vulkan) and x86_64 CPUs
CPU that supports AVX and AVX2 instruction
CUDA >= v12.2 on your host system
CUDA >= v12.8 on your host system if NVIDIA GPUs are used
Both podman and docker are supported
GPU Setup Sizing
+
-
- A NVIDIA GPU with at least 2GB VRAM
+
- A GPU with at least 2GB VRAM
- @@ -276,39 +276,23 @@
The requirements for the text-to-text providers should be checked separately for each app here in the “Backend apps” section, as they can vary greatly based on the model used and whether the provider is hosted locally or remotely.
Installationhere in the “Backend apps” section.
- -
Optionally but recommended, setup background workers for faster pickup of tasks. See the relevant section in AI Overview for more information.
Note: Both apps need to be installed and both major version and minor version of the two apps must match for the functionality to work (ie. “v1.3.4” and “v1.3.1”; but not “v1.3.4” and “v2.1.6”; and not “v1.3.4” and “v1.4.5”). Keep this in mind when updating.
++Note
+Both apps need to be installed and both major version and minor version of the two apps must match for the functionality to work (ie. “v1.3.4” and “v1.3.1”; but not “v1.3.4” and “v2.1.6”; and not “v1.3.4” and “v1.4.5”). Keep this in mind when updating.
+Initial loading of data
- Auto-indexing
--Context chat will automatically load user data into the Vector DB using asynchronous background jobs.+Context chat will automatically load user data into the Vector DB. Context chat backend pulls the queued files and content providers’ items from the context chat PHP app and indexes them.The initial loading of data can take a long time depending on the number of files and their size.The indexing jobs are set up to run during the Nextcloud instance’s maintenance window (typically during the night) only. If you have not set a maintenance window, indexing will run 24/7.
---You can set up a separate cron job to run every 30 minutes for Context Chat to avoid slowing down normal background job operation on larger instances.-The following command can bypass the maintenance window so it can either be set to run during the day even with a maintenance window set, or it can be set to run during the weekends 24/7 to speed up the indexing process.---php cron.php "OCA\\ContextChat\\BackgroundJobs\\IndexerJob" "OCA\\ContextChat\\BackgroundJobs\\ActionJob" "OCA\\ContextChat\\BackgroundJobs\\SubmitContentJob" "OCA\\ContextChat\\BackgroundJobs\\StorageCrawlJob" "OCA\\ContextChat\\BackgroundJobs\\InitialContentImportJob" -- Synchronous indexing
---To index all the files synchronously, use the following command:-Note: This does not interact with the auto-indexing feature and that list would remain unchanged. However, the indexed files would be skipped when the auto indexer runs.---occ context_chat:scan <user_id> -Note: The synchronous command could take several days to complete. On larger systems we thus recommend to use auto-indexing.
- Scaling
+Scaling
Listed below are the major parts of the system that can be scaled independently to improve performance:
The text-to-text task processing provider (from among the list of providers here in the “Backend apps” section)
@@ -325,21 +309,40 @@Scaling
The embedding model performance can be scaled by using a hosted embedding service, locally or remotely hosted. It should be able to serve an OpenAI-compatible API.The embedding service URL can be set using the environment variableCC_EM_BASE_URLduring deployment in the “Deploy Options”. Other options like the model name, api key, or username and password can be set using the environment variablesCC_EM_MODEL_NAME,CC_EM_API_KEY,CC_EM_USERNAME, andCC_EM_PASSWORDrespectively.++Warning
+The embedding model cannot be changed after installing the app. To use a different embedding model or service, you +will need to do a full uninstall (removing all data of the ExApp) and reinstall the
+context_chat_backendExApp +with the new environment variables and an empty vector DB. If the vector DB is external, the connected database +(database may be namedccb) should be dropped before installing the ExApp again.For the
+context_chatapp, obtain a clean slate by dropping all the<PREFIX>_context_chat_*tables in the database, and removing all the config values: +And re-installing it.++drop table if exists oc_context_chat_action_queue; +drop table if exists oc_context_chat_content_queue; +drop table if exists oc_context_chat_fs_events; +drop table if exists oc_context_chat_queue; +delete from oc_appconfig where appid = 'context_chat'; +
The parsing of the documents to extract text
+context_chat_backend ExApp in a docker-based environment. It is a CPU-bound task, so having a powerful CPU will help speed up the parsing process.context_chat_backend ExApp to handle the parsing concurrently, see the Kubernetes section.One part of the system that cannot be scaled yet is the parsing of the documents to extract text.
-This is currently done in a single instance of the context_chat_backend ExApp.
-It is a CPU-bound task so having a powerful CPU will help speed up the parsing process.
If context_chat_backend is already deployed, you can change these environment variables by redeploying it with the new values.
Go to Apps page -> search for “Context Chat Backend”
Disable and remove the app taking care the data is not removed
Disable and remove the app taking care the data is not removed (except when the embedding model is changed, in which case the data should be removed)
Set the “Deploy Options” with the new environment variables
Reinstall the app
You can also find the context_chat app in our app store, where you can write a review: https://apps.nextcloud.com/apps/context_chat
context_chat:scanScan and index the user’s documents based on the user ID provided, synchronously.
-context_chat:statsocc config:app:set context_chat auto_indexing --value=true --type=boolean
Context chat backend’s configuration options are available through the environment variable in Deploy Options.
Poznámka
Od verze iOS 12 je SSL šifrování nezbytné. Proto nevypínejte SSL (Z tohoto důvodu je pro vaši doménu zapotřebí certifikát, postačí i ten ze služby https://letsencrypt.org/ ).
-Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
+Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
diff --git a/server/33/user_manual/el/groupware/sync_ios.html b/server/33/user_manual/el/groupware/sync_ios.html index 7aca979c386..4d185eae2d5 100644 --- a/server/33/user_manual/el/groupware/sync_ios.html +++ b/server/33/user_manual/el/groupware/sync_ios.html @@ -167,7 +167,7 @@Από το iOS 12 και μετά, μια κρυπτογράφηση SSL είναι απαραίτητη. Επομένως μην απενεργοποιήσετε το SSL (για αυτόν τον λόγο απαιτείται ένα πιστοποιητικό στον τομέα σας, το https://letsencrypt.org/ θα κάνει).
-Εάν ακόμα δεν λειτουργεί, ρίξτε μια ματιά στο Αντιμετώπιση προβλημάτων Επαφών & Ημερολογίου ή στο Αντιμετώπιση προβλημάτων Ανακάλυψης Υπηρεσίας.
+Εάν ακόμα δεν λειτουργεί, ρίξτε μια ματιά στο Αντιμετώπιση προβλημάτων Επαφών & Ημερολογίου ή στο Αντιμετώπιση προβλημάτων Ανακάλυψης Υπηρεσίας.
diff --git a/server/33/user_manual/ga/groupware/sync_ios.html b/server/33/user_manual/ga/groupware/sync_ios.html index caf20f913a3..ac3e9d9b9ac 100644 --- a/server/33/user_manual/ga/groupware/sync_ios.html +++ b/server/33/user_manual/ga/groupware/sync_ios.html @@ -166,7 +166,7 @@Ag tosú le iOS 12 tá criptiú SSL riachtanach. Dá bhrí sin ná ná díchumasaigh SSL (Ar an gcúis seo tá teastas ag teastáil ag d'fhearann, https://letsencrypt.org/ a dhéanfaidh).
-Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & Féilire nó Fabhtcheartú na Seirbhíse Fionnachtana.
+Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & Féilire nó Fabhtcheartú na Seirbhíse Fionnachtana.
diff --git a/server/33/user_manual/nl/groupware/sync_ios.html b/server/33/user_manual/nl/groupware/sync_ios.html index 4714314d49c..8ca56837055 100644 --- a/server/33/user_manual/nl/groupware/sync_ios.html +++ b/server/33/user_manual/nl/groupware/sync_ios.html @@ -167,7 +167,7 @@Vanaf iOS 12 is SSL-versleuteling noodzakelijk. Schakel daarom SSL niet uit (Om deze reden is een certificaat op jouw domein vereist, https://letsencrypt.org/ is voldoende).
-Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
+Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
diff --git a/server/33/user_manual/pt_BR/groupware/sync_ios.html b/server/33/user_manual/pt_BR/groupware/sync_ios.html index 6c8940ae0e8..15e221e3d0e 100644 --- a/server/33/user_manual/pt_BR/groupware/sync_ios.html +++ b/server/33/user_manual/pt_BR/groupware/sync_ios.html @@ -167,7 +167,7 @@A partir do iOS 12, é necessária uma criptografia SSL. Portanto, não desative o SSL (por esse motivo, um certificado é necessário em seu domínio, https://letsencrypt.org/ o fará).
-Se ainda não estiver funcionando, dê uma olhada em Solução de Problemas de Contatos & Calendário ou Resolução de Problemas de Descoberta de Serviços.
+Se ainda não estiver funcionando, dê uma olhada em Solução de Problemas de Contatos & Calendário ou Resolução de Problemas de Descoberta de Serviços.
diff --git a/server/34/Nextcloud_Developer_Manual.epub b/server/34/Nextcloud_Developer_Manual.epub index 640f0645af9..c8546998a61 100644 Binary files a/server/34/Nextcloud_Developer_Manual.epub and b/server/34/Nextcloud_Developer_Manual.epub differ diff --git a/server/34/Nextcloud_Server_Administration_Manual.epub b/server/34/Nextcloud_Server_Administration_Manual.epub index 7e4050bf018..1514517b14d 100644 Binary files a/server/34/Nextcloud_Server_Administration_Manual.epub and b/server/34/Nextcloud_Server_Administration_Manual.epub differ diff --git a/server/34/Nextcloud_Server_Administration_Manual.pdf b/server/34/Nextcloud_Server_Administration_Manual.pdf index c74fb980531..d98436f92f4 100644 Binary files a/server/34/Nextcloud_Server_Administration_Manual.pdf and b/server/34/Nextcloud_Server_Administration_Manual.pdf differ diff --git a/server/34/Nextcloud_User_Manual.epub b/server/34/Nextcloud_User_Manual.epub index 7f343ea4268..57f452126d4 100644 Binary files a/server/34/Nextcloud_User_Manual.epub and b/server/34/Nextcloud_User_Manual.epub differ diff --git a/server/34/Nextcloud_User_Manual.pdf b/server/34/Nextcloud_User_Manual.pdf index 6673f9e66ba..fad7fabe8b3 100644 Binary files a/server/34/Nextcloud_User_Manual.pdf and b/server/34/Nextcloud_User_Manual.pdf differ diff --git a/server/34/user_manual/cs/groupware/sync_ios.html b/server/34/user_manual/cs/groupware/sync_ios.html index 0693346aa3f..b77e9910027 100644 --- a/server/34/user_manual/cs/groupware/sync_ios.html +++ b/server/34/user_manual/cs/groupware/sync_ios.html @@ -185,7 +185,7 @@Poznámka
If you select CalDAV only calendar syncing will be made available.
-Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
+Pokud to ani tak nefunguje, podívejte se do příručky Řešení problémů s kontakty a kalendářem nebo Řešení problémů s objevováním služby.
diff --git a/server/34/user_manual/ga/groupware/sync_ios.html b/server/34/user_manual/ga/groupware/sync_ios.html index 1f9eb1d0bd2..683a6c9be18 100644 --- a/server/34/user_manual/ga/groupware/sync_ios.html +++ b/server/34/user_manual/ga/groupware/sync_ios.html @@ -184,7 +184,7 @@If you select CalDAV only calendar syncing will be made available.
-Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & Féilire nó Fabhtcheartú na Seirbhíse Fionnachtana.
+Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & Féilire nó Fabhtcheartú na Seirbhíse Fionnachtana.
diff --git a/server/34/user_manual/gl/groupware/sync_ios.html b/server/34/user_manual/gl/groupware/sync_ios.html index 9af8f583bab..ff474205d6a 100644 --- a/server/34/user_manual/gl/groupware/sync_ios.html +++ b/server/34/user_manual/gl/groupware/sync_ios.html @@ -185,7 +185,7 @@If you select CalDAV only calendar syncing will be made available.
-Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.
+Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.
diff --git a/server/34/user_manual/nl/groupware/sync_ios.html b/server/34/user_manual/nl/groupware/sync_ios.html index 0a302b6b1df..19b2082e5b7 100644 --- a/server/34/user_manual/nl/groupware/sync_ios.html +++ b/server/34/user_manual/nl/groupware/sync_ios.html @@ -185,7 +185,7 @@If you select CalDAV only calendar syncing will be made available.
-Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
+Als dan het nog niet werkt, kijk dan naar Probleemoplossing voor Contacten en Kalender of Probleemoplossing voor Serviceontdekking.
diff --git a/server/34/user_manual/tr/groupware/sync_ios.html b/server/34/user_manual/tr/groupware/sync_ios.html index 774402becc7..820e41bf2e1 100644 --- a/server/34/user_manual/tr/groupware/sync_ios.html +++ b/server/34/user_manual/tr/groupware/sync_ios.html @@ -185,7 +185,7 @@Not
If you select CalDAV only calendar syncing will be made available.
-Sorun çıkarsa, Kişi ve Takvim sorunlarını çözme ya da Hizmet keşfetme sorunlarını çözme bölümlerine bakabilirsiniz.
+Sorun çıkarsa, Kişi ve Takvim sorunlarını çözme ya da Hizmet keşfetme sorunlarını çözme bölümlerine bakabilirsiniz.
diff --git a/server/34/user_manual/zh_HK/groupware/sync_ios.html b/server/34/user_manual/zh_HK/groupware/sync_ios.html index 23cfd927415..98182cdab22 100644 --- a/server/34/user_manual/zh_HK/groupware/sync_ios.html +++ b/server/34/user_manual/zh_HK/groupware/sync_ios.html @@ -185,7 +185,7 @@If you select CalDAV only calendar syncing will be made available.
-如果仍然無法正常運行,請查看 聯絡人與日曆故障排除 或 服務發現故障排除。
+如果仍然無法正常運行,請查看 聯絡人與日曆故障排除 或 服務發現故障排除。
diff --git a/server/latest/Nextcloud_Developer_Manual.epub b/server/latest/Nextcloud_Developer_Manual.epub index 7d192ba66a5..f1f5a848445 100644 Binary files a/server/latest/Nextcloud_Developer_Manual.epub and b/server/latest/Nextcloud_Developer_Manual.epub differ diff --git a/server/latest/Nextcloud_Server_Administration_Manual.epub b/server/latest/Nextcloud_Server_Administration_Manual.epub index 16c3f761533..c7786e806a6 100644 Binary files a/server/latest/Nextcloud_Server_Administration_Manual.epub and b/server/latest/Nextcloud_Server_Administration_Manual.epub differ diff --git a/server/latest/Nextcloud_Server_Administration_Manual.pdf b/server/latest/Nextcloud_Server_Administration_Manual.pdf index b24ef2f2edc..f5f7450895f 100644 Binary files a/server/latest/Nextcloud_Server_Administration_Manual.pdf and b/server/latest/Nextcloud_Server_Administration_Manual.pdf differ diff --git a/server/latest/Nextcloud_User_Manual.epub b/server/latest/Nextcloud_User_Manual.epub index 15dcf2b406c..71154563c66 100644 Binary files a/server/latest/Nextcloud_User_Manual.epub and b/server/latest/Nextcloud_User_Manual.epub differ diff --git a/server/latest/Nextcloud_User_Manual.pdf b/server/latest/Nextcloud_User_Manual.pdf index b6a0a4e47d2..ed690dc7e46 100644 Binary files a/server/latest/Nextcloud_User_Manual.pdf and b/server/latest/Nextcloud_User_Manual.pdf differ diff --git a/server/latest/admin_manual/contents.html b/server/latest/admin_manual/contents.html index 250985f6fad..b88b7da97a3 100644 --- a/server/latest/admin_manual/contents.html +++ b/server/latest/admin_manual/contents.html @@ -475,8 +475,11 @@Upon successful authentication, Nextcloud issues an access token that clients will use for all future HTTP requests. This access token uniquely identifies a user and should not be stored on any system other than the client requesting it. The user password is also stored encrypted in the Nextcloud database. For encryption of the password, the token and an instance-specific secret is used.
-Leakage of the access token can have negative security consequences. Depending on the data access by the actor, the risk here is different:
+Nextcloud’s built-in database user backend stores a salted, one-way hash of +each account password. It prefers Argon2id (when supported by the PHP +installation), with Argon2i and bcrypt used as fallbacks. The algorithm, salt, +and cost parameters are included in the stored hash. Existing hashes are +automatically upgraded following successful password verification when they no +longer match the preferred algorithm or parameters.
+The hash is used to verify password-based login attempts and is not designed +to be decrypted. When an external user backend (such as LDAP) is used, storage +and verification of the account password are controlled by that backend.
+This account-password hash is separate from any recoverable copy of the login +password that Nextcloud stores in connection with authentication tokens, as +described below.
+After successful authentication, Nextcloud issues an authentication token that +the client presents with subsequent authenticated requests. A valid token can +authenticate as the associated user, subject to the token’s scope, expiration, +type, and server-side validity checks. Depending on the token type and client, +the token may be transmitted in a session cookie, used as an app password, or +sent as a bearer token.
+Nextcloud does not store the plaintext authentication token in the database.
+Instead, it stores a SHA-512 hash derived from the token and the
+instance-specific secret. The corresponding server-side token record
+contains the associated user identity, authentication metadata, and
+cryptographic key material. Authentication tokens must therefore be
+protected like passwords. They should not be logged, placed in URLs, or
+intentionally persisted outside the client that uses them.
By default, auth.storeCryptedPassword is enabled. When this setting is
+enabled and the login password is available during token creation, Nextcloud
+stores a reversibly encrypted copy of it in the server-side
+authentication-token record.
For an account using the built-in database user backend, this encrypted copy is +separate from the one-way account-password hash. The database contains the +one-way account-password hash and also contains an encrypted password copy for +each authentication-token record created with password storage enabled and a +login password supplied.
+The recoverable copy is used by features that need the original login +credentials, such as connecting to external storage, autoconfiguring accounts +in the Mail app, and periodically checking whether the login credentials +remain valid. When token creation receives no login password, the resulting +token record contains no recoverable password. Such a token record remains +without a stored password until Nextcloud receives the password during a later +login or password update.
+The authentication token itself does not contain the login password. Each
+token record has a separate RSA key pair. Nextcloud encrypts the login password
+with the record’s public key and encrypts the corresponding private key using
+the authentication token together with the instance-specific secret from
+config.php. Possession of the authentication token, instance secret, and
+corresponding database record is therefore sufficient to decrypt a password
+stored in that record.
Administrators can disable this behavior with auth.storeCryptedPassword.
+Disabling it does not affect the one-way account-password hash used by the
+built-in database user backend. Features that rely on recovering the login
+password from an authenticate-token record cannot retrieve it from records
+created without a stored password.
When an authentication token contains a stored password, Nextcloud periodically +checks that password against the user backend. If the password is no longer +valid, Nextcloud marks the token as having an invalid password and rejects +authentication with that token. When the token contains no stored password, +Nextcloud skips this password check. Consequently, changing a password directly +in an external user backend does not cause a token without a stored password +to be rejected through the periodic credential check. The password change +alone does not invalidate the token; the token remains valid until it expires, +is otherwise invalidated, or the user is disabled.
+Leakage of authentication data has the following security consequences:
An actor with access to only the access token can impersonate users and login as them.
An actor with access to the access token, the Nextcloud config file, and the Nextcloud database can decrypt user passwords stored in the database.
An actor with a valid authentication token can authenticate as the associated +user, subject to the token’s scope, expiration, type, and server-side validity +checks.
An actor with the authentication token, the instance-specific secret from
+config.php, and the corresponding database record can decrypt the login
+password stored in that record.
An account-password hash does not reveal the original password directly, but +an actor who obtains it can perform offline password-guessing attacks.
Nextcloud uses the bcrypt algorithm, and thus for security and performance -reasons, e.g. Denial of Service as CPU demand increases exponentially, it only -verifies the first 72 characters of passwords. This applies to all passwords -that you use in Nextcloud: user passwords, passwords on link shares, and -passwords on external shares.
+Nextcloud accepts account passwords of up to 469 bytes through its standard +account-creation, password-change, and password-reset interfaces. This is the +maximum account-password length enforced by these interfaces. Because the +limit is measured in bytes, a password containing multibyte characters (such as +emojis or characters from non-Latin scripts) can reach the limit with fewer +than 469 characters.
+Administrators can use the +Password Policy app to +configure requirements such as a minimum password length and other complexity +rules. External user backends can impose additional or different requirements.
+The following implementation details do not change the 469-byte +account-password maximum, but are relevant when selecting a password policy:
+When auth.storeCryptedPassword is enabled and an account password is
+longer than 214 bytes, Nextcloud uses a larger RSA key when creating
+authentication-token records. This increases token-generation overhead, but
+does not prevent passwords between 215 and 469 bytes from being accepted.
+The 214-byte threshold is therefore a performance consideration, not a
+password-length limit.
Administrators who expect very long or one-time passwords to be used may
+consider disabling auth.storeCryptedPassword to avoid this overhead,
+subject to the functional consequences described above.
Nextcloud prefers Argon2id for one-way password hashing (when supported +by the PHP installation), with Argon2i and bcrypt as fallbacks. Bcrypt +considers only the first 72 bytes of its input. Therefore, if bcrypt is +selected, input after the first 72 bytes does not contribute to password +verification. This is a bcrypt-specific behavior, not a general 72-byte +limit imposed by Nextcloud.
+Passwords protecting public link and mail shares use the same one-way password +hasher and are subject to the applicable share-password policy. They are not +stored in authentication-token records, so the encryption-related performance +considerations above do not apply.
Some functionalities require the Nextcloud server to be able to connect remote systems via https/443. This paragraph also includes the data which is being transmitted to the Nextcloud GmbH. Depending on your server setup, these are the possible connections:
@@ -598,7 +707,7 @@Exposing your server to the internet will inevitably lead to the exposure of the services running on the internet-exposed ports to brute force login attempts.
This guide will enable blocking of the originating IP addresses at an operating diff --git a/server/latest/admin_manual/objects.inv b/server/latest/admin_manual/objects.inv index 7e925c085fd..951ecf24a0b 100644 Binary files a/server/latest/admin_manual/objects.inv and b/server/latest/admin_manual/objects.inv differ diff --git a/server/latest/admin_manual/office/euro-office/installation.html b/server/latest/admin_manual/office/euro-office/installation.html index 66d4a95c679..e60e35107d0 100644 --- a/server/latest/admin_manual/office/euro-office/installation.html +++ b/server/latest/admin_manual/office/euro-office/installation.html @@ -259,7 +259,25 @@
By default, documents and configuration are lost when the container is removed. -Mount volumes to persist them:
+By default, documents, configuration, and the secrets generated on first start are lost when the container is +removed. Mount volumes to persist them:
docker run -d \
--name euro-office \
--restart=unless-stopped \
@@ -257,14 +257,32 @@ Persistent data -e JWT_ENABLED=true \
-e JWT_SECRET=your-secret \
-v /path/to/data:/var/lib/euro-office/documentserver \
+ -v /path/to/private:/var/www/euro-office/Data \
-v /path/to/logs:/var/log/euro-office/documentserver \
-v /path/to/config:/etc/euro-office/documentserver \
ghcr.io/euro-office/documentserver:latest
/var/www/euro-office/Data holds state the container creates at run time and is easy to overlook, because it is
+a separate tree from /var/lib/euro-office/documentserver:
runtime.json — the administration panel password and any settings changed at run time
.private/jwt_secret — only created when JWT_SECRET is not supplied
.private/secure_link_secret — only created when SECURE_LINK_SECRET is not supplied
wopi_private.key and wopi_public.key — only created when WOPI_ENABLED=true
Without this volume all of it is discarded when the container is recreated, and the generated values differ on the +next start. Secrets you pass in as environment variables are not affected, but a regenerated JWT secret no longer +matches the one configured in the Nextcloud connector app, and the connection stays broken until the new value is +copied over.
The variables below are read by the container entrypoint and written into local.json and the nginx
+configuration at start-up. The four variables that limit file sizes are documented separately in
+Size limits.
Variable |
+Default |
+Description |
+|
|---|---|---|---|
|
+
|
+Database engine (standalone image supports |
|
|
|
-PostgreSQL host (for external database) |
+Database host |
|
+|||
|
+
|
+Database port |
+|
|
|
-PostgreSQL database name |
+Database name |
|
+|||
|
|
-PostgreSQL user |
+Database user |
+
|
+— |
+Database password |
+
Note
+DB_PASSWORD is a deprecated alias for DB_PWD. It still works, but the container logs a warning at
+start-up. DB_PWD wins if both are set.
Variable |
+Default |
+Description |
|---|---|---|
|
|
Redis host (for external Redis) |
|
+||
|
+
|
+Redis port |
+
|
+— |
+Redis username for ACL-based authentication. Only written to the configuration when set |
+
|
+— |
+Redis password. Only written to the configuration when set |
+
|
+— |
+Redis database number. Only written to the configuration when set |
+
Variable |
+Default |
+Description |
+
|---|---|---|
|
|
RabbitMQ host (for external RabbitMQ) |
|
+
|
+RabbitMQ port |
+
|
+
|
+RabbitMQ credentials |
+
|
+
|
+Virtual host name. A leading slash is added automatically if you omit it |
+
|
+— |
+Complete AMQP connection URI. Takes precedence over all other |
+
Note
+The container only points the Document Server at an external broker when AMQP_URI is set or AMQP_HOST
+differs from localhost. Otherwise the RabbitMQ instance bundled in the image is used.
Variable |
+Default |
+Description |
+
|---|---|---|
|
+
|
+Enable WOPI protocol support. An RSA key pair is generated in |
+
These variables control how the Document Server fetches documents from storage such as Nextcloud.
+Variable |
+Default |
+Description |
+
|---|---|---|
|
+
|
+Allow the Document Server to fetch files from private IP ranges |
+
|
+
|
+Allow fetching documents from meta-private IPs (169.254.0.0/16) |
+
|
+
|
+Disable TLS certificate validation for outbound requests to storage |
+
Warning
+USE_UNAUTHORIZED_STORAGE=true sets rejectUnauthorized: false on every outbound HTTPS connection the
+Document Server makes. The certificate chain, the host name, and the expiry date of the storage server are no
+longer checked, so any machine on the network path can impersonate your Nextcloud instance and read or modify
+the documents in transit. It has no effect on plain HTTP connections, which never present a certificate.
Only use it for self-signed certificates in a trusted network, and prefer adding the certificate authority to +the container’s trust store instead.
+Variable |
+Default |
+Description |
+
|---|---|---|
|
+— |
+Path inside the container to the TLS certificate |
+
|
+— |
+Path inside the container to the matching private key |
+
|
+— |
+Path to a Diffie-Hellman parameter file. When unset or unreadable, the |
+
|
+
|
+Value for the nginx |
+
|
+
|
+Send an HSTS header. When |
+
|
+
|
+HSTS max-age in seconds (default 1 year) |
+
Important
+SSL_DHPARAM_PATH, SSL_VERIFY_CLIENT, and both ONLYOFFICE_HTTPS_HSTS_* variables are only applied
+when SSL_CERTIFICATE_PATH and SSL_KEY_PATH are both set and both files exist inside the container.
+Without them the container serves plain HTTP and these four variables have no effect at all.
Variable |
+Default |
+Description |
+
|---|---|---|
|
+
|
+Number of nginx worker processes |
+
|
+
|
+Value for the nginx |
+
|
+
|
+Write an access log to |
+
|
+
|
+Maximum size of an inbound request body — see Size limits |
+
|
+generated |
+Secret used for the nginx secure link URLs. When unset, a random 20-character secret is generated and
+stored in |
+
Variable |
+Default |
+Description |
+
|---|---|---|
|
+
|
+Enable StatsD metrics collection and start the metrics service |
+
|
+
|
+StatsD host |
+
|
+
|
+StatsD port |
+
|
+
|
+Prefix prepended to every metric name |
+
Note
+METRICS_HOST, METRICS_PORT, and METRICS_PREFIX are only written to the configuration when
+METRICS_ENABLED=true.
Variable |
+Default |
+Description |
+
|---|---|---|
|
+
|
+log4js level for the default category, for example |
+
|
+
|
+Enable editor plugins |
+
|
+
|
+Regenerate font cache on startup |
+
|
+
|
+Start the administration panel service |
+
|
+
|
+Start the bundled example application at |
+
Four variables limit file sizes, and they apply to two independent paths through the Document Server. Which +variables matter depends on which path the file takes — raising the wrong pair has no effect.
+When a user opens or converts a document that is already stored in Nextcloud, the Document Server fetches the file +itself over HTTP from Nextcloud. Nothing is uploaded from the browser, so neither the nginx request body limit nor +the internal request body limit is involved. Two variables apply:
+1. The server downloads the file — FILECONVERTER_MAX_DOWNLOAD_BYTES is the maximum number of bytes the
+Document Server will fetch. Default is 524288000 (500 MB). A larger document fails to open:
-e FILECONVERTER_MAX_DOWNLOAD_BYTES=838860800
+2. The server unzips the archive — FILECONVERTER_INPUT_LIMIT_UNCOMPRESSED limits the uncompressed size of
+the XML inside the office file’s ZIP container. Default is 500MB:
-e FILECONVERTER_INPUT_LIMIT_UNCOMPRESSED=800MB
+For example, a user opens a 200 MB .pptx. The 500 MB download limit is already sufficient, so no change is
+needed there. But a 200 MB presentation with embedded images, shapes, or animations can hold 800 MB of uncompressed
+XML, which exceeds the 500 MB default — so only FILECONVERTER_INPUT_LIMIT_UNCOMPRESSED has to be raised.
Note
+FILECONVERTER_MAX_DOWNLOAD_BYTES must be a plain byte count with no unit suffix. A value such as 800MB
+is rejected: the container writes a warning to its standard error stream at start-up, silently keeps the
+built-in default, and starts normally. Check the container log after changing it.
Note
+FILECONVERTER_INPUT_LIMIT_UNCOMPRESSED accepts a size suffix and applies the same value to all four format
+groups the Document Server knows — docx, xlsx, pptx, and vsdx and their variants. It replaces
+the whole limit list rather than patching a single entry, so a format group added by a future release would
+lose its own default until this variable is updated.
These limits apply to requests that carry a file in the request body — inserting an image into an open document, +saving a document back, and conversion or command requests posted to the Document Server. They do not apply to +opening a stored document.
+1. Nginx accepts the request body — NGINX_CLIENT_MAX_BODY_SIZE must be higher than the payload. Default is
+100m; a larger body is rejected with 413 Request Entity Too Large:
-e NGINX_CLIENT_MAX_BODY_SIZE=250m
+2. The Document Server parses the body — MAX_FILE_SIZE is the internal request body limit in bytes.
+Default is 104857600 (100 MB):
-e MAX_FILE_SIZE=268435456
+Both have to be raised together. Nginx rejects the request first, so raising only MAX_FILE_SIZE changes
+nothing.
Variable |
+Default |
+Applies to |
+
|---|---|---|
|
+
|
+Documents the server downloads from Nextcloud |
+
|
+
|
+Uncompressed XML inside any office file the server opens |
+
|
+
|
+Request bodies posted to the server (image inserts, save-back, conversion) |
+
|
+
|
+Request bodies posted to the server (image inserts, save-back, conversion) |
+
docker pull ghcr.io/euro-office/documentserver:latest
diff --git a/server/latest/admin_manual/searchindex.js b/server/latest/admin_manual/searchindex.js
index 8126f58285e..372056fe1c9 100644
--- a/server/latest/admin_manual/searchindex.js
+++ b/server/latest/admin_manual/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {".htaccess": [[134, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[134, "st-login"], [146, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[111, "account-data"]], "Account delegation": [[117, "account-delegation"]], "Activating": [[58, "activating"]], "Activities are missing for shared files or team folders": [[53, "activities-are-missing-for-shared-files-or-team-folders"]], "Activities in Team Folders or External Storages": [[53, "activities-in-team-folders-or-external-storages"]], "Activity": [[60, "activity"]], "Activity and audit logs": [[111, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[108, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[168, "add-repository"]], "Add user to group": [[76, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Additional Apache configurations": [[134, "additional-apache-configurations"]], "Additional configuration options": [[160, "additional-configuration-options"]], "Additional configuration options via occ": [[81, "additional-configuration-options-via-occ"]], "Additional file-based logging parameters": [[67, "additional-file-based-logging-parameters"]], "Additional notes for Redis vs. APCu on memory caching": [[59, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[98, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[114, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[26, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[67, "admin-audit-log-optional"]], "Admin delegation": [[157, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[114, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[95, null], [99, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced server settings": [[161, "advanced-server-settings"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[135, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[63, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[60, "all-other-configuration-options"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[132, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[132, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[132, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[132, "allow-access-to-ldap-server"]], "Allow access to NFS": [[132, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[132, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[132, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[132, "allow-access-to-network-memcache"]], "Allow access to remote network": [[132, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[113, "allow-subscriptions-on-local-network"]], "Alternate Code Locations": [[60, "alternate-code-locations"]], "Amazon S3": [[31, null]], "Android 11 and Below": [[55, "android-11-and-below"]], "Android 12 and Above": [[55, "android-12-and-above"]], "Android Deep Link Handling": [[55, null]], "Anti-abuse alerts": [[117, "anti-abuse-alerts"]], "Antivirus": [[157, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [124, "apache"]], "Apache HTTP Server 2.4": [[93, "apache-http-server-2-4"]], "Apache Web server configuration": [[134, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[26, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[26, "apache-with-mod-proxy-fcgi"]], "Apache2": [[69, "apache2"]], "App passwords": [[73, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[182, "appapi-app-api-is-now-a-default-app"], [183, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[184, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[96, null]], "Applying a patch": [[137, "applying-a-patch"]], "Approaching Upgrades": [[149, "approaching-upgrades"]], "Approval/Suspend steps": [[189, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[150, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[150, null]], "Arguments": [[98, "arguments"], [99, "arguments"], [99, "id1"], [99, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[103, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[158, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[117, "attachment-size-limit"]], "Authentication": [[73, null], [189, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[129, "autoconfig"]], "Autoconfig for your mail domain fails": [[119, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[182, "automated-clean-up-of-app-password"]], "Automated installation with autoconfig.php": [[121, null]], "Automated tagging of files": [[103, null]], "Automatic database user creation": [[129, "automatic-database-user-creation"]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[102, "available-rules"], [103, "available-rules"]], "Backend apps": [[15, "backend-apps"], [15, "id39"], [15, "id45"], [15, "id54"], [15, "id59"], [15, "id64"], [15, "id69"], [15, "id73"], [15, "id79"], [15, "id86"]], "Background job": [[44, "background-job"], [49, "background-job"]], "Background jobs": [[57, null], [113, "background-jobs"], [157, "background-jobs"]], "Background jobs selector": [[150, "background-jobs-selector"]], "Background sync interval": [[81, "background-sync-interval"], [117, "background-sync-interval"]], "Backup": [[141, null]], "Backup database": [[141, "backup-database"]], "Backup folders": [[141, "backup-folders"]], "Backups": [[28, "backups"], [108, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[148, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[84, "bearer-token-validation"]], "Before You Enable Encryption": [[28, "before-you-enable-encryption"]], "Behavior": [[92, "behavior"], [92, "id3"]], "Beta releases and Release candidates": [[187, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[113, "birthday-calendar"]], "Block desktop client access at the HTTP layer": [[93, null]], "Block every standard desktop client": [[93, "block-every-standard-desktop-client"]], "Block releases older than 34.0.2": [[93, "block-releases-older-than-34-0-2"]], "Blocking user groups": [[102, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[157, "broadcast"]], "Brute force protection": [[58, null]], "Brute force protection and load balancers/reverse proxies": [[58, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Brute force protection vs fail2ban": [[58, "brute-force-protection-vs-fail2ban"]], "Bug reporting": [[187, "bug-reporting"]], "Bugs": [[139, "bugs"]], "Building a workflow": [[189, "building-a-workflow"]], "CPU Architecture and OS": [[135, "cpu-architecture-and-os"]], "Cache Directory location": [[59, "cache-directory-location"]], "Cache Key Prefix for Redis or Memcached": [[59, "cache-key-prefix-for-redis-or-memcached"]], "Cache warnings": [[70, "cache-warnings"]], "Caching": [[81, "caching"], [133, "id1"]], "Caddy": [[69, "caddy"]], "Caddy 2": [[93, "caddy-2"]], "Calendar": [[119, "calendar"]], "Calendar / CalDAV": [[113, null]], "Calendar Object Events": [[188, "calendar-object-events"]], "Calendar server settings": [[113, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[189, "can-i-create-a-script"]], "Canonical webroot": [[160, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[178, "changelog"]], "Changing installed features": [[92, "changing-installed-features"]], "Changing the display of federated shares": [[41, "changing-the-display-of-federated-shares"]], "Chat": [[1, "chat"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[29, "check-the-block-signatures"]], "Check the signature": [[29, "check-the-signature"]], "Checking for old files": [[30, "checking-for-old-files"]], "Choose the policy": [[93, "choose-the-policy"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[125, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[94, "citrix-workspace-known-issues"]], "Code signing": [[138, null]], "Collabora Online": [[159, null]], "Collabora Online Server": [[160, "collabora-online-server"]], "Collectives": [[18, null], [88, null]], "Collectives and group_everyone": [[18, "collectives-and-group-everyone"]], "Collectives and guest users": [[18, "collectives-and-guest-users"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[114, "command-line"]], "Command line": [[94, "command-line"]], "Command line installation": [[157, "command-line-installation"]], "Command line upgrade": [[157, "command-line-upgrade"]], "Command reference": [[151, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [133, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[102, "common-misconfigurations"], [106, "common-misconfigurations"]], "Common problems / error messages": [[139, "common-problems-error-messages"]], "Common settings": [[161, "common-settings"]], "Common templates": [[161, "common-templates"]], "Complete non-interactive setup": [[121, "complete-non-interactive-setup"]], "Completing Installation": [[129, "completing-installation"]], "Compression": [[133, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[150, "config-commands"]], "Config file": [[94, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [24, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [117, "configuration"], [134, "configuration"], [160, null], [161, null], [168, "configuration"]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[60, null]], "Configuration keys": [[82, "configuration-keys"]], "Configuration reference": [[53, "configuration-reference"]], "Configuration tips": [[41, "configuration-tips"]], "Configurations preventing embedding": [[64, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[167, "configure-the-app-in-nextcloud"]], "Configure theming via CLI": [[72, "configure-theming-via-cli"]], "Configuring": [[40, "configuring"]], "Configuring ClamAV on Nextcloud": [[56, "configuring-clamav-on-nextcloud"]], "Configuring Federation Sharing": [[41, null]], "Configuring ICAP on Nextcloud": [[56, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[26, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[48, null]], "Configuring PHP": [[26, "configuring-php"]], "Configuring Sendmail/qmail": [[63, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[22, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[63, "configuring-an-smtp-server"]], "Configuring the app store timeout": [[16, "configuring-the-app-store-timeout"]], "Configuring through admin_audit app settings (legacy)": [[67, "configuring-through-admin-audit-app-settings-legacy"]], "Configuring trusted Nextcloud servers": [[41, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the Activity app": [[53, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[61, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[26, "configuring-your-web-server"]], "Confirm everything is working": [[56, "confirm-everything-is-working"]], "Connecting over TLS": [[59, "connecting-over-tls"]], "Connecting over UNIX socket": [[59, "connecting-over-unix-socket"]], "Connecting to Redis cluster over TLS": [[59, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[59, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[59, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[59, "connecting-to-single-redis-server-over-unix-socket"]], "Connection encryption parameters": [[121, "id1"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[94, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection scope": [[24, "connection-scope"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[127, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[119, "contacts"]], "Contacts / CardDAV": [[114, null]], "Contacts Interaction": [[115, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[100, "container-started"]], "Container log rotation": [[97, "container-log-rotation"]], "Context Agent": [[1, "context-agent"], [15, "context-agent"]], "Context Chat": [[1, "context-chat"], [15, "context-chat"]], "Context Chat Search": [[15, "context-chat-search"]], "Controlling file versions and aging": [[44, null]], "Converting database type": [[20, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[107, null]], "Cookies stored by Nextcloud": [[107, "cookies-stored-by-nextcloud"]], "Core Components": [[120, "core-components"]], "Core Dumps": [[94, "core-dumps"]], "Create Debug Archive": [[94, "create-debug-archive"]], "Create a group": [[75, "create-a-group"]], "Creating Federation Shares via public Link Share": [[41, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[82, "creating-a-configuration"]], "Creating a new Federation Share": [[41, "creating-a-new-federation-share"]], "Creating a new user": [[85, "creating-a-new-user"]], "Creating assetlinks.json": [[55, "creating-assetlinks-json"]], "Creating persistent file Shares": [[43, "creating-persistent-file-shares"]], "Critical changes": [[178, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[125, "cron-job"]], "Cron jobs": [[57, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[160, "custom-fonts"]], "Custom public calendars": [[113, "custom-public-calendars"]], "Customize the appearance of Nextcloud": [[72, "customize-the-appearance-of-nextcloud"]], "Cybersecurity and physical security of the hardware": [[12, "cybersecurity-and-physical-security-of-the-hardware"]], "DAV & database commands": [[152, null]], "DAV commands": [[152, "dav-commands"]], "DAV sync tokens retention": [[179, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[121, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[109, "data-request-app"]], "Data conversions": [[152, "data-conversions"]], "Data directory location": [[129, "data-directory-location"]], "Data held by third-party services": [[111, "data-held-by-third-party-services"]], "Data retention": [[108, null], [113, "data-retention"], [114, "data-retention"], [115, "data-retention"]], "Database": [[124, "database"], [125, "database"]], "Database choice": [[129, "database-choice"]], "Database commands": [[152, "database-commands"]], "Database configuration": [[21, null], [22, null], [183, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[119, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[135, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[133, "debug-mode"]], "Debugging": [[151, "debugging"]], "Debugging sync issues": [[139, "debugging-sync-issues"]], "Deck tools (require Deck)": [[2, "deck-tools-require-deck"]], "Declarations": [[90, null]], "Decrease sync delay": [[38, "decrease-sync-delay"]], "Decrypt the blocks": [[29, "decrypt-the-blocks"]], "Decrypt the private key": [[29, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[29, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[28, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[29, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[29, "decryption-read-the-file-key"]], "Decryption: read the private key": [[29, "decryption-read-the-private-key"]], "Dedicated audit logging configuration": [[67, "dedicated-audit-logging-configuration"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[97, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[60, "default-parameters"]], "Default audit log location": [[67, "default-audit-log-location"]], "Default file extension": [[71, "default-file-extension"]], "Default file templates": [[27, "default-file-templates"]], "Default language": [[66, "default-language"]], "Default locale": [[66, "default-locale"]], "Default scope values (reference)": [[77, "default-scope-values-reference"]], "Default user agent for outgoing requests changed": [[185, "default-user-agent-for-outgoing-requests-changed"]], "Defaults": [[60, "defaults"], [77, "defaults"]], "Defining trusted proxies": [[69, "defining-trusted-proxies"]], "Definitions": [[28, "definitions"]], "Delete a group": [[75, "delete-a-group"]], "Delete a user": [[76, "delete-a-user"]], "Deleted Items (trash bin)": [[49, null], [60, "deleted-items-trash-bin"]], "Deleting a configuration": [[82, "deleting-a-configuration"]], "Deleting a single configuration value": [[150, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[83, "deleting-local-nextcloud-users"]], "Deleting users": [[85, "deleting-users"]], "Demote user from subadmin": [[76, "demote-user-from-subadmin"]], "Denied access": [[102, "denied-access"]], "Denying access to folders": [[102, "denying-access-to-folders"]], "DeployConfig": [[98, "deployconfig"]], "DeployConfig options": [[98, "deployconfig-options"]], "Deployment": [[127, "deployment"]], "Deployment configurations": [[97, null]], "Deployment recommendations": [[123, null]], "Derive the decryption key": [[29, "derive-the-decryption-key"]], "Derive the encryption key": [[29, "derive-the-encryption-key"]], "Desktop Client Deployment and Setup": [[92, null]], "Desktop Clients": [[91, null]], "Desktop client": [[135, "desktop-client"]], "Detecting changes made outside Nextcloud": [[40, "detecting-changes-made-outside-nextcloud"]], "Differences from External Storage": [[48, "differences-from-external-storage"]], "Directory settings": [[81, "directory-settings"]], "Disable": [[99, "disable"]], "Disable 3rdparty / non-shipped apps": [[139, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[127, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[117, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[76, "disable-a-user"]], "Disable an app": [[17, "disable-an-app"]], "Disable and enable users": [[85, "disable-and-enable-users"]], "Disable creation of example events": [[152, "disable-creation-of-example-events"]], "Disable preview image generation": [[127, "disable-preview-image-generation"]], "Disable profiles globally": [[77, "disable-profiles-globally"]], "Disable rich text editing": [[71, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[71, "disable-rich-workspaces-globally"]], "Disabling automatic updates": [[92, "disabling-automatic-updates"]], "Disabling background scan task": [[56, "disabling-background-scan-task"]], "Disabling previews:": [[47, "disabling-previews"]], "Disabling the \u201cYour email address [\u2026] was changed\u201d email": [[85, "disabling-the-your-email-address-was-changed-email"]], "Disabling two-factor authentication": [[80, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[132, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[43, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[138, "do-we-lock-down-nextcloud"]], "Docker": [[97, "docker"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[97, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[97, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[97, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[97, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[96, "docker-socket-proxy"]], "Docker Socket Proxy security": [[97, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[96, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[97, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[97, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Domain Change": [[62, null]], "Downgrading": [[187, "downgrading"]], "Download Logs": [[100, "download-logs"]], "Drop Account app": [[109, "drop-account-app"]], "Duplicating server configurations": [[81, "duplicating-server-configurations"]], "During Version Creation": [[44, "during-version-creation"]], "During the Regular Background Job": [[44, "during-the-regular-background-job"]], "Edit data of a single group": [[75, "edit-data-of-a-single-group"]], "Edit data of a single user": [[76, "edit-data-of-a-single-user"]], "Editions": [[120, "editions"]], "Editor customization settings": [[161, "editor-customization-settings"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[99, "enable"]], "Enable HTTP Strict Transport Security": [[127, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[133, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[133, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[160, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[127, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[132, "enable-updates-via-the-web-interface"]], "Enabled": [[100, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[134, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling autocompletion": [[151, "enabling-autocompletion"]], "Enabling debug mode": [[63, "enabling-debug-mode"]], "Enabling email notifications": [[53, "enabling-email-notifications"]], "Enabling the antivirus app for files": [[56, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[61, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[80, "enabling-two-factor-authentication"]], "Encrypt and decrypt all data": [[153, "encrypt-and-decrypt-all-data"]], "Encrypt the blocks": [[29, "encrypt-the-blocks"]], "Encrypt the private key": [[29, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[29, "encrypt-seal-the-file-key"]], "Encrypted File Detection Limitations with ClamAV": [[56, "encrypted-file-detection-limitations-with-clamav"]], "Encrypted MySQL / MariaDB connection": [[121, "encrypted-mysql-mariadb-connection"]], "Encrypted PostgreSQL connection": [[121, "encrypted-postgresql-connection"]], "Encrypted database connection": [[121, "encrypted-database-connection"], [122, "encrypted-database-connection"]], "Encrypting All Files": [[28, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[28, "encrypting-external-mountpoints-and-team-folders"]], "Encryption Method Comparison": [[28, "encryption-method-comparison"]], "Encryption commands": [[153, null]], "Encryption format": [[30, "encryption-format"]], "Encryption key cannot be found": [[28, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[28, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption modules": [[153, "encryption-modules"]], "Encryption: encrypt the file": [[29, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[29, "encryption-generate-the-file-key"]], "End-of-life": [[187, "end-of-life"]], "Energy consumption": [[89, null]], "Enforcing two-factor authentication": [[80, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[127, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [95, "environment-variables"]], "Environment variables": [[151, "environment-variables"], [165, "environment-variables"]], "Errors": [[138, "errors"]], "Establishing the target database": [[20, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [15, "ethical-ai-rating"]], "Event alarm types": [[113, "event-alarm-types"]], "Events": [[113, "events"]], "ExApps management": [[101, null]], "Example": [[17, "example"], [17, "id1"], [17, "id3"], [17, "id5"], [75, "example"], [75, "id1"], [75, "id3"], [75, "id5"], [75, "id8"], [76, "example"], [76, "id1"], [76, "id3"], [76, "id8"], [76, "id10"], [76, "id12"], [76, "id14"], [76, "id16"], [76, "id18"], [76, "id20"], [76, "id22"], [76, "id24"], [76, "id26"], [82, "example"], [82, "id1"], [82, "id3"], [82, "id5"], [103, "example"], [106, "example"]], "Example configuration": [[133, "example-configuration"]], "Example contact": [[114, "example-contact"]], "Example event": [[113, "example-event"]], "Example installation on CentOS 8": [[124, null]], "Example installation on OpenBSD": [[125, null]], "Example installation on Ubuntu 24.04 LTS": [[126, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[189, "example-workflows"]], "Example: The login page": [[58, "example-the-login-page"]], "Examples": [[60, "examples"], [69, "examples"], [75, "examples"], [76, "examples"], [76, "id6"], [92, "examples"], [92, "id4"], [102, "examples"], [121, "examples"]], "Excluding IP addresses from brute force protection": [[58, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from activity expiration": [[53, "excluding-users-from-activity-expiration"]], "Executing actions": [[103, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[152, "export-and-import-calendars"]], "Export threading data": [[119, "export-threading-data"]], "Exposed system address book": [[180, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[134, "external-media"]], "External storage": [[102, "external-storage"]], "FAQ": [[96, "faq"], [138, "faq"], [189, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[127, "fail2ban-introduction"]], "Fair Use Policy": [[139, "fair-use-policy"]], "Features": [[92, "features"]], "Features used by other apps": [[15, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[26, "federated-cloud-sharing"], [60, "federated-cloud-sharing"]], "Federated calendar shares": [[113, "federated-calendar-shares"]], "Federation sync": [[154, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[106, "file-age"]], "File conversion": [[42, null]], "File encodings": [[71, "file-encodings"]], "File format": [[29, "file-format"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id7"]], "File locations": [[29, "file-locations"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id8"]], "File operations": [[154, "file-operations"]], "File sharing": [[154, "file-sharing"]], "File sharing and management": [[46, null]], "File type: file": [[29, "file-type-file"]], "File type: file key file": [[29, "file-type-file-key-file"]], "File type: private key file": [[29, "file-type-private-key-file"]], "File type: public key file": [[29, "file-type-public-key-file"]], "File type: share key file": [[29, "file-type-share-key-file"]], "File versions": [[60, "file-versions"], [108, "file-versions"], [154, "file-versions"]], "Files": [[88, null]], "Files App": [[135, "files-app"]], "Files access control": [[102, null]], "Files and metadata": [[111, "files-and-metadata"]], "Files commands": [[154, null]], "Files external": [[154, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[188, "filters"]], "Fixing invalid code integrity messages": [[138, "fixing-invalid-code-integrity-messages"]], "Flow": [[105, null]], "Flow configuration": [[104, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[117, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[188, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[113, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[173, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[15, "frontend-apps"], [15, "id31"], [15, "id41"], [15, "id47"], [15, "id57"], [15, "id62"], [15, "id67"], [15, "id71"], [15, "id77"], [15, "id84"]], "Further Reading": [[28, "further-reading"]], "Further Resources": [[120, "further-resources"], [131, "further-resources"]], "GDPR compliance": [[110, null]], "General troubleshooting": [[139, null], [139, "id1"]], "Generate the file key": [[29, "generate-the-file-key"]], "Get a notification before a share expires": [[43, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[14, "get-a-task-by-id"]], "Get account IDs": [[119, "get-account-ids"]], "Get app info": [[17, "get-app-info"]], "Get data of a single user": [[76, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[56, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[17, "get-list-of-apps"]], "Get members of a group": [[75, "get-members-of-a-group"]], "Get subadmins of a group": [[75, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[76, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[76, "get-user-s-subadmin-groups"]], "Getting Started": [[88, null], [120, "getting-started"]], "Getting a single configuration value": [[150, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[127, "give-php-read-access-to-dev-urandom"]], "Globally": [[119, "globally"]], "Google OAuth": [[117, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[158, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [116, null]], "Groupware data": [[111, "groupware-data"]], "HAProxy": [[69, "haproxy"], [93, "haproxy"]], "HTTPD(8)": [[125, "httpd-8"]], "HTTPS encryption": [[134, "https-encryption"]], "HaRP": [[96, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[127, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[100, "heartbeat"]], "Helpful apps": [[109, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[113, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[63, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[63, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[22, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[63, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[22, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[63, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[63, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[175, "how-does-it-work"]], "How interactions are tracked": [[115, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "How queries are routed": [[24, "how-queries-are-routed"]], "How the \u201cFilesystem check frequency\u201d option works": [[40, "how-the-filesystem-check-frequency-option-works"]], "How to make external changes reliably detectable": [[40, "how-to-make-external-changes-reliably-detectable"]], "How to upgrade": [[149, null]], "How to verify scope behavior": [[77, "how-to-verify-scope-behavior"]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[22, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[117, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identify desktop client requests": [[93, "identify-desktop-client-requests"]], "Identifying Basic Functionality Problems": [[94, "identifying-basic-functionality-problems"]], "Image Pull": [[100, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Image tags": [[165, "image-tags"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[168, "import-signing-keys"]], "Important distinction from non-interactive provisioning": [[92, "important-distinction-from-non-interactive-provisioning"]], "Importing existing data": [[18, "importing-existing-data"]], "Importing from Dokuwiki": [[18, "importing-from-dokuwiki"]], "Imprint (Theming app)": [[109, "imprint-theming-app"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [15, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[20, "inconvertible-tables"]], "Info": [[157, "info"]], "Init": [[100, "init"]], "Initial Certification 2024/2025": [[89, "initial-certification-2024-2025"]], "Initial Content for new collectives": [[18, "initial-content-for-new-collectives"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[25, "initial-splitting"]], "Insight and debugging": [[14, null]], "Install from the command line": [[122, null]], "Install packages": [[168, "install-packages"]], "Install the Apache reverse proxy": [[167, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[167, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [88, null], [92, "installation"], [134, "installation"], [146, "installation"], [163, null], [170, null], [188, "installation"], [189, "installation"]], "Installation and server configuration": [[128, null]], "Installation example on Ubuntu 24.04": [[168, null]], "Installation example with Docker": [[167, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[134, null]], "Installation on TrueNAS": [[134, "installation-on-truenas"]], "Installation version": [[187, "installation-version"]], "Installation via install script": [[134, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[134, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[129, null], [134, "installation-wizard"]], "Installing AppAPI": [[96, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[96, "installing-exapps"]], "Installing Nextcloud": [[124, "installing-nextcloud"]], "Installing PHP and the required modules": [[124, "installing-php-and-the-required-modules"]], "Installing on Debian 12": [[164, null]], "Installing on Ubuntu 24.04 LTS": [[166, null]], "Installing on Windows (virtual machine)": [[134, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[124, "installing-optional-modules-redis-imagick"]], "Installing the connector app": [[161, "installing-the-connector-app"]], "Installing via Docker": [[165, null]], "Installing via Snap packages": [[134, "installing-via-snap-packages"]], "Instruction set for groups": [[75, null]], "Instruction set for users": [[76, null]], "Integrating into the web interface": [[67, "integrating-into-the-web-interface"]], "Integrity check": [[154, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[139, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [120, null], [188, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[113, "invitations"]], "Is code signing mandatory for apps?": [[138, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[94, "isolating-other-issues"]], "Issues and troubleshooting": [[140, null]], "Issues connecting to Outlook.com": [[119, "issues-connecting-to-outlook-com"]], "JIT": [[133, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[130, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[28, "key-management-modes"]], "Key Points & Limitations": [[28, "key-points-limitations"]], "Key generation: generate the key pair": [[29, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[29, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[29, "key-generation-store-the-public-key"]], "Key parameters": [[133, "key-parameters"]], "Key slots": [[156, "key-slots"]], "Key storage": [[153, "key-storage"]], "Key type: master key": [[29, "key-type-master-key"]], "Key type: public sharing key": [[29, "key-type-public-sharing-key"]], "Key type: recovery key": [[29, "key-type-recovery-key"]], "Key type: user key": [[29, "key-type-user-key"]], "KeyValueCache configuration in Nextcloud (config.php)": [[59, "keyvaluecache-configuration-in-nextcloud-config-php"]], "Keyboard shortcut": [[94, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[176, "known-smart-picker-providers"]], "Known backends": [[113, "known-backends"]], "Known link preview providers": [[175, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"], [97, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[155, null], [155, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[117, "llm-processing"]], "Language & Locale": [[66, null]], "Large file upload on object storage": [[26, "large-file-upload-on-object-storage"]], "Launch after installation": [[92, "launch-after-installation"]], "Legacy migration": [[153, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[187, "length-of-support-maintenance"]], "Limit on password length": [[127, "limit-on-password-length"]], "Limitation: renames are not detected reliably": [[40, "limitation-renames-are-not-detected-reliably"]], "Limitations": [[4, "limitations"], [5, "limitations"]], "Limitations in maintenance mode": [[151, "limitations-in-maintenance-mode"]], "Link previews": [[175, null]], "Linking external sites": [[64, null]], "List ExApps": [[99, "list-exapps"]], "List and filter tasks": [[14, "list-and-filter-tasks"]], "List of editable data fields": [[76, "list-of-editable-data-fields"]], "List registered daemons": [[98, "list-registered-daemons"]], "Listening to events": [[188, "listening-to-events"]], "Listing keys": [[156, "listing-keys"]], "Listing registered webhooks": [[188, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[117, "local-imap-and-smtp-servers"]], "Log Files": [[94, "log-files"]], "Log Levels": [[133, "log-levels"]], "Log field breakdown": [[67, "log-field-breakdown"]], "Log fields explained": [[67, "log-fields-explained"]], "Log level": [[67, "log-level"]], "Log level interaction": [[67, "log-level-interaction"]], "Log type": [[67, "log-type"]], "Logfiles": [[139, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging commands": [[157, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[119, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[81, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[130, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[149, "long-running-migration-steps"]], "Long term support": [[135, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[117, null], [119, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[117, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [142, null], [152, "maintenance"]], "Maintenance and release schedule": [[187, null]], "Maintenance and repair": [[153, "maintenance-and-repair"]], "Maintenance commands": [[157, "maintenance-commands"]], "Maintenance mode": [[141, "maintenance-mode"], [149, "maintenance-mode"]], "Maintenance releases": [[187, "maintenance-releases"]], "Major releases": [[187, "major-releases"]], "Major version upgrades": [[187, "major-version-upgrades"]], "Manage absences (out-of-office)": [[152, "manage-absences-out-of-office"]], "Manage addressbooks": [[152, "manage-addressbooks"]], "Manage calendar subscriptions": [[152, "manage-calendar-subscriptions"]], "Manage calendars": [[152, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[98, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[99, null]], "Managing apps": [[16, "managing-apps"]], "Managing apps with occ": [[16, "managing-apps-with-occ"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[119, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[149, "manual-steps-during-upgrade"]], "Manually scan a single file": [[56, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[56, "manually-trigger-the-background-scan"]], "MariaDB": [[141, "mariadb"], [147, "mariadb"], [147, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[153, "master-key"]], "Maximum chunk size": [[183, "maximum-chunk-size"]], "Maximum memory for image generation:": [[47, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[47, "maximum-preview-size"]], "Maximum scale factor:": [[47, "maximum-scale-factor"]], "Maximum upload size": [[134, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[135, "memory"]], "Memory caching": [[59, null]], "Memory caching backend configuration": [[60, "memory-caching-backend-configuration"]], "Microsoft Active Directory": [[81, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[48, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[145, null]], "Migrating to a different server": [[144, null]], "Migration from Collabora Online": [[171, null]], "Migrations on updates": [[25, "migrations-on-updates"]], "Mimetype aliases": [[51, "mimetype-aliases"]], "Mimetype mapping": [[51, "mimetype-mapping"]], "Mimetypes management": [[51, null]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[119, "missing-shared-calendars"]], "Mobile apps": [[135, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modifying": [[60, "modifying"]], "Modifying a configuration": [[82, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[63, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[52, null], [181, "monitoring"]], "Monitoring: Counting of active users": [[182, "monitoring-counting-of-active-users"], [183, "monitoring-counting-of-active-users"], [184, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[95, "mounts"]], "Moving the data directory / changing the datadirectory path": [[139, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multi-instance Object Store": [[48, "multi-instance-object-store"]], "Multibucket Object Store": [[48, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[48, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multimodal chat": [[1, "multimodal-chat"], [5, "multimodal-chat"]], "Multiple trusted domains and share link URLs": [[69, "multiple-trusted-domains-and-share-link-urls"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[141, "mysql"], [147, "mysql"], [147, "id4"]], "MySQL / MariaDB database": [[121, "mysql-mariadb-database"]], "NC & Docker on the Same-Host": [[97, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[97, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[97, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[130, null]], "NOTE": [[125, "note"]], "Next steps": [[126, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[98, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office": [[162, null]], "Nextcloud Office App Settings": [[160, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[189, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[188, "nextcloud-webhook-events"]], "Nextcloud accessible via multiple domains / conditional overwrite": [[69, "nextcloud-accessible-via-multiple-domains-conditional-overwrite"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[97, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[97, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[81, "nextcloud-avatar-integration"]], "Nextcloud behind a reverse proxy (subdirectory)": [[69, "nextcloud-behind-a-reverse-proxy-subdirectory"]], "Nextcloud configuration": [[65, null], [182, "nextcloud-configuration"], [183, "nextcloud-configuration"]], "Nextcloud final steps": [[125, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[97, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[130, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[130, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[139, "nextcloud-log-files"]], "Nextcloud prerequisites": [[127, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[94, "nextcloud-server-log-file"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[188, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[138, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[137, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[131, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [157, "oauth2"]], "OCC CLI": [[98, "occ-cli"]], "OCM commands": [[156, null]], "Object store": [[154, "object-store"]], "Obtaining a patch": [[137, "obtaining-a-patch"]], "Obtaining the Client Log File": [[94, "obtaining-the-client-log-file"]], "Office": [[88, null], [169, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[185, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[127, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[98, "options"], [99, "options"], [99, "id2"], [99, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[134, "other-web-servers"]], "Other issues": [[139, "other-issues"]], "Out-of-office feature": [[118, null]], "Outdated NSS / OpenSSL version": [[70, "outdated-nss-openssl-version"]], "Override default scopes in config.php": [[77, "override-default-scopes-in-config-php"]], "Overview": [[15, null], [28, "overview"], [58, "overview"], [58, "id1"], [134, "overview"], [143, "overview"], [149, "overview"], [187, "overview"], [188, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[124, "php"], [125, "php"]], "PHP Installation": [[131, "php-installation"]], "PHP Module Quick Reference Table": [[131, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[131, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[131, "php-modules-for-specific-applications"]], "PHP configuration": [[183, "php-configuration"]], "PHP ini Settings": [[131, "php-ini-settings"]], "PHP version and information": [[139, "php-version-and-information"]], "PHP-FPM configuration": [[134, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[130, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [121, "parameters"]], "Passing values between blocks": [[189, "passing-values-between-blocks"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[127, "passwords"]], "Patching Nextcloud": [[137, null]], "Patching apps": [[137, "patching-apps"]], "Patching server": [[137, "patching-server"]], "Payload envelope": [[188, "payload-envelope"]], "Per mail account": [[119, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Persistent data": [[165, "persistent-data"]], "Personal data stored": [[111, null]], "Place config directory outside of the web root": [[127, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[127, "place-data-directory-outside-of-the-web-root"]], "Podman": [[97, "podman"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[141, "postgresql"], [147, "postgresql"], [147, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [121, "postgresql-database"]], "Preparing PHP": [[131, null]], "Prerequisites": [[149, "prerequisites"], [165, "prerequisites"]], "Prerequisites for manual installation": [[134, "prerequisites-for-manual-installation"]], "Pretty URLs": [[134, "pretty-urls"]], "Prevent uploading of specific files": [[102, "prevent-uploading-of-specific-files"]], "Preview": [[154, "preview"]], "Previews": [[60, "previews"], [133, "previews"], [160, "previews"], [183, "previews"], [184, "previews"], [185, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[181, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[182, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[143, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[114, "privacy-and-user-property-scopes"]], "Process manager": [[134, "process-manager"]], "Process manager modes": [[133, "process-manager-modes"]], "Profile data": [[111, "profile-data"]], "Profile field visibility settings": [[77, "profile-field-visibility-settings"]], "Profiles": [[77, null]], "Promote user to subadmin": [[76, "promote-user-to-subadmin"]], "Proper SSL configuration": [[127, "proper-ssl-configuration"]], "Property visibility scopes": [[77, "property-visibility-scopes"]], "Provider apps": [[15, "provider-apps"], [15, "id70"], [15, "id75"], [15, "id81"]], "Provider removal": [[80, "provider-removal"]], "Providing default files": [[27, null]], "Proxy Configurations": [[60, "proxy-configurations"]], "Public collaborative tag": [[106, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[129, "quick-start"], [165, "quick-start"]], "Rate limits": [[113, "rate-limits"], [114, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[29, "read-the-envelope-key"]], "Read the file key": [[29, "read-the-file-key"]], "Read the private key file": [[29, "read-the-private-key-file"]], "Read the public key": [[29, "read-the-public-key"]], "Reading a configuration": [[82, "reading-a-configuration"]], "Recommendations": [[92, "recommendations"]], "Recommendations based on type of deployment": [[59, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[131, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[131, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[131, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[127, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[124, "redis"], [125, "redis"]], "Redis / Valkey using the Nextcloud KeyValueCache": [[59, "redis-valkey-using-the-nextcloud-keyvaluecache"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Redis using the phpredis PHP extension": [[59, "redis-using-the-phpredis-php-extension"]], "Reducing system load": [[133, "reducing-system-load"]], "Reference management": [[174, null]], "Refresh rate": [[113, "refresh-rate"]], "Register": [[98, "register"], [99, "register"], [100, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[187, "release-channels"]], "Release notes": [[88, null], [177, null], [178, null]], "Release schedule": [[187, "release-schedule"]], "Release types": [[187, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[107, "remember-me-cookies"]], "Remember-me tokens": [[108, "remember-me-tokens"]], "Reminder notifications": [[113, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[133, "replacing-sqlite"]], "Replication": [[24, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[131, "required-php-database-connectors"]], "Required PHP Modules": [[131, "required-php-modules"]], "Required parameters": [[92, "required-parameters"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [22, "requirements"]], "Rescans": [[138, "rescans"]], "Resend the welcome email": [[76, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[85, "reset-a-user-s-password"]], "Resetting a lost admin password": [[78, null]], "Resetting a user password": [[79, null]], "Resources and rooms": [[113, "resources-and-rooms"]], "Responding to data subject requests": [[112, null]], "Restore database": [[147, "restore-database"]], "Restore folders": [[147, "restore-folders"]], "Restoring": [[147, "restoring"]], "Restoring backup": [[147, null]], "Restrict admin actions to a specific range of IP addresses": [[127, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[160, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[160, "restrict-usage-to-specific-groups"]], "Retention of files": [[106, null]], "Revalidation": [[133, "revalidation"]], "Reverse proxy": [[69, null], [172, null]], "Reverting a patch": [[137, "reverting-a-patch"]], "Right of access (Article 15)": [[112, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[112, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[112, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[112, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[112, "right-to-restriction-of-processing-article-18"]], "Rotating keys": [[156, "rotating-keys"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[151, "running-occ"]], "Runtime Dependencies": [[18, "runtime-dependencies"]], "S3 SSE-C encryption support": [[48, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[184, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[124, "selinux"]], "SELinux configuration": [[132, null]], "SELinux configuration tips": [[134, "selinux-configuration-tips"]], "SFTP": [[37, null]], "SMB authentication": [[38, "smb-authentication"]], "SMB update notifications": [[38, "smb-update-notifications"]], "SMB/CIFS": [[38, null]], "SMTP": [[63, "smtp"]], "SMTP timeout": [[117, "smtp-timeout"]], "SQLite": [[141, "sqlite"], [147, "sqlite"]], "SQLite database": [[121, "sqlite-database"]], "SSL": [[60, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[81, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[22, "ssl-for-mysql-database"]], "SSL for PostgreSQL database": [[22, "ssl-for-postgresql-database"]], "SSL/TLS options of maintenance:install": [[122, "id1"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[152, "schema-inspection"]], "Schema maintenance": [[152, "schema-maintenance"]], "Scope defaults and precedence": [[77, "scope-defaults-and-precedence"]], "Scope visibility matrix": [[77, "scope-visibility-matrix"]], "Scopes and existing users": [[77, "scopes-and-existing-users"]], "Screen or tmux session": [[15, "screen-or-tmux-session"], [188, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[75, "search-get-groups"]], "Search/get users": [[76, "search-get-users"]], "Secure view settings": [[160, "secure-view-settings"]], "Security": [[157, "security"], [161, "security"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Sentinel managed replication setup.": [[60, "sentinel-managed-replication-setup"]], "Serve security related headers by the Web server": [[127, "serve-security-related-headers-by-the-web-server"]], "Server": [[135, "server"]], "Server and web server logs": [[108, "server-and-web-server-logs"], [111, "server-and-web-server-logs"]], "Server settings": [[161, "server-settings"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[133, null]], "Server-side Encryption": [[28, null]], "Server-side encryption details": [[29, null]], "Server-side encryption migration": [[30, null]], "Service Discovery": [[69, "service-discovery"]], "Service discovery": [[139, "service-discovery"]], "Session data": [[111, "session-data"]], "Session lifetime": [[108, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[150, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[150, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[150, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[63, "setting-mail-server-parameters-in-config-php"]], "Setting storage quotas": [[85, "setting-storage-quotas"]], "Setting up background jobs": [[134, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[124, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[189, "setting-up-the-workspace-connection"]], "Settings": [[133, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[181, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[127, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[157, "setup-checks"]], "Setup deploy daemon": [[96, "setup-deploy-daemon"]], "Setup fail2ban": [[127, "setup-fail2ban"]], "Share operations": [[157, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[114, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[117, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[148, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Sizing": [[133, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[133, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[117, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[157, "snowflake-ids"], [185, "snowflake-ids"]], "Some files have not passed the integrity check": [[70, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[29, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[81, "special-attributes"]], "Special mechanisms": [[32, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [15, "speech-to-text"]], "Speeding up webhook dispatch": [[188, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[157, "status"]], "Status Checks": [[100, "status-checks"]], "Status and control": [[153, "status-and-control"]], "Status return code": [[157, "status-return-code"]], "Step 1 \u2014 Enable the contrib component": [[164, "step-1-enable-the-contrib-component"]], "Step 1 \u2014 Install prerequisites": [[166, "step-1-install-prerequisites"]], "Step 2 \u2014 Create the database": [[166, "step-2-create-the-database"]], "Step 2 \u2014 Install prerequisites": [[164, "step-2-install-prerequisites"]], "Step 3 \u2014 Create the database": [[164, "step-3-create-the-database"]], "Step 3 \u2014 Pre-seed the installer answers": [[166, "step-3-pre-seed-the-installer-answers"]], "Step 4 \u2014 Download the package": [[166, "step-4-download-the-package"]], "Step 4 \u2014 Pre-seed the installer answers": [[164, "step-4-pre-seed-the-installer-answers"]], "Step 5 \u2014 Download the package": [[164, "step-5-download-the-package"]], "Step 5 \u2014 Install the package": [[166, "step-5-install-the-package"]], "Step 6 \u2014 Install the package": [[164, "step-6-install-the-package"]], "Step 6 \u2014 Verify": [[166, "step-6-verify"]], "Step 7 \u2014 Verify": [[164, "step-7-verify"]], "Step-by-Step Manual Upgrade": [[143, "step-by-step-manual-upgrade"]], "Storage of access tokens": [[127, "storage-of-access-tokens"]], "Store the envelope keys": [[29, "store-the-envelope-keys"]], "Store the file": [[29, "store-the-file"]], "Store the file key": [[29, "store-the-file-key"]], "Store the private key": [[29, "store-the-private-key"]], "Subscriptions": [[113, "subscriptions"]], "Summary": [[92, "summary"]], "Summary table": [[108, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[130, "suppressing-log-messages"]], "Sync": [[152, "sync"]], "Sync tokens": [[113, "sync-tokens"], [114, "sync-tokens"]], "Synchronising with clients after data recovery": [[147, "synchronising-with-clients-after-data-recovery"]], "System & maintenance commands": [[157, null]], "System Address Book": [[114, "system-address-book"]], "System Tag Events": [[188, "system-tag-events"]], "System Tags": [[158, "system-tags"]], "System address book": [[184, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[179, "system-email"]], "System environment variables": [[134, "system-environment-variables"]], "System requirements": [[135, null], [164, "system-requirements"], [166, "system-requirements"], [179, "system-requirements"], [180, "system-requirements"], [181, "system-requirements"], [182, "system-requirements"], [183, "system-requirements"], [184, "system-requirements"], [185, "system-requirements"], [186, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [188, "systemd-service"]], "TLS / encryption app": [[133, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[188, "tables-app-events"]], "Talk (chat and calls)": [[111, "talk-chat-and-calls"]], "Talk App": [[135, "talk-app"]], "Talk tools (require Talk)": [[2, "talk-tools-require-talk"]], "Target Audience": [[120, "target-audience"]], "Task processing": [[1, "task-processing"], [157, "task-processing"]], "TaskProcessing worker command": [[185, "taskprocessing-worker-command"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[100, null]], "Testing the configuration": [[81, "testing-the-configuration"]], "Text app": [[71, null]], "Text processing": [[1, "text-processing"], [15, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [15, "text-to-speech"]], "The LDAP configuration API": [[82, null]], "The Smart Picker": [[176, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[115, "the-recently-contacted-address-book"]], "The test with getenv(\"PATH\") only returns an empty response": [[70, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[70, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[70, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[72, null], [157, "theming"]], "Thread Summary": [[117, "thread-summary"]], "Timeout and other connectivity issues": [[119, "timeout-and-other-connectivity-issues"]], "Timeouts": [[117, "timeouts"]], "Tips and tricks": [[130, "tips-and-tricks"]], "Traefik 1": [[69, "traefik-1"]], "Traefik 2": [[69, "traefik-2"]], "Transactional file locking": [[45, null]], "Transactional file locking is disabled": [[70, "transactional-file-locking-is-disabled"]], "Transferring files to another user": [[43, "transferring-files-to-another-user"]], "Translation": [[117, "translation"]], "Trash bin": [[108, "trash-bin"], [113, "trash-bin"], [154, "trash-bin"]], "Trashbin": [[154, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [94, null], [119, null], [132, "troubleshooting"], [133, "troubleshooting"], [143, "troubleshooting"], [148, "troubleshooting"], [173, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[139, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[139, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[139, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[139, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[139, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[139, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[139, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[129, "trusted-domains"]], "Trusted proxy not detected when using a Unix domain socket": [[130, "trusted-proxy-not-detected-when-using-a-unix-domain-socket"]], "Tune PHP-FPM": [[133, "tune-php-fpm"]], "Tuning your database": [[133, "tuning-your-database"]], "Two-factor authentication": [[80, null], [158, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[119, "unable-to-update-contacts-or-events"]], "Uninstallation": [[136, null]], "Uninstalling": [[164, "uninstalling"], [165, "uninstalling"], [166, "uninstalling"]], "Unregister": [[98, "unregister"], [99, "unregister"]], "Update": [[99, "update"]], "Update notifications": [[16, "update-notifications"], [149, "update-notifications"]], "Update the reverse proxy configuration": [[171, "update-the-reverse-proxy-configuration"]], "Updating": [[164, "updating"], [165, "updating"], [166, "updating"], [167, "updating"]], "Upgrade distribution packages": [[171, "upgrade-distribution-packages"]], "Upgrade manually": [[143, null]], "Upgrade quickstart": [[146, "upgrade-quickstart"]], "Upgrade the docker image": [[171, "upgrade-the-docker-image"]], "Upgrade tips": [[146, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[179, null]], "Upgrade to Nextcloud 27": [[180, null]], "Upgrade to Nextcloud 28": [[181, null]], "Upgrade to Nextcloud 30": [[182, null]], "Upgrade to Nextcloud 31": [[183, null]], "Upgrade to Nextcloud 32": [[184, null]], "Upgrade to Nextcloud 33": [[185, null]], "Upgrade to Nextcloud 35": [[186, null]], "Upgrade via built-in updater": [[148, null]], "Upgrade via snap packages": [[146, null]], "Upload of files greater than 10 MiB fails": [[130, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[98, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[127, "use-https"]], "Use OOXML by default for new files": [[160, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[127, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[81, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[117, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[158, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[117, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[28, "user-keys-sharing-recovery"]], "User Profile attributes": [[81, "user-profile-attributes"]], "User and Group Permissions": [[40, "user-and-group-permissions"]], "User and group mapping": [[81, "user-and-group-mapping"]], "User authentication with LDAP": [[81, null]], "User authentication with OpenID Connect": [[84, null]], "User commands": [[158, "user-commands"]], "User deletion": [[115, "user-deletion"]], "User listing and login per nested groups": [[81, "user-listing-and-login-per-nested-groups"]], "User management": [[74, null], [85, null]], "User migration": [[117, "user-migration"]], "User password policy": [[86, null]], "User provisioning API": [[87, null]], "User session": [[60, "user-session"]], "Users": [[88, null]], "Users are not receiving notification emails": [[53, "users-are-not-receiving-notification-emails"]], "Users tab": [[81, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[139, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[43, "using-file-drop-share-links"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[84, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[60, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[133, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[148, "using-a-custom-download-url"]], "Using a self-hosted app store": [[16, "using-a-self-hosted-app-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[133, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[16, "using-custom-app-directories"]], "Using email templates": [[63, "using-email-templates"]], "Using private API": [[16, "using-private-api"]], "Using the Nextcloud KeyValueCache cache": [[45, "using-the-nextcloud-keyvaluecache-cache"]], "Using the Redis cache with the phpredis PHP module": [[45, "using-the-redis-cache-with-the-phpredis-php-module"]], "Using the Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[148, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [151, null]], "Using the web based updater": [[148, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Verify the rule": [[93, "verify-the-rule"]], "Versions": [[154, "versions"]], "Voice Chat": [[1, "voice-chat"]], "Warnings on admin page": [[70, null]], "Watermarks": [[161, "watermarks"]], "Web browser": [[135, "web-browser"]], "Web server and PHP modules": [[139, "web-server-and-php-modules"]], "Web server configuration": [[179, "web-server-configuration"], [180, "web-server-configuration"], [181, "web-server-configuration"], [182, "web-server-configuration"], [184, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[188, null]], "Webhook listeners": [[157, "webhook-listeners"]], "Webserver Log Files": [[94, "webserver-log-files"]], "What becomes limited when you lock it down?": [[77, "what-becomes-limited-when-you-lock-it-down"]], "What does the updater do?": [[148, "what-does-the-updater-do"]], "What local users can see": [[77, "what-local-users-can-see"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[176, "where-can-it-be-used"]], "Where do they appear?": [[175, "where-do-they-appear"]], "Who develops Nextcloud?": [[120, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[138, "why-did-nextcloud-add-code-signing"]], "Why don\u2019t I see the recovery key option in the Encryption settings?": [[28, "why-don-t-i-see-the-recovery-key-option-in-the-encryption-settings"]], "Why is my prompt slow?": [[15, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[63, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[135, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[189, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[160, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[157, "workflows"]], "XML output": [[17, "xml-output"], [17, "id2"], [17, "id4"], [17, "id6"], [75, "xml-output"], [75, "id2"], [75, "id4"], [75, "id6"], [75, "id7"], [75, "id9"], [76, "xml-output"], [76, "id2"], [76, "id4"], [76, "id5"], [76, "id7"], [76, "id9"], [76, "id11"], [76, "id13"], [76, "id15"], [76, "id17"], [76, "id19"], [76, "id21"], [76, "id23"], [76, "id25"], [76, "id27"], [82, "xml-output"], [82, "id2"], [82, "id4"], [82, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[117, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[70, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[70, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[70, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[70, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[60, "account-manager-default-property-scope"]], "activity_expire_days": [[60, "activity-expire-days"]], "activity_use_cached_mountpoints": [[60, "activity-use-cached-mountpoints"]], "admin-delegation:add": [[157, "admin-delegation-add"]], "admin-delegation:remove": [[157, "admin-delegation-remove"]], "admin-delegation:show": [[157, "admin-delegation-show"]], "allow_local_remote_servers": [[60, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[60, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[60, "allowed-admin-ranges"]], "allowed_no_password_confirmation_ranges": [[60, "allowed-no-password-confirmation-ranges"]], "appcodechecker": [[60, "appcodechecker"]], "apps_paths": [[60, "apps-paths"]], "appsallowlist": [[60, "appsallowlist"]], "appstoreenabled": [[60, "appstoreenabled"]], "appstoreurl": [[60, "appstoreurl"]], "auth.bruteforce.max-attempts": [[60, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[60, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[60, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[60, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[60, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[60, "auth-webauthn-enabled"]], "auto_logout": [[60, "auto-logout"]], "background-job:delete": [[157, "background-job-delete"]], "background-job:execute": [[157, "background-job-execute"]], "background-job:history": [[157, "background-job-history"]], "background-job:list": [[157, "background-job-list"]], "background-job:running": [[157, "background-job-running"]], "background-job:worker": [[157, "background-job-worker"]], "background:cron": [[157, "background-cron"]], "background_jobs_expiration_days": [[60, "background-jobs-expiration-days"]], "binary_search_paths": [[60, "binary-search-paths"]], "bulkupload.enabled": [[60, "bulkupload-enabled"]], "cache_app_config": [[60, "cache-app-config"]], "cache_chunk_gc_ttl": [[60, "cache-chunk-gc-ttl"]], "cache_path": [[60, "cache-path"]], "calendar:export": [[152, "calendar-export"]], "calendar:import": [[152, "calendar-import"]], "carddav_sync_request_timeout": [[60, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[60, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[60, "check-data-directory-permissions"]], "check_for_working_htaccess": [[60, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[60, "check-for-working-wellknown-setup"]], "cipher": [[60, "cipher"]], "comments.managerFactory": [[60, "comments-managerfactory"]], "config.php": [[161, "config-php"]], "config_is_read_only": [[60, "config-is-read-only"]], "configfilemode": [[60, "configfilemode"]], "connectivity_check_domains": [[60, "connectivity-check-domains"]], "cookie_domain": [[60, "cookie-domain"]], "copied_sample_config": [[60, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[60, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[60, "csrf-optout"]], "customclient_desktop": [[60, "customclient-desktop"]], "data-fingerprint": [[60, "data-fingerprint"]], "datadirectory": [[60, "datadirectory"]], "dav:absence:get": [[152, "dav-absence-get"]], "dav:absence:set": [[152, "dav-absence-set"]], "dav:clear-calendar-unshares": [[152, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[152, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[152, "dav-create-addressbook"]], "dav:create-calendar": [[152, "dav-create-calendar"]], "dav:create-subscription": [[152, "dav-create-subscription"]], "dav:delete-calendar": [[152, "dav-delete-calendar"]], "dav:delete-subscription": [[152, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[152, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[152, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[152, "dav-list-calendar-shares"]], "dav:list-calendars": [[152, "dav-list-calendars"]], "dav:list-subscriptions": [[152, "dav-list-subscriptions"]], "dav:move-calendar": [[152, "dav-move-calendar"]], "dav:remove-invalid-shares": [[152, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[152, "dav-retention-clean-up"]], "dav:send-event-reminders": [[152, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[152, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[152, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[152, "db-add-missing-columns"]], "db:add-missing-indices": [[152, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[152, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[152, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[152, "db-convert-mysql-charset"]], "db:convert-type": [[152, "db-convert-type"]], "db:schema:expected": [[152, "db-schema-expected"]], "db:schema:export": [[152, "db-schema-export"]], "dbdriveroptions": [[60, "dbdriveroptions"]], "dbhost": [[60, "dbhost"]], "dbname": [[60, "dbname"]], "dbpassword": [[60, "dbpassword"]], "dbpersistent": [[60, "dbpersistent"]], "dbreplica": [[60, "dbreplica"]], "dbtableprefix": [[60, "dbtableprefix"]], "dbtype": [[60, "dbtype"]], "dbuser": [[60, "dbuser"]], "debug": [[60, "debug"]], "default_certificates_bundle_path": [[60, "default-certificates-bundle-path"]], "default_language": [[60, "default-language"]], "default_locale": [[60, "default-locale"]], "default_phone_region": [[60, "default-phone-region"]], "default_timezone": [[60, "default-timezone"]], "defaultapp": [[60, "defaultapp"]], "diagnostics.logging": [[60, "diagnostics-logging"]], "diagnostics.logging.threshold": [[60, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[60, "documentation-url-server-logs"]], "enable_lazy_objects": [[60, "enable-lazy-objects"]], "enable_non-accessible_features": [[60, "enable-non-accessible-features"]], "enable_previews": [[60, "enable-previews"]], "enabledPreviewProviders": [[60, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[60, "encryption-use-legacy-base64-encoding"]], "encryption:change-key-storage-root": [[153, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[153, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[153, "encryption-decrypt-all"]], "encryption:disable": [[153, "encryption-disable"]], "encryption:disable-master-key": [[153, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[153, "encryption-drop-legacy-filekey"]], "encryption:enable": [[153, "encryption-enable"]], "encryption:enable-master-key": [[153, "encryption-enable-master-key"]], "encryption:encrypt-all": [[153, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[153, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[153, "encryption-fix-key-location"]], "encryption:list-modules": [[153, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[153, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[153, "encryption-recover-user"]], "encryption:scan:legacy-format": [[153, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[153, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[153, "encryption-show-key-storage-root"]], "encryption:status": [[153, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[154, "federation-sync-addressbooks"]], "file": [[67, "file"]], "filelocking.debug": [[60, "filelocking-debug"]], "filelocking.ttl": [[60, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[60, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[60, "files-chunked-upload-max-size"]], "files.trash.delete": [[60, "files-trash-delete"]], "files:cleanup": [[154, "files-cleanup"]], "files:copy": [[154, "files-copy"]], "files:delete": [[154, "files-delete"]], "files:get": [[154, "files-get"]], "files:mkdir": [[154, "files-mkdir"]], "files:mount:list": [[154, "files-mount-list"]], "files:mount:refresh": [[154, "files-mount-refresh"]], "files:move": [[154, "files-move"]], "files:object:delete": [[154, "files-object-delete"]], "files:object:get": [[154, "files-object-get"]], "files:object:info": [[154, "files-object-info"]], "files:object:list": [[154, "files-object-list"]], "files:object:orphans": [[154, "files-object-orphans"]], "files:object:put": [[154, "files-object-put"]], "files:put": [[154, "files-put"]], "files:reminders": [[154, "files-reminders"]], "files:repair-tree": [[154, "files-repair-tree"]], "files:sanitize-filenames": [[154, "files-sanitize-filenames"]], "files:scan": [[154, "files-scan"]], "files:scan-app-data": [[154, "files-scan-app-data"]], "files:touch": [[154, "files-touch"]], "files:transfer-ownership": [[154, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[154, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[157, "files-antivirus-background-scan"]], "files_antivirus:mark": [[157, "files-antivirus-mark"]], "files_antivirus:scan": [[157, "files-antivirus-scan"]], "files_antivirus:status": [[157, "files-antivirus-status"]], "files_external:applicable": [[154, "files-external-applicable"]], "files_external:backends": [[154, "files-external-backends"]], "files_external:config": [[154, "files-external-config"]], "files_external:create": [[154, "files-external-create"]], "files_external:delete": [[154, "files-external-delete"]], "files_external:dependencies": [[154, "files-external-dependencies"]], "files_external:export": [[154, "files-external-export"]], "files_external:import": [[154, "files-external-import"]], "files_external:list": [[154, "files-external-list"]], "files_external:notify": [[154, "files-external-notify"]], "files_external:option": [[154, "files-external-option"]], "files_external:scan": [[154, "files-external-scan"]], "files_external:verify": [[154, "files-external-verify"]], "files_external_allow_create_new_local": [[60, "files-external-allow-create-new-local"]], "files_no_background_scan": [[60, "files-no-background-scan"]], "filesystem_cache_readonly": [[60, "filesystem-cache-readonly"]], "filesystem_check_changes": [[60, "filesystem-check-changes"]], "forbidden_filename_basenames": [[60, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[60, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[60, "forbidden-filename-extensions"]], "forbidden_filenames": [[60, "forbidden-filenames"]], "force_language": [[60, "force-language"]], "force_locale": [[60, "force-locale"]], "forwarded_for_headers": [[60, "forwarded-for-headers"]], "group:add": [[158, "group-add"]], "group:adduser and group:removeuser": [[158, "group-adduser-and-group-removeuser"]], "group:delete": [[158, "group-delete"]], "group:info": [[158, "group-info"]], "group:list": [[158, "group-list"]], "gs.enabled": [[60, "gs-enabled"]], "gs.federation": [[60, "gs-federation"]], "has_internet_connection": [[60, "has-internet-connection"]], "hashingCost": [[60, "hashingcost"]], "hashingMemoryCost": [[60, "hashingmemorycost"]], "hashingThreads": [[60, "hashingthreads"]], "hashingTimeCost": [[60, "hashingtimecost"]], "hashing_default_password": [[60, "hashing-default-password"]], "hide_login_form": [[60, "hide-login-form"]], "htaccess.IgnoreFrontController": [[60, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[60, "htaccess-rewritebase"]], "http_client_add_user_agent_url": [[60, "http-client-add-user-agent-url"]], "info:file": [[157, "info-file"]], "info:file:space": [[157, "info-file-space"]], "info:storage": [[157, "info-storage"]], "info:storages": [[157, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[154, "integrity-check-app"]], "integrity:check-core": [[154, "integrity-check-core"]], "integrity:sign-app": [[154, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[155, "ldap-check-group"]], "ldap:check-user": [[155, "ldap-check-user"]], "ldap:create-empty-config": [[155, "ldap-create-empty-config"]], "ldap:delete-config": [[155, "ldap-delete-config"]], "ldap:search": [[155, "ldap-search"]], "ldap:set-config": [[155, "ldap-set-config"]], "ldap:show-remnants": [[155, "ldap-show-remnants"]], "ldap:test-config": [[155, "ldap-test-config"]], "ldap:test-user-settings": [[155, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[60, "ldapusercleanupinterval"]], "ldap_log_file": [[60, "ldap-log-file"]], "localstorage.allowsymlinks": [[60, "localstorage-allowsymlinks"]], "localstorage.umask": [[60, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[60, "localstorage-unlink-on-truncate"]], "log.backtrace": [[60, "log-backtrace"]], "log.condition": [[60, "log-condition"]], "log:file": [[157, "log-file"]], "log:manage": [[157, "log-manage"]], "log_query": [[60, "log-query"]], "log_rotate_size": [[60, "log-rotate-size"]], "log_type": [[60, "log-type"]], "log_type_audit": [[60, "log-type-audit"]], "logdateformat": [[60, "logdateformat"]], "logfile": [[60, "logfile"]], "logfile_audit": [[60, "logfile-audit"]], "logfilemode": [[60, "logfilemode"]], "login_form_autocomplete": [[60, "login-form-autocomplete"]], "login_form_timeout": [[60, "login-form-timeout"]], "loglevel": [[60, "loglevel"]], "loglevel_dirty_database_queries": [[60, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[60, "loglevel-frontend"]], "logo_url": [[60, "logo-url"]], "logtimezone": [[60, "logtimezone"]], "lookup_server": [[60, "lookup-server"]], "lost_password_link": [[60, "lost-password-link"]], "mail_domain": [[60, "mail-domain"]], "mail_from_address": [[60, "mail-from-address"]], "mail_send_plaintext_only": [[60, "mail-send-plaintext-only"]], "mail_sendmailmode": [[60, "mail-sendmailmode"]], "mail_smtpauth": [[60, "mail-smtpauth"]], "mail_smtpdebug": [[60, "mail-smtpdebug"]], "mail_smtphost": [[60, "mail-smtphost"]], "mail_smtpmode": [[60, "mail-smtpmode"]], "mail_smtpname": [[60, "mail-smtpname"]], "mail_smtppassword": [[60, "mail-smtppassword"]], "mail_smtpport": [[60, "mail-smtpport"]], "mail_smtpsecure": [[60, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[60, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[60, "mail-smtptimeout"]], "mail_template_class": [[60, "mail-template-class"]], "maintenance": [[60, "id1"]], "maintenance:data-fingerprint": [[157, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[157, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[157, "maintenance-mode"]], "maintenance:repair": [[157, "maintenance-repair"]], "maintenance:repair-share-owner": [[157, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[157, "maintenance-theme-update"]], "maintenance:update:htaccess": [[157, "maintenance-update-htaccess"]], "maintenance_window_start": [[57, "maintenance-window-start"], [60, "maintenance-window-start"]], "max_file_conversion_filesize": [[60, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[60, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[60, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[81, "memberof-read-memberof-permissions"]], "memcache.distributed": [[60, "memcache-distributed"]], "memcache.kvstore": [[60, "memcache-kvstore"]], "memcache.local": [[60, "memcache-local"]], "memcache.locking": [[60, "memcache-locking"]], "memcache_customprefix": [[60, "memcache-customprefix"]], "memcached_options": [[60, "memcached-options"]], "memcached_servers": [[60, "memcached-servers"]], "metadata_max_filesize": [[60, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[60, "minimum-supported-desktop-version"]], "mysql.collation": [[60, "mysql-collation"]], "mysql.utf8mb4": [[60, "mysql-utf8mb4"]], "nginx": [[26, "nginx"], [93, "nginx"]], "no_unsupported_browser_warning": [[60, "no-unsupported-browser-warning"]], "objectstore": [[60, "objectstore"], [60, "id2"], [60, "id3"]], "objectstore.multibucket.preview-distribution": [[60, "objectstore-multibucket-preview-distribution"]], "occ commands": [[58, "occ-commands"], [161, "occ-commands"]], "ocm:keys:activate": [[156, "ocm-keys-activate"]], "ocm:keys:list": [[156, "ocm-keys-list"]], "ocm:keys:retire": [[156, "ocm-keys-retire"]], "ocm:keys:stage": [[156, "ocm-keys-stage"]], "openmetrics_allowed_clients": [[60, "openmetrics-allowed-clients"]], "openmetrics_skipped_classes": [[60, "openmetrics-skipped-classes"]], "openssl": [[60, "openssl"]], "overwrite.cli.url": [[60, "overwrite-cli-url"]], "overwritecondaddr": [[60, "overwritecondaddr"]], "overwritehost": [[60, "overwritehost"]], "overwriteprotocol": [[60, "overwriteprotocol"]], "overwritewebroot": [[60, "overwritewebroot"]], "part_file_in_storage": [[60, "part-file-in-storage"]], "passwordsalt": [[60, "passwordsalt"]], "pgsql_ssl": [[60, "pgsql-ssl"]], "preview:cleanup": [[154, "preview-cleanup"]], "preview_concurrency_all": [[60, "preview-concurrency-all"]], "preview_concurrency_new": [[60, "preview-concurrency-new"]], "preview_expiration_days": [[60, "preview-expiration-days"]], "preview_ffmpeg_path": [[60, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[60, "preview-ffprobe-path"]], "preview_imaginary_key": [[60, "preview-imaginary-key"]], "preview_imaginary_url": [[60, "preview-imaginary-url"]], "preview_libreoffice_path": [[60, "preview-libreoffice-path"]], "preview_max_filesize_image": [[60, "preview-max-filesize-image"]], "preview_max_memory": [[60, "preview-max-memory"]], "preview_max_x": [[60, "preview-max-x"]], "preview_max_y": [[60, "preview-max-y"]], "profile.enabled": [[60, "profile-enabled"]], "profiler": [[60, "profiler"]], "profiling.path": [[60, "profiling-path"]], "profiling.request": [[60, "profiling-request"]], "profiling.request.rate": [[60, "profiling-request-rate"]], "profiling.sample": [[60, "profiling-sample"]], "profiling.sample.rate": [[60, "profiling-sample-rate"]], "profiling.sample.rotation": [[60, "profiling-sample-rotation"]], "profiling.secret": [[60, "profiling-secret"]], "projects.enabled": [[60, "projects-enabled"]], "proxy": [[60, "proxy"]], "proxyexclude": [[60, "proxyexclude"]], "proxyuserpwd": [[60, "proxyuserpwd"]], "qmail": [[63, "qmail"]], "query_log_file": [[60, "query-log-file"]], "query_log_file_backtrace": [[60, "query-log-file-backtrace"]], "query_log_file_parameters": [[60, "query-log-file-parameters"]], "query_log_file_requestid": [[60, "query-log-file-requestid"]], "quota_include_external_storage": [[60, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[60, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[60, "ratelimit-overwrite"]], "redis": [[60, "redis"]], "redis.cluster": [[60, "redis-cluster"]], "redis_log_file": [[60, "redis-log-file"]], "reduce_to_languages": [[60, "reduce-to-languages"]], "reference_opengraph": [[60, "reference-opengraph"]], "remember_login_cookie_lifetime": [[60, "remember-login-cookie-lifetime"]], "secret": [[60, "secret"]], "security.ipv6_normalized_subnet_size": [[60, "security-ipv6-normalized-subnet-size"]], "security:bruteforce:attempts": [[157, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[157, "security-bruteforce-reset"]], "security:certificates": [[157, "security-certificates"]], "security:certificates:export": [[157, "security-certificates-export"]], "security:certificates:import": [[157, "security-certificates-import"]], "security:certificates:remove": [[157, "security-certificates-remove"]], "server": [[60, "server"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[154, "share-list"], [157, "share-list"]], "share_folder": [[60, "share-folder"]], "sharing.allow_custom_share_folder": [[60, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[60, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[60, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[60, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[60, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[60, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[60, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[60, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[60, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[60, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[60, "sharing-minsearchstringlength"]], "sharing:cleanup-remote-storages": [[154, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[154, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[154, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[154, "sharing-fix-share-owners"]], "simpleSignUpLink.shown": [[60, "simplesignuplink-shown"]], "skeletondirectory": [[60, "skeletondirectory"]], "sort_groups_by_name": [[60, "sort-groups-by-name"]], "sqlite.journal_mode": [[60, "sqlite-journal-mode"]], "supportedDatabases": [[60, "supporteddatabases"]], "syslog": [[67, "syslog"]], "syslog_tag": [[60, "syslog-tag"]], "syslog_tag_audit": [[60, "syslog-tag-audit"]], "systemd": [[57, "systemd"], [67, "systemd"]], "tag:add": [[158, "tag-add"]], "tag:delete": [[158, "tag-delete"]], "tag:edit": [[158, "tag-edit"]], "tag:list": [[158, "tag-list"]], "taskprocessing:task-type:set-enabled": [[157, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[157, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[157, "taskprocessing-task-get"]], "taskprocessing:task:list": [[157, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[157, "taskprocessing-task-stats"]], "taskprocessing:worker": [[157, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[157, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[154, "trashbin-cleanup"], [154, "id1"]], "trashbin:expire": [[154, "trashbin-expire"], [154, "id2"]], "trashbin:restore": [[154, "trashbin-restore"]], "trashbin:size": [[154, "trashbin-size"], [154, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[158, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[158, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[158, "twofactorauth-enforce"]], "twofactorauth:state": [[158, "twofactorauth-state"]], "unified_search.enabled": [[60, "unified-search-enabled"]], "updatechecker": [[60, "updatechecker"]], "updatedirectory": [[60, "updatedirectory"]], "updater.release.channel": [[60, "updater-release-channel"]], "updater.server.url": [[60, "updater-server-url"]], "upgrade.cli-upgrade-link": [[60, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[60, "upgrade-disable-web"]], "user": [[60, "user"]], "user:add": [[158, "user-add"]], "user:auth-tokens:add": [[158, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[158, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[158, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[158, "user-clear-avatar-cache"]], "user:delete": [[158, "user-delete"]], "user:disable and user:enable": [[158, "user-disable-and-user-enable"]], "user:info": [[158, "user-info"]], "user:keys:verify": [[158, "user-keys-verify"]], "user:lastseen": [[158, "user-lastseen"]], "user:list": [[158, "user-list"]], "user:profile": [[158, "user-profile"]], "user:report": [[158, "user-report"]], "user:resetpassword": [[158, "user-resetpassword"]], "user:setting": [[158, "user-setting"]], "user:sync-account-data": [[158, "user-sync-account-data"]], "user:welcome": [[158, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[154, "versions-cleanup"], [154, "id4"]], "versions:expire": [[154, "versions-expire"], [154, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[157, "workflows-list"]], "\u201cAccess through untrusted domain\u201d error with HTTP/3": [[130, "access-through-untrusted-domain-error-with-http-3"]], "\u201cCSync unknown error\u201d": [[94, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[94, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/eu_ai_act", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "apps_management_api", "collectives/index", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_monitoring/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/index", "desktop/massdeployment", "desktop/restrictaccess", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/data_retention", "gdpr/helpful_apps", "gdpr/index", "gdpr/personal_data", "gdpr/subject_rights", "groupware/calendar", "groupware/contacts", "groupware/contactsinteraction", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/automatic_configuration", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_apps", "occ_command", "occ_database", "occ_encryption", "occ_files", "occ_ldap", "occ_ocm", "occ_system", "occ_users", "office/collabora_online", "office/configuration", "office/euro-office/configuration", "office/euro-office/index", "office/euro-office/installation", "office/euro-office/installation_debian", "office/euro-office/installation_docker", "office/euro-office/installation_ubuntu", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_notes/upgrade_to_33", "release_notes/upgrade_to_35", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/eu_ai_act.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "apps_management_api.rst", "collectives/index.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_monitoring/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/restrictaccess.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/data_retention.rst", "gdpr/helpful_apps.rst", "gdpr/index.rst", "gdpr/personal_data.rst", "gdpr/subject_rights.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/contactsinteraction.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/automatic_configuration.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_apps.rst", "occ_command.rst", "occ_database.rst", "occ_encryption.rst", "occ_files.rst", "occ_ldap.rst", "occ_ocm.rst", "occ_system.rst", "occ_users.rst", "office/collabora_online.rst", "office/configuration.rst", "office/euro-office/configuration.rst", "office/euro-office/index.rst", "office/euro-office/installation.rst", "office/euro-office/installation_debian.rst", "office/euro-office/installation_docker.rst", "office/euro-office/installation_ubuntu.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_notes/upgrade_to_33.rst", "release_notes/upgrade_to_35.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 26, 27, 28, 29, 31, 37, 38, 40, 41, 44, 45, 48, 49, 56, 57, 58, 59, 60, 62, 63, 64, 67, 69, 72, 74, 77, 81, 83, 84, 88, 92, 93, 94, 96, 97, 99, 100, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 119, 121, 122, 125, 127, 130, 131, 132, 133, 134, 137, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 161, 162, 164, 168, 173, 181, 184, 185, 187, 188], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 16, 17, 22, 23, 24, 26, 28, 29, 33, 41, 45, 48, 52, 53, 59, 60, 63, 67, 69, 70, 71, 75, 76, 77, 81, 82, 85, 88, 92, 94, 96, 97, 99, 100, 108, 113, 114, 117, 118, 119, 125, 127, 129, 130, 131, 133, 135, 139, 145, 148, 149, 150, 151, 152, 154, 155, 157, 158, 160, 167, 173, 180, 181, 182, 183, 184, 186, 187, 188], "00": [22, 23, 55, 59, 60, 67, 154, 157, 158], "000": [29, 113, 114, 120], "0000": 157, "001": 60, "0022": 60, "00679e": 157, "0082c9": [72, 157], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 135, 152, 154, 157, 158], "0100": 63, "0123": 76, "01t00": 154, "01t08": 158, "01t09": 154, "01t12": 154, "01t14": 157, "02": [6, 59, 67, 154], "03": [55, 67, 158], "04": [22, 72, 88, 128, 134, 135, 154, 162, 163, 170, 186], "05": [57, 60, 130, 152, 154], "050": 157, "055": 22, "06": [130, 157], "062": 22, "0640": [60, 67], "07": [60, 154], "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 119, "08": [60, 154, 157], "09": [67, 130, 157], "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 138, "0e": 55, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17, 22, 23, 24, 26, 28, 29, 31, 33, 43, 47, 48, 53, 56, 57, 58, 59, 60, 63, 66, 67, 70, 71, 75, 76, 77, 81, 82, 88, 92, 93, 94, 96, 97, 99, 100, 108, 113, 114, 117, 119, 125, 127, 129, 130, 131, 133, 134, 137, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 163, 165, 167, 173, 179, 180, 182, 183, 184, 185, 187, 188], "10": [1, 2, 4, 5, 6, 7, 9, 10, 12, 15, 22, 23, 24, 41, 44, 47, 55, 56, 58, 60, 63, 67, 69, 72, 81, 85, 86, 88, 94, 97, 113, 114, 117, 124, 133, 135, 145, 154, 157, 158, 160, 163, 164, 165, 166, 182, 183, 186, 188], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 117, 120, 133, 157, 173, 181, 187], "1000": [5, 53, 81, 94, 125, 133], "10000": [59, 125], "1000000": 94, "10000000": 94, "1002": 188, "100mb": [3, 8, 76, 94], "100mib": 183, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 117, 133], "103": [75, 76], "103f": 155, "104": 76, "1040": 139, "10485760": [56, 97], "104857600": [26, 48, 60, 67], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 154], "10m": [97, 157], "10mib": 183, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 119, 135, 149, 154, 157, 158, 171, 186, 188], "110": [63, 76], "111": [60, 76], "1110": 158, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 185, "12": [60, 65, 76, 81, 88, 93, 107, 130, 135, 150, 151, 157, 158, 162, 163, 182, 186], "120": [9, 16], "123": [18, 60, 188], "1234": 4, "12345": [8, 76, 157], "1255": 133, "127": [59, 60, 63, 97, 100, 127, 129, 130, 152, 157, 167, 173], "128": [60, 81], "128m": [22, 59], "128mb": 135, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 109, 135, 145, 158, 185, 186], "1319": 60, "1393": 119, "14": [22, 43, 67, 83, 93, 106, 109, 135, 145, 154, 157], "140": 5, "143": 63, "1465910968": 158, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 107, 108, 111, 113, 114, 117, 135, 145, 152, 154, 157, 158, 186], "1524": 63, "155": 60, "15552000": [70, 127], "1575981518": 157, "15768000": 125, "15778463": 130, "15857": 56, "15m": 117, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 127, 133, 135, 145, 157], "16000": 8, "162409623552": 158, "162409624662": 158, "164": 81, "168": [22, 41, 52, 60, 63, 67, 97, 127, 129, 157], "16g": 26, "17": [88, 135, 148, 157, 158, 188], "1700001000": 188, "1700001200": 188, "1700001234": 188, "1700054321": 188, "1700099500": 188, "1700100000": 188, "1700100500": 188, "1702606600": 188, "1711971024": 188, "1736283": 188, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 135, 149, 157, 158], "180": [16, 53, 108], "1800": [60, 113, 114], "19": [60, 149, 150, 151, 157], "192": [22, 41, 52, 60, 63, 67, 97, 127, 129, 157], "1941": 81, "19417": 119, "19563": 59, "1970": 135, "198": 60, "19c": 135, "19fa45b394": 188, "19t08": 158, "1d": [70, 117], "1d4725ae1ac4e4798b541ca3f3cdce6": 119, "1gb": [2, 6, 26], "1h": [117, 157], "1st": [88, 142, 188], "1und1": 117, "2": [2, 3, 4, 5, 7, 8, 9, 13, 15, 22, 24, 25, 26, 29, 44, 48, 56, 59, 60, 63, 67, 70, 73, 77, 81, 88, 96, 97, 106, 117, 119, 125, 127, 128, 129, 130, 131, 135, 148, 149, 150, 151, 152, 153, 156, 157, 158, 163, 174, 179, 180, 181, 184, 185, 186, 188, 189], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 107, 117, 119, 149, 158, 165], "200": [53, 82, 83, 154, 157], "2000": 22, "2001": 60, "2002": 139, "2005": 60, "2006": [88, 139], "20080704": 22, "201": 5, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 157], "2020": 119, "2021": [67, 124], "2024": [88, 90, 130, 158, 188], "2025": [4, 88, 90, 157, 188], "20251111t100000z": 188, "2026": [88, 90, 130, 152, 154, 157], "203": 60, "2038": 135, "2048": [5, 81], "204800": [154, 157], "20971520": 26, "20mb": 26, "20t17": 158, "21": [33, 60, 67, 130, 150, 171], "2100": 107, "215": 89, "21a7": 60, "21c": 135, "22": [37, 55, 63, 135, 154, 157, 188], "220": [63, 188], "221": [63, 157], "222": [60, 157], "22203": 59, "2245": 63, "23000": 96, "2323": 60, "233": 60, "2375": [97, 98], "23999": 96, "23ai": 135, "23t07": 157, "23t08": 157, "23t09": 157, "23t10": 157, "24": [43, 44, 58, 60, 72, 73, 88, 94, 97, 107, 108, 111, 115, 128, 134, 135, 149, 162, 163, 170, 183, 186], "24000": [97, 98], "24001": 97, "24099": 97, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 93, 114, 130, 149, 157], "250": 63, "2500": 60, "251": 157, "252": 60, "255": 60, "256": [29, 47, 60, 130], "256mb": 135, "2592000": [73, 113, 157], "26": [6, 63, 88, 113, 114, 117, 135, 149, 158, 178, 187], "261535": 119, "262086": 119, "262087": 119, "26379": 59, "26396": 137, "2668": 157, "27": [88, 114, 143, 149, 157, 178, 187], "28": [7, 18, 60, 88, 118, 143, 148, 149, 178, 180, 187], "284": 157, "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 143, 148, 149], "293": 157, "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 119, "2f": 82, "2fa": [80, 117, 158], "2fldap": 82, "2g": 18, "2gb": [3, 26, 154], "2h": 157, "2k": 22, "2m": 22, "2nd": 81, "2x": 183, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 94, 96, 117, 127, 129, 131, 133, 134, 135, 139, 148, 149, 151, 154, 157, 158, 163, 165, 175, 181, 182, 183, 184, 186, 187, 188], "30": [8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 96, 97, 108, 111, 113, 114, 117, 119, 133, 148, 157, 158, 178, 183, 184], "300": [60, 83, 97, 117, 130], "30000": [113, 114], "301": [69, 125, 127, 130, 139], "3010": 92, "302": 130, "30566": 51, "3060": 96, "31": [10, 50, 55, 60, 88, 107, 119, 124, 178], "3100": 184, "31308": 38, "31536000": 130, "3166": 60, "31d4a230559d4f3e2c471d3ea094": 138, "32": [3, 15, 22, 26, 29, 31, 48, 50, 60, 88, 113, 114, 135, 178, 189], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 16, 52, 88, 93, 113, 148, 153, 154, 178, 189], "3306": [20, 63, 129], "34": [3, 59, 88, 145, 148, 188], "34262": 133, "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189], "36": [22, 67], "3600": [26, 60, 81, 117, 125, 157], "365": [53, 60, 73, 108, 111], "37": [60, 67, 119], "3733554": 157, "38": 157, "3845056": 157, "3847229": 157, "389": [81, 82], "39": 63, "399": 188, "3a": 82, "3mb": 117, "3rd": [60, 63, 139, 143, 149, 160, 174, 176], "3rdparti": [88, 124, 130, 132], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 117, 119, 124, 127, 130, 131, 133, 135, 141, 143, 149, 151, 157, 160, 163, 165, 171, 179, 182, 183, 184, 186, 187, 188], "40": 55, "400": [11, 120], "4000": 5, "40000": 8, "401": 93, "403": 93, "404": 130, "4086": 127, "4096": [5, 60, 188], "41": 97, "41395": 181, "42": [14, 60, 154, 157, 158, 188], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 138, "43200": 127, "437": 188, "438": 188, "4389": 67, "44": 158, "441": 157, "4418": 63, "443": [48, 60, 93, 125, 127, 130, 167], "444": 125, "45": 60, "450": 6, "456": 76, "46": 158, "465": 63, "46cfa6e729ff329e6ede076853154113": 119, "47": [56, 158], "48": [58, 94], "483": 119, "49": [60, 119], "4966612345678": 81, "497": 119, "4a87e94522a3cf26dba8977ae901094d": 119, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 130, "5": [0, 1, 2, 3, 5, 15, 16, 48, 57, 59, 60, 67, 85, 88, 93, 97, 102, 108, 113, 114, 117, 119, 125, 127, 133, 134, 135, 139, 148, 149, 150, 151, 154, 157, 158, 163, 165, 182, 185, 188], "50": [41, 44, 60, 83, 85, 94, 113, 114, 117, 129, 133, 154, 157], "500": [28, 53, 60, 82, 85, 133, 139, 157, 158], "5000": [60, 113, 114, 184], "50000000": 94, "500mb": 3, "501": 119, "502": [88, 133], "504": [26, 130, 133], "50m": 60, "51": [60, 83, 188], "511": 60, "512": [38, 119, 125, 148, 154], "512k": 130, "512m": 130, "512mb": [46, 88, 130, 131, 135], "512x512": 9, "513": 119, "513m": 125, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 94, "52428800": 63, "524288000": [48, 60], "5242880000": 48, "53": 26, "537": 67, "537919488": 125, "5432": [129, 164, 166], "55": [63, 67, 154], "5545": 152, "56": [22, 60, 63, 67], "5646": 60, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 119], "594627": 157, "599": 188, "5e": 55, "5f": 55, "5gb": [6, 154], "5min": 57, "5pm": 102, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 88, 113, 117, 119, 125, 131, 144, 151, 157, 163, 171, 183, 186], "60": [15, 16, 22, 47, 60, 73, 107, 108, 120, 130, 133, 188], "600": [81, 82], "6000": 94, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 119, "62x34": 72, "63072000": 73, "631": 63, "6321": 152, "636": 81, "6379": [45, 59, 60, 124, 125], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 130, 135], "640": 143, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 157, "68": 67, "6f": 55, "7": [15, 29, 43, 53, 56, 60, 67, 72, 88, 108, 115, 117, 124, 130, 131, 135, 144, 154, 157, 163, 179, 186, 187, 188], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "71d5": 155, "72": 127, "7200": 117, "7265": 152, "73": 55, "750": 143, "767": 60, "77": 11, "770": 59, "78": 184, "789": 76, "7b": [5, 11, 55], "7d": 130, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 96, 117, 119, 127, 128, 130, 131, 133, 134, 135, 139, 145, 157, 163, 179, 180, 181, 182, 183, 184, 185, 186], "80": [6, 47, 55, 63, 124, 127, 130, 133, 134, 165], "8000": 5, "800mb": 10, "8080": [60, 97, 134], "8081": 60, "8088": 60, "8096": 29, "8147": 29, "8192": 29, "8283": 28, "83": 119, "83379f9bc36915d5024de878386060b5": 119, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 158, "8601": 60, "86400": 127, "8651a9ac37674907606c936ced1333d7": 119, "8780": [97, 98], "8781": 97, "8782": [97, 98], "8802": 130, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 138, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 119, "8e9f60369dce3d8b2b27430bd50ec46d": 119, "8gb": [3, 5, 9], "8m": 133, "9": [15, 17, 22, 28, 41, 60, 81, 85, 93, 102, 117, 135, 151, 164, 165, 166, 182, 186, 188], "90": [1, 22, 53, 108, 133], "9000": [130, 133], "9031": 8, "909": 157, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 138, "94": 119, "9421": 156, "95": [11, 55, 60], "95a8": 155, "95af": 155, "9651": 188, "97": [55, 119], "97985889682313216": 157, "98": 158, "98108257692012544": 157, "98109588267847680": 157, "98109592852221952": 157, "98109592927719424": 157, "98109593040965632": 157, "9825679": 2, "9839": 119, "98543234": 2, "9876": 81, "99": 60, "993": [63, 119], "995": 63, "9980": [167, 172], "9999": [48, 81], "9_": 81, "9am": 102, "9b": [1, 5], "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 24, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 94, 96, 97, 107, 108, 112, 113, 115, 117, 119, 120, 121, 125, 127, 129, 130, 133, 134, 135, 138, 139, 143, 144, 147, 151, 154, 157, 161, 162, 163, 164, 166, 167, 169, 170, 175, 179, 187], "AND": [67, 112, 139], "And": [3, 31, 38, 48, 57, 59, 63, 125, 143, 148, 155, 187], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 60, 77, 83, 94, 96, 102, 112, 113, 119, 124, 125, 127, 144, 181, 187, 189], "At": [0, 1, 2, 3, 5, 6, 9, 11, 16, 63, 67, 70, 80, 81, 113, 114, 144], "BY": [22, 126], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 96, 97, 113, 130, 139, 173], "But": [47, 50, 58, 60, 97, 183], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 80, 81, 85, 95, 99, 113, 117, 127, 130, 134, 138, 146, 147, 150, 152, 157, 158, 160, 165, 168, 187, 188], "For": [1, 3, 6, 7, 8, 12, 14, 15, 16, 22, 23, 24, 25, 26, 28, 29, 33, 37, 38, 40, 41, 44, 45, 49, 51, 53, 55, 56, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 83, 85, 92, 93, 94, 95, 96, 97, 100, 108, 109, 112, 113, 114, 115, 119, 120, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 143, 144, 148, 149, 150, 151, 152, 153, 154, 155, 156, 160, 167, 170, 171, 181, 184, 185, 187, 188, 189], "IF": [22, 126], "IT": 134, "If": [2, 3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 38, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 69, 70, 77, 78, 80, 81, 84, 85, 92, 93, 94, 96, 97, 98, 102, 108, 112, 113, 114, 115, 117, 118, 119, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 167, 173, 181, 182, 183, 184, 185, 187, 188, 189], "In": [0, 1, 3, 5, 6, 12, 14, 15, 16, 18, 22, 23, 25, 26, 28, 29, 31, 34, 40, 41, 42, 43, 48, 53, 56, 57, 58, 59, 60, 63, 66, 68, 69, 70, 72, 77, 79, 80, 81, 84, 85, 86, 92, 94, 96, 97, 98, 100, 102, 103, 113, 117, 119, 124, 125, 127, 129, 130, 131, 133, 134, 135, 136, 138, 139, 143, 145, 147, 148, 150, 151, 160, 170, 173, 175, 181, 188, 189], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 24, 25, 26, 28, 31, 36, 38, 40, 41, 44, 45, 48, 49, 53, 58, 59, 60, 61, 63, 64, 68, 70, 80, 81, 82, 92, 93, 94, 95, 96, 97, 98, 102, 103, 109, 110, 113, 114, 115, 118, 119, 120, 125, 127, 129, 130, 131, 132, 133, 134, 136, 138, 139, 143, 144, 147, 148, 149, 150, 153, 156, 157, 160, 162, 173, 179, 181, 183, 184, 187, 188, 189], "Its": [58, 60, 108, 133], "NO": 144, "NOT": [22, 59, 60, 97, 126], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 96, 103, 107, 109, 133, 139, 148, 152, 153, 154, 157, 158, 173], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 94, 119, 133, 158], "ON": [22, 23, 60, 126], "OR": 67, "Of": [107, 129, 139, 189], "On": [16, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 94, 97, 107, 124, 126, 134, 139, 144, 146, 152, 157, 167, 187], "One": [8, 12, 43, 48, 59, 60, 94, 96, 134, 170], "Or": [1, 95, 134], "TO": [22, 60, 126], "That": [22, 27, 56, 60, 62, 63, 81, 113, 114, 117, 143, 167], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 53, 56, 57, 59, 60, 61, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 83, 84, 85, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189], "Their": [152, 158], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 125, 126, 127, 133, 134, 143, 144, 148, 149, 152, 155, 164, 187], "There": [3, 24, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 94, 97, 98, 99, 106, 108, 127, 134, 136, 138, 139, 144, 149, 153, 157, 170, 175], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 59, 60, 70, 77, 80, 81, 83, 92, 94, 97, 111, 112, 117, 124, 127, 131, 133, 134, 137, 143, 148, 149, 150, 154, 155, 156, 157, 160, 161, 178, 187, 189], "To": [3, 4, 13, 16, 22, 24, 27, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 94, 99, 108, 109, 112, 113, 114, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 132, 133, 134, 135, 136, 138, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 167, 176, 181, 187, 188, 189], "WITH": [22, 164, 166], "Will": [43, 155], "With": [0, 5, 29, 43, 60, 63, 77, 97, 120, 130, 139, 149, 157, 175, 183], "_": [81, 85, 154, 164, 166], "__host": [65, 88, 107], "_arm64": 130, "_bin": 60, "_complet": 151, "_context_chat_": 3, "_groupsr": 127, "_ping": 97, "_postgresql": 125, "_static": 60, "a2enmod": [134, 167], "a2ensit": 134, "a3b30430b1ccb41089170eecbe315d3a": 119, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 141, "aax": 147, "abbrevi": 85, "abc123": [154, 157], "abc123def456": 188, "abil": [6, 14, 58, 104, 129, 134, 160], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 94, 96, 98, 100, 102, 103, 113, 117, 121, 127, 131, 134, 146, 163, 172, 173], "abort": [60, 80, 122], "about": [1, 2, 3, 5, 6, 7, 8, 11, 16, 24, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 94, 97, 113, 117, 118, 119, 124, 127, 130, 133, 134, 137, 138, 139, 144, 145, 149, 150, 153, 154, 155, 157, 158, 173, 181, 183, 184, 185, 189], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 69, 72, 77, 81, 87, 88, 94, 97, 98, 113, 119, 121, 122, 124, 127, 129, 130, 134, 138, 139, 143, 148, 150, 151, 181, 188], "absenc": [81, 88], "absent": [152, 188], "absolut": [16, 60, 69, 81, 99, 122, 139, 150], "absorb": 133, "abstract": [133, 136], "abund": 139, "abus": 88, "abuse_detect": 117, "abuse_number_of_messages_per_15m": 117, "abuse_number_of_messages_per_1d": 117, "abuse_number_of_messages_per_1h": 117, "abuse_number_of_recipients_per_message_threshold": 117, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 24, 31, 32, 40, 41, 48, 60, 63, 66, 67, 69, 70, 84, 94, 97, 98, 112, 117, 118, 151, 154, 157, 173, 188, 189], "access": [0, 2, 8, 12, 13, 14, 15, 16, 18, 26, 28, 31, 32, 33, 34, 38, 40, 41, 43, 48, 52, 53, 54, 57, 58, 59, 60, 63, 64, 65, 72, 77, 80, 81, 84, 85, 88, 91, 92, 94, 96, 97, 98, 100, 103, 105, 106, 107, 108, 109, 111, 114, 115, 119, 120, 121, 122, 124, 128, 129, 133, 134, 139, 144, 145, 147, 148, 153, 154, 157, 158, 161, 173, 176, 187, 188], "access_log": [94, 130], "accessible_featur": 88, "accident": [99, 108, 148], "accommod": [94, 143, 149], "accomplish": 113, "accord": [12, 44, 60, 81, 89, 108, 111, 145, 154, 160, 170], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 97, 139], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 29, 36, 43, 53, 54, 57, 58, 60, 63, 68, 73, 77, 80, 81, 83, 85, 88, 94, 108, 112, 115, 116, 121, 129, 131, 134, 151, 154, 155, 157, 188, 189], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 119, "accountmanag": [60, 77], "accumul": 94, "accur": [139, 149, 181], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 118, 127], "acl": [53, 59, 60, 69, 93, 117], "acm": [72, 97, 130, 157], "acquir": [59, 119], "across": [1, 2, 7, 10, 32, 53, 59, 60, 77, 96, 107, 108, 115, 117, 131, 152, 154], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 109, 113, 188], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 88, 93, 96, 97, 105, 109, 111, 117, 128, 139, 148, 157, 158, 189], "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 93, 112, 113, 114, 125, 127, 131, 133, 134, 135, 139, 144, 148, 150, 153, 154, 155, 157, 158, 160, 164, 166, 187, 188], "activity_": 25, "activity_dbdriveropt": 25, "activity_dbhost": 25, "activity_dbnam": 25, "activity_dbpassword": 25, "activity_dbport": 25, "activity_dbus": 25, "activity_expire_dai": [53, 88, 108, 111], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 127], "actor_id": 112, "actor_typ": 112, "actual": [1, 4, 22, 26, 29, 53, 58, 60, 67, 70, 92, 97, 131, 139, 148, 157, 184, 188], "ad": [2, 4, 6, 8, 12, 18, 20, 24, 27, 28, 29, 40, 43, 52, 53, 57, 58, 59, 60, 63, 64, 67, 69, 70, 73, 81, 85, 88, 92, 109, 113, 114, 116, 118, 119, 121, 122, 125, 127, 133, 134, 135, 148, 157, 158, 160, 179, 182, 183, 184, 188, 189], "ad2dab17b2f9": 155, "adapt": [59, 97, 127, 130, 139, 144, 171, 187, 189], "add": [0, 2, 6, 12, 18, 22, 23, 24, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 94, 96, 97, 98, 109, 111, 113, 114, 117, 119, 120, 122, 124, 125, 127, 130, 133, 134, 139, 141, 144, 145, 149, 150, 151, 154, 160, 164, 167, 173, 174, 180, 181, 182, 185, 188, 189], "add_head": [26, 130], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 5, 13, 16, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 44, 48, 54, 55, 56, 58, 60, 72, 74, 77, 80, 82, 85, 88, 91, 94, 95, 96, 97, 99, 100, 101, 111, 113, 124, 126, 127, 129, 131, 132, 133, 135, 136, 138, 139, 143, 151, 154, 157, 158, 161, 187, 188, 189], "addition": [2, 12, 41, 59, 81, 83, 93, 113, 114, 139, 184, 189], "additional_opt": 97, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 94, 96, 97, 98, 100, 102, 108, 109, 111, 116, 117, 128, 129, 130, 134, 144, 146, 149, 152, 154, 157, 158, 160, 161, 187], "address_of_remote_machin": 97, "addressbook": [41, 60, 88, 114, 115, 127, 139], "addressbookchang": 114, "addressbookid": 139, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 113, 114, 135], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 94, 97, 108, 125, 130, 131, 132, 133, 134, 135, 139, 143, 145, 171, 182, 183, 184, 187, 188], "adm": 75, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 18, 28, 34, 40, 41, 43, 45, 48, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 71, 74, 75, 76, 77, 80, 81, 82, 85, 87, 88, 92, 94, 96, 97, 100, 112, 113, 114, 117, 118, 119, 122, 124, 128, 133, 134, 138, 139, 143, 144, 146, 148, 149, 150, 151, 152, 153, 154, 158, 160, 161, 167, 168, 181, 185, 187, 188, 189], "admin_": 188, "admin_audit": [53, 88, 108, 111, 112], "admin_manu": 60, "adminemail": 121, "administ": [120, 157], "administr": [0, 1, 2, 6, 14, 16, 22, 24, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 94, 97, 102, 104, 106, 108, 109, 110, 111, 112, 113, 117, 120, 121, 122, 127, 129, 134, 139, 146, 149, 154, 157, 158, 161, 173, 174, 181, 184, 187, 188], "adminlogin": 121, "adminpass": 121, "adminw": [167, 172], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 98, 101, 121, 134, 157, 170, 189], "advantag": [29, 32, 57, 88], "advertis": [57, 60, 156], "advic": [60, 110], "advis": [8, 160, 183, 189], "ae": [3, 29, 60, 133], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 94, 97, 102, 119, 133, 135, 152, 154, 171], "after": [1, 3, 4, 8, 14, 15, 16, 18, 20, 22, 24, 27, 28, 32, 37, 38, 44, 45, 47, 48, 49, 50, 57, 58, 59, 60, 62, 63, 64, 67, 68, 73, 77, 78, 79, 81, 85, 88, 93, 94, 96, 97, 99, 100, 102, 103, 106, 108, 109, 111, 114, 115, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 138, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 156, 157, 158, 160, 161, 167, 168, 173, 181, 186, 187, 188, 189], "afterward": [58, 80, 81, 117, 134, 147, 148, 153, 167], "ag": [7, 46, 60, 85, 88, 105, 108, 125, 127, 130, 154, 157], "again": [3, 16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 94, 97, 102, 113, 115, 118, 119, 124, 125, 143, 145, 148, 149, 150, 153, 173], "against": [0, 3, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 93, 103, 121, 122, 133, 148, 152, 154, 157, 187, 188, 189], "agenda": 117, "agent": [5, 12, 13, 60, 64, 67, 88, 93, 102], "aggreg": 60, "aggress": 187, "agpl": 17, "agplv3": 16, "agre": 127, "agreement": 12, "ahead": 187, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 96, 117, 157, 185, 189], "ai_provid": 8, "aim": [127, 171], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 96, 101, 131, 133, 134, 188], "air": 148, "ajax": [53, 88, 117, 130, 150, 157, 160], "aka": 134, "akiaiosfodnn7exampl": 154, "alarm": [88, 116], "albert": 158, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 97, 98, 119, 127, 147], "alia": [81, 117, 134, 158], "alias": 88, "aliasgroup1": 167, "aliasgroup2": 167, "alic": [18, 40, 77, 81, 188], "alice_1337": 81, "align": [63, 108], "aliv": [60, 133], "all": [1, 2, 3, 5, 6, 7, 9, 10, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 29, 33, 34, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 61, 64, 65, 67, 69, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 94, 96, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 129, 130, 132, 133, 134, 136, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 164, 166, 170, 171, 174, 181, 184, 187, 188, 189], "allenai": [5, 11], "alloc": [47, 60, 133], "allow": [1, 2, 3, 5, 7, 12, 15, 16, 22, 25, 26, 27, 29, 31, 32, 38, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 63, 64, 65, 68, 69, 73, 76, 77, 81, 82, 84, 85, 88, 93, 95, 96, 97, 99, 102, 103, 106, 107, 109, 114, 115, 117, 118, 127, 128, 129, 130, 131, 133, 134, 135, 148, 150, 151, 154, 156, 157, 158, 160, 161, 165, 170, 173, 174, 182, 188, 189], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 117], "allow_persist": 22, "allow_private_ip_address": 165, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 127], "allowed_no_password_confirmation_rang": 88, "allowed_user_ag": 88, "allowencodedslash": 167, "allowlist": 185, "allowoverrid": [124, 134, 139], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 97, "almost": [60, 81, 134], "alon": [77, 189], "along": [3, 5, 20, 44, 60, 120, 127, 129], "alongsid": [60, 130, 152], "alpin": 135, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 94, 97, 100, 114, 115, 117, 121, 122, 125, 127, 129, 131, 132, 133, 134, 139, 148, 150, 152, 153, 154, 156, 157, 171, 181, 187, 189], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 36, 38, 40, 41, 42, 43, 47, 48, 50, 51, 53, 54, 57, 58, 59, 60, 64, 67, 69, 72, 74, 76, 80, 81, 83, 84, 85, 87, 88, 92, 93, 94, 96, 97, 99, 100, 102, 103, 106, 108, 109, 111, 113, 114, 115, 117, 119, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 151, 153, 154, 155, 157, 158, 161, 171, 173, 174, 181, 182, 183, 184, 185, 187, 188, 189], "alter": [12, 22, 23, 44, 49, 81, 183], "altern": [2, 26, 50, 57, 65, 88, 94, 121, 122, 131, 134, 137, 141, 150, 151, 157, 161, 169], "although": [43, 133, 151], "altitud": 127, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 24, 29, 39, 40, 43, 44, 53, 56, 58, 59, 60, 66, 67, 69, 71, 72, 77, 80, 81, 91, 92, 97, 98, 120, 125, 127, 129, 130, 131, 133, 138, 139, 143, 148, 149, 153, 154, 156, 157, 167, 181, 187, 188], "am": 152, "amazon": [40, 48, 60, 88, 184], "amazonaw": 48, "amazons3": 154, "amd": [3, 100], "amd64": [163, 164, 166], "american": 10, "among": [0, 3, 84, 120, 131, 187], "amongst": 96, "amount": [8, 28, 47, 59, 60, 81, 83, 94, 127, 134, 154, 184], "amp": 82, "amqp_host": 165, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 12, 14, 15, 16, 18, 22, 26, 28, 29, 31, 32, 33, 36, 38, 40, 41, 43, 44, 45, 48, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 69, 72, 74, 76, 77, 78, 79, 80, 81, 82, 85, 87, 88, 92, 93, 94, 96, 97, 99, 102, 104, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 143, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 167, 168, 170, 173, 175, 179, 181, 183, 184, 187, 188, 189], "analysi": 12, "analyt": 15, "analyz": [1, 5, 60, 117], "andrew": 2, "android": [60, 64, 65, 72, 88, 102, 120, 135], "android_app": 55, "androidclienturl": 72, "angel": 89, "ani": [0, 1, 2, 3, 5, 7, 12, 14, 15, 16, 20, 22, 25, 26, 27, 28, 29, 32, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 54, 56, 57, 58, 59, 60, 63, 64, 67, 69, 70, 80, 81, 83, 84, 85, 87, 88, 92, 94, 95, 96, 97, 98, 99, 100, 102, 106, 108, 111, 112, 113, 114, 115, 117, 121, 122, 127, 133, 134, 135, 138, 139, 144, 148, 149, 151, 152, 153, 154, 156, 157, 158, 161, 163, 173, 174, 179, 181, 185, 187, 188, 189], "anim": [6, 60], "anna": 2, "anniversari": 187, "announc": [12, 63, 81, 127], "annual": 188, "anon": 60, "anonym": [81, 112, 127], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 94, 112, 115, 117, 122, 127, 129, 130, 132, 136, 138, 139, 149, 152, 154, 156, 167, 181, 182, 187], "ansi": 151, "answer": [1, 2, 60, 81, 88, 163, 185, 189], "anti": [56, 60, 88], "anticip": 187, "antiviru": [65, 88, 151], "anymor": [76, 81, 88, 145, 155, 184], "anyon": [12, 43, 67, 77, 161], "anyth": [14, 22, 31, 56, 58, 60, 113, 114, 143, 144], "anytim": [49, 60], "anywai": [92, 152], "anywher": [32, 125, 129, 157], "apach": [19, 41, 59, 60, 68, 70, 88, 94, 97, 111, 126, 127, 128, 129, 130, 133, 135, 139, 146, 151, 163, 181], "apache2": [59, 88, 93, 94, 126, 127, 131, 134, 139, 167], "apache2ctl": 134, "apachectl": 93, "apart": 124, "apc": [59, 60, 151, 183], "apcu": [60, 65, 70, 88, 124, 131, 133, 151, 183], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 28, 36, 43, 58, 59, 60, 68, 74, 77, 84, 86, 88, 94, 96, 97, 100, 117, 127, 130, 133, 157, 160, 175, 181, 188, 189], "apirequest": [17, 75, 76, 77, 82, 87, 189], "app": [0, 12, 13, 14, 18, 20, 25, 27, 40, 41, 42, 43, 44, 47, 49, 54, 55, 57, 59, 62, 64, 65, 68, 70, 72, 74, 77, 80, 81, 82, 83, 84, 85, 87, 92, 94, 95, 99, 100, 101, 102, 103, 104, 106, 108, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 124, 125, 126, 127, 128, 130, 131, 132, 134, 141, 143, 145, 146, 148, 149, 151, 152, 153, 155, 157, 158, 159, 162, 165, 169, 170, 173, 174, 175, 176, 181, 184, 187, 189], "app1": 150, "app2": 150, "app3": 150, "app_": 18, "app_api": [2, 3, 4, 8, 88, 97, 98, 99], "app_api_haproxy_us": 97, "app_container_nam": 97, "app_display_nam": 8, "app_host": 8, "app_id": [8, 98, 100], "app_port": 8, "app_python_skeleton": 99, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 95, 97, 98, 99, 100, 101], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 150], "appdata": [94, 154], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 94, 96, 109, 115, 126, 129, 130, 133, 138, 154, 155, 157, 174, 188], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 129, 137, 148, 151], "appframework": 100, "appid": [3, 14, 17, 97, 99, 137, 138, 157], "appimag": 135, "appinfo": [17, 138], "appl": [60, 72, 94, 135], "applewebkit": 67, "appli": [8, 12, 23, 24, 25, 26, 27, 29, 41, 43, 44, 53, 59, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 93, 97, 103, 107, 108, 119, 120, 127, 134, 140, 147, 148, 149, 150, 151, 154, 157, 158, 161, 188], "applianc": [134, 144], "applic": [0, 2, 8, 12, 16, 17, 24, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 94, 96, 97, 102, 108, 111, 113, 117, 128, 130, 133, 134, 136, 138, 139, 143, 144, 147, 149, 151, 153, 157, 160, 161, 187], "appnam": 150, "appoint": [61, 113], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 108, 122, 142, 143, 187], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 93, 97, 108, 112, 113, 117, 126, 130, 133, 134, 137, 143, 144, 151, 157, 187], "approv": 88, "approve_link": 189, "approxim": [60, 81, 94, 153, 187], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 188], "apt": [56, 126, 127, 164, 166, 167, 168], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 85, 88, 91, 92, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 116, 117, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 181, 182, 184, 187, 188, 189], "arab": 4, "arbitrari": [1, 40, 60, 93, 130], "arch": [151, 164, 166], "architectur": [26, 60, 88, 97, 100, 134, 146, 163], "archiv": [56, 60, 88, 108, 112, 119, 122, 124, 126, 134, 143, 148, 149, 154, 157], "area": [54, 69, 134, 176], "arg": 130, "arg_v": 130, "argon2": [60, 131], "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 130, 139, 151, 153, 154, 157, 158], "aris": [60, 144, 187], "ark": 133, "arm32v7": 151, "arm64": [93, 163, 164, 166], "around": [10, 15, 16, 88, 102, 103, 187], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 97, 113, 121, 124, 125, 129, 138, 188, 189], "arrang": 187, "arraycach": 60, "arriv": [24, 40, 69, 109, 133], "art": 127, "articl": [63, 88, 108, 109, 111, 139], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 96], "asc": [124, 126], "ascii": [60, 71, 81, 131, 138], "asdf": 67, "asian": 5, "asid": 184, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 93, 109, 117, 139, 147, 148, 149, 151, 153, 154, 157, 175, 181], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 127, 130, 182], "asset_immut": 130, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 102, 105, 106, 133, 154, 155, 189], "assignable\u00b2": 158, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 94, 103, 117, 148], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 94, 112, 139, 144, 157, 158, 187, 188], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 93, 97, 113, 114, 125, 127, 130, 134, 139, 144, 146, 147, 148], "assumpt": 130, "asterisk": 155, "astroc": 152, "astronomi": 152, "async": 189, "asynchron": [24, 189], "atom": [60, 130], "attach": [1, 5, 15, 18, 38, 81, 88, 98, 188], "attack": [29, 58, 107, 127, 184], "attempt": [25, 28, 58, 78, 81, 88, 92, 94, 100, 102, 111, 127, 129, 139, 152, 153], "attend": 2, "attende": [111, 113], "attr": 82, "attr_persist": 60, "attribut": [40, 60, 75, 76, 77, 82, 87, 88, 112, 155], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88, 161], "audio": [1, 2, 4, 5, 6, 12, 15, 51, 60, 180, 181], "audit": [12, 53, 60, 65, 88, 108, 112, 127, 132, 157], "auth": [58, 63, 80, 87, 88, 97, 108, 130, 154], "auth_availability_delai": 88, "authent": [2, 17, 22, 28, 29, 31, 33, 34, 35, 36, 37, 39, 40, 46, 48, 58, 60, 63, 67, 68, 74, 75, 76, 77, 79, 82, 85, 88, 92, 93, 94, 97, 107, 108, 111, 112, 116, 121, 122, 127, 131, 134, 139, 144, 151, 154, 157, 165, 179, 188], "authmiddlewar": 189, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 113, 117, 120, 131, 134, 138, 161, 165, 189], "authorit": [69, 77, 147], "authorized_kei": [32, 37], "authtyp": 134, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 108, 124, 127, 154, 155], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 114, 115], "autoconfig": [22, 60, 88, 128], "autoconfigur": [60, 119], "autocr": [48, 60], "autofil": 96, "autom": [3, 59, 60, 67, 81, 88, 92, 102, 105, 106, 119, 122, 128, 129, 134, 148, 157, 158, 188, 189], "automat": [2, 3, 5, 6, 15, 18, 20, 28, 38, 40, 43, 44, 49, 50, 53, 56, 57, 58, 59, 60, 63, 64, 66, 69, 71, 72, 79, 80, 81, 83, 85, 87, 88, 91, 94, 96, 97, 98, 106, 108, 109, 111, 112, 113, 114, 115, 117, 121, 127, 131, 134, 139, 146, 147, 148, 151, 152, 153, 154, 155, 156, 157, 158, 179, 181, 183, 188, 189], "autotest": 130, "autumn": 15, "aux": 50, "av_background_scan": 56, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 20, 22, 28, 31, 33, 34, 36, 42, 43, 44, 45, 46, 47, 49, 53, 56, 58, 59, 60, 62, 63, 64, 70, 72, 76, 77, 81, 83, 85, 88, 91, 92, 94, 95, 97, 98, 99, 100, 105, 106, 108, 109, 112, 113, 115, 119, 120, 121, 122, 124, 125, 127, 129, 131, 133, 134, 137, 139, 143, 144, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 161, 164, 169, 170, 171, 174, 175, 181, 182, 187, 188, 189], "available_ram_for_php": 133, "avatar": [63, 74, 77, 82, 88, 111, 152, 154], "avatarscop": 77, "avconv": 131, "averag": [26, 113, 114, 133, 157], "average_worker_rss": 133, "avoid": [19, 22, 24, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 94, 99, 103, 108, 122, 129, 131, 148, 157, 188], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 124, 132, 184], "awai": [18, 88, 113, 133, 139, 144], "await": 189, "awar": [8, 77, 81, 94, 109, 127], "awk": 133, "ax": 59, "axi": 47, "azur": [88, 116], "b": [40, 60, 93, 97, 154, 157], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 138, "b4af8db0ae269d73432e9a01e63a": 138, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 138, "back": [3, 24, 25, 26, 28, 38, 56, 58, 60, 63, 97, 102, 114, 115, 129, 130, 136, 139, 141, 143, 144, 148, 149, 153, 161], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 26, 32, 37, 38, 39, 45, 46, 48, 53, 56, 58, 59, 65, 67, 75, 76, 79, 81, 83, 84, 85, 88, 93, 94, 112, 114, 120, 121, 127, 129, 130, 133, 134, 144, 155, 157, 158, 184], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 83, 88, 112, 115, 128, 145, 149, 151, 152, 154, 161, 185, 188, 189], "background_color": [72, 157], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "background_jobs_expiration_dai": 88, "backgroundcolor": 72, "backgroundjob": [157, 188], "backport": [137, 187], "backportbot": 137, "backslash": 188, "backtrac": [67, 88, 133], "backup": [23, 46, 47, 60, 80, 88, 112, 117, 134, 136, 139, 142, 143, 144, 145, 148, 149, 150, 154, 157, 158, 171, 187], "backup_cod": 158, "backward": [22, 82], "bad": [5, 88, 127, 133], "badger": 64, "bak": [141, 147], "balanc": [24, 26, 40, 59, 69, 81, 88, 129, 133], "ban": 127, "bandwidth": [26, 130], "banner": [81, 149], "bantim": 127, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 136], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 24, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 97, 100, 102, 103, 108, 121, 122, 124, 125, 127, 128, 130, 131, 134, 135, 142, 143, 144, 149, 151, 154, 157, 169, 171, 187, 188, 189], "base64": [29, 31, 48, 60, 148, 153], "base64_signature_her": 148, "basenam": [60, 182], "baseurl": 189, "bash": [34, 124, 134, 151], "bash_profil": 151, "basi": [57, 107], "basic": [5, 17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 97, 124, 127, 133, 134, 139, 179, 189], "batch": [11, 81, 88, 142, 155, 158], "bc95cbaff3abbed716e1d40bbdaa58a0": 119, "bcrypt": [127, 131], "bearer": [2, 68, 74, 88], "beauti": 189, "becaus": [19, 20, 22, 24, 26, 27, 28, 29, 32, 38, 40, 43, 45, 48, 54, 55, 56, 57, 59, 60, 62, 64, 67, 70, 77, 81, 84, 85, 93, 94, 107, 113, 117, 119, 124, 127, 129, 132, 133, 134, 135, 139, 143, 148, 150, 153, 154, 158, 188], "becom": [40, 43, 60, 69, 88, 133, 134, 139, 152, 153, 154, 156, 161, 184], "been": [2, 3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 94, 102, 106, 107, 115, 138, 145, 150, 151, 156, 157, 158, 164, 166, 171, 177, 179, 184, 186, 187], "befor": [1, 3, 5, 7, 8, 14, 19, 20, 22, 23, 32, 46, 47, 48, 51, 53, 56, 57, 58, 60, 63, 68, 81, 88, 93, 94, 96, 97, 106, 109, 112, 113, 117, 118, 119, 121, 122, 125, 129, 130, 131, 133, 134, 135, 136, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 166, 167, 182, 187, 188], "beforehand": [136, 187], "beforenodecopiedev": 188, "beforenodecreatedev": 188, "beforenodedeletedev": 188, "beforenodereadev": 188, "beforenoderenamedev": 188, "beforenoderestoredev": 188, "beforenodetouchedev": 188, "beforenodewrittenev": 188, "begin": [2, 3, 5, 7, 81, 107, 132, 139, 143, 144, 155, 181], "begin_of_text": 5, "behalf": [1, 12, 77, 154], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 94, 133, 139], "behaviour": [52, 81, 85, 127, 130, 152, 154], "behind": [15, 24, 26, 58, 60, 70, 88, 94, 134, 138, 154, 161], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 96, 100, 102, 103, 113, 117, 121, 124, 127, 130, 133, 137, 144, 150, 154, 155, 157, 182, 187], "believ": 139, "belong": [2, 24, 81, 85, 111, 119, 121, 122, 154, 160, 161], "below": [1, 2, 3, 5, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 94, 96, 97, 102, 107, 108, 119, 122, 129, 130, 131, 139, 143, 145, 149, 155, 158, 167, 188], "benchmark": [4, 12, 60, 119], "bender": 155, "benefici": 133, "benefit": [48, 60, 96, 97, 120, 127, 133, 134, 139, 187], "berlin": [2, 14, 60, 67, 118, 150, 158], "besid": [58, 60, 81, 96, 130], "best": [14, 15, 24, 47, 58, 59, 63, 92, 102, 117, 127, 129, 131, 134, 135, 139, 143, 144, 149, 168, 188], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 139, 185, 187], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 94, 96, 97, 98, 102, 133, 143, 145, 147, 149, 153, 154, 156, 160, 165, 187], "bewar": [18, 40, 57], "beyond": [22, 48, 53, 55, 88, 108], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 94, 130, 131, 139, 183, 187], "big_temp_fil": 26, "bigger": [57, 60, 149], "bigint": [21, 25, 88, 145], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 97, 111, 116, 125, 134, 151, 188], "binari": [29, 38, 47, 60, 63, 97, 135, 138, 153, 154], "binary_search_path": 88, "bind": [81, 93, 97, 98, 131, 134, 155], "bind_address": 97, "bing": 175, "binlog_format": [22, 135], "bio": 133, "biographi": [77, 81, 111], "biographyscop": 77, "birth": 81, "birthdai": [88, 116], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 125, 135, 170], "bitmap": 60, "black": 2, "blacklisted_fil": 182, "blank": 161, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 91, 100, 125, 127, 130, 133, 173, 182], "block_nextcloud_desktop": 93, "blocked_nextcloud_desktop": 93, "blockednextclouddesktop": 93, "blocker": 64, "blog": [5, 6, 8, 11, 28, 60, 120, 124, 130], "blue": 89, "blueski": [77, 111], "blueskyscop": 77, "blurri": 47, "bmp": [60, 130], "board": [2, 175, 176], "bob": [77, 158, 188], "bock": 182, "bodi": [60, 93, 125, 188, 189], "bodyparamet": 189, "bold": 187, "book": [11, 43, 60, 77, 85, 88, 113, 116, 152, 154, 157], "bookmark": [15, 88], "bookworm": [163, 164], "bool": [113, 119, 130], "boolean": [16, 20, 23, 41, 60, 150, 152, 161], "boolval": 97, "boot": [57, 59, 124, 133], "bootstrap": [59, 60], "border": 40, "borrow": 130, "bot": [13, 15, 88], "both": [3, 12, 15, 22, 25, 28, 37, 40, 41, 44, 47, 48, 49, 56, 58, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 92, 93, 97, 100, 103, 109, 115, 117, 119, 120, 121, 127, 130, 131, 133, 134, 144, 149, 151, 153, 154, 158, 160, 161, 165, 169, 173, 174, 188, 189], "bottleneck": 133, "bottom": [53, 112, 143], "bound": [3, 60, 94, 97], "boundari": 93, "bounti": 12, "box": [28, 54, 58, 63, 81, 94, 96, 119, 170, 179, 189], "bpxrficyexamplekei": 154, "bracket": [81, 82], "branch": 138, "brand": [59, 60, 64, 65, 88, 120, 168], "brazilian": 4, "breach": [86, 127], "break": [15, 60, 130, 135, 139, 150, 187], "breakdown": [88, 157], "breton": 4, "bridg": [97, 98, 109], "brief": [152, 179], "briefli": 97, "bring": [15, 174], "british": 10, "broadcast": [88, 151], "broaden": 155, "broken": [23, 28, 70, 130, 139, 153, 154, 181], "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 94, 102, 107, 108, 124, 125, 127, 128, 129, 130, 133, 134, 139, 144, 146, 148, 157, 161, 162, 167, 171, 172, 173, 181, 184], "brute": [60, 65, 88, 108, 111, 127, 157], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 125, "bt": 11, "btoa": 189, "bucket": [31, 36, 46, 60, 88, 144, 154], "bucketnam": 48, "buffer": [26, 94, 130, 133], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 94, 119, 120, 133, 135, 140, 149, 150, 152], "bugtrack": 139, "build": [6, 8, 12, 56, 88, 92, 93, 119, 130, 137, 165], "built": [1, 2, 5, 7, 9, 10, 11, 16, 28, 32, 45, 54, 58, 59, 60, 67, 70, 88, 94, 108, 109, 110, 112, 113, 130, 131, 134, 135, 139, 142, 143, 145, 149, 157, 159, 162, 167, 169, 170, 173], "builtin": 154, "bulk": [6, 60, 77], "bulkupload": 88, "bump": 186, "bun": 189, "bundl": [3, 16, 40, 45, 59, 60, 131, 157, 188], "burst": 133, "busi": [60, 133, 134, 139, 173], "bust": 130, "button": [1, 16, 27, 32, 40, 41, 60, 63, 72, 81, 85, 88, 94, 95, 96, 109, 114, 117, 139, 148, 161, 189], "byedvluwkxkmflpbgvxc": 67, "bypass": [48, 54, 56, 60, 81, 93, 94, 121, 127, 148, 154, 161], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 94, 117, 119, 125, 135, 139, 141, 157], "bytecod": 133, "bz2": [124, 126, 143], "bzip2": 124, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 94, 97, 119, 124, 126, 127, 131, 133, 134, 139, 147, 148, 157, 164, 166], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 138, "c478e6c156c5955ed53c40d06585": 138, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 138, "ca": [22, 59, 60, 97, 121, 122, 157], "ca_cert": 60, "cach": [8, 38, 46, 58, 65, 69, 82, 88, 113, 128, 130, 136, 139, 144, 150, 151, 153, 154, 155, 156, 157, 164, 165, 166, 181], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [94, 139], "caddi": [88, 130], "caddyfil": 93, "cadenc": 187, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 133], "caldav": [60, 65, 69, 88, 114, 116, 119, 125, 130, 134, 139, 179, 188], "caldav_external_attendees_dis": 113, "calendar": [12, 16, 23, 61, 63, 88, 109, 111, 112, 115, 116, 118, 138, 140, 145, 151], "calendarchang": [113, 152], "calendardata": 188, "calendarid": 188, "calendarobjectcreatedev": 188, "calendarobjectdeletedev": 188, "calendarobjectmovedev": 188, "calendarobjectmovedtotrashev": 188, "calendarobjectrestoredev": 188, "calendarobjectupdatedev": 188, "calendarretentionoblig": 113, "calendarserv": 188, "calendarsubscriptionrefreshr": 113, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 94, 96, 115, 117, 130, 132, 134, 135, 139, 147, 148, 152, 154, 158, 160, 174, 188, 189], "callback": [161, 189], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 64, 66, 67, 68, 69, 70, 71, 72, 73, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106, 107, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 163, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 181, 182, 183, 184, 185, 187, 188], "can_instal": 125, "cancel": [139, 157], "candid": 88, "cannot": [0, 3, 5, 8, 9, 12, 26, 29, 32, 34, 38, 40, 45, 50, 51, 53, 55, 56, 60, 63, 70, 76, 77, 81, 85, 88, 92, 93, 108, 112, 115, 119, 127, 130, 131, 135, 137, 138, 143, 147, 148, 149, 151, 153, 154, 157, 158, 179, 187], "canon": [60, 69, 88], "cantonbeck": 152, "cap": [133, 154, 167], "cap_add": 133, "capabl": [1, 2, 4, 5, 12, 15, 60, 81, 88, 97, 110, 113, 133, 154, 158, 167, 172, 173, 174], "capac": [5, 7, 9, 10, 48, 133], "captur": [93, 188], "carbonara": 2, "card": [2, 15, 69, 77, 85, 96, 114, 175, 176], "carddav": [43, 65, 69, 88, 113, 115, 116, 125, 130, 134, 139, 179], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 97, 98, 125, 130], "carefulli": [139, 150], "carol": 188, "carri": [2, 24, 60, 93, 107, 154, 157, 161, 165], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 20, 22, 23, 25, 28, 29, 42, 43, 50, 56, 57, 58, 59, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 94, 96, 97, 98, 100, 102, 103, 117, 119, 124, 127, 129, 131, 133, 134, 135, 139, 143, 144, 145, 147, 148, 150, 151, 153, 158, 160, 173, 179, 181, 187, 188, 189], "cast": [2, 60], "cat": [2, 31, 152, 154], "catalan": 4, "catch": [56, 139], "categori": [2, 16, 77, 96, 108, 111, 115, 157], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 94, 130, 132, 133, 134, 138, 139, 144, 147, 148, 151, 152, 154, 157, 181, 183, 184], "caution": [8, 119, 130], "cautiou": [60, 63], "caveat": 53, "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "ccb": 3, "cd": [8, 15, 23, 28, 34, 125, 168, 188], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 138, "ce6cd914": 155, "ce8b61c2": 155, "ce9e248333c44a5a64ccad26f2550f95": 119, "ceas": 187, "ceil": 133, "center": 63, "cento": [56, 59, 88, 128, 130, 134, 135, 151], "central": [28, 29, 59, 154], "ceph": 48, "cert": [22, 59, 60, 93, 95, 97, 121, 122, 125, 157, 167], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 94, 106, 113, 114, 127, 130, 134, 148, 155, 173], "certfil": 97, "certif": [22, 32, 33, 46, 60, 64, 82, 88, 90, 94, 97, 117, 121, 122, 125, 127, 130, 134, 135, 138, 154, 161, 167, 168, 179], "certifi": 89, "cfb": 60, "cfg": [93, 94], "cgi": 130, "challeng": [127, 130, 133], "chanc": [119, 139, 187], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 25, 27, 28, 38, 39, 43, 45, 46, 47, 48, 51, 52, 53, 56, 59, 60, 61, 63, 65, 66, 67, 71, 72, 74, 77, 81, 82, 88, 93, 94, 96, 97, 102, 108, 113, 114, 117, 119, 122, 124, 126, 127, 130, 131, 133, 134, 138, 141, 143, 144, 147, 149, 150, 154, 157, 158, 161, 171, 173, 179, 180, 181, 182, 183, 187, 188, 189], "changelog": [16, 88, 143, 148], "channel": [16, 88, 109, 120, 139, 148], "chapter": [92, 110, 131, 134, 139, 187], "char": [81, 154], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 94, 126, 127, 131, 141, 147, 154], "character_set_serv": 22, "characterist": 60, "charg": [84, 112, 189], "charli": 77, "charset": [25, 60, 88], "chart": [85, 134], "chat": [2, 13, 14, 61, 88, 102, 112, 152, 161], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 184, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 24, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 93, 96, 97, 99, 101, 102, 115, 117, 119, 125, 127, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 148, 149, 151, 161, 164, 165, 166, 173, 182, 183, 187, 188, 189], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 81, 85, 92, 97, 113, 114, 161], "checker": [60, 70], "checkout": 3, "checksum": [81, 124, 126, 148, 152, 184], "children": 157, "chines": 4, "chmod": [28, 34, 97, 143], "choic": [8, 22, 56, 60, 80, 81, 88, 127, 128, 131, 144, 149], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 96, 97, 113, 114, 125, 129, 130, 131, 134, 139, 143, 163, 167, 174, 187, 189], "chooser": 60, "chose": [117, 149], "chosen": [1, 20, 22, 40, 59, 60, 129], "chown": [28, 34, 122, 124, 126, 130, 134, 143], "christoph": 119, "chrome": [67, 135], "chromium": [135, 184], "chroot": [88, 128], "chunk": [3, 43, 46, 60, 88, 94, 119, 130], "chunked_upload": [26, 88], "chunksiz": 94, "ci": [60, 158], "cidr": [60, 69], "cif": [40, 88, 128, 131], "cipher": [29, 88, 94, 127], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": [60, 93], "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamp": 81, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 138, 157, 188], "class_nam": 157, "classic": 134, "classif": [157, 188], "classifi": [6, 94, 119], "clean": [1, 3, 49, 53, 57, 60, 80, 88, 100, 109, 112, 113, 134, 154, 155, 157, 158, 179], "cleanli": 157, "cleanup": [1, 44, 47, 60, 74, 80, 81, 88, 108, 109, 115, 155, 181], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 107, 119, 133, 157], "clear_env": 134, "cli": [57, 63, 65, 67, 69, 88, 95, 99, 101, 113, 124, 127, 128, 133, 134, 144, 149, 151, 157, 181], "click": [16, 27, 40, 41, 54, 60, 63, 64, 78, 81, 85, 94, 96, 117, 129, 138, 139, 148, 161, 189], "clickjack": [64, 127], "client": [12, 15, 19, 22, 26, 28, 31, 32, 38, 43, 45, 48, 50, 55, 58, 60, 63, 64, 65, 67, 68, 69, 73, 80, 81, 85, 88, 97, 98, 102, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 127, 128, 129, 130, 132, 133, 134, 138, 139, 142, 144, 148, 152, 157, 160, 167, 172, 189], "client_body_buffer_s": 130, "client_body_temp_path": 26, "client_body_timeout": 130, "client_max_body_s": [26, 130], "clientarchitectur": 93, "clientreqid": 67, "clone": [7, 8], "close": [2, 7, 8, 10, 43, 60, 63, 69, 88, 107, 108, 139, 148, 161], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 69, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 95, 97, 115, 120, 127, 130, 134, 154, 156, 157, 158, 167, 173, 189], "cloud2": 167, "cloud_id": 158, "cloudfil": [36, 60], "cloudflar": [60, 94, 130, 139], "club": 77, "clue": 88, "cluster": [0, 3, 6, 24, 45, 88, 144], "cmd": [92, 97, 124], "cn": [60, 81, 82, 155], "cname": 144, "cnf": [22, 60, 125], "co": [5, 11], "co2": [6, 11], "coauthor": 161, "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 15, 17, 28, 29, 47, 51, 63, 65, 66, 69, 70, 75, 76, 77, 80, 81, 88, 92, 94, 120, 127, 130, 133, 136, 139, 140, 148, 149, 152, 154, 159, 167, 168, 169, 170, 171, 173, 188], "code_docker_imag": 170, "codebas": [60, 145], "cold": 133, "collabor": [32, 88, 102, 103, 120, 162, 169], "collabora": [32, 88, 134, 168, 169, 170, 172, 173, 176, 181], "collaboraoffic": [168, 170, 171], "collaboraonlin": [160, 167, 168, 170, 171, 172], "collaps": 129, "collat": [22, 23, 88, 126, 147], "collation_serv": 22, "colleagu": 152, "collect": [15, 57, 60, 119, 127, 133, 175, 176], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 152, 158, 161], "column": [19, 25, 85, 88, 117, 145, 149], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 20, 22, 28, 35, 41, 48, 55, 56, 59, 60, 63, 67, 69, 72, 75, 76, 77, 81, 82, 83, 86, 87, 88, 92, 93, 94, 97, 111, 113, 117, 120, 121, 122, 124, 126, 127, 129, 130, 131, 133, 134, 135, 137, 138, 139, 143, 148, 150, 152, 155, 157, 160, 161, 164, 166, 167, 168, 170, 171, 172, 173, 181, 184, 185, 188], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 94, 131, 134, 146, 148, 154, 155, 158, 189], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 96, 97, 124, 134, 135, 139, 151, 157, 170, 188, 189], "comma": [60, 61, 81, 158], "command": [1, 4, 6, 13, 14, 15, 16, 18, 19, 20, 30, 34, 38, 40, 41, 43, 46, 47, 48, 51, 52, 53, 56, 57, 60, 61, 63, 67, 69, 72, 77, 78, 81, 83, 88, 92, 93, 97, 98, 99, 100, 104, 112, 113, 117, 118, 119, 124, 126, 128, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 162, 165, 183, 184, 188], "commandjob": 157, "comment": [2, 23, 26, 40, 43, 56, 65, 88, 109, 112, 134, 137, 143, 148, 161, 175, 176], "commentsmanag": 60, "commerci": [120, 134, 139], "commit": [60, 65, 88, 135], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 96, 105, 112, 117, 124, 127, 130, 133, 134, 148, 151, 157, 162, 172, 189], "commonli": [28, 48, 58, 59, 93, 121, 131, 139], "commonnam": [60, 134, 188], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 93, 96, 98, 101, 119, 120, 126, 131, 134, 139, 148, 151, 161, 172, 174, 183, 187], "compact": 161, "compani": [2, 12, 64, 72, 81, 148], "compar": [3, 20, 57, 59, 60, 81, 93, 143, 152], "comparison": [46, 60, 81, 88, 188], "comparison_of_file_system": 60, "compat": [0, 1, 3, 5, 16, 22, 28, 31, 38, 40, 45, 46, 48, 59, 60, 80, 82, 88, 93, 131, 133, 145, 149, 153, 167, 187, 188], "compens": 38, "compil": [22, 59, 133], "complain": 150, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 102, 111, 122, 124, 125, 127, 131, 132, 133, 134, 136, 147, 148, 149, 151, 154, 157, 175, 178, 188], "completionexpectedat": 14, "complex": [28, 60, 97, 108, 112], "compli": [60, 112, 154], "complianc": [13, 53, 60, 88, 108, 139], "compliant": [80, 127, 135], "compon": [12, 60, 88, 93, 130, 133, 134, 139, 163, 174, 179, 186, 188], "component_classic_hash": 186, "compos": [56, 130, 133, 161], "composit": [115, 176], "compound": 88, "comprehens": 139, "compress": [56, 60, 85, 88, 94, 102, 108, 127, 128, 131, 183], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 96, 97, 98, 100], "compute_devic": 98, "computedevic": 98, "concaten": [29, 38], "concept": [25, 125, 150], "concern": [8, 26, 28, 29, 47, 60, 130, 187], "concert": 2, "concurr": [3, 4, 48, 60, 133, 181], "condit": [14, 15, 65, 70, 81, 88, 93, 103, 139, 187, 188, 189], "condition": 60, "conf": [22, 56, 59, 81, 97, 124, 125, 127, 130, 134, 139], "confdir": 92, "confer": [2, 120], "confid": 156, "confidenti": [68, 102, 158, 160], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 70, 71, 72, 73, 79, 81, 82, 83, 84, 85, 88, 93, 96, 97, 98, 99, 104, 107, 108, 113, 114, 117, 118, 119, 121, 122, 124, 125, 129, 130, 131, 132, 133, 134, 136, 139, 141, 143, 144, 145, 147, 148, 149, 151, 152, 158, 162, 165, 167, 173, 181, 182, 183, 184, 185], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 155], "configtest": 93, "configur": [2, 4, 12, 13, 20, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 50, 52, 54, 57, 58, 66, 68, 69, 71, 73, 74, 80, 83, 85, 86, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 105, 107, 108, 109, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 126, 129, 135, 136, 139, 143, 144, 145, 147, 148, 151, 153, 154, 155, 156, 157, 158, 159, 162, 165, 166, 169, 172, 176, 178, 185, 188, 189], "configuration_serv": 60, "confin": [43, 134], "confirm": [4, 19, 22, 41, 48, 60, 65, 68, 70, 77, 78, 81, 88, 109, 110, 124, 126, 131, 133, 134, 143, 144, 153, 154, 157, 158, 161], "conflict": [16, 38, 60, 81, 119, 147, 152], "confus": [28, 38], "congratul": [117, 164, 166, 167], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 21, 22, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 96, 97, 98, 112, 113, 114, 117, 125, 128, 129, 130, 132, 133, 134, 135, 139, 144, 154, 155, 157, 160, 161, 162, 164, 166, 172, 173, 181, 185, 188], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 128, 129, 152, 162, 165], "consecut": 34, "consent": [107, 117], "consequ": [46, 88, 127, 130, 153], "conserv": 133, "consid": [1, 8, 16, 24, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 94, 108, 109, 111, 113, 114, 119, 127, 134, 135, 139, 147, 173, 187], "consider": [46, 60, 65, 85, 88, 187], "consist": [20, 24, 29, 40, 44, 60, 93, 102, 117, 122, 130, 139, 143, 151], "consol": [19, 53, 64, 99, 130, 134, 139, 143, 151, 167], "const": 189, "constant": [60, 77], "constitut": 110, "constrain": 92, "constraint": [77, 134, 148, 154], "construct": 93, "consult": [16, 26, 28, 56, 59, 60, 110, 112, 127, 131, 135, 188], "consum": [8, 26, 58, 60, 77, 149], "consumpt": [5, 6, 7, 11, 26, 88, 90, 133], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 109, 111, 112, 113, 116, 122, 134, 138, 140, 145, 150, 154, 157, 161, 185], "contactinteractedwithev": 115, "contactsinteract": 115, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 69, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 96, 98, 99, 101, 102, 107, 108, 111, 112, 114, 115, 117, 119, 121, 127, 130, 133, 134, 136, 137, 139, 148, 151, 153, 157, 160, 161, 165, 167, 170, 173, 181, 188, 189], "container": 134, "container_id": 167, "container_nam": 56, "containerlogmaxfil": 97, "containerlogmaxs": 97, "content": [2, 3, 5, 11, 12, 15, 20, 24, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 94, 97, 103, 111, 113, 114, 120, 124, 125, 126, 127, 130, 138, 139, 143, 147, 150, 153, 154, 157, 175, 188], "context": [5, 8, 13, 28, 38, 58, 59, 60, 67, 77, 88, 92, 93, 102, 131, 151, 176, 184], "context_ag": [1, 13, 15, 88], "context_chat": [1, 3, 15], "context_chat_backend": [1, 3, 15], "contextchat": 3, "continu": [3, 19, 44, 53, 67, 85, 97, 99, 107, 122, 127, 135, 148, 152, 153, 157, 173], "contract": 107, "contrast": 18, "contrib": [88, 163], "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 139], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 93, 96, 103, 105, 106, 108, 110, 111, 113, 114, 127, 130, 133, 134, 146, 150, 151, 152, 154, 157, 158, 161, 181], "convei": [11, 153], "conveni": 77, "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 111, 112, 119, 160, 175, 176], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 103, 133, 139, 145, 153, 164, 166, 167], "cookbook": 88, "cooki": [60, 65, 88, 108, 110, 111], "cookie_domain": 88, "cool": [167, 171, 172], "coolconfig": [160, 168], "coolwsd": [160, 167, 168, 170, 171, 172], "cooper": 120, "coordin": [2, 131], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 69, 81, 85, 88, 97, 108, 109, 115, 117, 124, 126, 130, 141, 143, 144, 147, 156, 157, 188], "copied_sample_config": 88, "copyright": 113, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 108, 125, 126, 130, 131, 133, 134, 138, 143, 146, 153, 156, 157, 158, 181, 187, 188], "coreinfo": 133, "corpor": [72, 134], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 94, 96, 112, 119, 121, 127, 129, 130, 131, 134, 137, 138, 139, 143, 145, 151, 154, 155, 187, 189], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 94, 95, 100, 115, 118, 124, 130, 134, 139, 152, 154, 157, 182], "correspond": [22, 26, 45, 47, 48, 77, 81, 83, 121, 122, 124, 126, 130, 131, 136, 139, 143, 153, 154, 158, 176, 188], "corrupt": [45, 59, 60, 144, 148, 149, 154], "cost": [60, 130], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 94, 102, 119, 125, 127, 130, 135, 138, 139, 141, 147, 150, 155, 157, 173], "couldn": 100, "counsel": 110, "count": [2, 60, 85, 88, 106, 127, 133, 139, 157, 158], "counter": 153, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 102, 129, 139, 148, 167, 189], "court": 81, "cover": [22, 93, 97, 102, 117, 129, 130, 138, 149, 154, 157, 164, 166, 178, 183, 184, 185], "coverag": [5, 9, 11], "cp": [3, 4, 124, 125, 126, 154], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 96, 97, 98, 127, 133], "cpuinfo": [3, 133], "cr": 81, "cram": 63, "crammd5": 63, "crash": [94, 157], "crawl": 3, "crawler": 185, "crc32": 184, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 24, 27, 28, 29, 31, 33, 34, 36, 40, 44, 46, 47, 48, 50, 51, 53, 54, 56, 57, 59, 60, 64, 67, 71, 74, 76, 77, 81, 84, 87, 88, 92, 96, 97, 98, 100, 102, 103, 106, 111, 113, 114, 115, 117, 119, 120, 121, 122, 124, 125, 126, 127, 129, 134, 136, 139, 143, 144, 145, 146, 147, 148, 150, 153, 156, 157, 158, 160, 161, 163, 181, 188], "create_example_ev": [113, 152], "createcli": 189, "createdb": 22, "createrol": 129, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 97, 106, 111, 113, 114, 134, 157, 158, 185], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 94, 117, 121, 122, 127, 129, 144, 152, 153, 154, 160, 189], "crew": 155, "criteria": [7, 25, 67, 102, 188], "critic": [3, 5, 7, 8, 12, 60, 88, 127, 135, 139, 143, 149, 187], "crl": [60, 122, 157], "crlf": 81, "cromwel": 131, "cron": [6, 24, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 108, 113, 115, 117, 127, 128, 130, 131, 139, 143, 145, 149, 150, 152, 154, 161, 188], "cronjob": [43, 57, 58, 125], "crontab": [53, 57, 113, 139, 143, 145], "crop": 81, "cross": [60, 107, 111, 120, 130, 133], "crt": [59, 60, 93, 97, 130, 154, 157], "crucial": [60, 160], "crypto": 97, "cryptograph": 127, "cryptographi": 3, "csrf": [70, 88, 107], "css": [69, 88, 133, 154], "csync": 88, "csyncoc": 93, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [94, 131], "ctype": 131, "cuda": [3, 4, 5, 6, 7, 9, 11, 96, 98], "cudnn": 6, "culprit": 133, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 93, 97, 124, 126, 131, 164, 165, 166, 173, 181], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 29, 32, 43, 44, 53, 57, 58, 59, 60, 62, 64, 66, 67, 68, 77, 80, 81, 88, 93, 94, 96, 97, 98, 102, 108, 113, 117, 124, 125, 127, 133, 134, 135, 138, 143, 145, 149, 150, 151, 152, 153, 154, 156, 157, 161, 173, 185, 187, 188], "currentvers": 148, "cursor": [81, 85], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 27, 48, 51, 53, 59, 60, 61, 64, 65, 69, 79, 83, 85, 88, 92, 93, 94, 96, 97, 103, 111, 114, 117, 120, 123, 130, 131, 132, 133, 134, 138, 141, 142, 144, 154, 157, 162, 175, 182, 183, 188, 189], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 157], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 108], "cycl": [40, 81, 120], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 97, 108, 124, 125, 127, 130, 132, 133, 134, 141, 143, 147, 148, 164, 165, 166, 167, 168], "d1": [44, 49, 60, 108], "d2": [44, 49, 60, 108], "d5685c3b45aee373b09be54742ea": 138, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 99, 101, 172], "daemon_config_nam": 8, "daemonconfig": [97, 98], "dai": [1, 2, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 94, 106, 107, 108, 111, 113, 115, 117, 120, 124, 152, 154, 187, 188], "daili": [12, 53, 58, 60, 108, 120, 154], "daisi": 158, "dall": 176, "danger": 64, "dark": [60, 161], "dash": [67, 85, 154], "dashboard": [60, 65, 88, 117], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 29, 34, 40, 45, 46, 51, 56, 57, 59, 63, 67, 68, 73, 77, 78, 80, 81, 82, 83, 84, 85, 88, 94, 95, 97, 99, 107, 110, 116, 117, 122, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 160, 161, 163, 174, 176, 181, 184, 187, 188, 189], "data_request": 109, "databas": [3, 12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 59, 65, 67, 81, 83, 88, 94, 113, 114, 115, 126, 127, 128, 134, 136, 139, 142, 143, 144, 145, 148, 149, 151, 154, 157, 158, 163, 165, 175, 176, 186, 188], "databaseid": 119, "datacent": [31, 48], "datadir": [28, 60, 132], "datadirectori": [29, 67, 88, 121, 136, 144, 148], "dataintegr": [60, 184], "dataloss": 147, "dataset": 11, "date": [2, 14, 19, 24, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 111, 113, 117, 123, 124, 131, 133, 135, 139, 141, 147, 154, 157, 158, 161, 178, 187], "dateinterv": 113, "datepattern": 127, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 94, 109, 112, 113, 114, 115, 118, 119, 124, 125, 130, 134, 139, 151, 157], "davclnt": 130, "david": 188, "davstorag": [26, 41, 88], "davx5": 115, "davx\u2075": 119, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 94, 121, 122, 125, 129, 139, 141, 145, 147, 149, 158, 164, 166], "db8": 60, "db_": 130, "db_host": 165, "db_name": [141, 147, 165], "db_user": 165, "dbal": 60, "dbdriveropt": [22, 25, 88, 121, 122], "dbhost": [22, 25, 88, 121, 136, 144], "dbindex": [59, 60, 150], "dbname": [22, 24, 25, 88, 121, 144], "dbpass": 121, "dbpassword": [22, 25, 88, 121, 129, 144], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbsslca": 121, "dbsslcert": 121, "dbsslcrl": 121, "dbsslkei": 121, "dbsslmode": 121, "dbsslnoverifi": 121, "dbtableprefix": [22, 88, 121], "dbtype": [20, 22, 88, 121, 136], "dbuser": [22, 25, 88, 121, 129, 144], "dc": [81, 82, 83, 155], "dd": [81, 152, 154], "ddl": 183, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 113, 117, 182, 183, 184], "deal": [119, 134], "deb": [126, 161, 164, 166, 168], "debconf": [164, 166], "debian": [22, 56, 59, 72, 88, 122, 131, 133, 134, 135, 139, 151, 162, 163, 167, 186], "debug": [12, 13, 70, 81, 88, 119, 128, 130, 138, 144, 148, 152, 154, 157], "decemb": 124, "decid": [12, 22, 24, 28, 92, 96, 106, 130, 149, 187], "decim": 48, "decis": [28, 136], "deck": [15, 28, 88, 154, 157, 175, 176], "declar": [81, 88], "decod": 157, "decompress": 131, "decreas": [60, 88, 94], "decrement": 153, "decrypt": [46, 48, 60, 88, 97, 107, 127, 133, 139, 151], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 113, 120, 121, 128, 129, 130, 133, 136, 148, 152, 154, 157, 162, 170], "deem": 47, "deep": [28, 65, 88], "deeper": 11, "deepl": [1, 4, 15], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 63, 65, 68, 69, 72, 80, 81, 82, 83, 85, 86, 87, 88, 92, 93, 94, 95, 96, 98, 99, 107, 108, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 139, 141, 146, 147, 149, 150, 151, 152, 154, 157, 158, 161, 164, 165, 168, 169, 170, 172, 175, 184, 187, 188, 189], "default_certificates_bundle_path": 88, "default_en": 17, "default_file_extens": 71, "default_host": 22, "default_languag": [66, 88], "default_local": [66, 88], "default_password": 22, "default_phone_region": [81, 88], "default_port": 22, "default_property_scop": [77, 81, 88], "default_scop": 77, "default_socket": 22, "default_timezon": [88, 118], "default_us": 22, "defaultapp": 88, "defaultmodul": 153, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 108, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 95, 97, 102, 103, 104, 113, 127, 130, 138, 151, 152, 154, 160, 161, 181, 187, 188, 189], "definit": [20, 46, 88, 127, 187], "defunct": 81, "degrad": [60, 133, 152], "degre": 136, "delai": [0, 15, 24, 40, 41, 53, 57, 58, 60, 88, 113, 157], "deleg": [65, 88, 116, 151, 188], "delegate_permiss": 55, "delet": [1, 2, 3, 16, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 94, 99, 102, 106, 108, 109, 111, 112, 113, 114, 116, 118, 119, 136, 138, 139, 143, 147, 148, 151, 153, 156, 188], "delete_timestamp": 29, "deliber": [93, 97, 108, 187], "delimit": [31, 81], "deliv": [12, 53, 109, 130, 187], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 108, 127, 154], "demo": [60, 157], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 93, 105, 130, 132, 158], "denial": [58, 127, 132], "denot": 29, "deny_statu": 93, "depart": 82, "depend": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 19, 29, 32, 40, 43, 47, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 88, 92, 96, 115, 117, 121, 124, 125, 127, 129, 130, 134, 135, 136, 139, 143, 144, 146, 149, 151, 153, 167, 176, 182, 183, 184, 188], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 101, 120, 124, 125, 130, 133, 139, 170, 187], "deploy": [3, 28, 60, 65, 77, 88, 91, 96, 98, 100, 101, 110, 120, 122, 124, 128, 131, 133, 134, 135, 136, 139, 149, 163, 170, 187], "deployconfig": [88, 97], "deploydaemon": 97, "deprec": [60, 76, 135, 158, 180, 182, 183, 184, 185, 189], "deprovis": 136, "deriv": [59, 60, 72, 77, 81, 88, 127, 130, 134, 153, 154, 157], "describ": [12, 24, 26, 29, 41, 43, 53, 57, 59, 60, 63, 67, 70, 77, 80, 81, 92, 93, 96, 97, 98, 102, 103, 106, 108, 109, 110, 112, 121, 122, 139, 145, 167], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 95, 111, 113, 117, 121, 122, 124, 131, 133, 134, 157, 161, 165, 175, 188], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 110, 120, 134, 146, 149, 173], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 103, 129, 130, 134, 144], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 94, 102, 120, 128, 133], "desktopshortcut": 92, "despit": [43, 60, 130, 153, 154], "destin": [2, 32, 37, 39, 60, 112, 126, 152, 154], "destruct": 152, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 94, 96, 100, 109, 111, 119, 124, 126, 127, 129, 130, 131, 133, 134, 139, 143, 144, 151, 152, 154, 157, 158, 166, 170, 171, 173, 182, 183, 184, 185, 187, 189], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 97, 107, 129, 131, 154, 155, 157], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 94, 97, 119, 134, 153, 154], "dev": [60, 65, 67, 88, 93, 125, 135, 151, 165, 189], "develop": [12, 15, 16, 54, 60, 80, 91, 94, 95, 96, 119, 127, 129, 134, 135, 137, 138, 139, 146, 149, 154, 159, 165, 169, 187, 188], "developer_manu": 60, "deviat": 127, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 94, 96, 97, 98, 100, 127, 133, 134, 146], "diagnos": [67, 81, 133, 151, 157, 158, 181], "diagnost": [3, 88], "diagram": [15, 97, 189], "dialect": 7, "dialog": [41, 43, 77, 81, 115, 154, 161], "dialogu": [81, 147], "dictat": 97, "did": [20, 28, 30, 88, 100, 139, 150], "diff": 137, "differ": [2, 3, 5, 7, 15, 22, 25, 28, 29, 31, 32, 40, 46, 55, 56, 57, 58, 59, 60, 64, 66, 69, 77, 80, 81, 85, 88, 92, 94, 96, 97, 99, 100, 113, 114, 121, 127, 129, 130, 134, 136, 138, 139, 142, 147, 151, 152, 153, 154, 157, 158, 160, 181, 188], "differenti": [15, 113, 114], "difficult": [60, 129, 138], "difficulti": [2, 147], "diffus": [15, 176], "digestmail": 157, "digit": 135, "dimens": 60, "diminish": 60, "dir": [23, 28, 94, 122, 134, 139, 148, 157], "dirbkp": 147, "dirbkp_": 141, "direct": [26, 40, 59, 60, 77, 79, 81, 93, 102, 130, 133, 134, 139, 183, 187], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 25, 26, 28, 32, 40, 48, 53, 55, 57, 60, 63, 69, 81, 92, 94, 97, 102, 107, 109, 112, 129, 130, 134, 136, 139, 148, 149, 150, 154, 157, 161, 162, 175, 189], "directori": [3, 5, 7, 8, 18, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 55, 56, 57, 60, 65, 67, 77, 79, 83, 88, 91, 92, 94, 102, 103, 112, 119, 122, 124, 125, 126, 128, 130, 133, 134, 136, 137, 140, 141, 143, 144, 145, 147, 148, 150, 151, 153, 154, 155, 157, 158], "directory2": 81, "dirti": [60, 67], "disabl": [1, 2, 3, 16, 18, 23, 25, 26, 29, 30, 31, 32, 38, 40, 41, 44, 46, 49, 50, 52, 58, 63, 65, 67, 72, 74, 81, 88, 93, 94, 96, 97, 98, 101, 102, 104, 108, 111, 112, 113, 114, 115, 118, 119, 130, 131, 132, 133, 134, 135, 143, 145, 148, 149, 150, 151, 154, 155, 157, 161, 168, 182, 183, 184, 185], "disable_act": 85, "disable_email": 85, "disable_funct": 131, "disablefreebusi": 113, "disadvantag": [29, 57], "disallow": [3, 60, 88, 128], "disappear": [24, 43, 45, 58, 59, 124], "disapprov": 189, "discard": 117, "disclaim": 43, "disclos": 108, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 129, 144, 151], "discov": [60, 188], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 111, 134, 140, 167, 172, 173], "discret": [58, 187], "discuss": [12, 22, 43, 94, 120, 184, 187], "disk": [3, 28, 39, 44, 60, 85, 88, 94, 97, 130, 133, 139, 153, 154, 161, 163, 164, 165, 166, 183], "dispar": 7, "dispatch": [88, 115], "displai": [15, 28, 43, 46, 47, 51, 53, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 93, 95, 96, 97, 98, 99, 111, 112, 113, 115, 117, 119, 121, 129, 130, 138, 151, 152, 154, 157, 158, 161], "display_nam": 158, "displaynam": [75, 76, 81, 82, 112, 113, 152, 155, 158, 188], "displaynamescop": 77, "disregard": 139, "disrupt": 149, "dist": [51, 102], "distinct": [48, 77, 88, 108, 112, 188], "distinguish": [46, 60, 88], "distribut": [24, 26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 94, 96, 97, 120, 124, 127, 130, 131, 132, 134, 135, 138, 139, 144, 149, 151, 154, 163, 170], "distro": [38, 60, 97, 132, 134, 139, 146], "dive": 28, "diverg": 152, "divid": 60, "dmz": [88, 128], "dn": [59, 81, 82, 83, 97, 144, 161, 173, 181], "dnextcloud": 22, "dnf": 124, "do": [0, 2, 3, 4, 5, 7, 9, 10, 14, 15, 16, 19, 20, 22, 25, 26, 28, 32, 40, 43, 47, 51, 53, 56, 58, 59, 60, 63, 64, 69, 70, 72, 80, 81, 82, 85, 88, 92, 93, 94, 96, 97, 99, 102, 103, 108, 118, 119, 122, 124, 125, 127, 129, 130, 132, 133, 134, 135, 139, 142, 143, 144, 145, 147, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 167, 174, 181, 182, 183, 184, 186, 187, 188, 189], "do_not_schedule_reboot": 92, "doc": [15, 60, 94, 100, 120, 125, 135, 153, 160, 167, 168, 169, 170, 171, 172, 184], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 98, 100, 101, 131, 133, 134, 149, 151, 153, 161, 162, 163, 170, 173, 181, 188], "docker_aio": 97, "docker_instal": [96, 98], "docker_local_sock": [98, 99], "docker_socket_port": 98, "dockerfil": 8, "dockersocketproxi": 97, "docservic": [164, 166], "doctrin": 60, "document": [1, 2, 3, 12, 22, 23, 26, 29, 31, 32, 35, 40, 43, 45, 47, 51, 56, 59, 60, 62, 64, 67, 70, 88, 92, 93, 94, 97, 103, 110, 118, 119, 120, 121, 122, 124, 126, 127, 129, 130, 131, 133, 134, 135, 138, 139, 145, 146, 151, 153, 154, 155, 157, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 183, 184, 188, 189], "document_root": 130, "documentation_url": 88, "documentroot": [124, 134, 139], "documentserv": [161, 164, 165, 166], "documentserver_": [164, 166], "documentserverurl": 161, "docx": [162, 169], "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 24, 28, 29, 31, 32, 33, 36, 38, 40, 43, 45, 48, 53, 55, 56, 57, 58, 59, 60, 63, 65, 66, 68, 69, 75, 76, 77, 81, 85, 88, 92, 93, 96, 97, 98, 99, 102, 109, 110, 114, 117, 118, 119, 121, 122, 125, 127, 129, 130, 132, 133, 134, 138, 139, 142, 143, 145, 147, 149, 150, 151, 153, 154, 157, 158, 163, 174, 181, 184, 187, 189], "doesn": [18, 22, 28, 76, 81, 119, 124, 130, 148, 173, 189], "doesnotexist": 150, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 131], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 96, 125, 128, 134, 150, 167, 173, 185], "don": [2, 6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 96, 113, 119, 130, 132, 134, 138, 141, 143, 150], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 97, 99, 124, 125, 134, 144, 145, 148, 152, 153, 160, 167, 181, 185, 188], "dora": 158, "dot": [8, 38, 40, 50, 96, 97, 130, 139, 182, 188], "doubl": [12, 60, 139], "dow": 56, "down": [40, 59, 88, 94, 113, 114, 117, 119, 133, 189], "downgrad": [88, 148, 149], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 69, 85, 88, 89, 94, 97, 101, 102, 107, 109, 111, 112, 122, 124, 126, 127, 134, 137, 139, 142, 143, 144, 145, 149, 150, 153, 154, 157, 160, 161, 163, 167, 168], "downsid": [48, 181], "downstream": [5, 12, 15], "downtim": 81, "dozen": 169, "draft": [2, 3, 5, 7, 119, 139, 154], "draw": [2, 58], "drawback": [32, 134], "drawn": 60, "drive": [26, 60, 133], "driven": [40, 134], "driver": [6, 22, 60, 97, 100, 122, 129], "droid": 60, "drop": [3, 22, 46, 58, 63, 88, 125, 127, 139, 147, 152, 164, 166, 186, 189], "drop_account": 109, "dropbox": 94, "dropdown": [40, 43, 85], "dry": [149, 152, 153, 154], "dsheurist": 81, "dsnap": 125, "dsp": [96, 97, 98], "dst_path": 99, "duckduckgo": [2, 175], "due": [2, 4, 12, 26, 38, 47, 49, 55, 59, 60, 64, 71, 81, 88, 94, 100, 102, 111, 127, 130, 133, 139, 143, 152, 154, 157, 158, 161, 171], "dummi": 148, "dump": [88, 141, 144], "duplic": [3, 11, 88, 115, 130, 139, 157], "durat": [60, 94, 157], "dure": [3, 4, 16, 22, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 97, 100, 121, 122, 124, 130, 133, 134, 142, 144, 148, 153, 157, 164, 165, 166, 183, 184], "dutch": 4, "dynam": [23, 60, 82, 94, 133, 183], "e": [1, 2, 5, 8, 12, 15, 18, 19, 20, 22, 23, 26, 28, 31, 32, 34, 40, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 67, 68, 69, 72, 73, 77, 78, 80, 81, 82, 83, 94, 96, 97, 98, 99, 100, 102, 107, 108, 109, 112, 113, 114, 115, 117, 119, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 168, 171, 176, 187, 188, 189], "e2e": 28, "e4b": [1, 5], "eacceler": 139, "each": [1, 2, 3, 6, 9, 14, 15, 24, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 59, 60, 64, 67, 69, 77, 81, 85, 94, 96, 97, 100, 102, 109, 111, 115, 117, 131, 133, 134, 139, 149, 151, 153, 154, 156, 157, 158, 161, 163, 164, 181, 187, 188, 189], "ear": 1, "earli": [12, 81], "earlier": [24, 57, 60, 81, 124, 139, 187], "eas": [60, 187], "easi": [56, 59, 60, 63, 83, 85, 134, 145, 146, 170, 188], "easier": [55, 60, 94, 119, 133, 134], "easiest": [22, 58, 60, 63, 102, 127, 134, 139, 147, 149], "easili": [15, 41, 60, 63, 64, 134, 145, 146, 172, 189], "east": [48, 60], "easycron": 57, "ecdsa": 156, "echo": [15, 157, 164, 166, 168, 188], "ecosystem": [12, 54, 58, 96, 120, 186], "ed": 55, "edg": [15, 43, 117, 135], "edit": [2, 11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 111, 113, 130, 133, 134, 138, 139, 141, 149, 151, 157, 159, 161, 162, 164, 168, 169, 170, 187, 189], "editor": [60, 85, 88, 113, 162], "edri": [60, 127], "edu": 60, "eff": [60, 127], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 94, 97, 107, 132, 133, 148, 154, 181, 188], "effici": [8, 60, 133, 135], "effort": [12, 187], "efss": 136, "eg": [52, 151], "egress": 125, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 94, 96, 97, 102, 124, 126, 130, 134, 136, 138, 143, 148, 149, 154, 157, 187, 189], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 144, "elect": 81, "element": [17, 75, 76, 152], "elig": 77, "elimin": 81, "els": [14, 81, 97, 112, 133, 134, 138], "elseif": 97, "elsewher": [58, 60, 97, 130], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 109, 111, 112, 113, 115, 117, 120, 154, 157, 158, 161, 176], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 160], "embed": [3, 65, 88, 127, 157, 161, 183, 184, 185], "embrac": [134, 146], "emf": [60, 181], "emit": 151, "emoji": [2, 23, 135, 141, 147, 152], "emot": 11, "emploi": [3, 8, 72, 81, 86, 120, 187], "employe": [12, 188], "empti": [3, 22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 97, 108, 111, 134, 139, 143, 144, 154, 188, 189], "en": [2, 7, 8, 60, 66, 124, 135, 157, 158], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 16, 18, 19, 20, 21, 22, 25, 29, 31, 38, 39, 41, 42, 43, 46, 47, 49, 54, 57, 58, 59, 64, 65, 67, 68, 70, 72, 73, 74, 77, 81, 83, 87, 88, 91, 92, 93, 94, 95, 96, 97, 101, 102, 107, 111, 112, 113, 114, 115, 117, 118, 119, 122, 124, 125, 128, 130, 131, 135, 138, 139, 141, 143, 145, 148, 149, 150, 154, 155, 161, 162, 163, 165, 167, 168, 169, 170, 171, 173, 176, 179, 181, 182, 183, 185, 188, 189], "enable_cli": 151, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 157, "enable_preview": [47, 88, 127], "enable_shar": 154, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 113, "enabledefaultcontact": 114, "enabledpreviewprovid": [47, 88, 127, 133, 181, 182], "encapsul": 130, "encf": 132, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 130, 148, 153], "encount": [2, 3, 41, 50, 60, 119, 131, 138, 139, 143], "encourag": [86, 127, 134, 187], "encrypt": [22, 31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 108, 111, 127, 128, 130, 140, 144, 151, 154, 157, 158, 173, 179], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 113, 124, 130, 133, 144, 145, 149, 151, 152, 158, 161, 164, 166, 181], "end_header_id": 5, "endeavor": 120, "endedat": 14, "endedbefor": [14, 157], "endpoint": [2, 15, 24, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 93, 97, 114, 139, 144, 148, 156, 157, 167, 181, 188, 189], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 93, 96, 111, 113, 124, 127, 130, 138, 154, 157, 160, 179, 188], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 97, 100, 102, 133, 135, 141, 147, 157, 165, 187, 189], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 120, 133], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 94, 100, 113, 127, 133, 139, 167, 171, 183], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 69, 70, 81, 88, 92, 94, 96, 108, 109, 113, 115, 117, 122, 125, 128, 130, 131, 133, 134, 135, 138, 139, 143, 144, 151, 152, 153, 154, 158, 160, 173], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 94, 117, 125, 126, 127, 129, 134, 146, 148, 153, 158], "enterpris": [12, 22, 56, 72, 120, 122, 123, 124, 127, 134, 135, 139, 157, 169, 186, 187], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 118, 139, 141, 148, 187], "entri": [1, 22, 24, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 93, 108, 112, 113, 114, 115, 121, 125, 130, 133, 134, 136, 138, 139, 143, 144, 145, 148, 150, 152, 154, 157, 161, 176, 181], "entrypoint": [58, 172], "entryuuid": 155, "enumer": [77, 114, 180], "env": [4, 93, 97, 98, 99, 127, 134, 158], "env_nam": 99, "env_valu": 99, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 94, 97, 99, 101, 119, 120, 127, 130, 131, 133, 135, 139, 141, 143, 144, 146, 147, 148, 149, 157, 158, 161, 163, 170, 185, 187], "eof": 63, "eot_id": 5, "epel": [56, 124], "epoch": 135, "equal": [8, 29, 47, 60, 97], "equival": [40, 49, 59, 60, 81, 133, 157], "eras": 94, "erasur": [88, 108], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 99, 100, 111, 119, 121, 122, 124, 127, 129, 131, 132, 133, 134, 137, 140, 143, 144, 148, 150, 151, 152, 154, 157, 173, 184, 189], "error_log": [60, 67, 94, 139], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 157], "escal": 54, "escap": [63, 92, 188], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 97, 103, 134, 137, 139, 143, 144, 145, 149, 181, 188], "esperanto": 4, "essenti": [8, 60, 68, 81, 133, 139, 189], "establish": [41, 43, 55, 63, 77, 88, 94, 131, 135, 154, 155], "estim": [4, 133], "esx": 134, "etag": [40, 130, 157, 188], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 93, 97, 112, 121, 122, 124, 125, 127, 129, 130, 131, 132, 134, 139, 144, 145, 153, 154, 158, 161, 164, 165, 167, 168, 171, 173, 175, 179, 181, 188, 189], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 154], "euc": 71, "euro": [161, 162, 163, 164, 165, 166, 169], "eurooffic": [161, 165], "europ": [60, 67, 118, 150], "european": 5, "eval": 151, "evalu": [67, 77, 93, 187, 188], "even": [1, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 81, 88, 96, 97, 99, 102, 108, 113, 115, 127, 130, 132, 134, 139, 143, 147, 149, 187], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 94, 108, 111, 112, 115, 116, 117, 127, 129, 151, 154, 157, 189], "eventfilt": 188, "eventu": 108, "everi": [5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 69, 80, 81, 85, 88, 94, 97, 109, 111, 113, 114, 115, 120, 124, 133, 135, 144, 145, 148, 149, 151, 153, 154, 157, 175, 176, 185, 187, 188, 189], "everybodi": 139, "everyon": [18, 52, 77, 80, 120, 155, 187], "everyth": [59, 60, 63, 65, 81, 88, 92, 134, 139, 187, 189], "everywher": [81, 176], "evict": 60, "ex": [2, 92, 94, 96, 145, 151], "ex_app_port": 97, "exact": [38, 57, 60, 70, 77, 81, 148, 188], "exactli": [48, 59, 60, 93, 124, 133, 149], "examin": [12, 83], "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 12, 14, 15, 16, 18, 20, 22, 26, 28, 32, 33, 34, 35, 38, 40, 41, 43, 45, 47, 48, 50, 51, 53, 55, 56, 57, 59, 63, 64, 65, 68, 72, 77, 79, 81, 83, 85, 87, 88, 93, 94, 95, 96, 97, 99, 105, 116, 117, 119, 122, 127, 128, 129, 130, 132, 134, 136, 137, 138, 139, 141, 143, 148, 149, 150, 151, 154, 155, 156, 157, 158, 161, 170, 172, 173, 179, 187, 188], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 95, 98, 100, 182, 183, 184], "exapp_direct": 98, "exapphost": 97, "exce": [4, 44, 49, 60, 85, 133, 154, 184], "exceed": [26, 44, 49, 60, 152, 154], "excel": 59, "except": [3, 59, 60, 67, 76, 80, 81, 92, 130, 133, 138, 143, 144, 148, 151, 157], "excerpt": 94, "excess": [112, 133], "exchang": [0, 5, 7, 41, 63, 179], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 94, 103, 157, 158], "exclus": [36, 40, 48, 58, 60, 70, 94, 97, 139, 154], "exec": [4, 15, 40, 143, 153, 188], "execcondit": 57, "execstart": [15, 57, 188], "execut": [1, 3, 4, 6, 8, 15, 19, 24, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 97, 105, 117, 127, 130, 132, 138, 143, 148, 149, 151, 152, 155, 161, 185, 188], "exempt": [58, 60], "exhibit": [7, 8, 130], "exif": [131, 154], "exim": 63, "exim4": 63, "exist": [3, 6, 12, 16, 20, 22, 23, 27, 28, 31, 33, 36, 38, 44, 48, 51, 53, 54, 60, 61, 63, 67, 74, 75, 76, 81, 83, 85, 88, 92, 93, 94, 96, 97, 108, 113, 115, 117, 119, 126, 129, 130, 131, 134, 138, 139, 143, 144, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 171, 178, 181, 187, 188, 189], "exit": [92, 125, 153, 154, 157], "expand": [16, 88, 120, 129, 161], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 117, 137, 138, 148, 157, 160, 164, 166, 181, 182, 183, 184, 187], "expedit": 8, "expens": [40, 113], "experi": [4, 16, 57, 65, 88, 114, 117, 120, 127, 133, 135, 139, 173], "experienc": 94, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 117], "expertis": [139, 187], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 94, 107, 108, 113, 117, 130, 188], "expiri": [44, 60, 81, 108], "explain": [16, 38, 56, 65, 88, 109, 112, 120, 124, 131], "explan": 40, "explicit": 115, "explicitli": [14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 107, 129, 130, 139, 151, 154, 158, 161, 179], "explod": [60, 97], "explor": [12, 92], "exponenti": 127, "export": [52, 60, 88, 94, 109, 112, 117, 127, 150, 151, 158, 189], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 96, 97, 98, 121, 122, 127, 129, 131, 139, 163], "exposur": [77, 108, 127, 139], "express": [60, 69, 93, 102, 188, 189], "ext4": 38, "extapp": 160, "extend": [1, 2, 8, 43, 60, 63, 108, 112, 120, 135, 174, 187], "extendedsupport": 157, "extens": [3, 22, 51, 60, 63, 65, 67, 70, 88, 90, 92, 112, 119, 120, 122, 124, 127, 130, 131, 133, 134, 139, 144, 146, 154, 180, 181, 182, 187], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 15, 31, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47, 57, 60, 65, 68, 81, 84, 85, 87, 88, 101, 103, 109, 111, 113, 127, 131, 132, 133, 135, 136, 143, 144, 150, 151, 153, 157, 158, 161, 165, 181, 188, 189], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 153, "extra": [12, 16, 56, 60, 72, 81, 100, 124, 125, 138, 143, 153, 164], "extra_fil": 138, "extract": [1, 3, 29, 60, 93, 97, 124, 126, 130, 148, 157], "extrem": [58, 70, 129, 133], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 93, 100, 113, 141, 143, 147, 149, 152, 154, 157, 188], "f12": [94, 139], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 138, "f6": 55, "fa829794448eaffbc9a04a29d216": 138, "face": [7, 9, 12, 14, 15, 77, 88, 92, 130], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 133, 187], "fact": 127, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 119, 127, 133, 151], "factori": 60, "fail": [3, 14, 16, 24, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 94, 100, 108, 111, 113, 121, 127, 131, 138, 139, 146, 148, 151, 152, 153, 154, 156, 157, 158, 181], "fail2ban": [65, 88, 128], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 127, "failur": [60, 75, 76, 88, 94, 100, 139, 144, 151], "fair": [88, 140], "fairli": 94, "fall": [25, 26, 38, 60, 115, 129, 130], "fallback": [51, 60, 67, 130, 161, 175], "fallen": 157, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 97, 98, 113, 117, 119, 127, 129, 133, 139, 141, 149, 150, 152, 153, 157, 165, 168, 181, 188], "famili": 77, "familiar": [60, 134], "faq": [3, 70, 88, 101, 134, 139, 140, 146], "far": [2, 15, 85, 117, 187], "farsi": 4, "fast": [5, 63, 117, 150], "fastcgi": [125, 130, 134], "fastcgi_buff": 130, "fastcgi_connect_timeout": 130, "fastcgi_hide_head": 130, "fastcgi_intercept_error": 130, "fastcgi_max_temp_file_s": 130, "fastcgi_param": [127, 130], "fastcgi_pass": 130, "fastcgi_path_info": 130, "fastcgi_read_timeout": [26, 130, 133], "fastcgi_request_buff": 130, "fastcgi_script_nam": 130, "fastcgi_send_timeout": 130, "fastcgi_split_path_info": 130, "faster": [0, 3, 7, 11, 15, 59, 88, 128, 134, 187], "fastest": 133, "fat": 38, "fatal": [60, 67, 157], "fault": [24, 26], "faulti": 63, "favicon": [72, 157], "favor": 60, "favorit": 187, "fb": 55, "fcgid": 134, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [124, 132], "fd00": 127, "fd9e": 60, "fe80": [60, 129], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 24, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 109, 111, 113, 114, 116, 117, 119, 124, 127, 131, 133, 134, 135, 139, 151, 154, 157, 167, 170, 174, 178, 184, 187, 188], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 111, 112, 114, 115, 116, 127, 151, 156, 157], "fedivers": [77, 81, 111], "fediversescop": 77, "fedora": [59, 133, 134, 151], "fee": 112, "feedback": [5, 7, 9, 10, 15, 148, 161, 187, 188], "feel": [72, 97], "fell": 157, "fetch": [2, 16, 60, 81, 82, 125, 147, 149, 155, 160, 165, 189], "few": [32, 41, 58, 60, 81, 85, 98, 117, 133, 134, 143, 148, 149], "fewer": 108, "ff5733": 152, "ffmpeg": [47, 60, 131], "ffprobe": 60, "ffri": 69, "fidel": [162, 169], "field": [1, 14, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 93, 96, 97, 109, 111, 112, 127, 129, 134, 139, 155, 157, 187, 188, 189], "figur": 149, "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 22, 23, 32, 33, 34, 37, 41, 47, 48, 49, 50, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 72, 77, 79, 81, 85, 91, 92, 97, 99, 100, 105, 107, 109, 112, 113, 114, 115, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 131, 134, 136, 137, 138, 140, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 161, 162, 165, 168, 171, 175, 176, 180, 183, 184, 185, 186], "file_serv": 93, "filecach": [19, 25, 40, 51, 60, 88, 145, 157], "fileformat": 188, "fileid": [60, 157, 160, 188], "fileinfo": [131, 139], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 94, 111, 147, 150, 157, 182], "filepart": 60, "filepath": [34, 132, 134, 150], "files_accesscontrol": 3, "files_antiviru": [56, 88, 94], "files_encrypt": [28, 29, 153], "files_extern": [3, 38, 40, 60, 88, 150], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 154], "files_pdfview": 148, "files_shar": [41, 60, 85, 150, 157], "files_texteditor": 17, "files_trashbin": [29, 49, 154, 188], "files_vers": [18, 29, 44, 154], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 134, "filesmetadata": 157, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 132, 154, 158, 188], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 154], "filetyp": [47, 60, 127], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 96, 97, 109, 113, 117, 129, 189], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 131, 133, 152, 154, 155, 157, 158, 173, 184, 189], "final": [3, 5, 7, 26, 38, 60, 63, 88, 97, 117, 124, 126, 127, 128, 134, 148, 161, 187], "financ": 158, "financi": 139, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 28, 33, 38, 40, 48, 56, 58, 60, 70, 77, 80, 81, 85, 88, 91, 94, 109, 112, 117, 123, 131, 133, 134, 137, 139, 143, 149, 155, 183, 187, 189], "finder": [60, 139], "findtim": 127, "fine": [5, 11, 60, 103, 127, 132, 134, 161, 189], "fingerprint": [88, 144, 147], "finish": [3, 4, 8, 14, 56, 57, 97, 99, 100, 129, 139, 141, 143, 148, 149, 157], "firefox": [135, 158], "firewal": [16, 58, 93, 97, 100, 124, 127, 173, 181], "firm": 108, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 94, 97, 99, 100, 102, 112, 113, 114, 115, 119, 121, 124, 126, 127, 130, 133, 134, 136, 137, 138, 139, 143, 144, 145, 146, 149, 151, 152, 153, 155, 156, 157, 162, 164, 166, 182, 187], "first_seen": 158, "fit": [1, 6, 38, 59, 96, 134, 146, 163, 179], "five": [133, 141], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 97, 115, 130, 131, 133, 135, 137, 139, 140, 157, 187], "fix_pathinfo": 130, "flac": [130, 180, 181], "flag": [53, 60, 83, 84, 98, 133, 150, 151, 153, 157, 158], "flash": 56, "flat": 60, "flexibl": [134, 136, 187], "flight": 156, "flite": 60, "float": [12, 60, 150], "flood": 67, "floor": 133, "flow": [60, 67, 68, 84, 88, 92, 93, 102, 106, 189], "flow_input": 189, "flowchart": 15, "fluentd": 97, "flush": 126, "fn": 115, "focu": [0, 1], "focus": [28, 120, 149, 187], "folder": [2, 7, 8, 16, 20, 26, 27, 31, 33, 34, 38, 39, 41, 43, 44, 46, 48, 49, 60, 65, 69, 72, 81, 82, 83, 88, 94, 95, 97, 103, 105, 124, 125, 130, 132, 134, 138, 139, 142, 143, 148, 154, 157], "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 38, 39, 40, 41, 43, 47, 48, 52, 53, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 72, 77, 80, 81, 83, 85, 88, 92, 93, 94, 96, 97, 98, 102, 104, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 143, 145, 150, 151, 153, 154, 155, 161, 167, 172, 173, 175, 181, 187, 188, 189], "followsymlink": [124, 134], "font": [60, 88, 130, 164, 165, 166], "fontobject": 130, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 133], "footer": 109, "footprint": 108, "forbid": [50, 86, 113], "forbidden": [60, 93], "forbidden_char": 182, "forbidden_filenam": [88, 182], "forbidden_filename_basenam": [50, 88, 182], "forbidden_filename_charact": [50, 88, 182], "forbidden_filename_extens": [50, 88, 182], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 99, 108, 111, 114, 119, 127, 150, 151, 152, 154, 155, 157], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 113, "forcesav": 161, "foreign": 63, "forest": 2, "forev": [49, 60, 157], "forgeri": 127, "forget": [28, 29, 60, 63, 133, 134, 141, 146], "forgot": 80, "form": [56, 60, 81, 87, 88, 96, 100, 112, 121, 124, 129, 139, 189], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 59, 65, 66, 67, 71, 81, 82, 83, 88, 93, 119, 133, 135, 151, 152, 154, 160, 161, 162, 169, 183, 188, 189], "formid": 188, "formsubmittedev": 188, "forum": [70, 120, 139, 148, 149, 187], "forward": [15, 60, 69, 70, 97, 129, 130, 134, 139, 143, 151, 172], "forwarded_for_head": [58, 69, 88], "found": [0, 1, 3, 4, 6, 18, 44, 47, 51, 56, 58, 59, 60, 67, 70, 80, 81, 88, 94, 96, 97, 100, 115, 124, 127, 129, 130, 131, 133, 134, 137, 138, 139, 146, 149, 152, 153, 157, 160, 167, 168, 170, 171, 172, 173, 181, 184, 187], "foundat": 0, "four": [15, 56, 81, 147, 157, 187, 188], "fourth": 187, "fpm": [26, 60, 70, 88, 125, 127, 128, 130, 131, 135], "fr": [60, 66], "frame": [64, 113, 127, 130], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [152, 154, 157, 158], "freda": 41, "free": [2, 15, 20, 24, 44, 80, 97, 119, 120, 127, 134, 139, 152, 158], "free_prompt_picker_en": 1, "freebsd": 131, "freebusi": [88, 116], "freed": 154, "freedom": 175, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 133], "frequent": [13, 56, 59, 60, 88, 93, 108, 139, 187], "fresh": [3, 40, 81, 130, 143, 149, 152, 153], "freshclam": 56, "fridai": 2, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 24, 26, 28, 29, 30, 32, 37, 38, 39, 40, 41, 43, 44, 45, 46, 50, 54, 55, 56, 57, 59, 60, 64, 65, 67, 69, 70, 72, 75, 77, 80, 81, 82, 83, 85, 86, 88, 93, 94, 95, 96, 97, 99, 100, 102, 103, 106, 107, 108, 109, 112, 113, 114, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 164, 165, 166, 167, 169, 173, 175, 176, 181, 182, 183, 184, 185, 187, 188, 189], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 119, 130, 163, 170], "front_controller_act": [130, 134], "frontend": [26, 60, 67, 69, 88, 93, 96, 174, 175], "frontend1": 69, "frp": [96, 97, 98], "frp_address": 98, "frpc": [97, 98], "fry": 155, "fss": 97, "ftp": [40, 88, 125, 131, 138], "fulfil": [2, 108, 112, 129, 139], "full": [3, 22, 28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 102, 108, 109, 111, 112, 114, 121, 122, 127, 133, 134, 135, 144, 146, 150, 151, 152, 153, 154, 157, 158, 167, 168, 172, 187, 188], "fulli": [0, 1, 12, 13, 28, 41, 53, 60, 63, 88, 110, 121, 134, 148, 149, 154, 157, 159, 169, 171, 187, 188], "fullscreen": 167, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 29, 39, 45, 54, 60, 63, 64, 67, 77, 87, 88, 92, 96, 97, 103, 107, 117, 120, 127, 131, 132, 134, 135, 136, 139, 143, 144, 149, 160, 171, 173, 187, 189], "fund": 120, "fundament": [60, 70, 81], "further": [16, 22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 94, 109, 112, 124, 128, 134, 143, 146, 170, 187], "furthermor": [29, 59, 60], "fuse": 132, "fusef": [88, 128], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 113, 127, 157, 182, 183, 184, 188], "g": [2, 5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 69, 72, 77, 81, 82, 83, 88, 96, 97, 98, 99, 100, 102, 107, 108, 113, 114, 115, 117, 119, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 143, 144, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 164, 166, 167, 171, 187, 188, 189], "gain": [3, 14, 127], "galera": 24, "galleri": [47, 60, 148, 157], "gap": 148, "garbag": [57, 60], "garbl": 5, "garm": [16, 127], "gatewai": [48, 88, 133, 134], "gather": [81, 139, 181], "gb": [3, 4, 11, 26, 60, 81, 85, 96, 133, 157, 163, 164, 165, 166], "gc": 60, "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 124, 126, 131], "gdpr": [88, 107, 108, 109, 111, 112], "gear": 85, "gecko": 67, "gemma": [1, 2, 5], "gender": 7, "gener": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 18, 28, 31, 32, 36, 37, 40, 46, 48, 51, 52, 53, 58, 59, 60, 63, 69, 72, 77, 80, 81, 82, 88, 92, 94, 97, 107, 110, 113, 115, 117, 124, 128, 129, 130, 132, 133, 134, 136, 140, 144, 149, 150, 151, 154, 156, 157, 158, 160, 161, 164, 166, 174, 175, 176, 181, 182, 183, 184, 187], "generalizedtim": 81, "generate_font": 165, "genr": [15, 88], "geo": 130, "german": [4, 5, 60, 66], "germani": [2, 60], "get": [1, 2, 13, 16, 22, 26, 28, 29, 32, 38, 46, 47, 51, 60, 62, 67, 69, 80, 81, 82, 92, 106, 124, 125, 127, 130, 132, 134, 135, 137, 138, 139, 143, 148, 151, 153, 158, 161, 164, 166, 167, 170, 173, 176, 181, 189], "get_lin": 63, "getctag": 188, "getenv": [60, 65, 88, 134], "getpath": [137, 150], "gguf": [5, 12], "ghcr": [97, 133, 165], "gib": 26, "gid": 158, "gidnumb": [82, 155], "gif": [60, 99, 130, 175, 176], "giphi": [175, 176], "git": [7, 8, 137], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 94, 120, 127, 130, 133, 134, 137, 146, 164, 166, 175, 176, 181, 184, 187], "githubusercont": 127, "gitlab": [175, 176], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 104, 108, 109, 111, 125, 132, 134, 138, 148, 156, 157, 187], "given": [2, 24, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 97, 102, 106, 119, 127, 134, 139, 153, 154, 157, 158, 160, 161, 181], "givennam": [82, 155], "glanc": 133, "global": [32, 53, 60, 65, 67, 81, 88, 97, 113, 117, 118, 120, 130, 151, 154, 158, 176], "gmail": 117, "gmbh": [12, 16, 72, 103, 120, 122, 127, 134, 139, 157, 187], "gmp": [126, 131], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 96, 97, 98, 109, 113, 124, 126, 133, 137, 143, 144, 148, 167, 187, 189], "goal": [28, 77, 81, 92, 134], "goe": [14, 24, 85, 97, 145], "gold": [7, 10], "gone": [85, 88, 139], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 127, 133, 134, 143, 149, 187], "googl": [2, 15, 60, 72, 80, 88, 135, 175], "got": [2, 18, 103, 187], "govern": 77, "gpg": [88, 124, 126, 128, 168], "gpt": [1, 176], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 96, 97, 98, 100], "grab": 124, "grace": 81, "gracefulli": 129, "gradual": 48, "grain": [132, 161, 189], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 93, 112, 119, 121, 124, 126, 134, 157], "graph": [15, 60], "graphic": [1, 15, 47, 92, 96, 122, 134], "great": 124, "greater": [60, 88], "greatli": [3, 134, 135], "green": [5, 15, 40, 41, 81, 88, 89, 161], "grep": [3, 15, 20, 56, 59, 100, 131, 133, 134, 188], "groceri": 2, "groqcloud": [0, 15], "group": [2, 6, 16, 31, 33, 34, 36, 38, 43, 46, 54, 56, 59, 60, 64, 67, 74, 80, 82, 83, 87, 88, 93, 111, 112, 114, 119, 122, 134, 150, 151, 152, 154, 157, 161, 173, 188], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 103, 154], "groupid": [75, 76, 81, 158], "groupofnam": 155, "groupwar": [112, 113, 114, 117, 139], "grow": [88, 97, 120, 133], "growth": [53, 133], "gt": 188, "gte": 188, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 24, 45, 49, 59, 60, 77, 93, 108, 188], "guard": [93, 133], "guess": 58, "guest": [16, 88], "gui": [3, 32, 66, 92, 133], "guid": [23, 28, 60, 63, 92, 96, 117, 120, 124, 126, 127, 131, 133, 134, 147, 153, 157, 164, 166, 170, 171, 178, 179, 184], "guidanc": [28, 88, 110, 111, 112, 120, 128, 129, 131, 133, 134], "guidelin": 130, "guooq": 158, "guzzl": 60, "gz": [60, 119], "gzip": [119, 130], "gzip_comp_level": 130, "gzip_min_length": 130, "gzip_proxi": 130, "gzip_typ": 130, "gzip_vari": 130, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 97, 127, 134, 141, 147, 151], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 19, 24, 26, 28, 29, 32, 38, 40, 41, 43, 47, 48, 51, 53, 54, 56, 57, 58, 60, 63, 64, 66, 67, 68, 70, 77, 80, 81, 85, 88, 93, 94, 96, 97, 98, 102, 107, 111, 112, 113, 115, 117, 118, 119, 122, 124, 127, 129, 132, 133, 134, 136, 138, 139, 144, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 166, 167, 171, 179, 184, 185, 186, 187, 188, 189], "hackeron": [12, 28], "had": [29, 53, 60, 92, 179, 181, 184], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [103, 187], "handl": [1, 2, 3, 8, 20, 24, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 94, 95, 97, 109, 111, 113, 117, 122, 127, 130, 131, 133, 139, 152, 154, 172, 173, 185, 188], "handle_all_url": 55, "handler": [60, 63, 88, 93, 161], "hanson": 155, "hansson": 134, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 102, 113, 117, 130, 138, 139, 144, 148, 167, 188, 189], "happi": [14, 31, 48], "haproxi": [88, 96, 97, 130], "haproxy_host": 97, "haproxy_password": [97, 98], "haproxypass": 97, "hard": [26, 43, 64, 127], "hardcod": [127, 130], "harden": [60, 88, 128, 129, 131], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 96, 100, 133, 134, 144], "harp": [88, 98, 100, 101], "harp_docker_socket_port": 98, "harp_exapp_direct": 98, "harp_frp_address": 98, "harp_proxy_dock": 98, "harp_proxy_host": 98, "harp_shared_kei": 98, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 111, 131, 138, 188, 189], "hash_equ": 29, "hash_hmac": 29, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 176, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 134, 135], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 24, 25, 26, 28, 29, 30, 32, 33, 34, 38, 40, 41, 43, 47, 48, 50, 51, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 77, 78, 80, 81, 83, 85, 88, 91, 92, 94, 96, 97, 98, 100, 102, 104, 106, 108, 109, 113, 114, 115, 117, 119, 121, 122, 124, 125, 127, 129, 130, 132, 133, 134, 135, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 167, 168, 171, 172, 173, 175, 177, 181, 183, 187, 188, 189], "haveibeenpwnd": 86, "hbegin": 29, "hdr": [60, 93], "head": [58, 68, 70, 124], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 93, 97, 128, 129, 130, 133, 134, 139, 157, 161, 165, 181, 184, 189], "header_regexp": 93, "headless": 122, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 133, "health": [24, 100, 164, 165, 166], "healthcheck": [164, 165, 166], "healthi": [100, 139], "heartbeat": [60, 88], "heartbeat_count": 100, "heavi": [0, 1, 19, 45, 59, 97, 131], "heavili": [58, 60], "heic": [60, 133, 134], "heif": [60, 134], "height": 60, "held": [88, 112], "hello": [1, 63], "helm": 134, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 94, 102, 103, 107, 110, 111, 113, 114, 119, 120, 122, 124, 132, 133, 134, 137, 139, 143, 147, 148, 149, 151, 153, 157, 161, 187], "helper": [15, 107, 129], "henc": [80, 151], "hend": 29, "her": 2, "here": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 18, 20, 22, 28, 31, 43, 56, 60, 63, 67, 68, 69, 81, 91, 93, 96, 97, 117, 119, 127, 129, 130, 133, 134, 149, 151, 175, 189], "hetzner": 12, "heurist": [56, 70], "hex": 152, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 94, 113, 119, 127, 130, 139, 161], "hide": [38, 60, 77, 88, 107, 118, 119, 130, 161], "hide_absence_set": 118, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 113, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 112, 117, 127, 133, 134, 135, 136, 162, 169, 183, 187], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 111, 114, 145, 187], "highest": [2, 81, 133, 149, 187], "highli": [58, 60, 70, 81, 119, 120, 127, 129, 131, 133, 138, 160, 170, 187], "highlight": [15, 134, 143, 149, 187], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 129, 130, 149], "hintexcept": 151, "histor": 28, "histori": [14, 15, 40, 58, 86, 88, 112, 122, 154], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 96, 102, 108, 111, 130, 188], "holidai": [113, 152], "home": [28, 40, 63, 81, 83, 88, 92, 94, 134, 139, 154, 157, 173], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 187], "hook": 151, "hope": 25, "hopefulli": 148, "hord": 119, "horde_": 119, "horde_imap": 119, "horizon": 161, "hors": 56, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 22, 24, 31, 37, 38, 45, 48, 55, 56, 59, 60, 63, 69, 70, 81, 82, 88, 93, 95, 96, 98, 113, 117, 119, 121, 122, 124, 125, 127, 129, 130, 134, 139, 143, 144, 148, 150, 157, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 172, 173, 181, 188], "host2": 97, "host3": 97, "hoster": [22, 60, 117], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 93, 96, 117, 121, 122, 129, 130, 134, 144, 146, 157, 173], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 94, 108, 109, 111, 113, 114, 115, 117, 143, 144, 149, 156, 189], "hourli": 53, "hous": [31, 143], "housekeep": [57, 143], "hover": [81, 85, 175], "how": [2, 6, 7, 10, 12, 15, 16, 18, 21, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 96, 108, 112, 113, 114, 116, 117, 119, 120, 124, 127, 129, 130, 131, 133, 134, 138, 139, 142, 144, 148, 157, 158, 167, 174, 178, 179, 183, 184, 185, 187], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 22, 29, 30, 56, 57, 58, 59, 60, 71, 79, 80, 97, 113, 118, 127, 133, 134, 135, 145, 146, 149, 170, 172, 181], "hp_frp_address": 97, "hp_shared_kei": [96, 97], "hp_trusted_proxy_ip": 97, "href": 188, "hst": [70, 125, 127, 130], "hstspreload": 130, "htaccess": [26, 88, 124, 127, 129, 130, 132, 139, 181, 182, 184], "htaccesstest": 130, "htdoc": 121, "html": [60, 63, 67, 94, 124, 130, 131, 132, 135, 139, 148, 151, 160, 167, 168, 170, 171, 172, 184], "htop": 133, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 20, 26, 28, 31, 34, 35, 36, 39, 40, 41, 45, 48, 52, 55, 56, 57, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 77, 79, 81, 82, 83, 87, 88, 91, 92, 94, 95, 96, 97, 98, 100, 107, 112, 113, 117, 119, 122, 124, 125, 126, 128, 129, 131, 132, 135, 137, 138, 139, 141, 143, 145, 146, 148, 149, 151, 156, 157, 160, 161, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 181, 184, 188, 189], "http2": 130, "http_author": 134, "http_client_add_user_agent_url": 88, "http_code": 93, "http_forwarded_for": 60, "http_host": 130, "http_proxi": 60, "http_user_ag": [93, 130], "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 94, 102, 103, 124, 128, 134], "httpd_can_connect_ldap": 132, "httpd_can_network_connect": [124, 132], "httpd_can_network_connect_db": 132, "httpd_can_network_memcach": 132, "httpd_can_sendmail": 132, "httpd_sys_rw_content_t": [124, 132], "httpd_unifi": 132, "httpd_use_cif": 132, "httpd_use_fusef": 132, "httpd_use_gpg": 132, "httpd_use_nf": 132, "httpdavmodul": 139, "https_frontend": 93, "https_proxi": 60, "hub": [0, 2, 15, 171, 189], "hug": 7, "huge": [19, 60, 133], "huggingfac": [5, 11], "human": [6, 11, 81, 154, 189], "hundr": 139, "hurri": 63, "hy000": 139, "hybrid": 120, "hyperlink": 43, "hypervisor": 134, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 175, 176, 179, 180, 181, 184, 185, 186, 187, 188], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 118], "ibm": [1, 8, 12, 13, 15, 88], "ic": [112, 113, 152, 188], "ical": 152, "icalendar": 152, "icap": [65, 88], "icmp_req": [22, 63], "ico": [130, 157], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 130, 157], "id": [2, 5, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 97, 98, 107, 115, 117, 127, 151, 152, 154, 155, 156, 158, 161, 167, 173, 188, 189], "id1125420102": [60, 72], "idea": [2, 56, 120, 143, 149], "ideal": [1, 134, 139, 146, 188], "idelegatedset": 157, "ident": [36, 48, 60, 72, 74, 81, 88, 121, 134, 144], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 100, 107, 111, 115, 118, 119, 126, 127, 133, 138, 139, 144, 152, 154, 157, 158, 160, 189], "idl": 133, "ie": [1, 3, 124], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 188, "ifmodul": [124, 127, 134, 139], "ifram": [60, 64, 127], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 94, 115, 121, 131, 137, 155, 160], "ignore_notic": 22, "ignorefrontcontrol": [88, 134], "illustr": [47, 60, 134], "im_end": 5, "im_start": 5, "imag": [2, 5, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 130, 131, 133, 134, 154, 157, 158, 163, 167, 170, 173, 175, 176, 182, 183, 184, 185], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 126, 131, 133], "imagin": 43, "imaginari": [60, 88, 133, 134], "imaginarypdf": [60, 182], "imap": [63, 88, 131], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 93, 107, 108, 152, 154, 157, 158], "immut": [81, 130], "impact": [28, 40, 48, 58, 59, 60, 63, 97, 104, 133, 187], "imperson": 127, "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 28, 29, 32, 48, 54, 56, 60, 63, 68, 80, 81, 88, 97, 113, 119, 134, 135, 144, 151, 157, 175], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 113, 114, 117, 124, 126, 129, 130, 131, 133, 134, 136, 139, 144, 150, 178, 188, 189], "importantli": [120, 134], "impos": 15, "impract": 108, "imprint": 88, "imprinturl": [72, 157], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 96, 120, 124, 130, 131, 133, 135, 149, 170], "in_arrai": 97, "inaccess": [23, 28, 48, 153], "inaccur": 8, "inact": 60, "inadvert": [58, 133], "inbox": [2, 15, 119], "inc": 72, "incid": 67, "inclin": 187, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 45, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 94, 98, 100, 109, 111, 115, 117, 118, 119, 120, 121, 127, 129, 130, 131, 133, 134, 136, 137, 139, 141, 148, 149, 152, 154, 157, 158, 160, 162, 165, 169, 170, 182, 183, 184, 185, 187, 188, 189], "includedir": 22, "includesubdomain": [127, 130], "inclus": 152, "incom": [12, 60, 61, 69, 109, 154], "incoming_server2server_share_en": 150, "incompat": [60, 133, 145], "incomplet": [152, 154], "inconsist": [38, 141, 152, 154, 157], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 94], "incorrectli": [60, 69, 119], "increas": [16, 18, 26, 32, 38, 41, 59, 60, 63, 67, 100, 117, 125, 127, 130, 133, 134, 135, 139, 151, 161, 183], "increment": [19, 153], "indefinit": [58, 108, 111, 157], "independ": [3, 29, 59, 60, 67, 77, 88, 94, 102, 111, 120, 121, 148], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 97, 102, 125, 127, 130, 134, 138, 139, 148, 150, 164, 170], "indexerjob": 3, "indi": 130, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 100, 107, 117, 129, 132, 139, 145, 149, 161, 187, 188], "indirectli": 103, "individu": [24, 26, 28, 32, 40, 54, 58, 60, 92, 94, 112, 119, 120, 121, 127, 133, 151, 153, 154, 157], "industri": [12, 144], "inetorgperson": [81, 82, 155], "inevit": [127, 135], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 113, 114], "info": [8, 43, 60, 67, 70, 77, 81, 88, 94, 99, 109, 112, 130, 139, 151], "inform": [0, 1, 3, 4, 5, 7, 8, 12, 14, 16, 17, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 45, 48, 52, 53, 58, 59, 60, 63, 64, 66, 67, 69, 70, 72, 76, 77, 81, 85, 88, 91, 92, 94, 99, 102, 107, 109, 112, 113, 114, 117, 118, 119, 120, 122, 125, 127, 130, 131, 133, 134, 135, 138, 143, 146, 148, 149, 151, 154, 155, 157, 158, 175, 179, 181, 183, 184, 185, 189], "infrastructur": [12, 60, 97, 139, 157, 163], "inher": [57, 107], "ini": [22, 26, 33, 59, 60, 71, 88, 124, 125, 127, 128, 130, 132, 133, 134, 139, 151, 183], "init": [56, 88], "initdb": 125, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 97, 99, 100, 103, 111, 121, 154, 157, 187, 189], "initialis": [125, 134, 146, 154], "inject": 60, "inlin": 15, "innodb": [23, 60, 135], "innodb_buffer_pool_inst": 22, "innodb_buffer_pool_s": 22, "innodb_file_format": [22, 60], "innodb_file_per_t": [22, 23, 60], "innodb_flush_log_at_trx_commit": 22, "innodb_large_prefix": [22, 60], "innodb_log_buffer_s": 22, "innodb_max_dirty_pages_pct": 22, "inotifi": 154, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 150, 152, 154, 157, 176, 189], "insecur": [63, 88, 135, 161], "insensit": [38, 50, 60, 93, 102], "insert": [15, 60, 88, 130, 152, 176], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 94, 97, 103, 113, 125, 133, 148, 153, 154, 157, 161, 188], "insight": [1, 12, 13, 88], "inspect": [4, 24, 56, 88, 154, 156, 157], "inspector": 70, "instal": [13, 15, 16, 17, 18, 20, 22, 23, 26, 29, 30, 35, 38, 39, 40, 41, 45, 49, 54, 57, 59, 63, 64, 65, 67, 70, 72, 80, 81, 84, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 106, 109, 113, 114, 117, 120, 130, 132, 133, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 159, 160, 162, 169, 171, 172, 174, 176, 178, 179, 181, 186], "installdir": 92, "installed_vers": 150, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16, 18, 19, 20, 22, 23, 28, 29, 43, 46, 47, 53, 57, 59, 60, 63, 67, 68, 69, 72, 77, 81, 84, 88, 92, 94, 96, 97, 108, 111, 112, 113, 114, 115, 117, 119, 120, 121, 124, 128, 129, 130, 133, 134, 135, 139, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 157, 158, 160, 161, 170, 173, 183, 185, 187, 188, 189], "instance_id": [18, 107], "instanceid": [29, 88, 144, 148], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 16, 18, 23, 26, 31, 32, 38, 45, 47, 48, 51, 53, 57, 59, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 93, 117, 119, 121, 124, 127, 130, 134, 138, 139, 145, 146, 148, 149, 150, 152, 153, 154, 157, 161, 167, 179, 185], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 119, 126, 127, 131, 133, 134, 136, 143, 145, 149, 185, 189], "insuffici": [76, 94], "int": [26, 60, 73, 75, 76, 82, 97, 119], "int8_float32": 11, "intact": 112, "integ": [1, 19, 48, 57, 60, 93, 97, 113, 114, 150, 152, 188], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 115, 117, 118, 120, 131, 134, 139, 140, 148, 151, 167, 175, 176, 182, 183, 185, 188, 189], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 117], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 138, "intel": [7, 10, 133], "intellig": [0, 1, 12, 15, 88, 96], "intend": [60, 77, 80, 81, 92, 127, 153, 157], "intens": [18, 28, 57, 133], "intention": [60, 77, 92, 111, 119], "interact": [1, 2, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 116, 148, 151, 153, 158, 166, 189], "intercept": 127, "interchang": [28, 63, 131], "interest": [107, 187], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 94, 96, 97, 109, 113, 115, 116, 118, 119, 126, 127, 128, 134, 135, 139, 149, 151, 154, 157, 158, 161, 184, 189], "intermedi": [149, 161], "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 69, 70, 74, 82, 85, 88, 97, 98, 102, 117, 130, 133, 134, 148, 153, 160, 161, 176, 188], "internal_defaultexpdai": 43, "interned_strings_buff": 125, "internet": [57, 60, 63, 127, 129, 134, 157, 185], "interoper": [13, 88], "interpret": [92, 96, 127], "interrupt": [28, 45, 57, 131], "interv": [38, 40, 56, 57, 60, 83, 88, 111, 113, 115, 133, 157, 187, 188], "intervent": [6, 56, 127, 188], "intl": [124, 126, 131], "introduc": [15, 50, 81, 96, 130, 185, 187], "introduct": [65, 88, 97, 124], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 108, 121, 127, 130, 133, 140, 154, 158, 181], "invalid_hash": 138, "invalidsignatur": 138, "invalidsignatureexcept": 138, "invert": 102, "investig": [60, 154, 157], "invis": [40, 88, 102, 105, 106, 158], "invit": [63, 88, 111, 115, 116, 179], "invite": 113, "invoc": [24, 60, 127, 157, 181], "invok": [60, 92, 109, 122, 148, 151, 181], "involv": [26, 93, 107, 133, 135, 181], "io": [45, 60, 64, 72, 97, 102, 120, 130, 133, 134, 135, 139, 146, 165], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [134, 146], "iotop": 133, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 93, 96, 97, 98, 100, 102, 108, 111, 117, 128, 129, 130, 134, 144, 146, 157, 160, 165, 173], "ip_host2_dock": 97, "ipad": 69, "ipaddress": 130, "iphon": 69, "iptabl": [58, 127, 173], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 130, "isanonym": 188, "isn": [23, 28, 60, 77, 81, 119, 134], "iso": [60, 66], "iso8601": 154, "iso_639": 60, "isol": [59, 60, 65, 88, 108, 133, 134, 135, 148], "isset": 97, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 22, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 100, 113, 114, 121, 126, 127, 129, 130, 133, 135, 137, 138, 146, 148, 149, 151, 157, 158, 167, 173, 175, 176, 183, 184], "isvfsen": 92, "italian": [4, 5, 10], "item": [2, 3, 43, 46, 65, 83, 88, 103, 113, 116, 133, 143, 154, 157], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 5, 8, 12, 14, 15, 16, 20, 24, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 94, 97, 112, 115, 117, 122, 124, 126, 132, 133, 134, 138, 139, 143, 148, 152, 154, 156, 157, 158, 174, 181, 184], "itself": [5, 22, 24, 32, 38, 40, 58, 60, 84, 92, 93, 96, 97, 102, 118, 121, 122, 126, 134, 138, 139, 146, 148, 150, 151, 153, 166, 173, 181], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 155, 164, 166, 167, 181], "jail": [88, 125], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 127, 133, 139, 180, 181, 189], "jcal": 152, "jeffmatson": 69, "jeroboam": 155, "ji": 71, "jit": 88, "jit_buffer_s": 133, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 108, 112, 115, 117, 128, 131, 139, 143, 145, 149, 151, 152, 154, 161, 185, 188, 189], "jobclass": 185, "joe": 188, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 158, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 100, 188], "journald": [97, 100], "jp": 71, "jpeg": [60, 88, 133], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [130, 157], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 97, 99, 100, 102, 113, 119, 124, 127, 130, 138, 150, 151, 152, 153, 154, 156, 157, 158, 161, 188, 189], "json_pretti": [14, 151, 152, 153, 154, 156, 157, 158], "jump": [92, 143], "just": [22, 27, 53, 57, 60, 63, 64, 81, 85, 92, 102, 113, 119, 125, 127, 129, 130, 133, 134, 139, 143, 144, 148, 167, 187, 188], "jwfcftvztglwtje": 41, "jwk": 156, "jwt": [161, 165], "jwt_enabl": 165, "jwt_header": 165, "jwt_secret": [161, 165], "k": 76, "k7mdeng": 154, "karlsruh": 14, "kazakh": 4, "kb": [60, 154], "keep": [3, 15, 18, 24, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 94, 97, 100, 102, 108, 110, 113, 114, 117, 119, 124, 125, 126, 133, 134, 135, 139, 143, 144, 148, 149, 150, 158, 161, 178, 187, 188], "keepal": [60, 139], "keepalive_timeout": 130, "keepalivetimeout": 139, "kei": [2, 3, 11, 16, 19, 22, 25, 31, 36, 37, 40, 41, 45, 46, 48, 60, 65, 67, 74, 75, 76, 77, 81, 85, 88, 96, 97, 98, 108, 117, 121, 122, 125, 126, 127, 130, 134, 136, 139, 145, 149, 150, 151, 154, 157, 161, 164, 166, 176, 188], "kept": [49, 59, 60, 108, 133, 148, 156], "keyboard": 88, "keydb": 59, "keyfil": 97, "keyformat": 29, "keypair": 32, "keyr": 168, "keyston": [36, 48, 60], "keyvalu": [45, 48, 59], "keyvaluecach": [46, 65, 88, 131], "kfrh9": 158, "khtml": 67, "kib": 60, "kick": [58, 60], "kid": 156, "kill": 133, "killmod": 57, "kind": [1, 14, 69, 97, 127, 189], "kink": 56, "kitchen": 2, "know": [24, 29, 31, 40, 60, 67, 81, 84, 113, 119, 139, 155, 157, 167], "knowledg": [11, 139], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 102, 115, 119, 125, 130, 135, 139, 150, 155, 158, 161, 174], "kokoro": 10, "korean": 4, "kovh8": 158, "krita": [60, 133], "kubectl": 3, "kubelet": 97, "kubernet": 88, "kunz": 83, "kvm": 134, "kvstore": [45, 59, 88], "l": [22, 57, 59, 69, 94, 125, 139, 157], "lab": 127, "label": [2, 15, 41, 69, 81, 98, 132, 139, 158], "labeleduri": 81, "lack": [129, 130], "lag": 24, "lamp": 134, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 158], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 96, 117, 120, 131, 135, 189], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 77, 88, 94, 113, 117, 119, 120, 130, 133, 134, 139, 149, 152, 157, 158], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 133, 158], "largest": [96, 157], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 100, 106, 111, 112, 115, 129, 146, 148, 152, 154, 155, 157, 158, 187], "last_run": 157, "last_seen": 158, "lastact": 158, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 158, "lastmodifi": 188, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 188], "latenc": 133, "later": [17, 20, 43, 60, 83, 92, 103, 117, 119, 134, 135, 139, 160, 165, 173], "latest": [1, 2, 4, 12, 26, 44, 48, 60, 61, 77, 91, 120, 124, 126, 133, 134, 135, 143, 146, 149, 164, 165, 166, 171, 178, 184, 187], "latitud": 127, "latter": 59, "launch": [2, 55, 56, 59, 88, 94, 96, 98, 121, 143, 188], "law": 108, "lawyer": 12, "lax": 107, "layer": [28, 58, 60, 77, 80, 88, 91, 133, 138], "layla": [152, 153, 154, 157, 158], "layout": [60, 61, 149, 157, 162], "lazi": [60, 150], "ld": [81, 130], "ldap": [40, 46, 65, 74, 79, 85, 88, 112, 124, 128, 131, 133, 134, 144, 151, 157, 158], "ldap_group_map": 81, "ldap_log_fil": 88, "ldap_matching_rule_in_chain": 81, "ldap_opt_network_timeout": 82, "ldap_user_map": 81, "ldapadmingroup": 81, "ldapagentnam": 82, "ldapagentpassword": 82, "ldapattributesforgroupsearch": 82, "ldapattributesforusersearch": [82, 155], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 155], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 155], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 155], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 155], "ldaphost": 82, "ldapignorenamingrul": 82, "ldaploginfilt": 82, "ldaploginfilterattribut": 82, "ldaploginfilteremail": 82, "ldaploginfiltermod": 82, "ldaploginfilterusernam": 82, "ldapnestedgroup": 82, "ldapoverridemainserv": 82, "ldappagings": 82, "ldapport": 82, "ldapquotaattribut": 82, "ldapquotadefault": 82, "ldaptl": 82, "ldapuseravatarrul": [81, 82], "ldapusercleanupinterv": [83, 88], "ldapuserdisplaynam": [82, 155], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 155], "lead": [24, 33, 38, 52, 53, 57, 58, 59, 60, 70, 94, 113, 114, 127, 130, 133, 134, 139], "leak": [53, 60, 130, 133, 139, 188], "leakag": 127, "leaki": 133, "leap": 135, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 127, 138, 149, 150], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 108, 115, 129, 131, 133, 135, 145, 149, 155, 156, 158, 160, 181, 187, 188], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 117, 133, 144, 152, 157, 161], "lectur": 157, "leela": 155, "left": [40, 48, 57, 60, 63, 81, 85, 112, 133, 138, 148, 150, 154], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 93, 151, 154, 157], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 107, 108, 110, 112], "legibl": 9, "legitim": [28, 58, 107, 108, 111], "length": [8, 32, 48, 56, 60, 86, 88, 130], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 127, 131, 133, 135, 187], "let": [15, 20, 40, 58, 63, 72, 85, 92, 97, 109, 130, 134, 144, 148, 154, 157, 161, 167], "letsencrypt": 130, "letter": [38, 85, 189], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 94, 111, 127, 128, 135, 139, 148, 151, 154, 157, 158, 188], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 130, 165], "libapache2": [126, 134], "libargon2": 131, "liber": 94, "libmagickcor": 72, "librari": [11, 45, 47, 59, 60, 63, 87, 94, 127, 133, 179], "libreoffic": [47, 60, 88, 131], "libsmbclient": 38, "libxml": 131, "libxml2": 131, "licenc": 17, "licens": [15, 16, 127], "life": [88, 124, 145, 149], "lifetim": [60, 81, 88, 107, 111, 156], "lift": 97, "light": [41, 60, 81, 161], "lighter": 187, "lighttpd": 139, "lightweight": 60, "like": [1, 2, 3, 4, 5, 6, 7, 8, 12, 14, 15, 16, 20, 22, 23, 27, 28, 31, 32, 38, 41, 45, 48, 50, 53, 54, 57, 59, 60, 61, 64, 67, 80, 81, 83, 86, 87, 92, 94, 96, 97, 103, 113, 114, 117, 118, 119, 124, 127, 129, 130, 131, 133, 134, 139, 141, 143, 145, 146, 148, 149, 150, 151, 155, 157, 173, 174, 175, 176, 181, 189], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 53, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 94, 96, 97, 108, 109, 116, 119, 124, 125, 129, 133, 134, 135, 139, 144, 148, 152, 153, 154, 155, 157, 158, 181, 184, 187], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 93, 97, 112, 113, 117, 119, 126, 128, 130, 131, 133, 134, 139, 142, 143, 149, 151, 154, 164, 184, 188], "liner": 152, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 102, 109, 117, 127, 129, 134, 137, 138, 139, 148, 154, 157, 158, 161, 174, 176, 189], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 94, 97, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 135, 139, 141, 143, 149, 151, 158, 163, 170, 186], "list": [1, 2, 3, 4, 5, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 69, 71, 75, 86, 87, 88, 92, 95, 96, 101, 102, 107, 109, 111, 113, 119, 121, 122, 124, 127, 129, 130, 131, 134, 135, 138, 139, 143, 149, 150, 151, 155, 160, 164, 167, 168, 173, 178, 180, 181, 186, 187, 189], "listen": [38, 40, 45, 56, 59, 88, 97, 100, 115, 125, 130, 151, 154, 167, 172, 189], "listexapp": 99, "liter": 130, "literaci": 12, "littl": [4, 15, 70, 85, 97], "live": [0, 2, 7, 13, 24, 60, 81, 88, 107, 108, 111, 120, 133, 156, 157, 161, 164], "live_transcript": [13, 15, 88], "ll": [2, 16, 22, 28, 38, 43, 60, 63, 81, 85, 113, 117, 130, 134, 143, 155, 167, 187], "llama": [1, 5, 12, 15], "llm": [2, 5, 8, 12, 14, 15, 88, 116], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 125], "load": [5, 7, 13, 22, 24, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 97, 107, 127, 128, 129, 131, 139, 150, 151, 161, 186], "loadbalanc": 26, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 13, 15, 16, 18, 22, 26, 28, 31, 33, 38, 39, 40, 41, 43, 59, 63, 65, 69, 72, 73, 74, 81, 85, 88, 92, 94, 96, 98, 99, 102, 111, 114, 115, 120, 124, 125, 127, 130, 133, 134, 137, 139, 144, 146, 148, 150, 151, 154, 161, 167, 181], "local_cert": [59, 60], "local_dock": 98, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [134, 146], "localhost": [22, 45, 52, 59, 60, 63, 69, 97, 98, 100, 117, 121, 124, 125, 126, 129, 134, 139, 146, 150, 157, 164, 165, 166, 167, 185], "localitynam": 81, "localrootmountprovid": 154, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 94, 96, 97, 102, 103, 111, 125, 127, 128, 130, 134, 136, 139, 141, 143, 144, 148, 149, 152, 154, 171, 175, 176], "lock": [32, 46, 59, 65, 67, 88, 102, 124, 128, 130, 131, 139, 141, 144, 149, 157], "lock_retri": 59, "lock_wait_tim": 59, "locking_en": 59, "lockout": [60, 86], "log": [12, 13, 14, 15, 22, 28, 32, 36, 40, 41, 53, 54, 56, 58, 63, 65, 68, 69, 77, 80, 85, 88, 92, 93, 101, 102, 107, 109, 112, 113, 114, 117, 124, 127, 128, 129, 131, 132, 134, 135, 136, 141, 144, 146, 148, 149, 151, 154, 155, 158, 165, 173, 184, 188], "log_driv": 97, "log_error": 139, "log_not_found": 130, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_size_max": 97, "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 94, "logdir": 94, "logexpir": 94, "logfil": [3, 26, 67, 88, 94, 125, 130, 136, 144, 157], "logfile_audit": [67, 88, 136], "logfilemod": [67, 88, 127], "logic": [24, 53, 67, 80, 99, 100, 147, 188], "login": [15, 22, 27, 28, 32, 37, 38, 57, 60, 63, 64, 65, 67, 72, 73, 76, 78, 79, 80, 83, 84, 85, 86, 88, 92, 93, 107, 108, 109, 111, 112, 126, 127, 139, 141, 142, 143, 149, 152, 153, 157, 158], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 97, "logist": 120, "loglevel": [58, 63, 67, 81, 88, 119, 127, 133], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 157], "logo_url": 88, "logohead": [72, 157], "logon": 38, "logout": 60, "logpath": 127, "logread": 67, "logrot": 108, "logtimezon": [67, 88, 150], "logwindow": 94, "loleaflet": 171, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 94, 106, 108, 111, 113, 114, 129, 130, 133, 134, 143, 148, 153, 154, 183, 187], "long_query_tim": 22, "longer": [24, 26, 44, 48, 58, 60, 63, 66, 67, 85, 113, 124, 130, 133, 153, 154, 156, 179, 181, 182, 185, 186, 188], "longest": 26, "longitud": 127, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 97, 102, 117, 119, 129, 130, 134, 137, 138, 143, 148, 150, 151, 153, 160, 168, 175, 189], "lookup": [38, 60, 69, 77, 111, 127], "lookup_serv": [88, 111], "lool": [167, 171], "loolwsd": 171, "loop": [88, 97], "loopback": [60, 129], "lose": [28, 45, 60, 153, 158], "loss": [22, 28, 40, 60, 85, 94, 135, 139, 153, 161], "lost": [28, 29, 74, 80, 88, 108, 139, 152, 153, 154, 158, 165], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 119, 133, 139, 143, 149, 189], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 108, 133, 134, 135], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 108, 133, 134], "lowest": [133, 135, 187], "lsof": 100, "lt": [4, 88, 128, 134, 135, 162, 163, 186, 188], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 127], "lte": 188, "luk": 28, "m": [14, 22, 56, 59, 83, 93, 125, 127, 130, 131, 133, 134, 141, 157], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 59, 60, 63, 88, 96, 97, 127, 128, 136, 144, 152, 153, 154, 156, 157, 158], "macintosh": [81, 93], "maco": [88, 91, 92, 93, 115, 120, 135, 139], "macro": 161, "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 94, 112, 119, 133, 134, 136, 144, 161, 187, 189], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 131, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 24, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 42, 43, 44, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 64, 67, 69, 76, 77, 79, 80, 81, 82, 83, 85, 88, 92, 94, 96, 100, 108, 109, 111, 112, 113, 114, 117, 118, 119, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 160, 161, 171, 173, 181, 183, 187, 188, 189], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 115, 116, 118, 132, 144, 155, 157, 161, 176, 179], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_max_item": 53, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 144], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 144], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 116, 119], "mailcow": 117, "mailer": [60, 63, 179], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 188, "main": [4, 11, 15, 22, 60, 67, 81, 82, 96, 97, 100, 103, 130, 139, 141, 147, 148, 164, 165, 167, 171, 189], "mainli": [4, 16, 28, 62, 149], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 94, 114, 120, 127, 134, 139, 146, 148, 149, 151, 187], "mainten": [19, 22, 23, 25, 28, 51, 65, 85, 133, 134, 135, 143, 144, 147, 148, 150, 154, 170, 183], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 127, 130, 134, 139, 143, 145, 148, 149, 170], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 31, 33, 34, 38, 41, 43, 47, 48, 53, 54, 55, 58, 59, 60, 64, 66, 68, 73, 76, 81, 83, 84, 88, 92, 94, 97, 102, 106, 109, 113, 115, 117, 119, 124, 125, 127, 130, 131, 133, 134, 135, 136, 138, 139, 143, 144, 145, 146, 147, 148, 149, 151, 153, 154, 157, 160, 167, 173, 174, 179, 180, 181, 182, 185, 186, 187, 188, 189], "malform": 154, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 127], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 65, 69, 81, 84, 87, 88, 92, 95, 96, 102, 103, 106, 108, 113, 120, 124, 127, 128, 148, 149, 151, 153, 154, 156, 158, 161, 170, 182, 183, 184, 188], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 158], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 94, 113, 114, 119, 130, 133, 134, 139, 148, 151, 157, 158, 162, 169, 181, 187], "manifest": [55, 130], "manifestli": 112, "manipul": [154, 155, 157], "manner": [1, 182, 183, 184], "manual": [3, 4, 6, 16, 19, 20, 22, 25, 26, 28, 32, 50, 53, 54, 57, 59, 60, 64, 69, 77, 81, 82, 83, 88, 91, 94, 96, 97, 98, 103, 108, 109, 112, 117, 120, 122, 124, 126, 127, 128, 133, 136, 137, 138, 139, 142, 145, 146, 148, 152, 154, 157, 160, 170, 182, 187, 188, 189], "manual_instal": [8, 96, 98], "manual_install_harp": 98, "map": [2, 48, 60, 83, 88, 93, 130, 133, 145, 155, 175], "march": 26, "marco": 2, "margin": 133, "mariadb": [20, 23, 25, 60, 88, 122, 124, 126, 129, 131, 133, 134, 152, 157, 182, 183, 186], "mark": [2, 40, 60, 63, 77, 83, 88, 153, 154, 155, 189], "markdown": [18, 60, 71, 133], "marker": 93, "market": [2, 11, 145], "markup": 161, "martin": 2, "mask": 119, "master": [28, 46, 60, 63, 88, 151], "master_": 29, "mastodon": [175, 176], "match": [3, 5, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 93, 97, 102, 108, 114, 115, 119, 121, 122, 125, 130, 133, 134, 139, 144, 151, 154, 155, 156, 157, 158, 161, 171, 173, 188], "matcher": 93, "math": 5, "matrix": 88, "matter": [43, 152, 181], "max": [1, 26, 46, 56, 88, 97, 125, 127, 130, 157], "max_accelerated_fil": 125, "max_allowed_packet": 22, "max_children": [133, 134], "max_execution_tim": [26, 60, 131], "max_file_conversion_files": 88, "max_filesize_animated_gifs_public_shar": 88, "max_heap_table_s": 22, "max_image_generation_idle_tim": 1, "max_input_tim": 26, "max_link": 22, "max_parallel_count": 88, "max_persist": 22, "max_request": 133, "max_siz": [26, 88], "max_spare_serv": 133, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 94, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 53, 58, 77, 81, 85, 88, 94, 108, 113, 114, 130, 133, 154, 157], "maximumadressbook": 114, "maximumcalendarssubscript": 113, "maxkeepaliverequest": 139, "maxretri": 127, "mayb": 94, "mb": [38, 47, 60, 67, 82, 85, 94, 97, 133, 157], "mb4": 60, "mbstring": [71, 124, 126, 131], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 124, 125, 126, 186], "md5sum": [124, 126], "mdm": 92, "me": [2, 14, 60, 88, 111], "mean": [11, 14, 15, 41, 50, 58, 59, 60, 68, 69, 70, 77, 80, 81, 85, 92, 97, 108, 117, 124, 127, 129, 130, 133, 135, 138, 149, 153, 181, 187, 188, 189], "meaningless": 130, "meant": [58, 60, 187], "measur": [7, 10, 12, 60, 70, 133], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 122, 179], "media": [1, 2, 6, 7, 88, 102, 108, 128], "medium": [7, 77], "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 109, 110, 143, 187, 188], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 102, 120, 152, 155, 158, 160, 175, 176], "memberof": [82, 88, 155], "membership": [43, 81, 82, 85, 102, 111, 119, 155, 158], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 124, 125, 128, 131, 136, 144, 151], "memcache_customprefix": [59, 88, 124], "memcached_opt": 88, "memcached_serv": [59, 88, 144], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 100, 119, 130, 131, 133, 134, 157, 183, 188], "memory_consumpt": [125, 133], "memory_limit": [18, 26, 56, 131], "mention": [1, 3, 14, 77, 94, 96, 102, 124, 125, 127, 138, 148], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 96, 97, 139, 154, 157, 161, 176, 182, 183, 184], "mere": [20, 77, 187], "merg": [12, 65, 67, 88, 117, 175, 176], "mermaid": 15, "mesh": 156, "messag": [1, 2, 5, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 111, 112, 117, 118, 119, 127, 137, 140, 143, 144, 151, 152, 154, 156, 173, 174, 175, 176, 189], "met": [2, 15, 49, 60, 67, 81, 127, 134], "meta": [15, 17, 75, 76, 81, 82, 131], "metadata": [12, 16, 40, 43, 48, 60, 77, 85, 88, 97, 112, 119, 130, 136, 139, 154, 157, 161], "metadata_max_files": 88, "metal": [88, 136], "method": [17, 22, 24, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 94, 96, 97, 98, 119, 131, 134, 139, 144, 149, 151, 154, 157, 163, 189], "metric": [52, 60, 89, 164, 166, 185], "mg": 125, "mib": [4, 26, 60, 88, 133], "micro": 134, "microservic": 133, "microsoft": [50, 56, 60, 63, 88, 94, 116, 130, 135, 179], "mid": [12, 133], "middl": 127, "middlewar": [69, 189], "might": [0, 2, 3, 11, 15, 16, 20, 22, 25, 32, 38, 40, 47, 48, 50, 51, 53, 56, 57, 59, 60, 63, 70, 77, 81, 82, 94, 96, 97, 100, 104, 114, 117, 119, 126, 127, 130, 132, 133, 135, 137, 139, 144, 145, 151, 160, 173, 174, 180, 184, 186], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 96, 116, 119, 131, 142, 148, 151, 152, 154, 157, 158, 159, 169, 183], "milli": 158, "million": 120, "millisecond": [48, 60, 94, 157], "milliwai": [154, 157, 158], "mime": [102, 111, 117, 130, 134, 154, 181], "mimetyp": [47, 60, 88, 102, 127, 130, 154], "mimetypealias": [51, 102], "mimetypelist": 157, "mimetypemap": [51, 157], "min_spare_serv": 133, "minchunks": 94, "mind": [3, 18, 59, 60, 96, 102, 125, 126, 134, 148, 189], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 108, 115, 124, 125, 129, 133, 135, 139, 187], "minimis": 108, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 94, 96, 99, 108, 117, 135, 144, 163, 164, 165, 166, 186, 187], "minio": 48, "miniredir": 60, "minor": [3, 133, 143], "minsearchstringlength": 88, "mint": [56, 59, 134], "minut": [0, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 94, 113, 114, 117, 143, 144, 149, 154, 158, 164, 166, 188], "miral": 93, "mirror": [127, 130, 148], "misbehav": 58, "misbehavior": 70, "misbehaviour": 157, "miscellan": 88, "misconfigur": [58, 60, 88, 94, 100, 105, 119, 127, 130], "misformat": 81, "mismatch": [133, 154, 158, 184], "miss": [25, 43, 80, 81, 88, 92, 100, 121, 127, 131, 134, 145, 147, 149, 154, 188], "missing_fil": 138, "missingok": 108, "mission": [139, 187], "mistak": [60, 81, 139], "mistakenli": 119, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 127], "mitm": 127, "mix": [41, 48], "mixer": 127, "mixtur": 60, "mj": [130, 180, 181], "mkdir": [28, 34, 88, 97, 124, 125], "mknod": 167, "mkv": 47, "mlocat": 124, "mm": [81, 152, 154], "mmproj": 5, "mmproj_path": 5, "mnt": [81, 134], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 102, 120, 127, 128, 133], "mod": [126, 134, 188], "mod_authz_cor": 93, "mod_dav": [124, 134, 139], "mod_defl": 139, "mod_dir": 134, "mod_env": [60, 68, 127, 134], "mod_evas": 139, "mod_fastcgi": 139, "mod_fcgi": 134, "mod_fcgid": [88, 139], "mod_head": [68, 127, 134], "mod_mim": 134, "mod_pagespe": 139, "mod_php": [133, 134, 135, 139], "mod_proxy_fcgi": [88, 139], "mod_reqtimeout": [26, 139], "mod_rewrit": [41, 60, 68, 134, 139], "mod_secur": 139, "mod_setenvif": 93, "mod_spdi": 139, "mod_webdav": 134, "mod_xsendfil": 139, "modal": 95, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 98, 99, 113, 119, 121, 122, 124, 126, 128, 138, 142, 143, 144, 147, 150, 152, 153, 161], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 96, 117, 127, 131, 136], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 130, "modif": [12, 22, 43, 63, 94, 106, 111, 113, 114, 134, 143], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 94, 102, 103, 106, 108, 111, 113, 114, 115, 119, 127, 133, 134, 138, 139, 154, 155, 157, 158], "modul": [22, 26, 28, 29, 38, 46, 59, 60, 72, 81, 88, 93, 125, 126, 128, 129, 130, 134, 135, 151, 167, 180, 181], "modular": [1, 15], "module_nam": 131, "molli": 81, "moment": [8, 173], "momentj": 66, "mon": [53, 56], "mondai": [2, 53], "monitor": [16, 24, 58, 59, 60, 88, 127, 133, 157, 185, 188], "monterei": 135, "month": [1, 2, 14, 112, 127, 130, 134, 157], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 24, 26, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 61, 63, 67, 70, 72, 76, 77, 78, 81, 83, 84, 91, 92, 93, 94, 95, 96, 97, 100, 102, 108, 113, 114, 117, 118, 119, 120, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 143, 144, 147, 149, 150, 151, 154, 156, 157, 158, 161, 162, 167, 169, 170, 172, 173, 179, 181, 183, 184, 185, 187, 188, 189], "moreov": 16, "morn": 53, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 28, 44, 48, 57, 58, 59, 60, 63, 64, 67, 69, 70, 77, 81, 96, 97, 111, 112, 119, 120, 127, 130, 131, 132, 133, 134, 135, 139, 146, 149, 151, 157, 158, 165, 170, 171, 172, 178, 179, 187, 189], "mostli": [134, 189], "mount": [3, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 97, 99, 101, 102, 111, 134, 153, 165], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 108, 127, 129, 143, 144, 148, 149, 153, 156, 183, 187], "movi": [47, 60, 175, 176], "mozilla": [67, 93, 119, 127, 130, 135], "mp3": [51, 60, 183, 184, 185], "mp4": [130, 157], "mpeg": 51, "mrtumnu": 69, "mscorefont": 164, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 154], "much": [26, 61, 94, 97, 129, 132, 133, 139, 147, 157], "multi": [3, 15, 46, 58, 59, 81, 88, 144, 163, 188], "multibucket": [46, 88], "multibyt": [131, 147], "multilingu": [7, 12, 13, 88], "multimod": [13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 3, 6, 9, 12, 15, 20, 24, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 93, 96, 97, 99, 117, 121, 127, 131, 133, 134, 145, 147, 150, 152, 154, 157, 158, 160, 170, 187, 188], "multiview": [124, 134], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 24, 26, 28, 29, 31, 33, 34, 36, 40, 41, 45, 48, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 82, 83, 85, 92, 93, 94, 96, 97, 99, 108, 109, 112, 113, 117, 121, 127, 129, 130, 131, 132, 133, 134, 135, 136, 139, 141, 143, 144, 145, 147, 148, 149, 151, 152, 153, 154, 157, 158, 161, 163, 165, 188], "mutual": [58, 154], "mx": [117, 119], "my": [2, 16, 48, 51, 72, 75, 81, 88, 96, 98, 113, 152, 154, 157, 173], "myapp": [63, 154], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 188, "mygroup": [75, 155], "myisam": 135, "mylogfil": 132, "mylogo": 72, "mymast": 59, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 157], "mysql": [20, 21, 25, 88, 122, 124, 126, 129, 131, 133, 134, 139, 146, 157, 183, 186], "mysql_attr_init_command": 60, "mysql_attr_ssl_ca": [22, 60], "mysql_attr_ssl_cert": [22, 60], "mysql_attr_ssl_kei": [22, 60], "mysql_attr_ssl_verify_server_cert": [22, 60], "mysql_secure_instal": 124, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 141], "mysqlnd": 124, "n": [1, 5, 15, 19, 20, 29, 81, 93, 100, 151, 153, 154, 157, 188], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 17, 20, 22, 23, 28, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 46, 48, 50, 52, 55, 56, 59, 60, 63, 65, 67, 68, 72, 75, 76, 77, 81, 82, 83, 85, 88, 92, 94, 96, 97, 98, 99, 102, 107, 111, 112, 113, 115, 117, 119, 121, 122, 124, 125, 126, 127, 129, 130, 133, 134, 138, 150, 152, 154, 155, 157, 158, 161, 164, 165, 166, 171, 188], "namespac": [14, 55, 60, 63, 157], "nat": 161, "nation": 108, "nativ": [24, 38, 161, 189], "natur": [12, 15, 84, 160], "navig": [1, 55, 60, 94, 96, 102, 103, 106, 107, 113, 114, 117, 125, 137], "nc": [60, 63, 88, 101, 130], "nc_app_": 100, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 151, "nc_domain": 97, "nc_instance_url": [96, 97], "nc_loglevel": 151, "nc_pass": 158, "nc_samesitecookielax": [70, 107], "nc_samesitecookiestrict": [70, 107], "nc_serverid": [60, 144], "nc_session_id": 107, "nc_token": 107, "nc_usernam": 107, "ncdata": 139, "ncp": 131, "ncvm": 134, "ne": 188, "nearli": [124, 181], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 97, 107, 108, 117, 119, 122, 124, 129, 130, 131, 134, 139, 160, 183, 189], "necessarili": [58, 77, 96, 97, 139], "need": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 15, 16, 18, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 69, 70, 80, 81, 82, 84, 85, 88, 92, 94, 96, 97, 98, 100, 102, 103, 109, 112, 113, 114, 117, 119, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 160, 163, 167, 173, 174, 179, 182, 183, 185, 186, 187, 188, 189], "needsdbupgrad": 157, "neg": [6, 127], "neglig": 24, "neither": 78, "nest": [82, 88, 154, 157, 188], "net": [60, 97, 98, 124, 145, 157, 160], "netdata": 133, "netstat": [56, 63], "network": [15, 22, 40, 58, 59, 60, 69, 88, 92, 94, 96, 97, 98, 100, 102, 127, 128, 134, 135, 146, 157, 161, 163, 181, 188], "never": [28, 40, 44, 53, 60, 77, 81, 97, 108, 111, 127, 133, 153, 154, 158], "nevertheless": 149, "new": [2, 3, 5, 6, 11, 12, 20, 23, 24, 25, 26, 27, 28, 30, 32, 33, 37, 40, 44, 45, 46, 48, 53, 57, 60, 63, 67, 68, 74, 75, 78, 80, 81, 82, 83, 88, 92, 93, 94, 96, 97, 99, 109, 112, 113, 115, 117, 119, 120, 125, 127, 129, 131, 132, 133, 134, 135, 139, 141, 143, 144, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 164, 166, 167, 171, 179, 181, 182, 183, 186, 187, 188, 189], "newer": [23, 38, 70, 96, 114, 117, 119, 133, 135, 147, 153, 187], "newest": [44, 145, 187], "newgroup": [75, 76], "newli": [20, 24, 28, 40, 48, 53, 56, 57, 60, 77, 81, 106, 134, 156, 187, 189], "newnam": 188, "newpassword": 158, "newus": 158, "next": [1, 2, 5, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 95, 96, 113, 114, 124, 128, 139, 148, 149, 152, 153, 154, 157, 170, 175, 187, 189], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 54, 57, 58, 62, 63, 64, 66, 67, 68, 70, 73, 74, 75, 76, 77, 78, 79, 80, 85, 87, 88, 91, 92, 93, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 126, 128, 129, 131, 132, 133, 134, 135, 136, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 165, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 187], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 124, "nextcloud_config_dir": [60, 127], "nextcloud_docker_network_nam": 97, "nextcloud_host": [69, 93], "nextcloud_imaginari": 133, "nextcloud_install_product": 134, "nextcloud_log": 94, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 97, 98], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 134, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 128], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 97, 111, 127, 128, 129, 133, 134, 135, 139, 163, 164, 165, 166, 179, 180, 181], "nginx_worker_process": 165, "ngo": 139, "ngx_pagespe": [130, 139], "ni": 133, "nice": 51, "nightli": 165, "nin": 188, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 130, "no_last_modifi": 130, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobl": [163, 166], "nobodi": 138, "nocanon": 167, "node": [6, 59, 60, 88, 97], "nodecod": 167, "nodecopiedev": 188, "nodecreatedev": 188, "nodedeletedev": 188, "nodeinfo": 139, "noderenamedev": 188, "noderestoredev": 188, "nodetouchedev": 188, "nodewrittenev": 188, "nofollow": [127, 130], "noindex": [127, 130], "nologon": 151, "nomatim": 2, "nominatim": 127, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 96, 98, 129, 131, 144, 148, 150, 152, 154, 157, 158, 160, 166, 188], "none": [15, 32, 58, 60, 63, 81, 82, 85, 121, 122, 130, 143, 152, 153, 154, 156, 157, 158, 167, 179], "nonexist": [81, 130], "nonexistingfil": 188, "nonexistingfold": 188, "noon": 2, "nor": [38, 57, 88, 96, 148, 188], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 93, 136, 139, 144, 148, 149, 151, 154, 156, 157], "nosniff": [127, 130], "notabl": 38, "notat": [60, 67, 69, 188], "note": [0, 1, 2, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 94, 97, 103, 109, 113, 114, 121, 127, 128, 130, 134, 135, 139, 140, 143, 149, 150, 151, 153, 158, 161, 173, 175, 187, 188], "noth": [3, 19, 24, 154], "notic": [24, 45, 47, 58, 72, 111, 129, 144, 158], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 106, 109, 111, 116, 127, 132, 134, 139, 142, 148, 150, 152, 157, 161, 179, 188, 189], "notifempti": 108, "notifi": [16, 28, 38, 40, 53, 63, 88, 106, 109, 150, 188], "notify_guest": 16, "notion": [175, 176], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 96, 97, 113, 114, 117, 119, 124, 125, 126, 129, 131, 134, 139, 143, 148, 167, 179, 180, 181, 184, 185, 186, 188, 189], "nowadai": [60, 184], "nsign": 168, "nss": [65, 88], "nsuit": 168, "ntf": 38, "ntlm": [63, 179], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 93, 98, 125, 150, 184, 188, 189], "num_bucket": 48, "num_nucket": 48, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 19, 26, 33, 43, 48, 49, 53, 56, 58, 59, 60, 63, 77, 81, 82, 85, 94, 108, 111, 113, 114, 117, 124, 126, 127, 129, 133, 135, 139, 143, 148, 152, 153, 157, 158, 165, 171, 181, 187, 188], "numer": [47, 60, 86, 93, 129, 154, 157], "numeric_id": 29, "nuri": 168, "nvidia": [3, 4, 5, 6, 7, 9, 11, 96, 98, 100], "o": [26, 28, 58, 60, 81, 88, 93, 125, 130, 131, 133, 134, 139, 144, 157, 164, 166], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 189], "oauth2": [65, 88, 151], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 113, 127, 131, 133, 144, 151, 152, 175, 184, 185, 189], "object_typ": 112, "objectclass": [81, 82, 155], "objectdata": 188, "objectid": 188, "objectprefix": 60, "objectstor": [48, 88, 136, 144], "objecttyp": 188, "oblig": [108, 109, 110], "obscur": [93, 139], "observ": 12, "obsolet": 47, "obtain": [3, 63, 68, 88, 140, 154], "obviou": [58, 181], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 93, 124, 125, 130, 133, 138, 148, 151, 154, 157, 181, 182, 188, 189], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 139, "oc_admin": 129, "oc_admin1": 129, "oc_admin2": 129, "oc_appconfig": 3, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 139, "oc_carla": 60, "oc_com": 112, "oc_comments_read_mark": 112, "oc_context_chat_action_queu": 3, "oc_context_chat_content_queu": 3, "oc_context_chat_fs_ev": 3, "oc_context_chat_queu": 3, "oc_databas": 152, "oc_dav_shar": 119, "oc_dbus": 152, "oc_default_modul": [29, 153], "oc_filecach": [29, 139, 152], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 119, "oc_mail_recipi": 119, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 157, "oc_pass": 158, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 107, "oc_shar": 20, "oc_storag": [29, 83, 139], "oca": [60, 63, 157, 181, 188], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 38, 40, 41, 43, 44, 46, 47, 48, 49, 51, 53, 56, 57, 60, 61, 67, 68, 71, 72, 73, 74, 77, 78, 80, 83, 85, 88, 99, 101, 104, 108, 109, 112, 113, 114, 117, 118, 119, 122, 127, 130, 133, 134, 137, 138, 139, 141, 143, 145, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 162, 182, 183, 184, 185, 188, 189], "occ6f7365735": 60, "occ_command": 67, "occasion": [8, 143, 167], "occupi": 156, "occur": [2, 26, 59, 63, 97, 99, 133, 139, 144, 148, 157, 184, 188], "occurr": 26, "ocdownloadstart": 107, "oci": [20, 60, 122, 157], "ocm": [88, 151], "ocp": [60, 77, 151, 188], "ocr": 5, "ocsp": 130, "octal": [60, 67], "od": 162, "odd": 133, "odf": [160, 169], "odp": 162, "odt": 162, "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 97, 117, 119, 124, 130, 132, 134, 143, 148, 151, 155, 157, 158, 167], "offend": 58, "offer": [0, 1, 5, 12, 15, 16, 28, 56, 60, 64, 72, 115, 117, 119, 127, 134, 136, 139, 148, 187], "offic": [2, 15, 42, 47, 51, 58, 110, 116, 134, 159, 161, 163, 164, 165, 166, 167, 170, 171, 172, 173, 175, 176], "offici": [2, 56, 58, 60, 72, 81, 97, 120, 124, 125, 127, 130, 131, 133, 134, 135, 138, 139, 148, 165, 178, 186, 187], "offlin": [81, 94, 113, 114, 144, 148], "offload": [0, 1, 97, 133, 157], "offset": [75, 76, 155, 157, 158], "offsit": 2, "often": [1, 26, 57, 58, 60, 94, 108, 113, 114, 117, 127, 131, 134, 181, 183, 187], "ogg": [130, 180, 181], "oid": [60, 154], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 153, 154], "okai": 143, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 138, 139, 143, 148, 153, 154, 156, 157, 179, 184], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 88, 94, 108, 131, 133, 137, 139, 148, 149, 154, 157], "oldest": [44, 85], "oldfil": 188, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 59, 60, 69, 70, 81, 92, 93, 107, 150, 152, 153, 154], "onbootsec": 57, "onc": [2, 14, 18, 24, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 94, 96, 109, 113, 119, 124, 126, 127, 130, 143, 144, 148, 150, 152, 153, 154, 155, 156, 157, 158, 161, 167, 178, 181, 187, 188, 189], "ondemand": 133, "one": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 24, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 69, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 93, 96, 98, 102, 103, 109, 111, 112, 113, 115, 117, 119, 124, 129, 130, 131, 134, 135, 136, 137, 139, 143, 144, 145, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 167, 170, 175, 181, 187, 188, 189], "ones": [20, 44, 53, 54, 59, 60, 108, 133, 134, 143, 145, 148, 153, 175, 181, 187], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 22, 23, 24, 27, 28, 29, 31, 32, 34, 38, 40, 43, 45, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64, 65, 66, 67, 68, 69, 77, 78, 79, 80, 81, 83, 84, 85, 88, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 107, 109, 113, 114, 115, 117, 118, 119, 121, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 144, 145, 147, 148, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 173, 175, 181, 184, 185, 187, 188, 189], "onlin": [32, 60, 88, 119, 120, 124, 134, 144, 149, 168, 169, 170, 172, 173], "onlyoffic": [32, 134], "onrequest": 189, "ons": [120, 133], "onunitactivesec": 57, "ooxml": 88, "opaqu": 188, "opcach": [59, 60, 88, 124, 125, 128, 130, 131], "opcod": [59, 133], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 23, 32, 40, 45, 56, 59, 60, 71, 81, 88, 92, 94, 97, 117, 120, 121, 127, 131, 134, 139, 148, 156, 160, 161, 173, 189], "open_basedir": [26, 127, 131], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 176], "openapi": [12, 60, 189], "openbsd": [88, 128], "opendocu": [47, 60, 133, 160], "opendyslex": 60, "opengraph": 175, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 131], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 119, 125, 131, 133], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [127, 175, 176], "opensus": [135, 151], "opentopodata": 127, "opentyp": 130, "openweathermap": 14, "oper": [6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 94, 102, 109, 110, 128, 133, 134, 135, 136, 139, 143, 148, 149, 151, 153, 156, 158, 160, 167, 186, 187, 188], "operand": 130, "opinion": [134, 146], "opportunist": 63, "opt": [15, 29, 40, 60, 97, 117, 124, 129, 136, 151, 157, 184, 188], "opt_binary_protocol": 60, "opt_compress": 60, "opt_connect_timeout": 60, "opt_libketama_compat": 60, "opt_poll_timeout": 60, "opt_recv_timeout": 60, "opt_retry_timeout": 60, "opt_send_timeout": 60, "opt_seri": 60, "optim": [0, 1, 2, 6, 26, 35, 120, 127, 130, 131, 133, 134, 187], "optimis": [6, 11, 139], "option": [0, 1, 2, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 48, 53, 56, 57, 58, 59, 63, 64, 65, 68, 69, 71, 72, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 88, 94, 96, 97, 100, 101, 102, 106, 109, 111, 113, 114, 115, 117, 118, 119, 120, 121, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 148, 149, 150, 151, 152, 153, 155, 157, 158, 161, 168, 170, 175, 181, 182, 187, 188, 189], "optout": 88, "ora": 121, "oracl": [20, 22, 25, 60, 121, 122, 129, 135, 157, 185], "orang": 15, "orchestr": 97, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 60, 63, 71, 77, 80, 81, 96, 97, 117, 127, 134, 135, 141, 150, 157, 160, 187, 189], "ordinari": 60, "org": [56, 60, 68, 76, 79, 94, 127, 130, 134, 157, 164, 188], "organ": [60, 72, 85, 88, 120, 135, 157], "organis": [77, 81, 110, 135, 139], "organisationscop": 77, "organiz": [81, 85, 117], "organizationnam": 81, "orient": 131, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 93, 107, 111, 119, 127, 139, 143, 144, 151, 154, 161, 188], "orphan": [44, 88, 139, 157], "osarchitectur": 93, "otf": 130, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 24, 25, 26, 27, 28, 32, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 54, 56, 57, 58, 59, 64, 65, 66, 67, 77, 80, 81, 84, 85, 87, 88, 92, 93, 97, 98, 99, 107, 108, 111, 112, 113, 114, 115, 117, 118, 120, 122, 125, 126, 127, 128, 129, 130, 131, 133, 138, 140, 143, 146, 148, 150, 151, 152, 153, 157, 158, 160, 161, 163, 170, 180, 181, 182, 183, 184, 185, 187, 188, 189], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 96, 102, 106, 109, 113, 117, 121, 130, 133, 134, 139, 144, 154, 188], "ou": [81, 82, 83, 155], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 96, 97, 102, 103, 123, 124, 125, 127, 131, 133, 134, 135, 138, 139, 145, 181, 187, 189], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 94, 96, 102, 107, 108, 116, 130, 132, 134, 135, 138, 139, 143, 144, 148, 149, 157, 158, 170, 179, 181, 186, 187, 189], "outbound": [63, 156, 181], "outdat": [44, 60, 65, 88, 113, 114, 124, 147, 157], "outdoor": 2, "outgo": [63, 88, 117, 119], "outlin": [2, 56], "outlook": [63, 88, 117], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 94, 112, 119, 131, 133, 134, 138, 149, 150, 151, 152, 153, 154, 156, 157, 158, 164, 166, 188], "output_buff": 26, "outright": [58, 135], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 97, 102, 111, 113, 126, 129, 130, 133, 134, 136, 139, 141, 143], "outstand": [2, 7, 157], "ova": 134, "over": [22, 24, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 94, 97, 107, 112, 120, 121, 124, 127, 133, 134, 135, 143, 157, 161, 163, 175, 180], "overal": 133, "overcom": 60, "overflow": 40, "overhead": [59, 60, 94, 133], "overlai": 81, "overlaid": 161, "overlap": [38, 187], "overload": 139, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 97, 98, 108, 130, 144, 148, 152, 157], "overridden": [60, 69], "override_app_host": [97, 98, 100], "overridelocaldir": 92, "overrideserverurl": 92, "overseen": 120, "overview": [0, 1, 2, 3, 13, 16, 46, 59, 61, 88, 111, 120, 138, 139, 142, 145, 152, 179, 181, 185, 189], "overwrit": [27, 63, 65, 88, 113, 134, 144, 154, 181], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 144], "overwriteprotocol": [69, 70, 88, 144], "overwritewebroot": [69, 88, 144], "overwritten": [27, 60, 67, 73, 77, 81, 113], "owasp": 184, "own": [0, 1, 3, 4, 5, 12, 15, 16, 24, 26, 27, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 94, 102, 104, 108, 109, 112, 113, 114, 115, 122, 125, 129, 134, 139, 149, 154, 167, 181, 188, 189], "owncloud": [30, 70, 88, 94, 139, 141, 142, 147, 151, 154, 157, 188], "owncloud_core_dump": 94, "owner": [22, 43, 77, 88, 102, 103, 106, 109, 111, 119, 124, 152, 161, 164, 166, 189], "ownerid": 188, "ownership": [3, 34, 43, 60, 88, 109, 112, 122, 126, 134, 143, 151, 157], "p": [8, 22, 59, 97, 100, 124, 125, 132, 133, 137, 141, 147, 153, 165, 167], "p256": 156, "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 142, 149, 154, 157, 160, 163, 170, 189], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 24, 27, 28, 34, 40, 41, 43, 53, 54, 56, 57, 59, 60, 61, 63, 64, 65, 67, 72, 77, 78, 81, 82, 85, 88, 89, 94, 95, 96, 100, 108, 109, 111, 112, 113, 117, 124, 126, 127, 130, 131, 133, 134, 138, 139, 143, 145, 148, 149, 150, 153, 154, 157, 158, 161, 175, 176, 178, 189], "pagespe": 130, "paid": [148, 149], "pain": 96, "pair": [28, 37, 46, 60, 88, 98, 107, 117, 154], "pandoc": 42, "pane": [15, 85, 188], "panel": [56, 60, 66, 81, 85, 112, 133, 134, 157, 161, 189], "pant": 63, "paper": 7, "paragraph": [127, 175], "parallel": [15, 22, 26, 60, 70, 96, 139, 185, 188], "param": [188, 189], "paramet": [3, 5, 14, 16, 20, 21, 24, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 94, 97, 108, 113, 122, 127, 128, 130, 131, 134, 144, 151, 157, 181, 185, 187, 188, 189], "parameter_nam": 131, "paramount": [15, 81], "parent": [40, 45, 102, 134, 139, 154, 157], "pars": [3, 29, 60, 130, 131], "parser": 133, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 94, 112, 124, 127, 134, 135, 138, 150, 156, 167, 172, 186, 187, 189], "part_file_in_storag": 88, "parti": [2, 6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 107, 135, 139, 143, 149, 160, 161, 174, 176], "partial": [63, 119, 121, 188], "particip": [111, 113, 120], "particular": [1, 7, 22, 38, 48, 54, 81, 93, 130, 133, 187], "particularli": [58, 187], "partit": [26, 60], "partner": [111, 120], "pass": [2, 5, 22, 32, 38, 56, 59, 60, 65, 67, 81, 88, 92, 97, 98, 99, 121, 122, 125, 130, 138, 139, 148, 151, 152, 154, 156, 157, 158, 160, 187, 188], "passiv": 92, "passphras": [29, 111], "passwd": 56, "password": [2, 3, 20, 22, 24, 28, 29, 33, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 56, 58, 59, 60, 63, 74, 76, 77, 80, 81, 82, 88, 92, 94, 96, 97, 98, 107, 109, 111, 112, 117, 119, 121, 122, 124, 125, 126, 128, 129, 131, 134, 139, 141, 146, 147, 150, 151, 153, 154, 157, 158, 164, 166, 168, 179, 189], "password1": [24, 60], "password2": [24, 60], "password_argon2_default_memory_cost": 60, "password_argon2_default_thread": 60, "password_argon2_default_time_cost": 60, "password_default": 60, "passwordconfirmationrequir": 60, "passwordsalt": 88, "past": [56, 60, 70, 138, 152, 157], "pasta": 2, "patch": [63, 70, 88, 119, 140, 148, 187], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 59, 65, 67, 69, 77, 81, 88, 92, 93, 94, 97, 98, 99, 111, 119, 121, 122, 125, 127, 129, 130, 132, 134, 137, 144, 150, 151, 152, 153, 154, 157, 158, 165, 171, 188, 189], "path_info": 130, "path_redirect": 69, "pathparamet": 189, "pattern": [44, 49, 58, 60, 69, 93, 129, 133], "pauvo": 69, "payload": [88, 111, 189], "payment": 0, "pbkdf2": 29, "pc": [22, 143], "pcntl": 131, "pcntl_signal": 131, "pcntl_signal_dispatch": 131, "pcre": 93, "pdf": [2, 3, 47, 56, 60, 88, 103, 131, 134, 153, 154, 157, 158, 188], "pdo": [22, 60], "pdo_mysql": [22, 131], "pdo_pgsql": [22, 125, 131], "pdo_sqlit": 131, "peak": 157, "pecl": [38, 59, 60, 124], "pecl82": 125, "peer": [22, 63, 117, 120, 130, 156], "peertub": [175, 176], "pem": [22, 29, 60, 93, 121, 122, 125], "pencil": 85, "pend": [59, 127, 152, 156, 157], "peopl": [6, 9, 43, 53, 58, 83, 103, 115, 139, 155, 175, 176], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 59, 60, 77, 82, 88, 97, 108, 109, 111, 113, 114, 135, 144, 153, 154, 158, 161, 175, 177, 181, 188], "perbucket": 48, "percentag": 187, "perfect": [4, 9, 134, 146], "perfectli": 187, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 19, 20, 23, 25, 26, 28, 32, 38, 40, 45, 47, 56, 57, 58, 59, 60, 67, 70, 81, 87, 88, 94, 96, 97, 100, 104, 107, 109, 119, 120, 127, 128, 129, 130, 131, 134, 135, 144, 145, 148, 149, 151, 152, 153, 154, 157, 170, 183, 184, 185, 187, 189], "period": [40, 44, 57, 58, 60, 81, 85, 86, 106, 108, 112, 113, 114, 115, 117, 118, 135, 143, 149, 152, 154, 157, 161, 187], "peripher": 134, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 97, 107, 112, 124, 127, 153, 154, 157, 158], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 102, 108, 119, 122, 125, 130, 132, 134, 139, 143, 144, 148, 151, 157, 161], "permit": [54, 60, 127, 130, 154, 187], "persian": 4, "persist": [22, 46, 59, 60, 85, 88, 94, 99, 107, 119, 136, 157, 163, 173], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 107, 108, 109, 110, 112, 113, 115, 117, 134, 138, 152, 153, 154, 170, 176], "personnel": 94, "perspect": 15, "pertain": [26, 94], "pg_ctl": [3, 125], "pg_dump": 141, "pg_hba": 22, "pg_user": 22, "pgp": [124, 126, 132], "pgpassword": [141, 147], "pgsql": [3, 20, 22, 60, 121, 122, 157], "pgsql_ssl": [22, 88, 121, 122], "pgvector": 3, "phar": [131, 148, 157], "phase": [148, 157], "philip": 155, "phone": [43, 60, 76, 77, 80, 81, 111, 114, 120, 158], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 111, 154], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 78, 79, 80, 81, 82, 83, 85, 87, 88, 93, 94, 96, 97, 107, 108, 109, 111, 112, 113, 114, 115, 118, 119, 122, 126, 128, 129, 132, 137, 138, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 162, 173, 179, 180, 181, 182, 184, 185, 186, 188, 189], "php7": 22, "php70": 151, "php74": 124, "php8": [130, 133], "php82_fpm": 125, "php_fastcgi": 93, "php_valu": 26, "phpdoc": 188, "phpinfo": [131, 139], "phpredi": [46, 60, 65, 88, 131], "physic": [13, 28, 56, 88, 97, 111, 129, 144], "pi": [60, 120, 134], "pick": [15, 22, 24, 40, 66, 94, 144, 154, 156, 176], "picker": [1, 2, 15, 88, 174], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 111, 131], "pid": 157, "pin": [148, 165], "ping": [22, 63], "pipe": [60, 119, 150], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 125, "pkg_add": 125, "pki": 130, "place": [1, 5, 24, 26, 27, 45, 56, 60, 63, 88, 93, 115, 117, 119, 121, 122, 125, 129, 130, 132, 133, 137, 138, 139, 143, 148, 172, 174, 175, 188], "placehold": [29, 32, 60, 81, 161], "plai": [60, 72, 133], "plain": [14, 60, 63, 70, 71, 102, 107, 130, 134, 139, 151], "plaintext": [81, 111, 121, 122], "plan": [2, 8, 25, 81, 126, 131, 134, 135, 149, 187], "planetexpress": 155, "platform": [31, 48, 92, 94, 120, 124, 133, 135, 136, 188], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 22, 26, 40, 47, 56, 57, 58, 60, 66, 68, 70, 81, 85, 94, 97, 102, 103, 114, 118, 119, 124, 127, 129, 133, 134, 135, 138, 139, 143, 145, 148, 149, 151, 152, 153, 173, 181, 187, 189], "plu": [67, 188, 189], "plug": 133, "pluggabl": 80, "plugin": [97, 161, 188], "plusserv": [0, 15], "pm": [133, 134], "png": [31, 60, 72, 130, 157], "pod": 3, "pod_nam": 3, "podman": [3, 88, 134], "point": [6, 12, 15, 16, 22, 24, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 96, 102, 108, 113, 114, 129, 130, 133, 134, 135, 139, 144, 148, 149, 154], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 107, 108, 109, 111, 127, 130, 131, 132, 140, 154], "policycoreutil": 124, "polish": 4, "polit": [1, 14], "poll": [2, 40, 133, 157, 188], "pomerium": 88, "pool": [59, 127, 130, 133, 134, 156], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 111, 134, 143, 156], "popular": [45, 96, 97], "popup": 117, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 96, 97, 98, 100, 122, 124, 125, 127, 129, 133, 150, 152, 157, 160, 164, 166, 172], "portabl": 88, "portal": [48, 63, 103, 117, 123], "portion": 139, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 181, 187], "posix": [50, 131], "posixgroup": 81, "possibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 22, 25, 28, 41, 43, 44, 48, 49, 50, 54, 55, 58, 59, 60, 61, 63, 64, 77, 80, 81, 82, 84, 92, 94, 96, 97, 98, 100, 102, 103, 113, 114, 117, 119, 122, 127, 130, 131, 132, 133, 134, 135, 138, 139, 143, 144, 145, 147, 148, 150, 153, 160, 167, 173, 187, 189], "possibli": [60, 119, 127, 139], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 119, 129, 130, 137, 150, 160, 164, 166, 188, 189], "post_allow": 160, "post_max_s": [26, 125, 134], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 125, 164, 166], "postgresql": [3, 20, 60, 88, 122, 125, 129, 131, 133, 135, 152, 157, 164, 165, 166, 182, 185], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 133], "power": [3, 5, 6, 7, 9, 10, 14, 60, 102, 130, 134, 144, 162, 169], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 169, "pptx": [2, 162, 169], "pr": 137, "practic": [47, 60, 77, 108, 119, 127, 144], "pre": [50, 60, 65, 72, 88, 96, 100, 127, 129, 131, 139, 149, 153, 163, 187], "preced": [24, 51, 60, 80, 88, 121, 154, 161], "precis": [48, 81, 95], "precompil": 133, "preconfigur": [88, 102], "predefin": [50, 92, 94], "predi": 59, "predict": [108, 133, 187], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 94, 116, 118, 119, 122, 130, 131, 134, 139, 157, 188], "prefil": [92, 121], "prefix": [3, 25, 31, 60, 65, 67, 88, 93, 107, 115, 130, 134, 155], "preinstal": 170, "preliminari": 157, "preload": [125, 127, 130], "prem": 15, "prematur": [113, 114], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 110, 120], "premium": 135, "prepar": [15, 88, 96, 111, 128, 134], "prepend": [1, 60, 130, 139, 151], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 122, 126, 128, 129, 142, 144, 163], "preseed": 60, "presenc": 188, "present": [2, 51, 54, 60, 63, 64, 67, 81, 97, 111, 120, 121, 133, 134, 137, 148, 154, 162, 167, 168, 169, 188], "preserv": [0, 1, 4, 40, 43, 44, 85, 93, 124, 133, 143, 147, 158, 162], "preset": [77, 85], "press": [2, 41, 63, 94, 113, 114, 139, 176], "pretrain": 5, "pretti": [68, 88, 126, 128, 130, 189], "prettier": 134, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 94, 105, 107, 113, 117, 127, 129, 130, 133, 135, 138, 139, 141, 147, 149, 155, 181, 184], "preview": [28, 40, 46, 65, 88, 128, 131, 134, 151, 152, 161, 174], "preview_concurrency_al": [88, 181], "preview_concurrency_new": [88, 181], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 133, "preview_imaginary_kei": [88, 133], "preview_imaginary_url": [88, 133], "preview_libreoffice_path": 88, "preview_max_filesize_imag": 88, "preview_max_i": [47, 88], "preview_max_memori": [47, 88], "preview_max_scale_factor": 47, "preview_max_x": [47, 88], "preview_office_cl_paramet": 181, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 97, 108, 111, 119, 138, 142, 147, 148, 149, 152, 156, 171, 189], "previous": [53, 67, 96, 131, 139, 171, 181, 183, 185], "previousnam": 188, "previousvalu": 188, "primari": [1, 24, 25, 26, 31, 46, 58, 60, 72, 81, 82, 88, 145, 149, 154, 155], "primarili": [5, 77, 120], "primary_color": [72, 157], "princip": [139, 152, 188], "principaluri": 139, "principl": 108, "print": [99, 133, 161, 188], "printenv": 134, "prior": [12, 26, 58, 94, 145, 188], "priorit": 12, "prioriti": [2, 16, 71, 133], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 107, 108, 109, 111], "privacyurl": [72, 157], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 111, 114, 117, 120, 121, 122, 125, 127, 130, 150, 154, 157, 158, 165], "privatedata": 20, "privatekei": [29, 154], "privileg": [22, 65, 74, 76, 81, 88, 121, 126, 129, 157, 189], "proactiv": 43, "probabl": [48, 81, 130, 168], "probe": [93, 127], "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 113, 114, 130, 132, 133, 134, 138, 140, 144, 148, 157, 187], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 148], "proc": [3, 133], "proce": [29, 109, 117, 121, 124, 148, 152, 166], "procedur": [12, 28, 77, 94, 108, 148, 157], "proceed": [28, 143, 149, 154], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 24, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 94, 96, 98, 100, 111, 116, 121, 122, 124, 127, 130, 131, 135, 138, 139, 143, 148, 149, 151, 153, 154, 156, 158, 165, 185, 188], "process_idle_timeout": 133, "processor": 133, "produc": [5, 8, 11, 67, 108, 112, 133, 154], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 108, 122, 124, 127, 129, 132, 133, 134, 139, 152, 157, 162, 163, 165], "productnam": 157, "profession": [11, 15, 28, 135, 139], "profil": [40, 43, 74, 84, 88, 94, 112, 114, 115, 127, 132, 151, 181], "profile_en": 158, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 139, "program": [12, 57, 63, 92, 94, 96, 144, 151], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 151], "project": [2, 48, 84, 88, 120, 126, 138, 154, 157, 187, 188], "projector": 5, "prometheu": 185, "promin": [183, 189], "promot": [81, 88, 156], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 94, 117, 122, 126, 134, 146, 151, 152, 153, 154, 157, 166, 189], "pronoun": [77, 158], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 133, 138, 139, 148, 152, 154, 181], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 94, 100, 127, 131, 138, 139, 143, 153, 157, 167], "properti": [60, 74, 81, 85, 88, 92, 94, 158, 188, 189], "property_address": 77, "property_avatar": 77, "property_biographi": 77, "property_birthd": 77, "property_blueski": 77, "property_displaynam": 77, "property_email": 77, "property_fedivers": 77, "property_headlin": 77, "property_organis": 77, "property_phon": [60, 77], "property_pronoun": 77, "property_rol": 77, "property_twitt": 77, "property_websit": 77, "propfind": [40, 67, 93, 94, 133], "propget": 94, "propos": 12, "proprietari": [8, 15], "prospect": 187, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 103, 108, 110, 111, 122, 134, 148, 157, 161], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 59, 60, 69, 82, 88, 94, 96, 97, 98, 100, 119, 127, 160, 165, 173], "prototyp": 97, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 24, 25, 28, 29, 31, 32, 34, 36, 38, 40, 42, 46, 47, 48, 50, 56, 58, 59, 60, 61, 65, 67, 68, 69, 70, 72, 74, 76, 81, 82, 85, 88, 92, 94, 95, 98, 107, 110, 113, 114, 115, 117, 120, 121, 122, 124, 125, 127, 129, 130, 131, 133, 134, 135, 138, 139, 144, 146, 148, 154, 157, 158, 160, 161, 170, 174, 179, 181, 182, 183, 184, 185, 187, 188, 189], "provider_id": [80, 158], "providerfactori": 60, "provis": [24, 48, 74, 77, 84, 88, 93, 117], "provisioning_api": [17, 150], "proxi": [2, 16, 48, 65, 70, 88, 93, 98, 100, 101, 111, 129, 134, 144, 148, 161, 163, 168, 170], "proxy_add_x_forwarded_for": 130, "proxy_buff": 26, "proxy_connect_timeout": [97, 130], "proxy_fcgi": 134, "proxy_hide_head": 69, "proxy_http": 167, "proxy_max_temp_file_s": 26, "proxy_pass": 97, "proxy_protocol": 97, "proxy_read_timeout": 130, "proxy_send_timeout": 130, "proxy_set": [167, 168, 171, 172], "proxy_set_head": 130, "proxy_timeout": 97, "proxy_wstunnel": 167, "proxyexclud": 88, "proxyfcgibackendtyp": 134, "proxypass": [97, 167], "proxypassmatch": 167, "proxypassrevers": [97, 167], "proxypreservehost": 167, "proxytimeout": [26, 133], "proxyuserpwd": 88, "prune": [44, 100, 108, 119], "pseudo": 127, "psql": [22, 147, 164, 166], "pt6h": 113, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 97, 100, 102, 109, 111, 120, 124, 125, 127, 130, 134, 156, 158, 161, 175, 176], "public_html": 33, "publiccalendar": 113, "publickei": 29, "publicli": [5, 12, 18, 29, 119, 134, 150], "publish": [2, 12, 60, 77, 97, 111, 156, 187], "pubshare_": 29, "pull": [3, 81, 88, 130, 137, 165, 167, 171, 175, 176, 181], "punctuat": 4, "pure": 3, "purg": [108, 113, 164, 166], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 107, 108], "push": [40, 53, 111, 113, 127, 138, 154, 157], "pushfe": 127, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 93, 119, 125, 129, 134, 139, 141, 143, 144, 149, 189], "putsizelimit": 48, "pwa": 60, "pwd": [97, 164, 166], "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 129, "py": 18, "python": [3, 124], "q": [22, 63, 151], "q16": 72, "q3": 2, "qmail": [60, 65, 88], "quali": 127, "qualifi": [12, 41, 63, 157, 188], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 133, 154, 187], "quantiz": [5, 7], "queri": [1, 3, 15, 21, 25, 43, 60, 67, 76, 81, 87, 88, 112, 113, 115, 121, 122, 129, 133, 139, 149, 151, 188, 189], "query_cache_limit": 22, "query_cache_min_res_unit": 22, "query_cache_s": 22, "query_cache_typ": 22, "query_log_fil": 88, "query_log_file_backtrac": 88, "query_log_file_paramet": 88, "query_log_file_requestid": 88, "question": [1, 2, 3, 13, 20, 22, 60, 77, 81, 88, 119, 148, 151], "queu": [3, 53, 133, 157], "queue": [3, 53, 88, 133], "quic": 130, "quick": [2, 56, 64, 88, 117, 128, 134, 163], "quickest": 165, "quickli": [16, 50, 85, 94, 155], "quickstart": [88, 142], "quiet": [44, 49, 56, 92, 151, 154], "quit": [19, 22, 56, 63, 126, 145, 149, 153], "quot": [60, 82, 97], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 108, 112, 140, 158], "quota_include_external_storag": [85, 88], "qwen": [1, 2, 5], "qwen3": 5, "r": [7, 10, 28, 34, 69, 82, 122, 124, 126, 131, 134, 137, 139, 143], "rabbitmq": [164, 165, 166], "race": [7, 70], "rackspac": 36, "rainloop": [88, 128], "rais": [12, 22, 26, 60, 133, 139], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 133, 135, 163, 164, 165, 166], "ramdisk": 60, "ran": [6, 70, 181], "rand": 48, "random": [24, 29, 40, 48, 81, 107, 111, 119, 127, 129, 165], "random_byt": 29, "randomli": [60, 107], "rang": [48, 58, 60, 67, 69, 88, 93, 96, 97, 102, 128, 133, 149, 162, 165], "rank": 157, "rapid": 187, "rapidli": 187, "rar": 56, "rare": [28, 31, 48, 60, 147], "raspberri": [60, 120], "rate": [0, 5, 7, 13, 88, 109, 116, 129], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 114, "ratelimitcalendarcr": 113, "ratelimitperiodaddressbookcr": 114, "ratelimitperiodcalendarcr": 113, "rather": [32, 35, 41, 45, 60, 63, 81, 92, 93, 112, 115, 130, 133, 139, 148, 154, 157, 181], "ration": 60, "raw": [15, 29, 71, 81, 97, 138, 139], "rc4": 153, "rcctl": 125, "re": [3, 4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 95, 97, 102, 108, 112, 117, 119, 129, 130, 134, 135, 139, 143, 144, 148, 149, 153, 154, 158, 165, 183, 184, 187], "re2": 93, "reach": [40, 43, 58, 60, 67, 70, 81, 93, 96, 100, 124, 127, 134, 135, 139, 144, 146, 148, 149, 152, 161, 163, 173, 181, 187], "reachabl": [8, 58, 60, 69, 77, 88, 96, 97, 100, 130, 134, 139, 144, 157, 161, 181, 189], "react": [2, 151, 189], "reaction": [2, 111], "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 102, 108, 113, 114, 115, 119, 122, 124, 125, 130, 134, 135, 136, 138, 152, 153, 154, 157, 158, 160, 161, 183, 184, 185], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 121, 122, 130, 152, 153, 154, 156, 157, 158], "reader": [20, 157], "readi": [40, 60, 81, 100, 134, 165, 173, 187], "readili": 28, "readm": [3, 18, 84, 96, 97, 100, 125, 134], "readonli": 188, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 93, 119, 129, 130, 133, 157, 162, 169, 187, 188], "real_ip_head": 130, "realiz": 15, "realli": [127, 153, 157], "reallysuppress": 92, "realtim": 58, "reappear": 108, "reason": [5, 15, 24, 48, 52, 58, 60, 63, 64, 70, 81, 92, 108, 111, 119, 127, 129, 131, 132, 133, 134, 135, 139, 144, 167, 181, 183, 184, 185], "reassign": 102, "reboot": 88, "rebuild": 157, "recalcul": 81, "receiv": [15, 24, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 93, 109, 112, 117, 124, 135, 138, 149, 151, 154, 187, 188, 189], "recent": [26, 43, 44, 58, 81, 88, 108, 111, 116, 133, 144, 157, 158, 165, 167, 171], "recid": 127, "recip": 2, "recipi": [29, 41, 60, 112, 115, 117, 119, 154, 157], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88, 93], "recognis": 32, "recognit": [15, 88], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 22, 26, 27, 28, 30, 38, 39, 40, 42, 45, 53, 57, 58, 60, 64, 65, 67, 68, 69, 70, 77, 81, 88, 94, 96, 97, 102, 108, 119, 125, 126, 127, 128, 129, 130, 133, 134, 135, 138, 139, 141, 146, 147, 149, 150, 152, 153, 157, 160, 163, 167, 170, 174, 179, 180, 181, 183, 184, 185, 187, 188, 189], "recommended": 187, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 94, 108, 111, 112, 115, 119, 133, 144, 152, 154, 157], "recov": [28, 29, 78, 85, 88, 147, 154], "recoveri": [46, 80, 88, 108, 142, 153, 154], "recoverykey_": 29, "recreat": [97, 147], "rectif": 88, "recurs": [154, 157], "recv": 63, "recycl": 133, "red": [15, 40, 41, 59, 94, 134, 135], "redact": [94, 119], "reddit": [175, 176], "redeploi": 3, "redhat": 56, "redi": [26, 46, 65, 70, 88, 128, 131, 136, 144, 150, 164, 165, 166], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 96, 97, 100, 117, 130, 134, 139], "redirectregex": 69, "redis_log_fil": 88, "redis_server_host": 165, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 108, 119, 128, 130, 139, 187], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 100, 108, 118, 119, 124, 128, 129, 137, 139, 149, 175, 181, 188, 189], "referenc": [14, 18, 29, 139, 156], "reference_opengraph": 88, "referr": [127, 130], "refil": 59, "reflect": [60, 69, 130, 144, 157], "refman": [60, 135], "reformat": 81, "reformul": 1, "refresh": [24, 59, 60, 81, 88, 146, 156, 157], "refus": 154, "reg": 93, "regard": [84, 119, 131, 136, 187], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 108, 129, 150, 157, 187], "regener": [32, 144, 154, 157, 165], "regex": [69, 127, 130], "region": [31, 36, 48, 60, 154], "regionon": [48, 60], "regist": [3, 4, 5, 8, 15, 57, 60, 88, 96, 97, 101, 113, 117, 144, 154, 157, 158, 174, 175], "registr": [57, 117], "registrar": 134, "regress": 135, "regul": 110, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 93, 102, 115, 148, 149, 170, 188], "regularli": [12, 15, 53, 57, 108, 134, 149, 152, 187], "regulatori": 110, "reindex": 3, "reinforc": 5, "reinstal": [3, 92, 139, 145, 164, 166], "reject": [38, 88, 93, 121], "rel": [18, 29, 60, 134, 158], "relai": 144, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 94, 96, 97, 114, 119, 128, 131, 133, 134, 136, 137, 144, 152, 155, 182, 183, 184, 187], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 94, 97, 124, 126, 127, 131, 133, 134, 135, 137, 138, 142, 145, 146, 148, 149, 150, 151, 164, 165, 166, 167, 168, 171, 185, 186], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 94, 117, 125, 127, 130, 144, 187], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 118, 135, 174, 176, 186, 187], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 131, 135, 139, 143, 144, 173], "reliev": 45, "reload": [40, 64, 93, 97, 124, 133, 134], "remain": [28, 40, 43, 60, 77, 81, 85, 97, 109, 112, 117, 121, 122, 125, 130, 144, 153, 154], "remedi": [60, 114, 139], "rememb": [60, 81, 85, 88, 92, 111, 124, 125, 132, 189], "remember_login_cookie_lifetim": [88, 107, 108, 111], "remi": 124, "remind": [88, 116], "remirepo": 88, "remnant": [20, 60, 81, 83, 88], "remot": [2, 3, 17, 22, 33, 35, 37, 38, 39, 41, 43, 56, 59, 60, 63, 67, 69, 70, 73, 81, 88, 92, 94, 96, 98, 102, 111, 112, 113, 115, 117, 119, 121, 122, 125, 128, 130, 134, 135, 139, 148, 150, 157, 185], "remote_addr": [60, 130], "remoteaddr": [67, 127], "remotedirpath": 92, "remoteport": [97, 98], "remov": [2, 3, 11, 16, 20, 26, 28, 30, 43, 44, 53, 54, 58, 60, 63, 70, 74, 75, 77, 81, 83, 85, 87, 88, 92, 97, 99, 100, 102, 103, 106, 108, 109, 112, 113, 114, 115, 117, 119, 121, 127, 130, 132, 134, 136, 138, 148, 150, 153, 154, 156, 158, 164, 165, 166, 167, 171, 173, 180, 181, 184], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 143, 154, 158, 171, 188], "render": [9, 60, 71, 162, 169, 174, 175], "renew": 134, "rep": 154, "repair": [2, 23, 28, 51, 60, 88, 143, 149, 151], "repeat": [31, 58, 100, 144, 157], "repeatedli": [6, 127, 130, 133], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 93, 97, 112, 113, 124, 126, 127, 128, 131, 134, 138, 139, 144, 148, 149, 150, 152, 154, 157, 164, 165, 166, 167, 179, 182, 188], "repli": [2, 63, 117], "replic": [0, 1, 15, 21, 25, 59, 65, 88, 154, 176], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 168, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 94, 120, 132, 133, 139, 150, 153, 154, 156, 157, 173, 182, 183, 184], "repositori": [13, 29, 56, 58, 88, 120, 124, 164, 171, 175, 176, 187], "repres": [29, 44, 47, 119, 188, 189], "represent": 157, "reproduc": 70, "req": 93, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 24, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 94, 96, 97, 98, 100, 102, 107, 108, 110, 111, 119, 125, 127, 130, 131, 133, 135, 137, 138, 139, 156, 160, 161, 172, 175, 176, 181, 188, 189], "request_checksum_calcul": [60, 184], "request_slowlog_timeout": 133, "request_terminate_timeout": 133, "request_timeout": [26, 41, 88], "request_uri": 130, "requestreadtimeout": 26, "requir": [1, 13, 15, 17, 18, 21, 23, 26, 28, 29, 31, 32, 33, 36, 37, 38, 40, 41, 42, 45, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 63, 67, 70, 72, 76, 77, 80, 81, 82, 87, 88, 93, 94, 96, 97, 98, 100, 107, 108, 109, 111, 117, 121, 122, 126, 127, 128, 129, 130, 132, 133, 134, 138, 139, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 162, 163, 167, 169, 170, 171, 173, 187, 188], "requireal": 93, "rerun": 28, "rescan": [40, 88, 140, 143, 154, 157], "resembl": 12, "resend": 88, "reserv": [50, 115, 183], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 111, 113, 114, 119, 124, 130, 133, 139, 148, 153, 154, 158, 179], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 97, 132], "resist": 58, "resiz": 81, "resolut": [9, 173, 181], "resolv": [28, 40, 58, 60, 65, 88, 94, 97, 115, 125, 127, 148, 149, 175, 181], "resolveexappurl": 97, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 96, 114, 116, 119, 127, 128, 133, 134, 139, 143, 146, 189], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 96, 97, 113, 117, 188], "respond": [52, 60, 88, 93, 100, 102, 109, 110, 133], "respons": [2, 12, 14, 24, 29, 65, 67, 88, 92, 93, 97, 111, 120, 127, 130, 139, 148, 175, 184, 189], "response_checksum_valid": [60, 184], "rest": [28, 119, 124, 133, 139, 157], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 94, 97, 124, 127, 130, 131, 133, 134, 139, 143, 165, 167, 168, 188], "restor": [16, 23, 29, 44, 60, 88, 108, 139, 141, 142, 143, 144, 148, 149, 152, 157, 187, 188], "restorecon": [124, 132], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 102, 105, 106, 111, 113, 114, 119, 121, 128, 139, 150, 157, 158, 161, 180, 185], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 94, 96, 97, 117, 119, 122, 129, 130, 133, 134, 138, 152, 154, 157, 161, 181, 188, 189], "resum": [60, 189], "resync": 114, "retain": [12, 14, 40, 43, 44, 53, 77, 107, 108, 111, 112, 141], "retent": [44, 49, 60, 88, 103, 105, 110, 111, 112, 116, 154, 158], "rethink": 108, "retir": 88, "retrain": 187, "retreat": 2, "retri": [60, 148, 167], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 112, 157, 189], "retroact": [53, 60], "return": [17, 24, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 93, 97, 113, 124, 125, 130, 133, 134, 139, 150, 158, 165, 175, 189], "reus": [60, 119], "reusabl": 60, "revalid": 88, "revalidate_freq": [125, 133], "reveal": 173, "revers": [28, 60, 65, 70, 88, 93, 96, 100, 129, 134, 137, 144, 153, 161, 163, 168, 170], "reverse_proxi": [69, 93], "revert": [88, 94, 113, 140, 146, 148, 149, 153], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 127, 139, 143, 144, 149, 158, 161, 181, 183, 187], "revis": [143, 149], "revisit": [133, 143, 149], "revoc": [121, 122, 157], "revok": [54, 60, 108], "rewrit": [93, 114, 130, 134, 139, 157, 181], "rewritebas": [88, 134], "rewriteengin": [69, 139], "rewriterul": [69, 139], "rewritten": 130, "rf": 132, "rfc": [60, 80, 127, 152, 156], "rfc6749": 68, "rh": [124, 151], "rhel": [133, 134], "rich": [65, 88, 175], "rich_editing_en": 71, "richdocu": 181, "richdocumentscod": 130, "rid": [47, 153], "right": [1, 24, 25, 33, 59, 60, 76, 81, 85, 88, 108, 109, 113, 130, 134, 143, 148, 181, 188], "rim": 130, "risk": [12, 28, 34, 60, 63, 127, 130, 133, 139, 148, 149, 187], "riski": 12, "rm": [99, 147, 165, 167], "rmi": 165, "rmm": 92, "ro": 8, "roadmap": 12, "roam": 94, "rob": 155, "robbi": 155, "robert": 155, "roberta": 155, "robin": [17, 155], "robot": [127, 130], "robust": [13, 88, 134, 146], "rocm": [96, 98, 100], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 187, "rollback": 93, "rollout": 92, "roman": 2, "room": [8, 88, 116, 154, 157], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 103, 119, 121, 122, 124, 125, 126, 129, 130, 132, 133, 134, 137, 138, 139, 148, 151, 154], "rootcert": [22, 60], "ropa": 111, "rotat": [4, 67, 88, 101, 108, 111, 121, 131, 151, 157], "rough": [5, 7, 9, 10, 15, 60], "round": 29, "rout": [2, 21, 60, 88, 97, 111, 130], "router": [60, 69], "routin": [151, 154, 187], "row": [22, 23, 24, 40, 119, 135, 152, 183, 188], "row_format": [23, 60], "rowaddedev": 188, "rowdeletedev": 188, "rowid": 188, "rowupdatedev": 188, "rpm": [124, 161], "rsa": [29, 32, 40], "rss": [130, 133], "rsync": [94, 141, 144, 147], "rt": 189, "rtrim": 97, "rtx": 96, "rule": [13, 44, 60, 81, 82, 86, 88, 97, 104, 105, 106, 124, 127, 130, 134, 148, 157, 160, 172], "ruleset": 132, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 38, 40, 44, 45, 47, 48, 49, 50, 53, 56, 57, 58, 59, 60, 63, 65, 69, 80, 81, 83, 88, 92, 94, 96, 97, 98, 108, 112, 113, 114, 115, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 138, 139, 141, 143, 144, 145, 147, 148, 150, 152, 153, 154, 155, 156, 161, 163, 164, 165, 166, 167, 168, 170, 173, 181, 185, 186, 187, 188], "runner": [15, 158], "runtim": [82, 88, 92, 135, 157], "runus": 151, "russian": 4, "rv": 132, "rw": 82, "s01": [81, 82, 155], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 144, 154], "s_time": 119, "sabr": 139, "sabredav": [134, 139, 188], "safari": [67, 135], "safe": [15, 19, 20, 24, 28, 44, 59, 60, 63, 68, 96, 124, 126, 130, 131, 139, 144, 148, 153, 154, 157], "safest": 102, "safeti": 64, "sai": [2, 63, 148], "said": [12, 15], "sake": 124, "sale": 150, "salt": [29, 60, 157], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 24, 25, 26, 28, 29, 32, 38, 41, 43, 45, 48, 51, 56, 58, 59, 60, 63, 67, 69, 70, 77, 81, 87, 88, 92, 93, 94, 96, 98, 99, 102, 107, 111, 113, 114, 115, 119, 121, 122, 124, 125, 127, 130, 134, 136, 137, 139, 144, 146, 148, 149, 150, 151, 152, 154, 157, 158, 160, 161, 163, 165, 167, 173, 181, 182, 183, 184, 188, 189], "sameorigin": [127, 130], "samesit": [60, 107], "saml": [29, 32, 85, 112, 133, 158], "sampl": [26, 45, 88, 125, 150], "sandbox": 134, "sanit": [46, 88], "sapi": 131, "satisfi": [56, 67, 77, 129, 134], "saturdai": 2, "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 94, 96, 109, 115, 117, 119, 130, 153, 161, 189], "save_com": [125, 133], "sbin": [60, 63, 134], "scalabl": [48, 120, 133, 134, 146, 170, 173], "scale": [13, 20, 25, 48, 60, 88, 108, 120, 135, 139], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 94, 138, 139, 143, 147, 151], "scanfil": 157, "scanner": [40, 60, 63, 65, 88, 157], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 127, 136, 147, 170, 188], "scene": 15, "schedul": [2, 3, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 108, 113, 116, 118, 149, 150, 152, 157, 188], "scheduledaft": [14, 157], "scheduledat": 14, "schema": [20, 22, 25, 88, 136, 145, 148, 154, 157], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 97], "school": [77, 139], "scl": 151, "scope": [8, 21, 22, 48, 60, 68, 74, 81, 88, 93, 99, 111, 138, 154, 157, 158], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 134, 148], "screen": [41, 63, 78, 79, 88, 109, 134, 148, 157, 189], "screenshar": 135, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 128, 130, 133, 151, 157, 158, 160, 164, 166, 188], "script_filenam": 130, "scriptnam": 67, "scroll": [41, 85, 112, 113, 114, 117, 148], "sdk": [6, 124, 132, 160, 167, 168, 170, 171, 172, 184], "sdkref": [60, 184], "seal": 88, "sealert": 132, "seamless": [81, 188], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 96, 113, 127, 131, 133, 134, 139, 144, 158, 161, 174], "sec": [22, 23, 82, 119], "second": [1, 15, 16, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 93, 102, 107, 113, 117, 119, 127, 133, 134, 138, 139, 150, 154, 157, 158, 167, 188], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 117, 121, 122, 127, 133, 144, 150, 153, 154, 157, 160, 161, 165], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 16, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 94, 97, 100, 102, 103, 112, 113, 114, 117, 118, 119, 120, 129, 130, 133, 134, 139, 145, 148, 149, 150, 154, 157, 161, 167, 173, 187], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 94, 98, 108, 109, 111, 112, 113, 119, 124, 128, 129, 130, 131, 132, 134, 135, 138, 139, 145, 146, 149, 151, 158, 162, 164, 167, 185, 187], "see": [0, 1, 2, 3, 4, 5, 7, 11, 15, 16, 18, 22, 23, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 51, 53, 54, 56, 58, 59, 60, 63, 67, 68, 70, 74, 78, 81, 82, 83, 85, 88, 92, 93, 94, 96, 97, 100, 102, 103, 108, 109, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 170, 173, 178, 179, 180, 182, 183, 184, 185, 188, 189], "seed": [59, 60, 88, 163], "seem": [3, 24, 60, 63, 70, 148], "seen": [60, 94, 96, 103, 114, 138, 155], "segment": 26, "segreg": 127, "select": [1, 2, 3, 4, 5, 7, 8, 12, 16, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 77, 80, 81, 85, 92, 93, 107, 108, 111, 112, 117, 121, 122, 129, 133, 139, 148, 150, 152, 154, 161, 164, 166, 189], "selector": [88, 151], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 94, 97, 109, 115, 117, 134, 157, 159, 169, 179], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 128], "semanag": [124, 132], "semant": [3, 93], "semaphor": 131, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 16, 17, 18, 24, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 94, 97, 109, 113, 115, 116, 127, 129, 132, 134, 148, 154, 157, 158, 161, 174, 179, 188, 189], "send_timeout": 130, "sendemail": 158, "sender": [63, 117], "sendeventremindersmod": [113, 152], "sendfil": 139, "sendmail": [60, 65, 88, 128], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 94, 119, 127, 134, 139, 150], "sent": [12, 24, 40, 59, 60, 63, 67, 81, 88, 97, 111, 113, 117, 119, 121, 122, 152, 157, 158, 189], "sentinel": [45, 59, 65, 88], "sentinel1": 59, "sentinel2": 59, "sentinel3": 59, "sentri": 119, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 94, 96, 100, 112, 149, 150, 157, 158, 189], "septemb": 4, "sequenc": [157, 185], "seri": [175, 176, 184], "serial": 60, "serializer_igbinari": 60, "seriou": 139, "serious": 70, "serv": [3, 5, 7, 24, 26, 60, 63, 69, 70, 81, 88, 93, 102, 120, 128, 134, 144, 148, 160, 167, 181, 182, 184], "server": [0, 1, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 19, 20, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 56, 57, 58, 64, 65, 67, 68, 69, 72, 75, 76, 77, 78, 79, 82, 83, 85, 88, 91, 92, 96, 97, 98, 100, 106, 107, 112, 116, 118, 119, 120, 121, 122, 124, 125, 126, 129, 130, 131, 136, 138, 140, 141, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 162, 163, 164, 165, 166, 169, 170, 172, 173, 175, 178, 185, 186, 187, 188], "server0": 59, "server1": [48, 59, 129], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 93, 97, 125, 130], "server_token": 130, "serveraddr": 97, "serverid": [88, 144], "serverinfo": [59, 139, 181], "servernam": [93, 97, 124, 127, 134], "servernotavailableexcept": 157, "serverport": 97, "serverroot": [16, 60], "serverurl": 92, "servic": [1, 2, 3, 5, 12, 13, 22, 31, 32, 36, 40, 56, 57, 58, 59, 60, 63, 65, 67, 68, 70, 72, 81, 82, 84, 88, 94, 100, 107, 109, 124, 125, 127, 133, 134, 140, 144, 154, 157, 158, 160, 161, 164, 166, 168, 170, 171, 174, 176, 187], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 94, 107, 119, 130, 131, 141, 144, 149, 151, 154, 157, 158], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 154, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 38, 40, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 66, 68, 69, 71, 72, 73, 74, 80, 82, 83, 84, 86, 87, 88, 92, 93, 94, 95, 96, 97, 98, 100, 102, 103, 104, 106, 107, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 125, 126, 127, 128, 129, 130, 132, 135, 138, 139, 141, 143, 144, 145, 147, 148, 149, 151, 154, 156, 162, 164, 165, 166, 168, 173, 179, 180, 181, 183, 187, 188], "set_real_ip_from": 130, "setenv": [127, 134], "setenvif": 134, "setenvifnocas": 93, "setroubleshoot": 132, "setsebool": [124, 132], "settingclass": 157, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 22, 24, 28, 32, 40, 44, 45, 48, 49, 57, 58, 62, 63, 65, 69, 80, 81, 88, 91, 94, 97, 98, 101, 124, 128, 129, 130, 133, 134, 135, 139, 144, 145, 149, 150, 151, 152, 153, 167, 168, 170, 171, 172, 179, 182, 183, 185], "setup_create_db_us": 129, "setupcheck": 157, "sever": [12, 26, 28, 58, 60, 63, 77, 92, 97, 99, 108, 109, 112, 117, 127, 130, 131, 133, 134, 139, 144, 149, 154, 157, 170, 187], "sf": [16, 125], "sftp": [32, 40, 60, 88, 131, 154], "sgi": 60, "sh": [15, 134, 188], "sha": 148, "sha256": [29, 124, 126, 156], "sha256_cert_fingerprint": 55, "sha256sum": [124, 126], "sha512": [29, 148], "sha512sum": 148, "shall": [60, 66, 81], "shallow": [40, 154], "shape": 93, "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 94, 96, 97, 98, 102, 103, 108, 109, 111, 112, 115, 116, 120, 125, 127, 132, 134, 136, 140, 143, 147, 148, 151, 156, 158, 160, 161, 165, 168, 176, 188], "share20": [60, 157], "share_fold": 88, "shareabl": 115, "shareapi_restrict_user_enumeration_full_match_email": 43, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 43, "shareapi_restrict_user_enumeration_full_match_userid": 43, "sharebymail": 60, "shared_secret": [60, 67], "sharekei": 29, "sharer": [111, 154], "shares_extern": 154, "sharescount": 60, "sharesreminderjob": 157, "sheet": 184, "shell": [15, 23, 57, 60, 122, 151, 188], "shellextens": 92, "shibbol": 160, "ship": [1, 4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 114, 115, 124, 127, 130, 133, 148, 150, 154, 155, 157, 174, 182, 185], "shm_size": [59, 183], "shop": 2, "short": [24, 60, 77, 81, 83, 96, 107, 113, 114, 117, 139, 152], "shortcut": [88, 92], "shorten": 107, "shorter": [24, 29, 134], "shortli": 106, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 20, 22, 23, 27, 29, 36, 38, 39, 40, 41, 45, 51, 56, 57, 59, 60, 63, 66, 67, 68, 69, 71, 77, 81, 82, 85, 92, 93, 94, 96, 97, 98, 100, 102, 106, 113, 114, 117, 119, 122, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 139, 144, 145, 148, 149, 151, 152, 160, 167, 172, 179, 180, 183, 185, 187, 188, 189], "shouldn": 60, "show": [1, 2, 3, 7, 10, 19, 22, 23, 27, 28, 38, 43, 47, 48, 51, 53, 56, 59, 60, 63, 64, 77, 80, 81, 82, 83, 85, 88, 94, 99, 100, 112, 113, 114, 119, 121, 129, 130, 133, 138, 139, 143, 148, 149, 150, 151, 152, 154, 156, 158, 161, 181, 188, 189], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 189], "showexpir": 188, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 111, 127, 129, 130, 131, 138, 139, 143, 148, 149, 152, 153, 154, 157, 158, 161], "showonli": 150, "showpassword": 82, "shred": 108, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 108, 111, 113, 127, 129, 130, 133, 139, 148, 153, 154, 155, 157, 181, 183], "sidebar": [85, 95], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 94, 117, 124, 130, 134, 135, 139, 140, 156, 157, 179], "signal": [4, 107], "signatur": [56, 88, 117, 124, 126, 138, 154, 156], "signific": [8, 12, 34, 45, 53, 138, 187], "significantli": [8, 12, 24, 26, 59, 60, 67, 135, 149], "signup": [2, 60], "silent": [92, 99, 109, 132, 153, 154], "similar": [0, 6, 19, 26, 36, 60, 81, 94, 103, 106, 119, 121, 124, 127, 132, 133, 134, 136, 138, 150], "similarli": [144, 150, 160, 184], "simpl": [15, 20, 51, 60, 88, 103, 120, 134, 146, 189], "simplesignuplink": 88, "simplest": [97, 139], "simplexml": 131, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 96, 102, 103, 143, 147, 148, 188], "simplifi": [97, 153], "simul": 154, "simultan": [45, 133, 134, 150, 187], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 94, 102, 104, 106, 115, 125, 130, 135, 145, 148, 154, 156, 157, 158, 171, 181, 183, 187, 189], "singl": [3, 20, 24, 26, 28, 41, 57, 58, 60, 67, 69, 81, 85, 88, 117, 119, 124, 126, 130, 132, 133, 134, 141, 152, 153, 155, 157, 158, 188], "sink": 2, "site": [26, 65, 88, 107, 127, 134, 139], "situat": [3, 5, 7, 48, 58, 60, 69, 94, 124, 127, 139], "sixteen": 187, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 81, 85, 88, 94, 96, 97, 102, 111, 120, 125, 127, 130, 140, 143, 144, 153, 157, 179, 188], "sji": 71, "skeleton": [18, 27, 60, 189], "skeletondirectori": [27, 88], "skill": [134, 146], "skip": [40, 53, 57, 60, 65, 81, 88, 92, 98, 119, 148, 149, 151, 152, 154, 157], "skip_name_resolv": 22, "skipapp": 181, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 94, "sl": 59, "sla": 12, "slash": [33, 40, 51, 59, 94, 139, 188], "slate": 3, "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 99], "slogan": [72, 157], "slot": [2, 88, 151], "slow": [6, 22, 28, 56, 58, 59, 60, 88, 94], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 153, 170], "slowlog": 133, "sluggish": 133, "small": [2, 12, 43, 47, 57, 60, 77, 88, 113, 114, 130, 139, 170, 187], "smaller": [4, 5, 7, 12, 26, 60, 148], "smallest": [11, 81], "smart": [1, 2, 15, 88, 117, 174], "smb": [40, 60, 88, 128, 131, 154], "smbclient": [38, 131], "sme": 134, "smili": 23, "smith": [152, 158], "smtp": [60, 65, 88, 128, 144], "sn": [82, 155], "snap": [88, 128, 131, 142, 149], "snapcraft": [134, 146], "snapd": [134, 146], "snapshot": [81, 97, 108], "sni": 70, "sniff": 127, "snip": 57, "snooz": [88, 116], "snowflak": [88, 151], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 24, 26, 27, 28, 29, 30, 35, 38, 40, 41, 43, 45, 48, 50, 51, 53, 56, 58, 59, 60, 63, 67, 68, 76, 78, 81, 83, 84, 85, 92, 93, 94, 95, 96, 97, 98, 102, 103, 106, 108, 112, 113, 117, 118, 119, 121, 122, 124, 125, 127, 130, 131, 132, 133, 134, 138, 139, 143, 144, 145, 147, 148, 149, 150, 151, 154, 155, 156, 166, 168, 171, 174, 181, 186, 187, 188, 189], "sock": [22, 45, 59, 60, 97, 98, 125, 130, 150], "socket": [22, 45, 56, 60, 88, 98, 100, 101, 125, 129, 133, 172], "sodium": 131, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 94, 135, 179], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 94, 117, 134, 138, 139, 144, 159, 162, 169, 171, 173], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 132, 137, 148, 184], "some": [0, 1, 2, 15, 16, 22, 25, 28, 29, 31, 32, 40, 43, 47, 48, 51, 52, 57, 58, 59, 60, 63, 65, 73, 77, 81, 85, 87, 88, 94, 95, 96, 97, 99, 102, 111, 113, 114, 117, 119, 124, 125, 127, 129, 130, 131, 133, 134, 135, 138, 139, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 161, 167, 170, 174, 175, 178, 181, 183, 186, 188, 189], "some_secure_password": 98, "some_very_secure_password": [97, 98], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 96, 97, 130, 133, 138, 145, 173, 188], "sometim": [2, 5, 15, 43, 48, 57, 85, 133, 139, 143, 148, 187], "somewher": [81, 97, 130, 134, 189], "soon": [4, 15, 62, 113, 133, 187], "sooner": [108, 187, 188], "sophist": [58, 94], "sorri": 173, "sort": [44, 60, 115, 131, 170], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 143, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 32, 46, 51, 56, 58, 59, 60, 63, 77, 88, 113, 120, 124, 127, 130, 131, 133, 134, 136, 139, 147, 148, 151, 154, 160, 164, 168, 188], "sourcecalendardata": 188, "sourcecalendarid": 188, "sourcecod": 29, "sourceshar": 188, "sovereignti": [0, 1, 4], "sp7": [135, 186], "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 94, 128, 139, 150, 153, 154, 161, 163, 164, 165, 166, 183], "spaghetti": 2, "spam": [60, 63, 117], "span": [24, 73, 102], "spanish": [4, 5, 10, 11], "spawn": [38, 133], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 113, 134, 139, 188], "specialis": 51, "specif": [1, 2, 5, 6, 7, 9, 10, 11, 14, 16, 17, 22, 28, 29, 32, 33, 38, 40, 42, 43, 48, 53, 54, 55, 58, 59, 60, 61, 66, 68, 69, 77, 85, 88, 92, 94, 97, 105, 108, 109, 110, 113, 114, 119, 120, 121, 128, 134, 144, 148, 150, 151, 152, 153, 154, 157, 158, 161, 165, 175, 181, 182, 187, 188, 189], "specifi": [1, 16, 17, 20, 22, 25, 31, 32, 33, 36, 38, 39, 48, 51, 57, 58, 59, 60, 67, 69, 76, 79, 81, 82, 83, 91, 92, 94, 97, 113, 122, 127, 129, 130, 133, 134, 138, 150, 151, 152, 154, 158, 160, 161, 167, 188, 189], "speech": [4, 13, 88, 157, 176], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 94, 96, 130, 133, 185], "speedscop": 60, "split": [21, 24, 88, 130, 161, 177], "spoof": [60, 69], "sporad": 94, "spread": 134, "spreadsheet": [2, 51, 162, 169], "spreed": [4, 8], "sprintf": 97, "sql": [24, 60, 88, 112, 139, 149, 152], "sqlbkp": 147, "sqlbkp_": 141, "sqlite": [20, 25, 88, 122, 128, 129, 135, 136, 139, 152, 157], "sqlite3": [20, 60, 141, 147], "sqlnet": 121, "sqlstate": 139, "squeez": 22, "src": [124, 132], "src_path": 99, "ss": 93, "sse": [28, 31, 46, 88, 157], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 93, 95, 119, 121, 125, 128, 130, 157, 167, 168, 172], "ssl_certif": 130, "ssl_certificate_kei": 130, "ssl_context": [59, 60], "ssl_stapl": 130, "ssl_stapling_verifi": 130, "sslmode": 22, "sslproxycheckpeercn": 167, "sslproxycheckpeernam": 167, "sslproxyengin": 167, "sslproxyverifi": 167, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 127, "stabil": [12, 70, 135, 183, 184, 185], "stabilityai": 15, "stabl": [15, 60, 93, 125, 134, 135, 138, 146, 169, 176, 187], "stable_bas": 56, "stablediffus": 15, "stack": [58, 134, 170], "stage": [60, 88, 148, 187], "stai": [24, 134, 149, 151, 156, 187], "stale": [24, 40, 60, 144, 152, 154, 158], "stall": [60, 133], "stand": 189, "standalon": [4, 17, 170], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 88, 89, 92, 113, 124, 127, 131, 134, 135, 143, 144, 151, 152, 154, 182, 183, 184, 188], "standup": 2, "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 94, 97, 107, 113, 119, 124, 125, 126, 128, 131, 133, 134, 139, 143, 144, 146, 148, 149, 152, 153, 155, 157, 163, 167, 171, 173, 181, 182, 183, 184, 185, 188, 189], "start_header_id": 5, "start_serv": 133, "startedat": 14, "startlimitburst": [15, 188], "startlimitinterv": [15, 188], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 179], "startup": [59, 97, 100, 144, 165], "stat": [1, 3, 88], "state": [24, 28, 44, 63, 77, 80, 85, 88, 119, 127, 147, 151, 152, 154, 157, 188], "statement": 152, "static": [12, 29, 60, 69, 127, 130, 133, 167, 180, 181, 182, 189], "statist": [1, 3, 119, 127, 154, 157], "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 93, 99, 101, 111, 118, 127, 130, 137, 149, 151, 152, 154, 161, 168, 173, 187, 188], "status": 150, "status_cancel": 14, "status_fail": 14, "status_run": 14, "status_schedul": 14, "status_success": 14, "status_unknown": 14, "statuscod": [17, 75, 76, 82], "stdin": [60, 151], "stdout": [4, 154, 157], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 94, 96, 97, 99, 100, 109, 117, 119, 124, 128, 129, 133, 134, 137, 139, 142, 144, 148, 156, 157, 163, 167, 170, 171], "stephani": 158, "stereotyp": 9, "stick": 60, "still": [2, 3, 8, 20, 23, 25, 26, 30, 43, 47, 48, 50, 56, 57, 58, 59, 60, 64, 67, 80, 81, 83, 85, 88, 92, 93, 96, 119, 127, 130, 131, 139, 144, 148, 153, 154, 155, 156, 181, 182, 183, 184, 185, 187, 188], "stilli": 186, "stolen": [80, 108], "stop": [5, 6, 26, 53, 56, 60, 67, 94, 97, 103, 139, 143, 144, 148, 157, 165, 167, 171], "stop_aft": 157, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 94, 99, 103, 111, 129, 131, 132, 133, 134, 135, 136, 139, 144, 150, 151, 158, 168], "storage43": 81, "storageclass": 48, "store": [0, 13, 19, 22, 28, 31, 32, 38, 40, 44, 45, 46, 47, 53, 59, 61, 64, 65, 67, 68, 70, 72, 77, 80, 81, 82, 88, 92, 96, 108, 109, 110, 112, 114, 117, 121, 127, 129, 130, 132, 133, 136, 139, 150, 151, 152, 153, 158, 161, 182, 183, 184], "storecryptedpassword": 88, "str_ends_with": 97, "straight": [18, 92], "straightforward": 55, "strain": 119, "strategi": [23, 48, 108], "stream": [26, 40, 53, 56, 60, 97, 124, 135], "streamable_http": 2, "street": 2, "strength": 129, "strengthen": 70, "strict": [14, 58, 65, 88, 107, 130], "strictest": 77, "strictli": [97, 122, 133, 134], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 93, 97, 99, 111, 121, 130, 150, 152, 158, 161, 164, 165, 166, 187, 188], "strip": [68, 77, 134, 158], "strive": 15, "strong": [86, 129, 165], "stronger": 132, "strongli": [38, 60, 64, 70, 94, 133, 134, 135, 144, 187], "strtotim": 154, "structur": [28, 29, 48, 60, 67, 81, 97, 152, 154, 188], "stt_whisper2": [1, 13, 15, 88], "stuck": 143, "studio": 60, "stuff": 100, "stuttgart": 158, "style": [11, 31, 60, 72, 175, 188], "su": [125, 151], "sub": [6, 76, 81, 93, 178, 189], "subadmin": 88, "subdir": [88, 128], "subdirectori": [36, 40, 60, 88, 93, 130, 134, 154], "subdomain": [60, 69, 125, 127, 134, 167], "subfold": [33, 37, 38, 39, 92, 134, 139], "subgroup": 81, "subject": [28, 77, 88, 108, 109, 110, 113, 119], "submiss": [63, 188, 189], "submissionmessag": 188, "submit": 127, "submitmultipl": 188, "subnet": [60, 97], "subpag": 177, "subpath": 97, "subreddit": [175, 176], "subscrib": 113, "subscript": [12, 88, 116, 127, 135, 169, 173, 187], "subsecond": 48, "subsequ": [24, 92, 119, 134, 146, 155], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 93, 97], "subsystem": 157, "subtitl": 15, "succe": [67, 92, 97], "succeed": [15, 148, 157], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 96, 108, 111, 121, 124, 125, 127, 129, 139, 143, 148, 154, 157, 161, 164, 166], "successfulli": [14, 41, 60, 78, 100, 135, 148, 153, 157, 158, 164, 166, 189], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 97, 108, 109, 112, 113, 114, 119, 122, 126, 131, 133, 134, 137, 139, 141, 143, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 166, 168, 188], "suexec": 60, "suffer": 11, "suffici": [77, 93, 121, 124, 129, 133, 134, 139, 145, 157], "suffix": 129, "suggest": [14, 43, 60, 70, 97, 115, 120, 124, 132, 133, 134, 187], "suit": [12, 28, 97, 127], "suitabl": [45, 57, 59, 60, 96, 127, 133, 152, 157, 187], "sum": [124, 126, 133], "summar": [1, 5, 13, 15, 53, 88, 117, 157], "summari": [13, 15, 88, 112, 116, 133], "summaris": 53, "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 152], "superus": 125, "supervisor": [154, 164, 166], "supplement": 60, "supplementari": 134, "suppli": [59, 81, 88, 113, 117, 121, 134, 148], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 25, 28, 30, 31, 37, 38, 40, 41, 42, 45, 46, 47, 50, 54, 58, 59, 62, 66, 67, 68, 70, 72, 73, 75, 76, 77, 80, 81, 82, 88, 92, 93, 94, 95, 96, 97, 98, 100, 102, 113, 117, 119, 120, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 152, 154, 157, 158, 159, 161, 162, 165, 169, 173, 174, 175, 179, 180, 181, 182, 183, 184, 185, 186, 188], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 154], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 33, 34, 38, 41, 43, 48, 58, 59, 60, 66, 68, 81, 83, 92, 94, 97, 102, 106, 109, 113, 115, 119, 124, 125, 127, 130, 133, 134, 135, 138, 139, 143, 144, 145, 147, 149, 151, 158, 167, 173, 179, 180, 181, 182, 183, 185, 186, 187, 188], "surfac": 77, "surfer": 64, "surnam": [81, 97], "surround": 60, "surveyserv": 127, "surviv": 85, "suse": [135, 186], "suspect": 187, "suspend": [88, 112], "suspici": [15, 57, 58, 60], "sustain": [8, 139], "sv1b7krauqmf8qq": 134, "svg": [47, 60, 72, 130, 133, 134], "swap": [26, 29, 133], "swift": [36, 60, 88, 144, 154], "switch": [13, 16, 60, 81, 88, 114, 119, 127, 133, 151, 152, 153, 157, 170, 189], "symbol": 16, "symfoni": 151, "symlink": [60, 139], "symmetr": 29, "symptom": 24, "sync": [3, 18, 19, 22, 24, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 115, 119, 129, 133, 144, 147, 151, 157, 188], "sync_xxxxxxx": 94, "synchron": [24, 50, 60, 65, 88, 91, 94, 102, 113, 114, 120, 152, 154, 157], "synchronis": [88, 142], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 135, 151, 155, 158], "sys_nic": 133, "syslog": [60, 88, 97, 157], "syslog_tag": [67, 88], "syslog_tag_audit": [67, 88], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 22, 23, 28, 32, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 63, 67, 70, 73, 77, 80, 81, 85, 87, 88, 92, 93, 94, 100, 104, 108, 111, 112, 113, 115, 116, 119, 122, 124, 125, 126, 128, 131, 132, 139, 143, 144, 145, 150, 151, 154, 160, 161, 163, 174, 175, 187], "system_addressbook_expos": 114, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 93, 97, 124, 133, 164, 166, 167, 168, 188], "systemd": [53, 56, 60, 88, 100, 154, 157, 168], "systempl": 160, "systemtag": 188, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [131, 181], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 22, 23, 26, 31, 43, 44, 45, 56, 57, 59, 60, 62, 63, 66, 76, 77, 81, 88, 93, 96, 100, 113, 119, 124, 127, 130, 132, 134, 138, 139, 141, 143, 144, 145, 148, 150, 154, 167, 173, 188, 189], "tab": [88, 151, 161, 189], "tabl": [3, 15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 109, 113, 114, 119, 126, 128, 139, 145, 147, 152, 154, 155, 157, 158, 175, 176, 183], "tableid": 188, "tablespac": 129, "tag": [2, 6, 12, 16, 40, 43, 88, 102, 105, 127, 130, 138, 151, 154, 160, 161, 163], "tagassignedev": 188, "tagid": 188, "tagunassignedev": 188, "tail": [4, 130, 157], "tajik": 4, "take": [3, 6, 19, 22, 26, 29, 32, 41, 47, 52, 56, 57, 58, 59, 60, 69, 70, 80, 81, 82, 84, 85, 94, 97, 98, 121, 122, 125, 127, 130, 133, 134, 138, 143, 144, 146, 148, 149, 152, 153, 154, 161, 164, 166, 183, 188, 189], "taken": [3, 43, 57, 63, 70, 81, 97, 114, 152], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 112, 134, 139, 174, 175, 176, 181, 189], "talk_bot": 8, "talo": 56, "tamper": [28, 148], "tape": 108, "tar": [60, 124, 126, 134, 143], "tarbal": [134, 143, 157], "target": [15, 28, 29, 55, 57, 60, 77, 81, 88, 92, 94, 127, 143, 151, 152, 153, 154, 157, 173, 188], "targetcalendardata": 188, "targetcalendarid": 188, "targetchunkuploaddur": 94, "targetshar": 188, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 111, 113, 120, 125, 134, 151, 185], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 188], "tasktyp": 157, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [60, 88, 97, 127, 130, 133], "te": 155, "team": [18, 46, 48, 60, 65, 88, 112, 134, 146, 170], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 108, 138, 153, 189], "techniqu": 139, "technologi": [15, 70, 134, 146], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 97, 130, 139, 143], "telnet": 63, "temp": [26, 60, 94, 134], "tempdirectori": [26, 88, 144], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 97, 130, 160, 162, 176], "template0": 22, "template1": [22, 147], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 106, 158, 189], "temporarili": [58, 63, 67, 81, 83, 93, 111, 154, 157], "tempt": 1, "ten": [40, 56, 80, 81, 120, 152], "tenant": [3, 36, 117], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 126, 130, 134, 153, 154, 168, 172], "terri": 155, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 28, 53, 56, 58, 59, 65, 74, 77, 88, 93, 94, 96, 97, 99, 101, 102, 119, 120, 127, 130, 132, 135, 137, 138, 139, 152, 154, 157, 161, 181, 185, 187, 188], "tester": 102, "testfil": 56, "testgroup": 76, "tex2image_stablediffusion2": 1, "text": [2, 3, 4, 5, 8, 9, 11, 12, 13, 18, 28, 43, 47, 51, 60, 63, 65, 81, 82, 88, 93, 102, 111, 117, 127, 130, 134, 138, 139, 144, 151, 152, 157, 161, 162, 167, 169, 174, 175, 176, 181], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 157], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 130, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 24, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 94, 108, 112, 113, 115, 117, 120, 122, 124, 127, 129, 131, 133, 134, 135, 138, 139, 143, 147, 148, 151, 154, 157, 167, 170, 181, 183, 184, 187, 189], "thank": [2, 69, 187], "theft": 28, "thei": [0, 1, 2, 3, 4, 5, 8, 12, 15, 16, 18, 25, 27, 28, 30, 40, 41, 42, 43, 44, 45, 47, 50, 52, 53, 58, 59, 60, 61, 62, 63, 69, 71, 80, 81, 84, 85, 87, 88, 91, 92, 94, 96, 97, 102, 103, 104, 107, 108, 109, 111, 112, 113, 117, 119, 120, 121, 122, 126, 127, 129, 130, 133, 134, 135, 137, 139, 143, 144, 150, 152, 154, 156, 157, 158, 160, 161, 174, 183, 187], "them": [3, 6, 7, 14, 15, 16, 22, 23, 24, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 59, 60, 63, 64, 67, 69, 70, 71, 72, 81, 83, 85, 86, 92, 94, 96, 97, 102, 103, 108, 109, 111, 112, 113, 115, 119, 121, 122, 124, 126, 127, 130, 133, 134, 138, 139, 143, 144, 147, 149, 150, 152, 153, 154, 156, 157, 158, 160, 165, 166, 181, 189], "theme": [64, 65, 88, 141, 143, 147, 148, 151, 152, 161], "themingnam": 161, "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 102, 115], "theori": [5, 9], "therefor": [8, 12, 22, 24, 26, 29, 32, 43, 47, 60, 67, 77, 81, 93, 102, 103, 113, 114, 134, 136, 147, 149, 151, 175], "therein": 12, "thereof": 130, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 170, 171, 173, 175, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189], "thing": [15, 60, 80, 127, 134, 141, 147, 148, 187], "think": [36, 139], "third": [2, 12, 15, 16, 22, 28, 57, 78, 88, 107, 135, 143, 149, 161], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 59, 60, 64, 68, 69, 70, 81, 85, 93, 94, 97, 103, 109, 112, 113, 124, 127, 129, 130, 131, 135, 138, 139, 148, 149, 152, 153, 154, 157, 158, 174, 185, 187, 188], "though": [38, 39, 43, 56, 59, 88, 127, 130, 134, 138, 181], "thought": 18, "thousand": [120, 139], "thread": [4, 7, 10, 15, 60, 88, 116, 139], "threat": [28, 127], "three": [8, 40, 56, 57, 59, 60, 63, 67, 80, 93, 96, 97, 117, 119, 129, 147, 156, 158], "threshold": [58, 88, 117], "throttl": [58, 157], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 94, 96, 97, 104, 109, 111, 113, 117, 119, 121, 124, 134, 139, 148, 151, 154, 157, 158, 169, 170, 172, 173, 187], "throughout": [29, 58, 187], "throughput": [7, 10, 60], "throw": 94, "thrown": 151, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 96, 127, 130, 134, 135, 149, 186], "thumbnail": [28, 41, 47, 60, 85, 161], "thumbnailphoto": 81, "thunderbird": [113, 114, 115, 119], "ti": [8, 43, 144], "ticket": [61, 148, 149, 175, 176], "tidewai": 139, "tiff": [47, 60, 134], "tighter": 77, "time": [2, 3, 6, 8, 14, 15, 22, 25, 26, 29, 38, 41, 43, 44, 45, 47, 49, 53, 54, 56, 57, 58, 59, 60, 63, 67, 69, 73, 77, 81, 83, 85, 94, 96, 102, 106, 108, 111, 112, 113, 114, 117, 118, 119, 124, 126, 127, 129, 130, 133, 134, 135, 143, 144, 146, 148, 149, 151, 152, 153, 154, 156, 157, 161, 162, 169, 183, 185, 187, 188], "timefram": 24, "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 100, 125, 130, 133, 134, 143, 148, 150, 157, 188], "timer": 57, "timestamp": [14, 29, 67, 111, 115, 144, 157, 188], "timezon": [8, 57, 60, 67, 102, 131, 157], "tip": [46, 70, 74, 88, 128, 142, 183], "titl": [1, 2, 81, 111, 175, 188], "tl": [28, 45, 60, 63, 69, 70, 82, 88, 96, 97, 119, 121, 125, 127, 128, 130, 134, 157, 161], "tld": [60, 70, 82, 97, 119, 125, 127, 150, 158], "tld_fullchain": 125, "tld_privat": 125, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 94, 119, 134, 148, 152, 154, 164, 166], "tmp_table_s": 22, "tmpdir": [60, 134], "tmpfile": 60, "tmux": 88, "to_gif_exampl": 99, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 121, 122, 135, 139], "toggl": [53, 60, 72, 77, 81, 113, 114, 133, 139, 154], "token": [1, 2, 32, 58, 60, 65, 74, 88, 97, 107, 111, 112, 160, 161, 188, 189], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "toler": 24, "tom": 75, "toml": [69, 97], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 94, 113, 114, 127, 129, 133, 134, 139, 143, 146, 181], "took": 119, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 94, 96, 99, 112, 117, 127, 132, 133, 139, 149, 165, 188], "toolbar": 161, "toolkit": 6, "tooltip": 81, "toot": [175, 176], "top": [1, 12, 16, 60, 64, 67, 70, 85, 139, 148, 149, 176, 188], "topic": [1, 28, 45, 60, 120, 134, 139], "topologi": [59, 60], "total": [6, 29, 36, 60, 67, 81, 85, 87, 157, 158], "totalnumberofsynctokenstokeep": [113, 114], "totalsizelimit": 60, "totp": [80, 158], "touch": [88, 125, 143], "toward": 60, "town": 76, "trace": [67, 133, 151], "trace_mod": 22, "track": [53, 88, 92, 94, 113, 114, 116, 119, 154, 161], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 93, 134, 167], "trail": [40, 50, 53, 155], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 128, 131, 135, 139, 141], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 176], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 108, 109, 112, 130, 133, 138, 143, 148], "transferincomingshar": [88, 154], "transient": 133, "transifex": 66, "transit": [60, 134, 139], "translat": [13, 27, 88, 116, 120, 121, 131, 176], "translate2": [1, 4, 13, 15, 88], "transmit": [107, 111, 127, 189], "transp": 188, "transpar": [13, 15, 29, 58, 60, 88], "transport": [2, 65, 81, 88, 94, 97, 117, 130, 135], "trash": [28, 29, 41, 46, 65, 85, 88, 111, 116, 119, 151, 152], "trashbin": [43, 49, 60, 88, 108, 139, 151, 152], "trashbin_retention_oblig": [49, 88, 108, 154], "trashcan": 40, "travers": 188, "treat": [38, 60, 69, 70, 81, 129, 130, 139], "tree": [2, 40, 81, 88, 133, 157], "tremend": 94, "tri": [18, 127, 129, 152, 153], "triag": 120, "trick": [74, 88, 128, 183], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 60, 67, 76, 81, 85, 88, 114, 119, 133, 138, 139, 148, 154, 157, 181, 188, 189], "triplecheck": 173, "trixi": [135, 186], "trojan": 56, "troubl": [81, 139, 181], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 116, 127, 128, 134, 142, 144, 149, 159, 169], "true": [3, 14, 15, 16, 17, 20, 22, 23, 28, 31, 41, 48, 53, 60, 63, 66, 67, 69, 75, 76, 77, 82, 84, 85, 87, 94, 102, 117, 119, 121, 127, 130, 134, 139, 141, 149, 150, 151, 154, 157, 158, 161, 164, 165, 166, 168, 188, 189], "truena": [88, 128], "truncat": [29, 53, 60], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 97, 111, 117, 127, 128, 148, 150, 157], "trusted_domain": [41, 69, 88, 121, 129, 130, 144, 150, 181], "trusted_proxi": [58, 69, 88], "trustedcafil": 97, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 94, 96, 97, 102, 119, 130, 132, 135, 138, 139, 143, 147, 148, 152, 173, 179, 187], "try_fil": 130, "trystack": 60, "ttf": [130, 164], "ttl": [22, 63, 88], "tty": 153, "tue": 63, "tuesdai": 2, "tune": [5, 88, 127, 128, 130, 131, 134], "tunisian": 4, "tunnel": [96, 97, 98], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 117, 134, 148, 157, 187, 189], "turnkei": [131, 134], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [120, 124, 125], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 24, 26, 28, 36, 40, 41, 44, 45, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 94, 96, 97, 109, 112, 113, 119, 120, 121, 127, 134, 148, 149, 150, 151, 154, 161, 164, 166, 169, 187, 188, 189], "twofactor_totp": 150, "twofactorauth": [80, 88], "txk4": 158, "txt": [28, 38, 50, 60, 71, 130, 132, 133, 188], "ty": 133, "type": [1, 2, 3, 5, 10, 14, 15, 16, 17, 21, 23, 25, 26, 28, 40, 41, 42, 43, 46, 47, 48, 56, 57, 58, 63, 65, 68, 73, 80, 85, 87, 88, 97, 98, 102, 107, 111, 112, 114, 116, 117, 119, 126, 127, 130, 131, 133, 139, 143, 149, 150, 154, 158, 161, 164, 166, 168, 175, 179, 181, 184, 188, 189], "typescript": 189, "typic": [28, 40, 57, 59, 60, 77, 81, 89, 92, 94, 107, 113, 119, 126, 129, 131, 133, 139, 144, 158, 187, 188], "u": [1, 2, 8, 12, 14, 15, 18, 19, 20, 22, 23, 26, 28, 34, 40, 48, 51, 53, 56, 57, 59, 60, 68, 72, 73, 77, 78, 80, 81, 83, 100, 108, 109, 112, 113, 114, 119, 122, 125, 131, 134, 137, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 164, 166, 181, 188], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 122, 128, 131, 133, 134, 135, 139, 141, 143, 146, 149, 151, 162, 163, 167, 170, 186], "uc": 134, "udp": 63, "ui": [2, 12, 15, 40, 58, 60, 77, 82, 85, 92, 96, 98, 99, 115, 117, 139, 148, 149, 152, 157, 161], "uid": [29, 80, 81, 82, 83, 108, 109, 112, 119, 152, 155, 158, 188], "uid1": 158, "uid2": 158, "uidn": 158, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 154], "unaffect": 60, "unansw": 117, "unattend": 122, "unauthent": [43, 77], "unauthor": [28, 93, 173], "unavail": [3, 40, 51, 60, 80, 97, 131, 151, 157], "unavoid": 40, "unban": 127, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 60, 130, 134], "uncondition": 69, "unconfigur": 48, "undefin": [2, 60], "under": [1, 2, 5, 6, 7, 10, 15, 16, 18, 22, 40, 47, 50, 54, 57, 58, 59, 60, 63, 67, 69, 77, 80, 81, 89, 94, 96, 107, 108, 110, 111, 124, 129, 130, 131, 133, 134, 137, 138, 139, 149, 154, 161, 173, 181, 187], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 131, 133, 134, 154], "underscor": [31, 48, 85, 154], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 136, 139], "undertak": 6, "underutil": 134, "undesir": 60, "undetect": 139, "undo": 85, "unencrypt": [22, 28, 63, 85, 88], "unencrypted_s": 139, "unevenli": [7, 10], "unexpect": [59, 60, 139, 173, 187], "unexpectedli": [60, 92], "unexplain": 134, "unfavor": 181, "unforeseen": 144, "unfortun": 57, "unfound": 112, "unhandl": 151, "unicod": [40, 60, 152], "unicodepwd": 81, "unifi": [1, 60, 172], "unified_search": 88, "uninstal": [3, 4, 88, 92, 128, 132, 158, 163], "uniqu": [48, 59, 60, 61, 64, 81, 85, 96, 97, 98, 99, 111, 127, 139, 157, 158, 188], "uniquememb": [81, 82], "unison": 94, "unit": [15, 57, 117, 157, 188], "univent": 134, "univers": 77, "unix": [14, 45, 56, 60, 81, 88, 102, 103, 129, 133, 135, 154, 188], "unix_domain_socket": 97, "unixpath": 97, "unixsocketperm": 59, "unknown": [75, 76, 88, 112, 154, 157, 161], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 97, 108, 112, 117, 131, 134, 139, 151, 154, 165], "unlik": [59, 69, 94, 154], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 127], "unnecessarili": 57, "unoffici": 146, "unpack": [122, 126, 134, 143, 157], "unpredict": [12, 28], "unprotect": 161, "unreach": 81, "unrecover": 28, "unregist": [8, 88, 101], "unreli": [40, 60, 94, 117], "unrequir": 138, "unscan": [38, 60, 88, 154, 157], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81], "unshar": [88, 119, 154], "unsign": 154, "unspecifi": 60, "unstabl": 150, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 130, 149, 173, 175], "unsur": [3, 26, 130], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 94, 97, 99, 107, 112, 126, 127, 129, 133, 147, 149, 152, 153, 154, 156, 157, 181, 184, 187], "untouch": 150, "untrust": [88, 127], "unus": [60, 73, 100, 182], "unusu": [1, 133], "unwant": [119, 133, 139], "unzip": [124, 126, 143], "up": [0, 1, 2, 3, 5, 14, 15, 16, 19, 20, 22, 24, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 94, 96, 97, 100, 109, 112, 113, 116, 119, 123, 127, 128, 129, 133, 135, 136, 139, 143, 144, 147, 148, 154, 155, 156, 157, 158, 161, 168, 178, 179, 181, 183, 185, 187], "upcom": [12, 61, 113, 187], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 81, 82, 88, 97, 101, 112, 113, 114, 115, 117, 120, 124, 126, 127, 128, 130, 131, 134, 135, 138, 142, 143, 144, 145, 146, 147, 150, 152, 153, 154, 155, 158, 160, 161, 163, 168, 181, 183, 185, 186, 187, 188], "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "updatesinglemetadata": 157, "upfront": 153, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 125, 126, 131, 133, 138, 139, 142, 145, 151, 152, 153, 167, 178], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 94, 103, 105, 106, 111, 117, 125, 131, 133, 138, 139, 144, 146, 154, 161, 167, 181, 183, 184, 188], "upload_max_files": [26, 125, 134], "upload_tmp_dir": [26, 131], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 108, 111, 127, 134, 139, 146], "upostgr": 22, "upper": 86, "upscal": [47, 48, 99], "upscaler_exampl": 99, "upstream": [59, 112, 130, 133, 135], "upward": 133, "urandom": [65, 88], "urg": [12, 145], "urgent": [2, 61, 152], "uri": [60, 69, 81, 93, 117, 119, 130, 139, 152, 157, 188], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 93, 96, 97, 98, 99, 102, 109, 111, 113, 124, 125, 126, 128, 129, 130, 133, 137, 139, 142, 144, 152, 157, 160, 161, 167, 171, 173, 181, 185, 189], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 154, 188], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 61, 64, 65, 66, 68, 69, 71, 72, 74, 76, 77, 78, 79, 80, 82, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 109, 111, 112, 113, 114, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 161, 162, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 179, 182, 183, 184, 185, 187, 188, 189], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 108, 111, 127, 131, 133, 147, 151, 155, 157, 158, 173, 187], "use_legacy_base64_encod": 88, "use_path_styl": 48, "use_ssl": [48, 60], "usememberoftodetectmembership": 82, "usemultipartcopi": 48, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 20, 24, 26, 27, 31, 32, 33, 34, 36, 38, 39, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 75, 78, 80, 82, 91, 92, 93, 94, 97, 98, 99, 103, 104, 106, 107, 108, 109, 111, 112, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 130, 131, 132, 134, 135, 136, 138, 141, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 160, 161, 163, 164, 165, 166, 169, 173, 174, 180, 181, 187, 188, 189], "user1": 43, "user123": 119, "user2": 43, "user_agent_client_desktop": 93, "user_directori": 158, "user_id": [112, 154, 158], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 155], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 104, "userag": 67, "useragentstr": 93, "userdeletedev": 151, "userdirectori": 40, "userdisplaynam": 161, "userid": [2, 14, 18, 28, 76, 81, 92, 112, 115, 119, 139, 161, 188, 189], "useridfilt": [14, 157], "usermod": [59, 134], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 94, 107, 111, 112, 114, 121, 124, 126, 129, 134, 139, 141, 146, 147, 151, 154, 158], "userpassword": [81, 158], "usr": [56, 57, 59, 60, 63, 97, 125, 134, 151, 168], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 96, 122, 127, 131, 134, 136, 137, 138, 139, 143, 149, 181, 187, 188], "utc": [57, 60, 67, 118, 154, 157], "utf": 71, "utf8": [22, 60, 125, 135, 147], "utf8mb4": [20, 22, 23, 25, 88, 126, 141, 147, 152], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 126, 147], "util": [6, 8, 54, 60, 67, 93, 119, 124, 151, 187], "uuid": [81, 82, 155], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 97, 101, 130, 131, 133, 151, 154, 157, 164, 165, 166, 188], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 97, 119, 130, 133, 148], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 130, 189], "v27": [143, 149], "v28": [15, 143, 149], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 102], "v6": [60, 102], "v9": [28, 59], "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 94, 109, 121, 129, 130, 131, 138, 144, 152, 154, 155, 157, 167, 181, 189], "valkei": [45, 60, 65, 88], "valu": [1, 3, 8, 14, 15, 16, 20, 22, 23, 25, 26, 27, 28, 29, 41, 43, 44, 45, 47, 48, 49, 53, 56, 57, 59, 61, 63, 66, 67, 68, 69, 71, 72, 73, 75, 76, 81, 82, 83, 85, 88, 92, 93, 96, 97, 98, 99, 104, 108, 113, 114, 117, 118, 119, 121, 126, 127, 129, 130, 133, 134, 136, 139, 144, 152, 154, 155, 157, 161, 164, 165, 166, 181, 183, 184, 188], "value1": 60, "value2": 60, "vanish": 119, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 94, 97, 98, 108, 113, 122, 124, 125, 126, 127, 130, 131, 132, 133, 134, 136, 139, 143, 148, 149, 150, 151, 154, 157, 158, 165], "vari": [3, 4, 59, 77, 131, 134], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 94, 99, 101, 127, 133, 135, 144, 158, 161, 163, 185, 188, 189], "variable_nam": [22, 23], "variant": 56, "varieti": [1, 71, 189], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 94, 133, 139, 151, 160, 171, 174], "vboxsf": 134, "vcard": [111, 114, 115, 130], "vcf": [112, 114], "ve": [119, 133, 134, 178, 187], "vector": [3, 29, 51, 127, 184], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 187, "vendor": 133, "verbatim": [121, 144], "verbos": [56, 67, 94, 133, 151, 154, 157], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 94, 139, 155, 189], "verif": [58, 63, 65, 88, 119, 138, 161], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 94, 96, 100, 117, 121, 122, 124, 126, 127, 131, 132, 133, 134, 137, 138, 143, 144, 145, 148, 153, 156, 157, 161, 163, 173, 181, 187], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "verify_peer_off": 161, "versatil": 120, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 16, 17, 22, 23, 24, 26, 28, 29, 30, 32, 33, 46, 48, 49, 52, 56, 57, 59, 63, 65, 67, 72, 73, 75, 76, 77, 81, 82, 85, 88, 93, 96, 99, 111, 113, 114, 117, 118, 119, 121, 122, 124, 125, 126, 127, 130, 131, 133, 134, 137, 138, 143, 144, 145, 146, 148, 149, 150, 151, 152, 157, 161, 164, 165, 166, 167, 171, 176, 184, 185, 186, 188], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 108, 154], "versionstr": [151, 157], "vevent": 188, "vhd": 134, "vhdx": 134, "vhost": 139, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 27, 40, 43, 44, 46, 48, 49, 53, 56, 57, 58, 59, 60, 63, 65, 67, 68, 74, 77, 80, 83, 84, 85, 86, 87, 88, 92, 94, 95, 97, 102, 107, 108, 109, 111, 112, 113, 115, 117, 119, 127, 128, 129, 130, 131, 133, 136, 137, 139, 142, 144, 149, 152, 154, 156, 158, 160, 161, 162, 163, 168, 175, 181, 182, 183, 184, 187, 188, 189], "video": [1, 2, 15, 47, 60, 88, 120, 131, 135, 157, 175, 176], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 94, 112, 122, 139, 155, 157, 161], "viewer": [18, 60, 67, 161, 189], "virtual": [2, 48, 60, 88, 92, 93, 97, 127, 128, 133, 136, 144], "virtualbox": 134, "virtualhost": [93, 124, 125, 127, 134, 167], "viru": [56, 94], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 100, 111, 115, 118, 139, 147, 161, 181, 182, 183, 184, 187, 188], "visible\u00b9": 158, "vision": [1, 5], "visit": [57, 102, 117, 124, 134, 146, 148, 149], "visitor": [77, 127], "visual": 12, "vm": [133, 134, 149], "vmdk": 134, "vmp": 134, "vmware": 134, "vnd": 130, "vo": 125, "voic": 88, "volum": [56, 60, 99, 112, 135, 165], "volunt": 187, "vosk": 4, "vote": 2, "vp": [88, 128], "vpn": 97, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 96], "vtodo": 188, "vtt": 130, "vulkan": 3, "vulner": [127, 187], "vv": [151, 154], "vvv": [119, 139, 151, 154], "w": [28, 93, 125, 127, 167, 172], "wa": [7, 8, 10, 12, 14, 15, 16, 18, 20, 22, 28, 40, 43, 50, 53, 57, 58, 59, 60, 67, 69, 74, 76, 81, 88, 96, 97, 106, 111, 114, 117, 118, 119, 121, 131, 134, 138, 139, 144, 145, 146, 147, 148, 149, 150, 153, 157, 158, 181, 182, 183, 184, 185, 188], "waf": 93, "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 94, 96, 97, 102, 109, 111, 113, 127, 130, 133, 134, 139, 143, 147, 149, 153, 165, 170, 182, 183, 184], "wait": [4, 8, 53, 60, 99, 133, 144, 149, 154, 156, 187, 189], "wait_timeout": [22, 60], "wal": 60, "walk": [124, 134], "walkthrough": 152, "want": [2, 5, 6, 7, 15, 16, 20, 22, 26, 31, 34, 40, 41, 43, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 62, 63, 66, 67, 69, 72, 81, 83, 84, 85, 91, 92, 94, 96, 97, 100, 104, 109, 112, 114, 117, 120, 121, 124, 125, 127, 129, 132, 134, 135, 136, 137, 138, 139, 148, 149, 150, 151, 153, 154, 157, 158, 167, 173, 174, 178, 184, 187, 188, 189], "wantedbi": [15, 57, 188], "warm": 133, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 94, 111, 124, 127, 129, 130, 133, 134, 138, 139, 145, 146, 151, 153, 154, 157, 173, 183], "wasm": 130, "watch": [58, 157], "watermark": [88, 160], "watsonx": [1, 8, 12, 13, 15, 88], "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 20, 22, 25, 26, 38, 39, 44, 47, 57, 60, 63, 70, 81, 88, 94, 97, 119, 124, 125, 127, 129, 130, 131, 133, 134, 139, 145, 149, 151, 167, 173, 181, 183, 185, 187, 189], "weak": 129, "weaken": 64, "weather": [2, 14, 127], "web": [2, 5, 7, 9, 10, 11, 16, 24, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 94, 96, 97, 100, 109, 115, 117, 119, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 133, 140, 142, 143, 144, 149, 151, 153, 154, 156, 157, 158, 172], "webauthn": 88, "webcal": [60, 152], "webcalallowlocalaccess": 113, "webcron": [53, 88, 150, 157], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 94, 109, 112, 119, 127, 130, 134, 140, 157], "webdavf": 60, "webfing": [125, 139], "webhook": [88, 151, 189], "webhook_listen": [157, 188, 189], "webhookcal": 188, "webhooklisten": 188, "webinterfac": 130, "webm": 130, "webmail": 132, "webp": [60, 130, 133, 134, 182], "webp_qual": 133, "webpag": 130, "webroot": [8, 60, 69, 88, 128], "webserv": [26, 27, 57, 59, 60, 69, 88, 124, 127, 130, 134, 135, 170, 184], "websit": [14, 55, 64, 70, 76, 77, 81, 111, 127, 139], "websitescop": 77, "websocket": [96, 167], "webspac": 134, "wednesdai": 2, "week": [2, 44, 56, 187], "weekli": 53, "weight": [12, 15, 24, 60], "welcom": [12, 60, 88, 120], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 24, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 119, 124, 125, 130, 132, 133, 134, 136, 139, 143, 144, 146, 148, 173, 178, 187, 188, 189], "went": [143, 144], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 69, 113, 118, 131, 138, 139, 148, 149, 153, 154, 157, 181], "west": [31, 48], "wget": [124, 126, 137, 164, 166, 168, 181], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 94, 96, 97, 109, 111, 112, 127, 133, 139, 142, 154, 157, 189], "whatev": [20, 43, 60, 130, 148], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 29, 32, 33, 35, 38, 40, 41, 43, 44, 45, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 66, 67, 69, 70, 71, 72, 80, 81, 82, 84, 85, 88, 92, 93, 95, 96, 97, 102, 103, 106, 107, 108, 109, 111, 113, 114, 115, 117, 119, 121, 122, 124, 126, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 160, 161, 165, 167, 173, 175, 181, 184, 187, 188, 189], "when_requir": [60, 184], "when_support": 60, "whenev": [40, 43, 44, 93, 133, 139, 187, 188], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 24, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 94, 96, 97, 112, 113, 115, 117, 122, 124, 126, 127, 134, 136, 137, 139, 143, 145, 148, 151, 152, 153, 154, 156, 157, 161, 173, 174, 185, 187, 188, 189], "wherev": [91, 144], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 96, 102, 107, 115, 117, 127, 130, 133, 136, 150, 153, 154, 155, 157, 158, 187], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 24, 25, 26, 28, 29, 31, 32, 38, 40, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 73, 76, 80, 81, 82, 85, 92, 94, 96, 97, 98, 100, 102, 109, 111, 115, 117, 119, 124, 125, 127, 130, 131, 132, 133, 134, 135, 138, 139, 144, 145, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 164, 168, 170, 174, 175, 183, 184, 185, 187, 188, 189], "whichev": [60, 69, 154], "while": [1, 4, 5, 11, 15, 19, 24, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 69, 77, 81, 102, 119, 127, 133, 134, 144, 146, 148, 149, 150, 151, 152, 156, 187, 188], "whisper": [13, 15, 88, 176], "whiteboard": 15, "whitelist": [58, 92, 129], "whitespac": [92, 155], "who": [2, 3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 69, 77, 81, 85, 111, 114, 115, 122, 139, 152, 157, 158, 161, 188], "whole": [39, 88, 96, 97, 113, 119, 124, 128, 147], "whom": [12, 111], "whose": [44, 53, 67, 154, 188], "why": [38, 64, 88, 112, 119, 154], "wide": [28, 60, 80, 111, 127, 133, 157, 162], "widenetworkaddress": 97, "wider": 96, "widespread": 187, "widget": [61, 174, 175], "width": 60, "wiki": [60, 134, 146], "wikipedia": 60, "wildcard": [60, 129, 155], "win": 56, "windmil": 88, "window": [15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 94, 108, 120, 128, 135, 183, 188], "wipe": 73, "wise": 119, "wish": [22, 28, 37, 54, 59, 60, 85, 94, 113, 129], "within": [12, 22, 24, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 94, 98, 112, 113, 114, 115, 120, 127, 130, 131, 133, 135, 136, 138, 139, 143, 151, 152, 154, 158, 161, 187], "without": [6, 15, 27, 28, 29, 38, 40, 43, 44, 49, 53, 54, 56, 57, 58, 60, 67, 68, 69, 70, 71, 73, 81, 85, 88, 92, 95, 96, 97, 98, 103, 107, 108, 109, 112, 113, 114, 117, 121, 122, 127, 129, 131, 133, 134, 139, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 166, 170, 175, 179, 181, 182, 188], "wizard": [22, 41, 60, 63, 82, 88, 122, 124, 125, 128], "wjalrxutnfemi": 154, "woff2": 130, "won": [15, 43, 60, 81, 113, 145], "wopi": [88, 164, 165, 166, 167, 168, 173], "wopi_en": 165, "word": [7, 51, 77, 92, 131], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 24, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 94, 96, 99, 102, 103, 113, 120, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 143, 145, 146, 149, 150, 151, 152, 155, 157, 158, 170, 173, 174, 179, 188], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 133, 165, 188, 189], "workflow": [65, 88, 92, 103, 151, 158, 188], "workflowengin": [67, 104, 157], "workload": [45, 96], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 97, 187], "worm": 56, "worri": 3, "wors": [60, 133], "worst": [15, 94], "worthi": 58, "would": [5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 96, 97, 100, 113, 114, 119, 130, 139, 144, 147, 148, 150, 154, 171, 181], "wrap": [153, 157], "wrapper": [63, 151], "writabl": [16, 34, 50, 60, 122, 134, 144, 148, 152, 153, 154], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 94, 113, 117, 120, 121, 122, 124, 128, 134, 138, 148, 150, 153, 154, 161, 189], "writeabl": 127, "written": [3, 24, 29, 30, 60, 67, 92, 93, 96, 111, 114, 119, 121, 127, 129, 144, 152, 154, 189], "wrong": [14, 28, 43, 60, 79, 81, 138, 139, 143, 145, 154, 173], "wsdlcach": 130, "wss": [4, 167], "wurst": 119, "www": [1, 8, 15, 19, 20, 23, 26, 28, 34, 40, 51, 53, 55, 56, 57, 59, 60, 67, 68, 73, 78, 80, 81, 83, 87, 108, 109, 112, 113, 114, 119, 121, 122, 124, 125, 126, 127, 130, 131, 132, 134, 136, 137, 139, 141, 143, 145, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 168, 170, 185, 188], "wwwhomepag": 81, "wwwrun": [57, 151], "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 53, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 97, 102, 124, 126, 127, 129, 130, 139, 145, 151, 184, 185, 187, 188], "x11": 67, "x64": 92, "x86": [4, 6, 11, 133], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 152, "xeon": [7, 10], "xeu": [15, 188], "xhtml": 130, "xjf": 143, "xjvf": 126, "xl": [15, 169], "xlii": 82, "xloc": 130, "xlsx": [162, 169], "xml": [60, 88, 99, 119, 126, 130, 131, 133, 152, 160, 168, 171, 188], "xmlreader": 131, "xmlwriter": 131, "xoauth2": [63, 88, 116], "xss": 184, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 124, 126, 127, 141, 143, 148, 149, 153, 154, 157, 164, 166, 185], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 104, 107, 113, 118, 139, 145, 150, 154, 158, 173], "year": [73, 135, 187], "yellow": [15, 40, 41, 81, 88], "yet": [1, 4, 15, 24, 54, 60, 65, 68, 81, 88, 92, 138, 144, 153, 154, 156, 157, 176], "yield": 60, "yml": 161, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 79, 80, 81, 83, 84, 85, 86, 88, 91, 92, 94, 96, 97, 99, 100, 102, 103, 104, 106, 108, 109, 111, 112, 113, 114, 117, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 167, 168, 173, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 24, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 77, 78, 79, 80, 81, 83, 84, 86, 88, 91, 92, 94, 95, 96, 97, 100, 102, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 122, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 171, 173, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [119, 173], "yourself": [5, 56, 92, 127, 148], "yourserv": 94, "yourswifthost": 60, "youtub": [2, 120], "yum": [56, 124], "yyyi": [81, 152, 154], "yyyymmdd": 81, "z": [85, 92, 115, 124, 126, 127, 143, 149, 185], "z0": 81, "za": 81, "zammad": [175, 176], "zend": 59, "zero": [29, 158], "zip": [56, 85, 94, 102, 112, 124, 126, 131, 143, 148], "zlib": 131, "zone": [97, 118, 124], "zsh": 151, "zshrc": 151, "\u00b2": 158, "\u00b9": 158}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Legal: Compliance with EU AI Act", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "Apps management API", "Collectives", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "External Storage", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Monitoring", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for groups", "Instruction set for users", "Profiles", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Desktop Clients", "Desktop Client Deployment and Setup", "Block desktop client access at the HTTP layer", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "Data retention", "Helpful apps", "GDPR compliance", "Personal data stored", "Responding to data subject requests", "Calendar / CalDAV", "Contacts / CardDAV", "Contacts Interaction", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Automated installation with autoconfig.php", "Install from the command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 24.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Apps, background jobs & config commands", "Using the occ command", "DAV & database commands", "Encryption commands", "Files commands", "LDAP commands", "OCM commands", "System & maintenance commands", "User & group commands", "Collabora Online", "Configuration", "Configuration", "Nextcloud Office", "Installation", "Installing on Debian 12", "Installing via Docker", "Installing on Ubuntu 24.04 LTS", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 35", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "0": 93, "04": [126, 166, 168], "1": [69, 164, 166], "10": 130, "11": 55, "12": [55, 164], "15": 112, "16": 112, "17": 112, "18": 112, "1st": [134, 146], "2": [11, 69, 93, 124, 133, 164, 166], "20": 112, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [126, 166, 168], "26": 179, "27": 180, "28": 181, "3": [97, 130, 164, 166], "30": 182, "31": 183, "32": 184, "33": 185, "34": 93, "35": 186, "3rdparti": 139, "4": [23, 93, 164, 166], "5": [164, 166], "502": 130, "512mb": 26, "6": [164, 166], "64bit": 19, "7": 164, "8": [124, 125], "No": 92, "Not": [28, 138], "The": [58, 68, 70, 82, 115, 176], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 152, "abus": 117, "access": [3, 22, 68, 69, 70, 93, 102, 112, 127, 130, 132, 160], "accessible_featur": 60, "account": [92, 109, 111, 117, 119, 158], "account_manag": 60, "act": 12, "action": [6, 103, 127], "activ": [53, 58, 60, 81, 108, 111, 156, 182, 183, 184], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 117, "add": [68, 76, 138, 152, 157, 158, 168], "addendum": 5, "addit": [12, 59, 67, 81, 98, 134, 160], "address": [58, 63, 85, 114, 115, 127, 180, 184], "addressbook": [152, 154], "addus": 158, "adjust": 26, "admin": [53, 67, 70, 78, 127, 157], "admin_audit": 67, "administr": [54, 81, 85, 114], "advanc": [43, 67, 81, 92, 95, 99, 161], "advantag": 135, "after": [53, 92, 139, 147], "ag": [44, 106], "agent": [1, 2, 15, 185], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [97, 98], "ajax": 57, "alarm": 113, "alert": 117, "alias": 51, "all": [28, 60, 63, 97, 127, 153], "allow": [18, 40, 70, 113, 132], "allow_custom_share_fold": 60, "allow_disabled_password_enforcement_group": 60, "allow_local_remote_serv": 60, "allow_user_to_change_display_nam": 60, "allowed_admin_rang": 60, "allowed_no_password_confirmation_rang": 60, "allowed_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 150], "android": 55, "ani": 130, "anoth": 43, "answer": [164, 166], "anti": 117, "antiviru": [56, 157], "anymor": 138, "apach": [26, 93, 124, 134, 167], "apache2": 69, "apcu": 59, "api": [16, 17, 82, 87], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 28, 53, 56, 58, 60, 61, 63, 67, 71, 73, 88, 96, 109, 133, 135, 137, 138, 139, 150, 154, 160, 161, 167, 182, 183, 188], "app_api": [182, 183, 184], "appapi": [96, 182, 183, 184], "appcodecheck": 60, "appear": [72, 175], "appli": 137, "applic": [68, 131, 154], "approach": [92, 149], "approv": 189, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [24, 40, 53, 70, 115], "architectur": 135, "archiv": 94, "argument": [98, 99], "around": 22, "arrai": 150, "articl": 112, "artifici": [2, 13], "ask": [15, 173], "assetlink": 55, "assign": [103, 158], "assist": 1, "attach": 117, "attempt": [60, 157], "attribut": 81, "audienc": 120, "audit": [67, 111], "auth": [60, 158], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 117, 158, 189], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 151, "autoconfig": [119, 121, 129], "autom": [73, 103, 121, 182], "automat": [92, 129], "avail": [40, 102, 103], "avatar": [81, 158], "avoid": 130, "awai": 22, "azur": [48, 117], "backend": [15, 28, 40, 60, 113, 154], "background": [44, 49, 56, 57, 81, 113, 117, 133, 134, 150, 157], "background_jobs_expiration_dai": 60, "backtrac": 60, "backup": [28, 48, 81, 108, 141, 147], "bad": [28, 130], "balanc": 58, "bare": 97, "base": [32, 59, 67, 133, 148], "basic": [67, 94], "batch": 148, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 187, "better": 53, "between": [43, 189], "beyond": 63, "big": 26, "bigint": [19, 152], "bin": [49, 60, 108, 113, 154], "binary_search_path": 60, "birthdai": [113, 152], "blob": 48, "block": [29, 93, 102, 189], "book": [114, 115, 180, 184], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 157, "browser": 135, "brute": 58, "bruteforc": [60, 157], "bucket": 48, "bug": [139, 187], "build": 189, "built": 148, "bulkupload": 60, "button": 113, "byte": 23, "c": 48, "cach": [45, 59, 60, 70, 81, 131, 133, 152, 158], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": [69, 93], "caldav": [70, 113, 152], "calendar": [2, 113, 119, 139, 152, 188], "call": 111, "can": [22, 63, 77, 176, 189], "candid": 187, "cannot": 28, "canon": 160, "capabl": 63, "carddav": [70, 114], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 124, "certif": [40, 63, 81, 89, 157], "chang": [40, 41, 62, 85, 92, 139, 152, 153, 178, 185], "changelog": 178, "channel": [60, 187], "charset": 152, "chat": [1, 3, 5, 8, 15, 111], "check": [29, 30, 40, 70, 100, 154, 155, 157, 181, 184], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 129, "choos": [92, 93], "chroot": 125, "chunk": [26, 183], "chunked_upload": 60, "cif": [38, 132], "cipher": 60, "circl": 2, "citrix": 94, "clamav": 56, "clean": [73, 152, 153, 182], "cleanup": [83, 154, 157, 158], "clear": [152, 158], "cli": [60, 72, 98, 131], "client": [40, 72, 91, 92, 93, 94, 135, 147], "close": 94, "cloud": [26, 60, 139], "clue": 130, "cluster": [59, 60], "code": [60, 138, 157], "collabor": 106, "collabora": [159, 160, 167, 171], "collat": 60, "collect": [18, 88], "column": 152, "com": 119, "combin": 2, "command": [3, 22, 28, 50, 58, 94, 114, 122, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 185], "comment": [60, 133], "commit": [22, 70], "common": [92, 102, 106, 139, 161], "commun": 97, "comparison": 28, "compat": [50, 154], "complet": [121, 129], "complianc": [12, 110], "compon": [120, 164], "compound": 67, "compress": 133, "condit": [60, 67, 69], "config": [59, 63, 77, 94, 127, 150, 154, 155, 157, 161], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 16, 18, 21, 22, 24, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 97, 104, 117, 127, 128, 130, 131, 132, 133, 134, 150, 160, 161, 167, 168, 171, 179, 180, 181, 182, 183, 184], "confirm": 56, "connect": [24, 59, 81, 84, 94, 119, 121, 122, 127, 189], "connectivity_check_domain": 60, "connector": [131, 161], "consequ": 50, "consider": [32, 68], "consumpt": 89, "contact": [2, 114, 115, 119, 139, 152], "contain": [97, 100], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "contrib": 164, "control": [3, 44, 102, 153], "convers": [20, 42, 152], "convert": [20, 152], "cookbook": 2, "cooki": [70, 107], "cookie_domain": 60, "copi": 154, "copied_sample_config": 60, "core": [60, 94, 120, 154], "count": [182, 183, 184], "cpu": 135, "creat": [22, 41, 43, 55, 75, 82, 85, 94, 152, 154, 155, 164, 166, 189], "creation": [44, 129, 152], "critic": 178, "cron": [57, 125, 133, 157], "csrf": 60, "css": 130, "csync": 94, "current": 2, "custom": [2, 16, 72, 113, 148, 160, 161], "customclient_desktop": 60, "cybersecur": 12, "daemon": [96, 97, 98, 100], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 108, 109, 111, 112, 113, 114, 115, 119, 121, 127, 129, 139, 147, 152, 153, 154, 157, 158, 165], "databas": [20, 21, 22, 25, 53, 60, 70, 119, 121, 122, 124, 125, 129, 131, 132, 133, 135, 141, 147, 152, 164, 166, 183], "datadirectori": [60, 139], "date": 43, "dav": [152, 179], "davstorag": 60, "db": [60, 152, 157], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debian": 164, "debug": [14, 60, 63, 67, 94, 127, 133, 139, 151], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 153], "dedic": [67, 127], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 97, 117, 153, 160, 182, 183, 185], "default_certificates_bundle_path": 60, "default_languag": 60, "default_local": 60, "default_phone_region": 60, "default_property_scop": 60, "default_timezon": 60, "defaultapp": 60, "defin": 69, "definit": 28, "delai": 38, "deleg": [54, 117, 157], "delet": [49, 60, 75, 76, 82, 83, 85, 115, 150, 152, 154, 155, 157, 158], "demand": 67, "demot": 76, "deni": 102, "depend": [18, 154], "deploi": [95, 96, 97, 98, 99, 100], "deploy": [59, 92, 97, 123, 127], "deployconfig": 98, "deriv": 29, "desktop": [40, 60, 91, 92, 93, 135], "detail": 29, "detect": [6, 40, 56, 130], "determin": 63, "dev": [70, 127], "develop": 120, "diagnost": 60, "did": 138, "differ": [48, 63, 144], "directori": [16, 59, 81, 121, 127, 129, 132, 139], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 99, 117, 127, 139, 152, 153, 158], "disallow": 132, "discoveri": [69, 139], "disk": 6, "dispatch": 188, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 171], "dmz": 127, "do": [138, 148, 175], "docker": [96, 97, 165, 167, 171], "document": 15, "documentation_url": 60, "doe": [70, 148, 175], "dokuwiki": 18, "domain": [62, 63, 69, 119, 127, 129, 130, 139], "don": 28, "down": [77, 138], "downgrad": 187, "download": [100, 148, 164, 166], "drop": [43, 109, 135, 153], "due": 53, "dump": 94, "duplic": 81, "dure": [44, 149], "edit": [71, 75, 76, 120, 158, 160], "editor": 161, "email": [53, 63, 76, 85, 179], "embed": [60, 64], "empti": [70, 155], "enabl": [17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 99, 100, 127, 132, 133, 134, 151, 153, 157, 158, 160, 164, 184], "enable_lazy_object": 60, "enable_mail_link_password_expir": 60, "enable_non": 60, "enable_preview": 60, "enable_share_accept": 60, "enable_share_mail": 60, "enabledpreviewprovid": 60, "encod": [40, 71], "encrypt": [28, 29, 30, 48, 56, 60, 63, 121, 122, 133, 134, 139, 153], "end": [6, 187], "endpoint": 185, "energi": 89, "enforc": [80, 158], "enforce_them": 60, "ensur": 127, "entri": 67, "envelop": [29, 188], "environ": [60, 95, 134, 151, 165], "erasur": 112, "error": [22, 28, 94, 130, 138, 139], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [113, 119, 152, 188], "everi": 93, "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 98, 102, 103, 106, 113, 114, 121, 124, 125, 126, 133, 152, 167, 168, 189], "exapp": [96, 97, 99, 101], "exclud": [53, 58], "execut": [103, 157], "exist": [18, 77], "expand": 184, "expect": 152, "experi": 60, "expert": 81, "expir": [43, 53, 154], "explain": 67, "export": [113, 119, 152, 154, 157], "expos": 180, "extens": [59, 71, 89], "extern": [28, 32, 40, 48, 53, 64, 96, 102, 134, 154, 160], "external_storag": 60, "face": 6, "factor": [47, 80, 158], "fail": [119, 130], "fail2ban": [58, 127], "failur": [38, 92], "fair": 139, "faq": [77, 96, 138, 189], "faster": 133, "featur": [15, 92, 118], "feder": [26, 41, 60, 113, 139, 154], "field": [67, 76, 77], "file": [2, 3, 26, 27, 28, 29, 30, 38, 40, 42, 43, 44, 45, 46, 53, 56, 60, 67, 70, 71, 88, 94, 102, 103, 106, 108, 111, 130, 133, 135, 139, 154, 157, 158, 160, 181, 182, 188], "filecach": 152, "filekei": 153, "filelock": 60, "filenam": [50, 154], "files_antiviru": 157, "files_extern": 154, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 127, 188], "final": 125, "find": [22, 63], "fingerprint": [60, 157], "fix": [138, 152, 153, 154], "flow": [104, 105], "folder": [28, 40, 53, 92, 102, 141, 147, 188], "follow": 117, "font": 160, "forbidden_filenam": 60, "forbidden_filename_basenam": 60, "forbidden_filename_charact": 60, "forbidden_filename_extens": 60, "forc": [58, 60, 66], "force_languag": 60, "force_local": 60, "force_share_accept": 60, "form": [2, 188], "format": [29, 30, 60, 153], "forwarded_for_head": 60, "found": 28, "fpm": [133, 134], "freebusi": 113, "frequenc": 40, "frequent": [15, 173], "from": [18, 48, 53, 58, 63, 76, 92, 122, 145, 171], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 94, "further": [28, 120, 131], "fusef": 132, "g": 60, "gatewai": 130, "gdpr": 110, "gener": [9, 15, 22, 29, 47, 127, 131, 139], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 119, 120, 150, 152, 154, 157], "getenv": 70, "give": 127, "global": [71, 77, 119], "gone": 22, "googl": 117, "gpg": 132, "grant": 85, "greater": 130, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 102, 155, 158, 160], "group_everyon": 18, "groupwar": [88, 111, 116], "grow": 53, "guest": 18, "guidanc": 127, "ha": 22, "handl": [55, 81], "handler": [59, 130], "haproxi": [69, 93], "harden": 127, "hardwar": 12, "harp": [96, 97], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 127], "heartbeat": 100, "held": 111, "help": 109, "hidden": 38, "hide": 113, "hide_login_form": 60, "hierarch": 150, "histori": 157, "home": 59, "host": [16, 97], "how": [22, 24, 40, 58, 63, 77, 115, 149, 175], "htaccess": [60, 134, 157], "http": [70, 93, 127, 130, 133, 134], "http_client_add_user_agent_url": 60, "httpd": 125, "i": [15, 22, 28, 56, 63, 70, 127, 138, 182, 183, 189], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 119, 139, 157, 185], "ident": 84, "identifi": [19, 93, 94], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 100, 127, 165, 171], "imagick": 124, "imaginari": 182, "imap": [117, 119], "implement": [2, 12], "implic": 48, "import": [18, 92, 152, 154, 157, 168], "imprint": 109, "improv": [0, 1, 15], "inconvert": 20, "independ": 97, "index": 3, "indic": 152, "info": [17, 56, 154, 157, 158], "inform": 139, "ini": 131, "init": 100, "initi": [3, 18, 25, 89], "insecur": 94, "insert": 119, "insight": 14, "inspect": 152, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 96, 121, 122, 124, 125, 126, 127, 128, 129, 131, 134, 146, 157, 161, 163, 164, 165, 166, 167, 168, 170, 187, 188, 189], "instanc": [48, 127], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 138, 154, 184], "intellig": [2, 13], "interact": [67, 92, 115, 121], "interfac": [50, 67, 114, 117, 132], "intern": [81, 139], "interoper": 12, "interv": [81, 117], "introduct": [54, 58, 60, 120, 127, 188], "invalid": [28, 50, 63, 138, 152], "invis": 103, "invit": 113, "ip": [58, 127], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 94], "issu": [94, 119, 139, 140], "item": [49, 60, 114], "j": [130, 157], "jail": 127, "javascript": 130, "jit": 133, "job": [44, 49, 57, 113, 125, 133, 134, 150, 157], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 133, 152, 153, 156, 158, 168], "keyboard": 94, "keyvaluecach": [45, 59], "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 94, 113, 175, 176], "kubernet": [3, 97], "kvstore": 60, "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 158, "launch": 92, "layer": 93, "ldap": [28, 60, 81, 82, 83, 132, 155], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 153], "legal": 12, "length": [127, 187], "level": [22, 67, 70, 133], "libreoffic": 181, "life": 187, "lifetim": 108, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 113, 114, 117, 127, 151], "line": [94, 114, 122, 148, 157], "link": [41, 43, 55, 60, 64, 69, 175], "linux": 134, "list": [14, 17, 76, 81, 98, 99, 152, 153, 154, 156, 157, 158, 188], "listen": [63, 157, 188], "live": [4, 15], "live_transcript": 4, "llm": 117, "llm2": 5, "load": [3, 58, 60, 81, 133], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 97, 113, 117], "localstorag": 60, "locat": [29, 59, 60, 67, 129, 153], "lock": [45, 60, 70, 77, 133, 138], "log": [3, 4, 60, 67, 81, 94, 97, 100, 108, 111, 119, 130, 133, 139, 157], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 139], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 130, 134, 146], "login_flow_v2": 60, "login_form_autocomplet": 60, "login_form_timeout": 60, "loglevel": 60, "loglevel_dirty_database_queri": 60, "loglevel_frontend": 60, "logo_url": 60, "logtimezon": 60, "long": [135, 149], "look": 63, "lookup_serv": 60, "loop": 130, "lost": 78, "lost_password_link": 60, "lt": [126, 166], "machin": [1, 11, 15, 134], "maco": 94, "made": 40, "mai": 184, "mail": [2, 60, 63, 117, 119], "mail_domain": 60, "mail_from_address": 60, "mail_link_password_expiration_interv": 60, "mail_send_plaintext_onli": 60, "mail_sendmailmod": 60, "mail_smtpauth": 60, "mail_smtpdebug": 60, "mail_smtphost": 60, "mail_smtpmod": 60, "mail_smtpnam": 60, "mail_smtppassword": 60, "mail_smtpport": 60, "mail_smtpsecur": 60, "mail_smtpstreamopt": 60, "mail_smtptimeout": 60, "mail_template_class": 60, "mailbox": 117, "mainten": [60, 88, 122, 141, 142, 149, 151, 152, 153, 157, 187], "maintenance_window_start": [57, 60], "major": 187, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 60, 74, 85, 98, 99, 101, 131, 133, 134, 152, 157, 174], "managerfactori": 60, "mandatori": 138, "manual": [8, 56, 119, 134, 143, 149], "map": [51, 81], "mariadb": [22, 121, 135, 141, 147], "mark": [56, 157], "master": [29, 153], "match": 67, "matrix": 77, "max": [43, 60], "max_file_conversion_files": 60, "max_filesize_animated_gifs_public_shar": 60, "max_parallel_count": 60, "max_siz": 60, "maxautocompleteresult": 60, "maximum": [47, 60, 134, 183], "mcp": 2, "me": [107, 108], "mechan": 32, "media": [131, 134], "member": 75, "memberof": 81, "memcach": [59, 60, 132], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 135], "merg": 60, "messag": [94, 130, 138, 139], "metadata": 111, "metadata_max_files": 60, "metal": 97, "method": 28, "mib": 130, "microsoft": [48, 81, 117], "migrat": [25, 30, 117, 144, 145, 149, 153, 171], "mimetyp": [51, 157], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [102, 106], "miss": [40, 53, 119, 152], "mkdir": 154, "mobil": 135, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 127, 133, 141, 148, 149, 151, 157], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [45, 124, 127, 131, 139, 153], "monitor": [52, 181, 182, 183, 184], "mount": [40, 95, 154], "mountpoint": 28, "move": [139, 152, 154], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multimod": [1, 5], "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 119, 121, 135, 141, 147, 152], "name": [40, 70, 139], "nc": 97, "need": 184, "nest": 81, "network": [113, 132], "new": [18, 41, 76, 77, 85, 160], "next": 126, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 45, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 94, 97, 98, 107, 120, 124, 125, 127, 130, 137, 138, 139, 143, 160, 162, 167, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189], "nf": 132, "nginx": [26, 69, 93, 130], "no_unsupported_browser_warn": 60, "node": 188, "non": [92, 121, 139], "nor": 130, "note": [59, 81, 88, 125, 131, 137, 177, 178], "notif": [16, 38, 43, 53, 113, 149, 154], "notifi": 154, "now": [182, 183], "nss": 70, "o": 135, "oauth": 117, "oauth2": [68, 157], "object": [6, 26, 36, 48, 60, 154, 188], "objectstor": 60, "obtain": [94, 137], "occ": [3, 16, 28, 50, 58, 81, 98, 151, 161], "ocm": 156, "off": 81, "offic": [88, 118, 152, 160, 162, 169, 181], "old": [30, 135], "older": 93, "olmo": 5, "one": [63, 97], "onli": [63, 70], "onlin": [159, 160, 167, 171], "ooxml": 160, "opcach": 133, "open": [5, 138], "openai": 0, "openbsd": 125, "openid": 84, "openmetr": [52, 185], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [127, 154, 157], "option": [3, 28, 40, 60, 67, 81, 92, 95, 98, 99, 122, 124, 154, 160], "optout": 60, "organ": 59, "orphan": [153, 154], "other": [15, 60, 94, 119, 134, 139], "out": [22, 63, 118, 152], "outdat": 70, "outgo": 185, "outlook": 119, "output": [17, 75, 76, 82], "outsid": [40, 127], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 134, 143, 149, 187, 188], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 145, "owner": [154, 157], "ownership": 154, "packag": [134, 146, 164, 166, 168, 171], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 121, 133], "part_file_in_storag": 60, "parti": 111, "pass": [70, 189], "password": [32, 73, 78, 79, 85, 86, 127, 182], "passwordsalt": 60, "patch": 137, "path": [40, 60, 70, 139], "payload": 188, "pdf": 182, "per": [48, 81, 119], "perform": [0, 48, 133], "permiss": [40, 81], "persist": [43, 165], "person": 111, "pgsql_ssl": 60, "photo": [6, 152], "php": [26, 45, 59, 63, 70, 77, 117, 121, 124, 125, 127, 130, 131, 133, 134, 135, 139, 161, 183], "phpredi": [45, 59], "physic": 12, "picker": 176, "pickup": [1, 15], "place": 127, "podman": 97, "point": 28, "polici": [86, 93, 139], "pomerium": 69, "port": 63, "portabl": 112, "postgresql": [22, 121, 141, 147], "pre": [68, 164, 166], "preced": 77, "preconfigur": 92, "prefer": 117, "prefix": [59, 70], "prepar": 131, "prerequisit": [127, 134, 149, 164, 165, 166], "pretti": 134, "prevent": [64, 102], "preview": [47, 60, 127, 133, 154, 160, 175, 181, 182, 183, 184, 185], "preview_concurrency_al": 60, "preview_concurrency_new": 60, "preview_expiration_dai": 60, "preview_ffmpeg_path": 60, "preview_ffprobe_path": 60, "preview_imaginary_kei": 60, "preview_imaginary_url": 60, "preview_libreoffice_path": 60, "preview_max_filesize_imag": 60, "preview_max_i": 60, "preview_max_memori": 60, "preview_max_x": 60, "previou": 143, "primari": [48, 152], "privaci": 114, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [94, 119, 139], "process": [1, 15, 112, 117, 133, 134, 157], "profil": [60, 77, 81, 111, 158], "project": 60, "promot": 76, "prompt": 15, "proper": 127, "properli": [70, 130], "properti": [77, 114], "protect": [58, 60, 184], "protocol": 63, "provid": [15, 27, 63, 80, 84, 175, 176], "provis": [87, 92], "proxi": [58, 60, 69, 96, 97, 130, 167, 171, 172], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 106, 113], "pull": 100, "put": 154, "qmail": 63, "qualiti": 47, "queri": 24, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 173], "queue": 56, "quick": [129, 131, 165], "quickstart": 146, "quota": [85, 139], "quota_include_external_storag": 60, "rainloop": 132, "rang": 127, "rate": [6, 8, 11, 15, 60, 113, 114], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 127], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 115, "recogn": 6, "recognit": 6, "recommend": [59, 92, 123, 131], "recov": 153, "recoveri": [28, 29, 48, 147], "rectif": 112, "redi": [45, 59, 60, 124, 125, 133], "redirect": 127, "redis_log_fil": 60, "reduc": 133, "reduce_to_languag": 60, "refer": [53, 77, 131, 151, 174], "reference_opengraph": 60, "refresh": [113, 154], "regist": [98, 99, 100, 188], "regular": 44, "reject": 63, "relat": [1, 127], "releas": [60, 88, 93, 143, 177, 178, 187], "reliabl": [12, 40], "rememb": [107, 108], "remember_login_cookie_lifetim": 60, "remind": [113, 117, 152, 154], "remirepo": 124, "remnant": 155, "remot": [97, 127, 132, 154], "remov": [76, 80, 152, 157], "removeus": 158, "renam": [40, 85], "repair": [153, 154, 157], "replac": 133, "replic": [24, 60], "report": [158, 187], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 168], "request": [60, 93, 109, 112, 185], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 124, 131, 135, 164, 166, 179, 180, 181, 182, 183, 184, 185, 186], "rescan": 138, "resend": 76, "reset": [78, 79, 85, 157], "resetpassword": 158, "resolv": 70, "resourc": [113, 120, 131], "respond": 112, "respons": 70, "restor": [147, 154], "restrict": [103, 112, 127, 160], "retent": [106, 108, 113, 114, 115, 152, 179], "retir": 156, "retriev": 51, "return": [70, 157], "revalid": 133, "revers": [58, 69, 97, 167, 171, 172], "revert": 137, "rewritebas": 60, "rich": 71, "right": [92, 112], "robust": 12, "room": 113, "root": [127, 153], "rotat": [60, 97, 156], "rout": 24, "rule": [3, 77, 93, 102, 103], "run": [5, 20, 70, 149, 151, 157], "runtim": 18, "s3": [31, 48, 184], "same": 97, "sampl": 60, "sanit": [50, 154], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 153, 154, 157], "scanner": 56, "schedul": [53, 117, 187], "schema": 152, "scope": [24, 77, 114], "screen": [15, 188], "script": [134, 189], "seal": 29, "search": [2, 15, 75, 76, 155], "secret": [60, 67], "secur": [12, 60, 68, 70, 97, 127, 157, 160, 161], "see": [28, 77], "seed": [164, 166], "selector": 150, "self": [16, 40, 63], "selinux": [124, 127, 132, 134], "send": [63, 117, 152], "sendmail": [63, 132], "sensit": 38, "sent": 53, "sentinel": 60, "serv": [127, 130], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 94, 108, 111, 113, 117, 127, 128, 132, 133, 134, 135, 137, 139, 144, 160, 161, 167, 179, 180, 181, 182, 184], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 111, 139, 188], "session": [15, 59, 60, 108, 111, 188], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 113, 124, 131, 133, 134, 150, 152, 153, 155, 157, 158, 160, 161, 189], "setup": [8, 59, 60, 92, 96, 121, 127, 157, 181, 184], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 69, 113, 114, 117, 119, 139, 152, 154, 157], "share_fold": 60, "ship": 139, "shortcut": 94, "show": [153, 155, 157], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [117, 119], "sign": [29, 40, 63, 138, 154, 168], "signatur": [28, 29, 148], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 150], "site": [64, 70], "size": [26, 47, 117, 133, 134, 139, 154, 183], "skeletondirectori": 60, "skip": 68, "slot": 156, "slow": [15, 133], "small": 59, "smart": 176, "smb": [38, 132], "smtp": [63, 117, 119, 132], "snap": [134, 146], "snooz": 117, "snowflak": [157, 185], "socket": [59, 96, 97, 130], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 138], "space": [3, 6, 8, 11, 134, 157], "special": [32, 81], "specif": [63, 81, 102, 127, 131, 160], "speech": [1, 7, 10, 15], "speed": [1, 15, 188], "split": [25, 29], "sql": 22, "sqlite": [60, 121, 133, 141, 147], "sse": 48, "ssl": [22, 60, 81, 122, 127, 134], "stage": 156, "standalone_window": 60, "standard": 93, "start": [88, 100, 120, 129, 165], "starttl": 63, "stat": 157, "state": 158, "statu": [100, 153, 157], "step": [28, 125, 126, 143, 149, 164, 166, 189], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 102, 127, 153, 154, 157], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 107, 111, 154], "storecryptedpassword": 60, "strict": [70, 127], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 130, "subdirectori": 69, "subject": 112, "subscript": [113, 152], "summar": 8, "summari": [8, 92, 108, 117], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 135, 187], "supporteddatabas": 60, "suppress": 130, "suspend": 189, "swift": 48, "switch": 11, "sync": [38, 81, 94, 113, 114, 117, 139, 152, 154, 158, 179], "synchron": [70, 119], "synchronis": 147, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 114, 127, 133, 134, 135, 152, 157, 158, 164, 166, 179, 180, 181, 182, 183, 184, 185, 186, 188], "systemd": [15, 57, 67, 188], "t": 28, "tab": 81, "tabl": [20, 88, 108, 131, 188], "tag": [103, 106, 158, 165, 188], "talk": [2, 4, 8, 111, 135], "target": [20, 120], "task": [1, 2, 14, 15, 56, 157], "taskprocess": [157, 185], "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63, 161], "templatedirectori": 60, "temporari": 67, "term": 135, "test": [60, 63, 70, 81, 100, 155], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": [93, 130], "thei": 175, "theme": [60, 63, 72, 109, 157], "thi": 70, "third": 111, "though": 63, "thread": [117, 119], "threshold": 60, "through": [67, 130], "timeout": [16, 117, 119], "tip": [41, 81, 130, 134, 146], "tl": [59, 81, 117, 122, 133], "tmux": [15, 188], "token": [68, 84, 108, 113, 114, 127, 158, 179], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "touch": 154, "track": 115, "traefik": 69, "traffic": 127, "transact": [22, 45, 70, 133], "transcript": [4, 15], "transfer": [43, 154], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 117], "translate2": 11, "transpar": 12, "transport": [70, 127], "trash": [49, 60, 108, 113, 154], "trashbin": 154, "trashbin_retention_oblig": 60, "tree": 154, "trick": [81, 130], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 94, 119, 132, 133, 137, 139, 140, 143, 148, 173], "truena": 134, "trust": [41, 69, 129, 130], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 133, "turn": 81, "two": [80, 158], "twofactorauth": 158, "type": [20, 29, 59, 60, 67, 113, 152, 157, 187], "ubuntu": [126, 166, 168], "umask": 60, "unabl": 119, "unencrypt": 127, "unified_search": 60, "uninstal": [136, 164, 165, 166], "unix": [59, 130], "unknown": 94, "unlink_on_trunc": 60, "unregist": [98, 99], "unscan": 56, "unseal": 29, "unshar": 152, "untrust": 130, "up": [70, 73, 117, 124, 134, 152, 182, 188, 189], "updat": [16, 25, 38, 60, 92, 99, 119, 132, 139, 148, 149, 157, 164, 165, 166, 167, 171, 184], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 135, 143, 146, 148, 149, 157, 171, 179, 180, 181, 182, 183, 184, 185, 186, 187], "upload": [26, 38, 102, 130, 134], "urandom": [70, 127], "url": [60, 69, 134, 148], "us": [2, 12, 15, 16, 22, 40, 43, 45, 50, 59, 60, 63, 67, 70, 81, 84, 117, 127, 130, 133, 139, 148, 151, 160, 176, 181], "usag": [3, 6, 8, 11, 40, 54, 58, 98, 160], "use_legacy_base64_encod": 60, "user": [18, 22, 28, 29, 40, 43, 53, 60, 74, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 102, 114, 115, 117, 129, 139, 153, 155, 158, 182, 183, 184, 185], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 96], "valid": 84, "valkei": 59, "valu": [60, 77, 150, 189], "variabl": [40, 60, 95, 134, 151, 165], "verif": [60, 81, 117, 148], "verifi": [77, 93, 154, 158, 164, 166], "version": [44, 60, 70, 108, 135, 139, 153, 154, 187], "versions_retention_oblig": 60, "via": [8, 28, 41, 69, 70, 72, 81, 132, 134, 146, 148, 165], "video": 6, "view": 160, "virtual": 134, "visibl": 77, "voic": 1, "vp": 134, "wa": 85, "warn": [68, 70], "watermark": 161, "watsonx": 0, "we": [135, 138], "web": [26, 50, 60, 63, 67, 70, 108, 111, 127, 132, 134, 135, 139, 148, 179, 180, 181, 182, 184], "webauthn": 60, "webcron": 57, "webdav": [39, 139], "webhook": [157, 188], "webroot": [130, 160], "webserv": 94, "welcom": [76, 158], "well": 70, "what": [5, 63, 77, 148], "when": [12, 77, 94, 130], "where": [175, 176], "whisper": 7, "who": 120, "whole": 132, "why": [15, 28, 40, 63, 135, 138], "windmil": [15, 189], "window": [50, 92, 134, 154], "without": 130, "wizard": [92, 129, 134], "wopi": 160, "work": [22, 40, 56, 58, 175], "worker": [157, 185], "workflow": [15, 67, 157, 189], "workspac": [71, 94, 189], "write": 132, "xml": [17, 75, 76, 82], "xoauth2": 117, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 119, 127, 133]}})
\ No newline at end of file
+Search.setIndex({"alltitles": {".htaccess": [[134, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[134, "st-login"], [146, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[111, "account-data"]], "Account delegation": [[117, "account-delegation"]], "Activating": [[58, "activating"]], "Activities are missing for shared files or team folders": [[53, "activities-are-missing-for-shared-files-or-team-folders"]], "Activities in Team Folders or External Storages": [[53, "activities-in-team-folders-or-external-storages"]], "Activity": [[60, "activity"]], "Activity and audit logs": [[111, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[108, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[168, "add-repository"]], "Add user to group": [[76, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Additional Apache configurations": [[134, "additional-apache-configurations"]], "Additional configuration options": [[160, "additional-configuration-options"]], "Additional configuration options via occ": [[81, "additional-configuration-options-via-occ"]], "Additional file-based logging parameters": [[67, "additional-file-based-logging-parameters"]], "Additional notes for Redis vs. APCu on memory caching": [[59, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[98, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[114, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[26, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[67, "admin-audit-log-optional"]], "Admin delegation": [[157, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[114, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[95, null], [99, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced server settings": [[161, "advanced-server-settings"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[135, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[63, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[60, "all-other-configuration-options"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[132, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[132, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[132, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[132, "allow-access-to-ldap-server"]], "Allow access to NFS": [[132, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[132, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[132, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[132, "allow-access-to-network-memcache"]], "Allow access to remote network": [[132, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[113, "allow-subscriptions-on-local-network"]], "Alternate Code Locations": [[60, "alternate-code-locations"]], "Amazon S3": [[31, null]], "Android 11 and Below": [[55, "android-11-and-below"]], "Android 12 and Above": [[55, "android-12-and-above"]], "Android Deep Link Handling": [[55, null]], "Anti-abuse alerts": [[117, "anti-abuse-alerts"]], "Antivirus": [[157, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [124, "apache"]], "Apache HTTP Server 2.4": [[93, "apache-http-server-2-4"]], "Apache Web server configuration": [[134, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[26, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[26, "apache-with-mod-proxy-fcgi"]], "Apache2": [[69, "apache2"]], "App passwords": [[73, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[182, "appapi-app-api-is-now-a-default-app"], [183, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[184, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[96, null]], "Applying a patch": [[137, "applying-a-patch"]], "Approaching Upgrades": [[149, "approaching-upgrades"]], "Approval/Suspend steps": [[189, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[150, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[150, null]], "Arguments": [[98, "arguments"], [99, "arguments"], [99, "id1"], [99, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[103, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[158, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[117, "attachment-size-limit"]], "Authentication": [[73, null], [165, "authentication"], [189, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[129, "autoconfig"]], "Autoconfig for your mail domain fails": [[119, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[182, "automated-clean-up-of-app-password"]], "Automated installation with autoconfig.php": [[121, null]], "Automated tagging of files": [[103, null]], "Automatic database user creation": [[129, "automatic-database-user-creation"]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[102, "available-rules"], [103, "available-rules"]], "Backend apps": [[15, "backend-apps"], [15, "id39"], [15, "id45"], [15, "id54"], [15, "id59"], [15, "id64"], [15, "id69"], [15, "id73"], [15, "id79"], [15, "id86"]], "Background job": [[44, "background-job"], [49, "background-job"]], "Background jobs": [[57, null], [113, "background-jobs"], [157, "background-jobs"]], "Background jobs selector": [[150, "background-jobs-selector"]], "Background sync interval": [[81, "background-sync-interval"], [117, "background-sync-interval"]], "Backup": [[141, null]], "Backup database": [[141, "backup-database"]], "Backup folders": [[141, "backup-folders"]], "Backups": [[28, "backups"], [108, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[148, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[84, "bearer-token-validation"]], "Before You Enable Encryption": [[28, "before-you-enable-encryption"]], "Behavior": [[92, "behavior"], [92, "id3"]], "Beta releases and Release candidates": [[187, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[113, "birthday-calendar"]], "Block desktop client access at the HTTP layer": [[93, null]], "Block every standard desktop client": [[93, "block-every-standard-desktop-client"]], "Block releases older than 34.0.2": [[93, "block-releases-older-than-34-0-2"]], "Blocking user groups": [[102, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[157, "broadcast"]], "Brute force protection": [[58, null]], "Brute force protection and load balancers/reverse proxies": [[58, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Brute force protection vs fail2ban": [[58, "brute-force-protection-vs-fail2ban"]], "Bug reporting": [[187, "bug-reporting"]], "Bugs": [[139, "bugs"]], "Building a workflow": [[189, "building-a-workflow"]], "CPU Architecture and OS": [[135, "cpu-architecture-and-os"]], "Cache Directory location": [[59, "cache-directory-location"]], "Cache Key Prefix for Redis or Memcached": [[59, "cache-key-prefix-for-redis-or-memcached"]], "Cache warnings": [[70, "cache-warnings"]], "Caching": [[81, "caching"], [133, "id1"]], "Caddy": [[69, "caddy"]], "Caddy 2": [[93, "caddy-2"]], "Calendar": [[119, "calendar"]], "Calendar / CalDAV": [[113, null]], "Calendar Object Events": [[188, "calendar-object-events"]], "Calendar server settings": [[113, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[189, "can-i-create-a-script"]], "Canonical webroot": [[160, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[178, "changelog"]], "Changing installed features": [[92, "changing-installed-features"]], "Changing the display of federated shares": [[41, "changing-the-display-of-federated-shares"]], "Chat": [[1, "chat"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[29, "check-the-block-signatures"]], "Check the signature": [[29, "check-the-signature"]], "Checking for old files": [[30, "checking-for-old-files"]], "Choose the policy": [[93, "choose-the-policy"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[125, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[94, "citrix-workspace-known-issues"]], "Code signing": [[138, null]], "Collabora Online": [[159, null]], "Collabora Online Server": [[160, "collabora-online-server"]], "Collectives": [[18, null], [88, null]], "Collectives and group_everyone": [[18, "collectives-and-group-everyone"]], "Collectives and guest users": [[18, "collectives-and-guest-users"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[114, "command-line"]], "Command line": [[94, "command-line"]], "Command line installation": [[157, "command-line-installation"]], "Command line upgrade": [[157, "command-line-upgrade"]], "Command reference": [[151, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [133, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[102, "common-misconfigurations"], [106, "common-misconfigurations"]], "Common problems / error messages": [[139, "common-problems-error-messages"]], "Common settings": [[161, "common-settings"]], "Common templates": [[161, "common-templates"]], "Complete non-interactive setup": [[121, "complete-non-interactive-setup"]], "Completing Installation": [[129, "completing-installation"]], "Compression": [[133, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[150, "config-commands"]], "Config file": [[94, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [24, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [117, "configuration"], [134, "configuration"], [160, null], [161, null], [168, "configuration"]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[60, null]], "Configuration keys": [[82, "configuration-keys"]], "Configuration reference": [[53, "configuration-reference"]], "Configuration tips": [[41, "configuration-tips"]], "Configurations preventing embedding": [[64, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[167, "configure-the-app-in-nextcloud"]], "Configure theming via CLI": [[72, "configure-theming-via-cli"]], "Configuring": [[40, "configuring"]], "Configuring ClamAV on Nextcloud": [[56, "configuring-clamav-on-nextcloud"]], "Configuring Federation Sharing": [[41, null]], "Configuring ICAP on Nextcloud": [[56, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[26, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[48, null]], "Configuring PHP": [[26, "configuring-php"]], "Configuring Sendmail/qmail": [[63, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[22, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[63, "configuring-an-smtp-server"]], "Configuring the app store timeout": [[16, "configuring-the-app-store-timeout"]], "Configuring through admin_audit app settings (legacy)": [[67, "configuring-through-admin-audit-app-settings-legacy"]], "Configuring trusted Nextcloud servers": [[41, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the Activity app": [[53, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[61, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[26, "configuring-your-web-server"]], "Confirm everything is working": [[56, "confirm-everything-is-working"]], "Connecting over TLS": [[59, "connecting-over-tls"]], "Connecting over UNIX socket": [[59, "connecting-over-unix-socket"]], "Connecting to Redis cluster over TLS": [[59, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[59, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[59, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[59, "connecting-to-single-redis-server-over-unix-socket"]], "Connection encryption parameters": [[121, "id1"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[94, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection scope": [[24, "connection-scope"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[127, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[119, "contacts"]], "Contacts / CardDAV": [[114, null]], "Contacts Interaction": [[115, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[100, "container-started"]], "Container log rotation": [[97, "container-log-rotation"]], "Context Agent": [[1, "context-agent"], [15, "context-agent"]], "Context Chat": [[1, "context-chat"], [15, "context-chat"]], "Context Chat Search": [[15, "context-chat-search"]], "Controlling file versions and aging": [[44, null]], "Converting database type": [[20, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[107, null]], "Cookies stored by Nextcloud": [[107, "cookies-stored-by-nextcloud"]], "Core Components": [[120, "core-components"]], "Core Dumps": [[94, "core-dumps"]], "Create Debug Archive": [[94, "create-debug-archive"]], "Create a group": [[75, "create-a-group"]], "Creating Federation Shares via public Link Share": [[41, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[82, "creating-a-configuration"]], "Creating a new Federation Share": [[41, "creating-a-new-federation-share"]], "Creating a new user": [[85, "creating-a-new-user"]], "Creating assetlinks.json": [[55, "creating-assetlinks-json"]], "Creating persistent file Shares": [[43, "creating-persistent-file-shares"]], "Critical changes": [[178, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[125, "cron-job"]], "Cron jobs": [[57, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[160, "custom-fonts"]], "Custom public calendars": [[113, "custom-public-calendars"]], "Customize the appearance of Nextcloud": [[72, "customize-the-appearance-of-nextcloud"]], "Cybersecurity and physical security of the hardware": [[12, "cybersecurity-and-physical-security-of-the-hardware"]], "DAV & database commands": [[152, null]], "DAV commands": [[152, "dav-commands"]], "DAV sync tokens retention": [[179, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[121, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[109, "data-request-app"]], "Data conversions": [[152, "data-conversions"]], "Data directory location": [[129, "data-directory-location"]], "Data held by third-party services": [[111, "data-held-by-third-party-services"]], "Data retention": [[108, null], [113, "data-retention"], [114, "data-retention"], [115, "data-retention"]], "Database": [[124, "database"], [125, "database"], [165, "database"]], "Database choice": [[129, "database-choice"]], "Database commands": [[152, "database-commands"]], "Database configuration": [[21, null], [22, null], [183, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[119, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[135, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[133, "debug-mode"]], "Debugging": [[151, "debugging"]], "Debugging sync issues": [[139, "debugging-sync-issues"]], "Deck tools (require Deck)": [[2, "deck-tools-require-deck"]], "Declarations": [[90, null]], "Decrease sync delay": [[38, "decrease-sync-delay"]], "Decrypt the blocks": [[29, "decrypt-the-blocks"]], "Decrypt the private key": [[29, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[29, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[28, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[29, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[29, "decryption-read-the-file-key"]], "Decryption: read the private key": [[29, "decryption-read-the-private-key"]], "Dedicated audit logging configuration": [[67, "dedicated-audit-logging-configuration"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[97, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[60, "default-parameters"]], "Default audit log location": [[67, "default-audit-log-location"]], "Default file extension": [[71, "default-file-extension"]], "Default file templates": [[27, "default-file-templates"]], "Default language": [[66, "default-language"]], "Default locale": [[66, "default-locale"]], "Default scope values (reference)": [[77, "default-scope-values-reference"]], "Default user agent for outgoing requests changed": [[185, "default-user-agent-for-outgoing-requests-changed"]], "Defaults": [[60, "defaults"], [77, "defaults"]], "Defining trusted proxies": [[69, "defining-trusted-proxies"]], "Definitions": [[28, "definitions"]], "Delete a group": [[75, "delete-a-group"]], "Delete a user": [[76, "delete-a-user"]], "Deleted Items (trash bin)": [[49, null], [60, "deleted-items-trash-bin"]], "Deleting a configuration": [[82, "deleting-a-configuration"]], "Deleting a single configuration value": [[150, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[83, "deleting-local-nextcloud-users"]], "Deleting users": [[85, "deleting-users"]], "Demote user from subadmin": [[76, "demote-user-from-subadmin"]], "Denied access": [[102, "denied-access"]], "Denying access to folders": [[102, "denying-access-to-folders"]], "DeployConfig": [[98, "deployconfig"]], "DeployConfig options": [[98, "deployconfig-options"]], "Deployment": [[127, "deployment"]], "Deployment configurations": [[97, null]], "Deployment recommendations": [[123, null]], "Derive the decryption key": [[29, "derive-the-decryption-key"]], "Derive the encryption key": [[29, "derive-the-encryption-key"]], "Desktop Client Deployment and Setup": [[92, null]], "Desktop Clients": [[91, null]], "Desktop client": [[135, "desktop-client"]], "Detecting changes made outside Nextcloud": [[40, "detecting-changes-made-outside-nextcloud"]], "Differences from External Storage": [[48, "differences-from-external-storage"]], "Directory settings": [[81, "directory-settings"]], "Disable": [[99, "disable"]], "Disable 3rdparty / non-shipped apps": [[139, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[127, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[117, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[76, "disable-a-user"]], "Disable an app": [[17, "disable-an-app"]], "Disable and enable users": [[85, "disable-and-enable-users"]], "Disable creation of example events": [[152, "disable-creation-of-example-events"]], "Disable preview image generation": [[127, "disable-preview-image-generation"]], "Disable profiles globally": [[77, "disable-profiles-globally"]], "Disable rich text editing": [[71, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[71, "disable-rich-workspaces-globally"]], "Disabling automatic updates": [[92, "disabling-automatic-updates"]], "Disabling background scan task": [[56, "disabling-background-scan-task"]], "Disabling previews:": [[47, "disabling-previews"]], "Disabling the \u201cYour email address [\u2026] was changed\u201d email": [[85, "disabling-the-your-email-address-was-changed-email"]], "Disabling two-factor authentication": [[80, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[132, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[43, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[138, "do-we-lock-down-nextcloud"]], "Docker": [[97, "docker"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[97, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[97, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[97, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[97, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[96, "docker-socket-proxy"]], "Docker Socket Proxy security": [[97, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[96, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[97, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[97, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Documents the server downloads": [[165, "documents-the-server-downloads"]], "Domain Change": [[62, null]], "Downgrading": [[187, "downgrading"]], "Download Logs": [[100, "download-logs"]], "Drop Account app": [[109, "drop-account-app"]], "Duplicating server configurations": [[81, "duplicating-server-configurations"]], "During Version Creation": [[44, "during-version-creation"]], "During the Regular Background Job": [[44, "during-the-regular-background-job"]], "Edit data of a single group": [[75, "edit-data-of-a-single-group"]], "Edit data of a single user": [[76, "edit-data-of-a-single-user"]], "Editions": [[120, "editions"]], "Editor customization settings": [[161, "editor-customization-settings"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[99, "enable"]], "Enable HTTP Strict Transport Security": [[127, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[133, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[133, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[160, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[127, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[132, "enable-updates-via-the-web-interface"]], "Enabled": [[100, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[134, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling autocompletion": [[151, "enabling-autocompletion"]], "Enabling debug mode": [[63, "enabling-debug-mode"]], "Enabling email notifications": [[53, "enabling-email-notifications"]], "Enabling the antivirus app for files": [[56, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[61, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[80, "enabling-two-factor-authentication"]], "Encrypt and decrypt all data": [[153, "encrypt-and-decrypt-all-data"]], "Encrypt the blocks": [[29, "encrypt-the-blocks"]], "Encrypt the private key": [[29, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[29, "encrypt-seal-the-file-key"]], "Encrypted File Detection Limitations with ClamAV": [[56, "encrypted-file-detection-limitations-with-clamav"]], "Encrypted MySQL / MariaDB connection": [[121, "encrypted-mysql-mariadb-connection"]], "Encrypted PostgreSQL connection": [[121, "encrypted-postgresql-connection"]], "Encrypted database connection": [[121, "encrypted-database-connection"], [122, "encrypted-database-connection"]], "Encrypting All Files": [[28, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[28, "encrypting-external-mountpoints-and-team-folders"]], "Encryption Method Comparison": [[28, "encryption-method-comparison"]], "Encryption commands": [[153, null]], "Encryption format": [[30, "encryption-format"]], "Encryption key cannot be found": [[28, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[28, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption modules": [[153, "encryption-modules"]], "Encryption: encrypt the file": [[29, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[29, "encryption-generate-the-file-key"]], "End-of-life": [[187, "end-of-life"]], "Energy consumption": [[89, null]], "Enforcing two-factor authentication": [[80, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[127, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [95, "environment-variables"]], "Environment variables": [[151, "environment-variables"], [165, "environment-variables"]], "Errors": [[138, "errors"]], "Establishing the target database": [[20, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [15, "ethical-ai-rating"]], "Event alarm types": [[113, "event-alarm-types"]], "Events": [[113, "events"]], "ExApps management": [[101, null]], "Example": [[17, "example"], [17, "id1"], [17, "id3"], [17, "id5"], [75, "example"], [75, "id1"], [75, "id3"], [75, "id5"], [75, "id8"], [76, "example"], [76, "id1"], [76, "id3"], [76, "id8"], [76, "id10"], [76, "id12"], [76, "id14"], [76, "id16"], [76, "id18"], [76, "id20"], [76, "id22"], [76, "id24"], [76, "id26"], [82, "example"], [82, "id1"], [82, "id3"], [82, "id5"], [103, "example"], [106, "example"]], "Example configuration": [[133, "example-configuration"]], "Example contact": [[114, "example-contact"]], "Example event": [[113, "example-event"]], "Example installation on CentOS 8": [[124, null]], "Example installation on OpenBSD": [[125, null]], "Example installation on Ubuntu 24.04 LTS": [[126, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[189, "example-workflows"]], "Example: The login page": [[58, "example-the-login-page"]], "Examples": [[60, "examples"], [69, "examples"], [75, "examples"], [76, "examples"], [76, "id6"], [92, "examples"], [92, "id4"], [102, "examples"], [121, "examples"]], "Excluding IP addresses from brute force protection": [[58, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from activity expiration": [[53, "excluding-users-from-activity-expiration"]], "Executing actions": [[103, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[152, "export-and-import-calendars"]], "Export threading data": [[119, "export-threading-data"]], "Exposed system address book": [[180, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[134, "external-media"]], "External storage": [[102, "external-storage"]], "FAQ": [[96, "faq"], [138, "faq"], [189, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[127, "fail2ban-introduction"]], "Fair Use Policy": [[139, "fair-use-policy"]], "Features": [[92, "features"]], "Features used by other apps": [[15, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[26, "federated-cloud-sharing"], [60, "federated-cloud-sharing"]], "Federated calendar shares": [[113, "federated-calendar-shares"]], "Federation sync": [[154, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[106, "file-age"]], "File conversion": [[42, null]], "File encodings": [[71, "file-encodings"]], "File format": [[29, "file-format"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id7"]], "File locations": [[29, "file-locations"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id8"]], "File operations": [[154, "file-operations"]], "File sharing": [[154, "file-sharing"]], "File sharing and management": [[46, null]], "File type: file": [[29, "file-type-file"]], "File type: file key file": [[29, "file-type-file-key-file"]], "File type: private key file": [[29, "file-type-private-key-file"]], "File type: public key file": [[29, "file-type-public-key-file"]], "File type: share key file": [[29, "file-type-share-key-file"]], "File versions": [[60, "file-versions"], [108, "file-versions"], [154, "file-versions"]], "Files": [[88, null]], "Files App": [[135, "files-app"]], "Files access control": [[102, null]], "Files and metadata": [[111, "files-and-metadata"]], "Files commands": [[154, null]], "Files external": [[154, "files-external"]], "Files posted to the server": [[165, "files-posted-to-the-server"]], "Files tools": [[2, "files-tools"]], "Filters": [[188, "filters"]], "Fixing invalid code integrity messages": [[138, "fixing-invalid-code-integrity-messages"]], "Flow": [[105, null]], "Flow configuration": [[104, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[117, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[188, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[113, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[173, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[15, "frontend-apps"], [15, "id31"], [15, "id41"], [15, "id47"], [15, "id57"], [15, "id62"], [15, "id67"], [15, "id71"], [15, "id77"], [15, "id84"]], "Further Reading": [[28, "further-reading"]], "Further Resources": [[120, "further-resources"], [131, "further-resources"]], "GDPR compliance": [[110, null]], "General troubleshooting": [[139, null], [139, "id1"]], "Generate the file key": [[29, "generate-the-file-key"]], "Get a notification before a share expires": [[43, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[14, "get-a-task-by-id"]], "Get account IDs": [[119, "get-account-ids"]], "Get app info": [[17, "get-app-info"]], "Get data of a single user": [[76, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[56, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[17, "get-list-of-apps"]], "Get members of a group": [[75, "get-members-of-a-group"]], "Get subadmins of a group": [[75, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[76, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[76, "get-user-s-subadmin-groups"]], "Getting Started": [[88, null], [120, "getting-started"]], "Getting a single configuration value": [[150, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[127, "give-php-read-access-to-dev-urandom"]], "Globally": [[119, "globally"]], "Google OAuth": [[117, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[158, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [116, null]], "Groupware data": [[111, "groupware-data"]], "HAProxy": [[69, "haproxy"], [93, "haproxy"]], "HTTPD(8)": [[125, "httpd-8"]], "HTTPS and TLS termination": [[165, "https-and-tls-termination"]], "HTTPS encryption": [[134, "https-encryption"]], "HaRP": [[96, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[127, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[100, "heartbeat"]], "Helpful apps": [[109, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[113, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[63, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[63, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[22, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[63, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[22, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[63, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[63, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[175, "how-does-it-work"]], "How interactions are tracked": [[115, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "How queries are routed": [[24, "how-queries-are-routed"]], "How the \u201cFilesystem check frequency\u201d option works": [[40, "how-the-filesystem-check-frequency-option-works"]], "How to make external changes reliably detectable": [[40, "how-to-make-external-changes-reliably-detectable"]], "How to upgrade": [[149, null]], "How to verify scope behavior": [[77, "how-to-verify-scope-behavior"]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[22, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[117, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identify desktop client requests": [[93, "identify-desktop-client-requests"]], "Identifying Basic Functionality Problems": [[94, "identifying-basic-functionality-problems"]], "Image Pull": [[100, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Image tags": [[165, "image-tags"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[168, "import-signing-keys"]], "Important distinction from non-interactive provisioning": [[92, "important-distinction-from-non-interactive-provisioning"]], "Importing existing data": [[18, "importing-existing-data"]], "Importing from Dokuwiki": [[18, "importing-from-dokuwiki"]], "Imprint (Theming app)": [[109, "imprint-theming-app"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [15, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[20, "inconvertible-tables"]], "Info": [[157, "info"]], "Init": [[100, "init"]], "Initial Certification 2024/2025": [[89, "initial-certification-2024-2025"]], "Initial Content for new collectives": [[18, "initial-content-for-new-collectives"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[25, "initial-splitting"]], "Insight and debugging": [[14, null]], "Install from the command line": [[122, null]], "Install packages": [[168, "install-packages"]], "Install the Apache reverse proxy": [[167, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[167, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [88, null], [92, "installation"], [134, "installation"], [146, "installation"], [163, null], [170, null], [188, "installation"], [189, "installation"]], "Installation and server configuration": [[128, null]], "Installation example on Ubuntu 24.04": [[168, null]], "Installation example with Docker": [[167, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[134, null]], "Installation on TrueNAS": [[134, "installation-on-truenas"]], "Installation version": [[187, "installation-version"]], "Installation via install script": [[134, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[134, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[129, null], [134, "installation-wizard"]], "Installing AppAPI": [[96, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[96, "installing-exapps"]], "Installing Nextcloud": [[124, "installing-nextcloud"]], "Installing PHP and the required modules": [[124, "installing-php-and-the-required-modules"]], "Installing on Debian 12": [[164, null]], "Installing on Ubuntu 24.04 LTS": [[166, null]], "Installing on Windows (virtual machine)": [[134, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[124, "installing-optional-modules-redis-imagick"]], "Installing the connector app": [[161, "installing-the-connector-app"]], "Installing via Docker": [[165, null]], "Installing via Snap packages": [[134, "installing-via-snap-packages"]], "Instruction set for groups": [[75, null]], "Instruction set for users": [[76, null]], "Integrating into the web interface": [[67, "integrating-into-the-web-interface"]], "Integrity check": [[154, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[139, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [120, null], [188, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[113, "invitations"]], "Is code signing mandatory for apps?": [[138, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[94, "isolating-other-issues"]], "Issues and troubleshooting": [[140, null]], "Issues connecting to Outlook.com": [[119, "issues-connecting-to-outlook-com"]], "JIT": [[133, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[130, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[28, "key-management-modes"]], "Key Points & Limitations": [[28, "key-points-limitations"]], "Key generation: generate the key pair": [[29, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[29, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[29, "key-generation-store-the-public-key"]], "Key parameters": [[133, "key-parameters"]], "Key slots": [[156, "key-slots"]], "Key storage": [[153, "key-storage"]], "Key type: master key": [[29, "key-type-master-key"]], "Key type: public sharing key": [[29, "key-type-public-sharing-key"]], "Key type: recovery key": [[29, "key-type-recovery-key"]], "Key type: user key": [[29, "key-type-user-key"]], "KeyValueCache configuration in Nextcloud (config.php)": [[59, "keyvaluecache-configuration-in-nextcloud-config-php"]], "Keyboard shortcut": [[94, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[176, "known-smart-picker-providers"]], "Known backends": [[113, "known-backends"]], "Known link preview providers": [[175, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"], [97, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[155, null], [155, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[117, "llm-processing"]], "Language & Locale": [[66, null]], "Large file upload on object storage": [[26, "large-file-upload-on-object-storage"]], "Launch after installation": [[92, "launch-after-installation"]], "Legacy migration": [[153, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[187, "length-of-support-maintenance"]], "Limitation: renames are not detected reliably": [[40, "limitation-renames-are-not-detected-reliably"]], "Limitations": [[4, "limitations"], [5, "limitations"]], "Limitations in maintenance mode": [[151, "limitations-in-maintenance-mode"]], "Link previews": [[175, null]], "Linking external sites": [[64, null]], "List ExApps": [[99, "list-exapps"]], "List and filter tasks": [[14, "list-and-filter-tasks"]], "List of editable data fields": [[76, "list-of-editable-data-fields"]], "List registered daemons": [[98, "list-registered-daemons"]], "Listening to events": [[188, "listening-to-events"]], "Listing keys": [[156, "listing-keys"]], "Listing registered webhooks": [[188, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[117, "local-imap-and-smtp-servers"]], "Log Files": [[94, "log-files"]], "Log Levels": [[133, "log-levels"]], "Log field breakdown": [[67, "log-field-breakdown"]], "Log fields explained": [[67, "log-fields-explained"]], "Log level": [[67, "log-level"]], "Log level interaction": [[67, "log-level-interaction"]], "Log type": [[67, "log-type"]], "Logfiles": [[139, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging and optional services": [[165, "logging-and-optional-services"]], "Logging commands": [[157, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[119, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[81, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[130, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[149, "long-running-migration-steps"]], "Long term support": [[135, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[117, null], [119, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[117, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [142, null], [152, "maintenance"]], "Maintenance and release schedule": [[187, null]], "Maintenance and repair": [[153, "maintenance-and-repair"]], "Maintenance commands": [[157, "maintenance-commands"]], "Maintenance mode": [[141, "maintenance-mode"], [149, "maintenance-mode"]], "Maintenance releases": [[187, "maintenance-releases"]], "Major releases": [[187, "major-releases"]], "Major version upgrades": [[187, "major-version-upgrades"]], "Manage absences (out-of-office)": [[152, "manage-absences-out-of-office"]], "Manage addressbooks": [[152, "manage-addressbooks"]], "Manage calendar subscriptions": [[152, "manage-calendar-subscriptions"]], "Manage calendars": [[152, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[98, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[99, null]], "Managing apps": [[16, "managing-apps"]], "Managing apps with occ": [[16, "managing-apps-with-occ"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[119, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[149, "manual-steps-during-upgrade"]], "Manually scan a single file": [[56, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[56, "manually-trigger-the-background-scan"]], "MariaDB": [[141, "mariadb"], [147, "mariadb"], [147, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[153, "master-key"]], "Maximum chunk size": [[183, "maximum-chunk-size"]], "Maximum memory for image generation:": [[47, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[47, "maximum-preview-size"]], "Maximum scale factor:": [[47, "maximum-scale-factor"]], "Maximum upload size": [[134, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[135, "memory"]], "Memory caching": [[59, null]], "Memory caching backend configuration": [[60, "memory-caching-backend-configuration"]], "Metrics": [[165, "metrics"]], "Microsoft Active Directory": [[81, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[48, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[145, null]], "Migrating to a different server": [[144, null]], "Migration from Collabora Online": [[171, null]], "Migrations on updates": [[25, "migrations-on-updates"]], "Mimetype aliases": [[51, "mimetype-aliases"]], "Mimetype mapping": [[51, "mimetype-mapping"]], "Mimetypes management": [[51, null]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[119, "missing-shared-calendars"]], "Mobile apps": [[135, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modifying": [[60, "modifying"]], "Modifying a configuration": [[82, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[63, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[52, null], [181, "monitoring"]], "Monitoring: Counting of active users": [[182, "monitoring-counting-of-active-users"], [183, "monitoring-counting-of-active-users"], [184, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[95, "mounts"]], "Moving the data directory / changing the datadirectory path": [[139, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multi-instance Object Store": [[48, "multi-instance-object-store"]], "Multibucket Object Store": [[48, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[48, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multimodal chat": [[1, "multimodal-chat"], [5, "multimodal-chat"]], "Multiple trusted domains and share link URLs": [[69, "multiple-trusted-domains-and-share-link-urls"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[141, "mysql"], [147, "mysql"], [147, "id4"]], "MySQL / MariaDB database": [[121, "mysql-mariadb-database"]], "NC & Docker on the Same-Host": [[97, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[97, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[97, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[130, null]], "NOTE": [[125, "note"]], "Next steps": [[126, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[98, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office": [[162, null]], "Nextcloud Office App Settings": [[160, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[189, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[188, "nextcloud-webhook-events"]], "Nextcloud accessible via multiple domains / conditional overwrite": [[69, "nextcloud-accessible-via-multiple-domains-conditional-overwrite"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[97, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[97, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[81, "nextcloud-avatar-integration"]], "Nextcloud behind a reverse proxy (subdirectory)": [[69, "nextcloud-behind-a-reverse-proxy-subdirectory"]], "Nextcloud configuration": [[65, null], [182, "nextcloud-configuration"], [183, "nextcloud-configuration"]], "Nextcloud final steps": [[125, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[97, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[130, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[130, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[139, "nextcloud-log-files"]], "Nextcloud prerequisites": [[127, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[94, "nextcloud-server-log-file"]], "Nginx": [[165, "nginx"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[188, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[138, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[137, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[131, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [157, "oauth2"]], "OCC CLI": [[98, "occ-cli"]], "OCM commands": [[156, null]], "Object store": [[154, "object-store"]], "Obtaining a patch": [[137, "obtaining-a-patch"]], "Obtaining the Client Log File": [[94, "obtaining-the-client-log-file"]], "Office": [[88, null], [169, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[185, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[127, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[98, "options"], [99, "options"], [99, "id2"], [99, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[134, "other-web-servers"]], "Other issues": [[139, "other-issues"]], "Out-of-office feature": [[118, null]], "Outbound requests": [[165, "outbound-requests"]], "Outdated NSS / OpenSSL version": [[70, "outdated-nss-openssl-version"]], "Override default scopes in config.php": [[77, "override-default-scopes-in-config-php"]], "Overview": [[15, null], [28, "overview"], [58, "overview"], [58, "id1"], [134, "overview"], [143, "overview"], [149, "overview"], [187, "overview"], [188, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[124, "php"], [125, "php"]], "PHP Installation": [[131, "php-installation"]], "PHP Module Quick Reference Table": [[131, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[131, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[131, "php-modules-for-specific-applications"]], "PHP configuration": [[183, "php-configuration"]], "PHP ini Settings": [[131, "php-ini-settings"]], "PHP version and information": [[139, "php-version-and-information"]], "PHP-FPM configuration": [[134, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[130, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [121, "parameters"]], "Passing values between blocks": [[189, "passing-values-between-blocks"]], "Password Length Limits": [[127, "password-length-limits"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[127, "passwords"]], "Patching Nextcloud": [[137, null]], "Patching apps": [[137, "patching-apps"]], "Patching server": [[137, "patching-server"]], "Payload envelope": [[188, "payload-envelope"]], "Per mail account": [[119, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Persistent data": [[165, "persistent-data"]], "Personal data stored": [[111, null]], "Place config directory outside of the web root": [[127, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[127, "place-data-directory-outside-of-the-web-root"]], "Podman": [[97, "podman"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[141, "postgresql"], [147, "postgresql"], [147, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [121, "postgresql-database"]], "Preparing PHP": [[131, null]], "Prerequisites": [[149, "prerequisites"], [165, "prerequisites"]], "Prerequisites for manual installation": [[134, "prerequisites-for-manual-installation"]], "Pretty URLs": [[134, "pretty-urls"]], "Prevent uploading of specific files": [[102, "prevent-uploading-of-specific-files"]], "Preview": [[154, "preview"]], "Previews": [[60, "previews"], [133, "previews"], [160, "previews"], [183, "previews"], [184, "previews"], [185, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[181, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[182, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[143, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[114, "privacy-and-user-property-scopes"]], "Process manager": [[134, "process-manager"]], "Process manager modes": [[133, "process-manager-modes"]], "Profile data": [[111, "profile-data"]], "Profile field visibility settings": [[77, "profile-field-visibility-settings"]], "Profiles": [[77, null]], "Promote user to subadmin": [[76, "promote-user-to-subadmin"]], "Proper SSL configuration": [[127, "proper-ssl-configuration"]], "Property visibility scopes": [[77, "property-visibility-scopes"]], "Provider apps": [[15, "provider-apps"], [15, "id70"], [15, "id75"], [15, "id81"]], "Provider removal": [[80, "provider-removal"]], "Providing default files": [[27, null]], "Proxy Configurations": [[60, "proxy-configurations"]], "Public collaborative tag": [[106, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[129, "quick-start"], [165, "quick-start"]], "RabbitMQ": [[165, "rabbitmq"]], "Rate limits": [[113, "rate-limits"], [114, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[29, "read-the-envelope-key"]], "Read the file key": [[29, "read-the-file-key"]], "Read the private key file": [[29, "read-the-private-key-file"]], "Read the public key": [[29, "read-the-public-key"]], "Reading a configuration": [[82, "reading-a-configuration"]], "Recommendations": [[92, "recommendations"]], "Recommendations based on type of deployment": [[59, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[131, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[131, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[131, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[127, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[124, "redis"], [125, "redis"], [165, "redis"]], "Redis / Valkey using the Nextcloud KeyValueCache": [[59, "redis-valkey-using-the-nextcloud-keyvaluecache"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Redis using the phpredis PHP extension": [[59, "redis-using-the-phpredis-php-extension"]], "Reducing system load": [[133, "reducing-system-load"]], "Reference management": [[174, null]], "Refresh rate": [[113, "refresh-rate"]], "Register": [[98, "register"], [99, "register"], [100, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[187, "release-channels"]], "Release notes": [[88, null], [177, null], [178, null]], "Release schedule": [[187, "release-schedule"]], "Release types": [[187, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[107, "remember-me-cookies"]], "Remember-me tokens": [[108, "remember-me-tokens"]], "Reminder notifications": [[113, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[133, "replacing-sqlite"]], "Replication": [[24, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[131, "required-php-database-connectors"]], "Required PHP Modules": [[131, "required-php-modules"]], "Required parameters": [[92, "required-parameters"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [22, "requirements"]], "Rescans": [[138, "rescans"]], "Resend the welcome email": [[76, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[85, "reset-a-user-s-password"]], "Resetting a lost admin password": [[78, null]], "Resetting a user password": [[79, null]], "Resources and rooms": [[113, "resources-and-rooms"]], "Responding to data subject requests": [[112, null]], "Restore database": [[147, "restore-database"]], "Restore folders": [[147, "restore-folders"]], "Restoring": [[147, "restoring"]], "Restoring backup": [[147, null]], "Restrict admin actions to a specific range of IP addresses": [[127, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[160, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[160, "restrict-usage-to-specific-groups"]], "Retention of files": [[106, null]], "Revalidation": [[133, "revalidation"]], "Reverse proxy": [[69, null], [172, null]], "Reverting a patch": [[137, "reverting-a-patch"]], "Right of access (Article 15)": [[112, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[112, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[112, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[112, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[112, "right-to-restriction-of-processing-article-18"]], "Rotating keys": [[156, "rotating-keys"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[151, "running-occ"]], "Runtime Dependencies": [[18, "runtime-dependencies"]], "S3 SSE-C encryption support": [[48, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[184, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[124, "selinux"]], "SELinux configuration": [[132, null]], "SELinux configuration tips": [[134, "selinux-configuration-tips"]], "SFTP": [[37, null]], "SMB authentication": [[38, "smb-authentication"]], "SMB update notifications": [[38, "smb-update-notifications"]], "SMB/CIFS": [[38, null]], "SMTP": [[63, "smtp"]], "SMTP timeout": [[117, "smtp-timeout"]], "SQLite": [[141, "sqlite"], [147, "sqlite"]], "SQLite database": [[121, "sqlite-database"]], "SSL": [[60, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[81, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[22, "ssl-for-mysql-database"]], "SSL for PostgreSQL database": [[22, "ssl-for-postgresql-database"]], "SSL/TLS options of maintenance:install": [[122, "id1"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[152, "schema-inspection"]], "Schema maintenance": [[152, "schema-maintenance"]], "Scope defaults and precedence": [[77, "scope-defaults-and-precedence"]], "Scope visibility matrix": [[77, "scope-visibility-matrix"]], "Scopes and existing users": [[77, "scopes-and-existing-users"]], "Screen or tmux session": [[15, "screen-or-tmux-session"], [188, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[75, "search-get-groups"]], "Search/get users": [[76, "search-get-users"]], "Secure view settings": [[160, "secure-view-settings"]], "Security": [[157, "security"], [161, "security"]], "Security consequences": [[127, "security-consequences"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Sentinel managed replication setup.": [[60, "sentinel-managed-replication-setup"]], "Serve security related headers by the Web server": [[127, "serve-security-related-headers-by-the-web-server"]], "Server": [[135, "server"]], "Server and web server logs": [[108, "server-and-web-server-logs"], [111, "server-and-web-server-logs"]], "Server settings": [[161, "server-settings"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[133, null]], "Server-side Encryption": [[28, null]], "Server-side encryption details": [[29, null]], "Server-side encryption migration": [[30, null]], "Service Discovery": [[69, "service-discovery"]], "Service discovery": [[139, "service-discovery"]], "Session data": [[111, "session-data"]], "Session lifetime": [[108, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[150, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[150, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[150, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[63, "setting-mail-server-parameters-in-config-php"]], "Setting storage quotas": [[85, "setting-storage-quotas"]], "Setting up background jobs": [[134, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[124, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[189, "setting-up-the-workspace-connection"]], "Settings": [[133, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[181, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[127, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[157, "setup-checks"]], "Setup deploy daemon": [[96, "setup-deploy-daemon"]], "Setup fail2ban": [[127, "setup-fail2ban"]], "Share operations": [[157, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[114, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[117, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[148, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Size limits": [[165, "size-limits"]], "Sizing": [[133, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[133, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[117, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[157, "snowflake-ids"], [185, "snowflake-ids"]], "Some files have not passed the integrity check": [[70, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[29, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[81, "special-attributes"]], "Special mechanisms": [[32, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [15, "speech-to-text"]], "Speeding up webhook dispatch": [[188, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[157, "status"]], "Status Checks": [[100, "status-checks"]], "Status and control": [[153, "status-and-control"]], "Status return code": [[157, "status-return-code"]], "Step 1 \u2014 Enable the contrib component": [[164, "step-1-enable-the-contrib-component"]], "Step 1 \u2014 Install prerequisites": [[166, "step-1-install-prerequisites"]], "Step 2 \u2014 Create the database": [[166, "step-2-create-the-database"]], "Step 2 \u2014 Install prerequisites": [[164, "step-2-install-prerequisites"]], "Step 3 \u2014 Create the database": [[164, "step-3-create-the-database"]], "Step 3 \u2014 Pre-seed the installer answers": [[166, "step-3-pre-seed-the-installer-answers"]], "Step 4 \u2014 Download the package": [[166, "step-4-download-the-package"]], "Step 4 \u2014 Pre-seed the installer answers": [[164, "step-4-pre-seed-the-installer-answers"]], "Step 5 \u2014 Download the package": [[164, "step-5-download-the-package"]], "Step 5 \u2014 Install the package": [[166, "step-5-install-the-package"]], "Step 6 \u2014 Install the package": [[164, "step-6-install-the-package"]], "Step 6 \u2014 Verify": [[166, "step-6-verify"]], "Step 7 \u2014 Verify": [[164, "step-7-verify"]], "Step-by-Step Manual Upgrade": [[143, "step-by-step-manual-upgrade"]], "Storage of account passwords": [[127, "storage-of-account-passwords"]], "Storage of authentication tokens": [[127, "storage-of-authentication-tokens"]], "Store the envelope keys": [[29, "store-the-envelope-keys"]], "Store the file": [[29, "store-the-file"]], "Store the file key": [[29, "store-the-file-key"]], "Store the private key": [[29, "store-the-private-key"]], "Subscriptions": [[113, "subscriptions"]], "Summary": [[92, "summary"], [165, "summary"]], "Summary table": [[108, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[130, "suppressing-log-messages"]], "Sync": [[152, "sync"]], "Sync tokens": [[113, "sync-tokens"], [114, "sync-tokens"]], "Synchronising with clients after data recovery": [[147, "synchronising-with-clients-after-data-recovery"]], "System & maintenance commands": [[157, null]], "System Address Book": [[114, "system-address-book"]], "System Tag Events": [[188, "system-tag-events"]], "System Tags": [[158, "system-tags"]], "System address book": [[184, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[179, "system-email"]], "System environment variables": [[134, "system-environment-variables"]], "System requirements": [[135, null], [164, "system-requirements"], [166, "system-requirements"], [179, "system-requirements"], [180, "system-requirements"], [181, "system-requirements"], [182, "system-requirements"], [183, "system-requirements"], [184, "system-requirements"], [185, "system-requirements"], [186, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [188, "systemd-service"]], "TLS / encryption app": [[133, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[188, "tables-app-events"]], "Talk (chat and calls)": [[111, "talk-chat-and-calls"]], "Talk App": [[135, "talk-app"]], "Talk tools (require Talk)": [[2, "talk-tools-require-talk"]], "Target Audience": [[120, "target-audience"]], "Task processing": [[1, "task-processing"], [157, "task-processing"]], "TaskProcessing worker command": [[185, "taskprocessing-worker-command"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[100, null]], "Testing the configuration": [[81, "testing-the-configuration"]], "Text app": [[71, null]], "Text processing": [[1, "text-processing"], [15, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [15, "text-to-speech"]], "The LDAP configuration API": [[82, null]], "The Smart Picker": [[176, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[115, "the-recently-contacted-address-book"]], "The test with getenv(\"PATH\") only returns an empty response": [[70, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[70, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[70, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[72, null], [157, "theming"]], "Thread Summary": [[117, "thread-summary"]], "Timeout and other connectivity issues": [[119, "timeout-and-other-connectivity-issues"]], "Timeouts": [[117, "timeouts"]], "Tips and tricks": [[130, "tips-and-tricks"]], "Token-associated storage of login passwords": [[127, "token-associated-storage-of-login-passwords"]], "Traefik 1": [[69, "traefik-1"]], "Traefik 2": [[69, "traefik-2"]], "Transactional file locking": [[45, null]], "Transactional file locking is disabled": [[70, "transactional-file-locking-is-disabled"]], "Transferring files to another user": [[43, "transferring-files-to-another-user"]], "Translation": [[117, "translation"]], "Trash bin": [[108, "trash-bin"], [113, "trash-bin"], [154, "trash-bin"]], "Trashbin": [[154, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [94, null], [119, null], [132, "troubleshooting"], [133, "troubleshooting"], [143, "troubleshooting"], [148, "troubleshooting"], [173, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[139, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[139, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[139, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[139, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[139, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[139, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[139, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[129, "trusted-domains"]], "Trusted proxy not detected when using a Unix domain socket": [[130, "trusted-proxy-not-detected-when-using-a-unix-domain-socket"]], "Tune PHP-FPM": [[133, "tune-php-fpm"]], "Tuning your database": [[133, "tuning-your-database"]], "Two-factor authentication": [[80, null], [158, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[119, "unable-to-update-contacts-or-events"]], "Uninstallation": [[136, null]], "Uninstalling": [[164, "uninstalling"], [165, "uninstalling"], [166, "uninstalling"]], "Unregister": [[98, "unregister"], [99, "unregister"]], "Update": [[99, "update"]], "Update notifications": [[16, "update-notifications"], [149, "update-notifications"]], "Update the reverse proxy configuration": [[171, "update-the-reverse-proxy-configuration"]], "Updating": [[164, "updating"], [165, "updating"], [166, "updating"], [167, "updating"]], "Upgrade distribution packages": [[171, "upgrade-distribution-packages"]], "Upgrade manually": [[143, null]], "Upgrade quickstart": [[146, "upgrade-quickstart"]], "Upgrade the docker image": [[171, "upgrade-the-docker-image"]], "Upgrade tips": [[146, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[179, null]], "Upgrade to Nextcloud 27": [[180, null]], "Upgrade to Nextcloud 28": [[181, null]], "Upgrade to Nextcloud 30": [[182, null]], "Upgrade to Nextcloud 31": [[183, null]], "Upgrade to Nextcloud 32": [[184, null]], "Upgrade to Nextcloud 33": [[185, null]], "Upgrade to Nextcloud 35": [[186, null]], "Upgrade via built-in updater": [[148, null]], "Upgrade via snap packages": [[146, null]], "Upload of files greater than 10 MiB fails": [[130, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[98, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[127, "use-https"]], "Use OOXML by default for new files": [[160, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[127, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[81, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[117, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[158, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[117, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[28, "user-keys-sharing-recovery"]], "User Profile attributes": [[81, "user-profile-attributes"]], "User and Group Permissions": [[40, "user-and-group-permissions"]], "User and group mapping": [[81, "user-and-group-mapping"]], "User authentication with LDAP": [[81, null]], "User authentication with OpenID Connect": [[84, null]], "User commands": [[158, "user-commands"]], "User deletion": [[115, "user-deletion"]], "User listing and login per nested groups": [[81, "user-listing-and-login-per-nested-groups"]], "User management": [[74, null], [85, null]], "User migration": [[117, "user-migration"]], "User password policy": [[86, null]], "User provisioning API": [[87, null]], "User session": [[60, "user-session"]], "Users": [[88, null]], "Users are not receiving notification emails": [[53, "users-are-not-receiving-notification-emails"]], "Users tab": [[81, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[139, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[43, "using-file-drop-share-links"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[84, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[60, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[133, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[148, "using-a-custom-download-url"]], "Using a self-hosted app store": [[16, "using-a-self-hosted-app-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[133, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[16, "using-custom-app-directories"]], "Using email templates": [[63, "using-email-templates"]], "Using private API": [[16, "using-private-api"]], "Using the Nextcloud KeyValueCache cache": [[45, "using-the-nextcloud-keyvaluecache-cache"]], "Using the Redis cache with the phpredis PHP module": [[45, "using-the-redis-cache-with-the-phpredis-php-module"]], "Using the Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[148, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [151, null]], "Using the web based updater": [[148, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Verify the rule": [[93, "verify-the-rule"]], "Versions": [[154, "versions"]], "Voice Chat": [[1, "voice-chat"]], "WOPI": [[165, "wopi"]], "Warnings on admin page": [[70, null]], "Watermarks": [[161, "watermarks"]], "Web browser": [[135, "web-browser"]], "Web server and PHP modules": [[139, "web-server-and-php-modules"]], "Web server configuration": [[179, "web-server-configuration"], [180, "web-server-configuration"], [181, "web-server-configuration"], [182, "web-server-configuration"], [184, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[188, null]], "Webhook listeners": [[157, "webhook-listeners"]], "Webserver Log Files": [[94, "webserver-log-files"]], "What becomes limited when you lock it down?": [[77, "what-becomes-limited-when-you-lock-it-down"]], "What does the updater do?": [[148, "what-does-the-updater-do"]], "What local users can see": [[77, "what-local-users-can-see"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[176, "where-can-it-be-used"]], "Where do they appear?": [[175, "where-do-they-appear"]], "Who develops Nextcloud?": [[120, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[138, "why-did-nextcloud-add-code-signing"]], "Why don\u2019t I see the recovery key option in the Encryption settings?": [[28, "why-don-t-i-see-the-recovery-key-option-in-the-encryption-settings"]], "Why is my prompt slow?": [[15, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[63, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[135, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[189, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[160, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[157, "workflows"]], "XML output": [[17, "xml-output"], [17, "id2"], [17, "id4"], [17, "id6"], [75, "xml-output"], [75, "id2"], [75, "id4"], [75, "id6"], [75, "id7"], [75, "id9"], [76, "xml-output"], [76, "id2"], [76, "id4"], [76, "id5"], [76, "id7"], [76, "id9"], [76, "id11"], [76, "id13"], [76, "id15"], [76, "id17"], [76, "id19"], [76, "id21"], [76, "id23"], [76, "id25"], [76, "id27"], [82, "xml-output"], [82, "id2"], [82, "id4"], [82, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[117, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[70, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[70, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[70, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[70, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[60, "account-manager-default-property-scope"]], "activity_expire_days": [[60, "activity-expire-days"]], "activity_use_cached_mountpoints": [[60, "activity-use-cached-mountpoints"]], "admin-delegation:add": [[157, "admin-delegation-add"]], "admin-delegation:remove": [[157, "admin-delegation-remove"]], "admin-delegation:show": [[157, "admin-delegation-show"]], "allow_local_remote_servers": [[60, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[60, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[60, "allowed-admin-ranges"]], "allowed_no_password_confirmation_ranges": [[60, "allowed-no-password-confirmation-ranges"]], "appcodechecker": [[60, "appcodechecker"]], "apps_paths": [[60, "apps-paths"]], "appsallowlist": [[60, "appsallowlist"]], "appstoreenabled": [[60, "appstoreenabled"]], "appstoreurl": [[60, "appstoreurl"]], "auth.bruteforce.max-attempts": [[60, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[60, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[60, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[60, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[60, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[60, "auth-webauthn-enabled"]], "auto_logout": [[60, "auto-logout"]], "background-job:delete": [[157, "background-job-delete"]], "background-job:execute": [[157, "background-job-execute"]], "background-job:history": [[157, "background-job-history"]], "background-job:list": [[157, "background-job-list"]], "background-job:running": [[157, "background-job-running"]], "background-job:worker": [[157, "background-job-worker"]], "background:cron": [[157, "background-cron"]], "background_jobs_expiration_days": [[60, "background-jobs-expiration-days"]], "binary_search_paths": [[60, "binary-search-paths"]], "bulkupload.enabled": [[60, "bulkupload-enabled"]], "cache_app_config": [[60, "cache-app-config"]], "cache_chunk_gc_ttl": [[60, "cache-chunk-gc-ttl"]], "cache_path": [[60, "cache-path"]], "calendar:export": [[152, "calendar-export"]], "calendar:import": [[152, "calendar-import"]], "carddav_sync_request_timeout": [[60, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[60, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[60, "check-data-directory-permissions"]], "check_for_working_htaccess": [[60, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[60, "check-for-working-wellknown-setup"]], "cipher": [[60, "cipher"]], "comments.managerFactory": [[60, "comments-managerfactory"]], "config.php": [[161, "config-php"]], "config_is_read_only": [[60, "config-is-read-only"]], "configfilemode": [[60, "configfilemode"]], "connectivity_check_domains": [[60, "connectivity-check-domains"]], "cookie_domain": [[60, "cookie-domain"]], "copied_sample_config": [[60, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[60, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[60, "csrf-optout"]], "customclient_desktop": [[60, "customclient-desktop"]], "data-fingerprint": [[60, "data-fingerprint"]], "datadirectory": [[60, "datadirectory"]], "dav:absence:get": [[152, "dav-absence-get"]], "dav:absence:set": [[152, "dav-absence-set"]], "dav:clear-calendar-unshares": [[152, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[152, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[152, "dav-create-addressbook"]], "dav:create-calendar": [[152, "dav-create-calendar"]], "dav:create-subscription": [[152, "dav-create-subscription"]], "dav:delete-calendar": [[152, "dav-delete-calendar"]], "dav:delete-subscription": [[152, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[152, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[152, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[152, "dav-list-calendar-shares"]], "dav:list-calendars": [[152, "dav-list-calendars"]], "dav:list-subscriptions": [[152, "dav-list-subscriptions"]], "dav:move-calendar": [[152, "dav-move-calendar"]], "dav:remove-invalid-shares": [[152, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[152, "dav-retention-clean-up"]], "dav:send-event-reminders": [[152, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[152, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[152, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[152, "db-add-missing-columns"]], "db:add-missing-indices": [[152, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[152, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[152, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[152, "db-convert-mysql-charset"]], "db:convert-type": [[152, "db-convert-type"]], "db:schema:expected": [[152, "db-schema-expected"]], "db:schema:export": [[152, "db-schema-export"]], "dbdriveroptions": [[60, "dbdriveroptions"]], "dbhost": [[60, "dbhost"]], "dbname": [[60, "dbname"]], "dbpassword": [[60, "dbpassword"]], "dbpersistent": [[60, "dbpersistent"]], "dbreplica": [[60, "dbreplica"]], "dbtableprefix": [[60, "dbtableprefix"]], "dbtype": [[60, "dbtype"]], "dbuser": [[60, "dbuser"]], "debug": [[60, "debug"]], "default_certificates_bundle_path": [[60, "default-certificates-bundle-path"]], "default_language": [[60, "default-language"]], "default_locale": [[60, "default-locale"]], "default_phone_region": [[60, "default-phone-region"]], "default_timezone": [[60, "default-timezone"]], "defaultapp": [[60, "defaultapp"]], "diagnostics.logging": [[60, "diagnostics-logging"]], "diagnostics.logging.threshold": [[60, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[60, "documentation-url-server-logs"]], "enable_lazy_objects": [[60, "enable-lazy-objects"]], "enable_non-accessible_features": [[60, "enable-non-accessible-features"]], "enable_previews": [[60, "enable-previews"]], "enabledPreviewProviders": [[60, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[60, "encryption-use-legacy-base64-encoding"]], "encryption:change-key-storage-root": [[153, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[153, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[153, "encryption-decrypt-all"]], "encryption:disable": [[153, "encryption-disable"]], "encryption:disable-master-key": [[153, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[153, "encryption-drop-legacy-filekey"]], "encryption:enable": [[153, "encryption-enable"]], "encryption:enable-master-key": [[153, "encryption-enable-master-key"]], "encryption:encrypt-all": [[153, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[153, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[153, "encryption-fix-key-location"]], "encryption:list-modules": [[153, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[153, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[153, "encryption-recover-user"]], "encryption:scan:legacy-format": [[153, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[153, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[153, "encryption-show-key-storage-root"]], "encryption:status": [[153, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[154, "federation-sync-addressbooks"]], "file": [[67, "file"]], "filelocking.debug": [[60, "filelocking-debug"]], "filelocking.ttl": [[60, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[60, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[60, "files-chunked-upload-max-size"]], "files.trash.delete": [[60, "files-trash-delete"]], "files:cleanup": [[154, "files-cleanup"]], "files:copy": [[154, "files-copy"]], "files:delete": [[154, "files-delete"]], "files:get": [[154, "files-get"]], "files:mkdir": [[154, "files-mkdir"]], "files:mount:list": [[154, "files-mount-list"]], "files:mount:refresh": [[154, "files-mount-refresh"]], "files:move": [[154, "files-move"]], "files:object:delete": [[154, "files-object-delete"]], "files:object:get": [[154, "files-object-get"]], "files:object:info": [[154, "files-object-info"]], "files:object:list": [[154, "files-object-list"]], "files:object:orphans": [[154, "files-object-orphans"]], "files:object:put": [[154, "files-object-put"]], "files:put": [[154, "files-put"]], "files:reminders": [[154, "files-reminders"]], "files:repair-tree": [[154, "files-repair-tree"]], "files:sanitize-filenames": [[154, "files-sanitize-filenames"]], "files:scan": [[154, "files-scan"]], "files:scan-app-data": [[154, "files-scan-app-data"]], "files:touch": [[154, "files-touch"]], "files:transfer-ownership": [[154, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[154, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[157, "files-antivirus-background-scan"]], "files_antivirus:mark": [[157, "files-antivirus-mark"]], "files_antivirus:scan": [[157, "files-antivirus-scan"]], "files_antivirus:status": [[157, "files-antivirus-status"]], "files_external:applicable": [[154, "files-external-applicable"]], "files_external:backends": [[154, "files-external-backends"]], "files_external:config": [[154, "files-external-config"]], "files_external:create": [[154, "files-external-create"]], "files_external:delete": [[154, "files-external-delete"]], "files_external:dependencies": [[154, "files-external-dependencies"]], "files_external:export": [[154, "files-external-export"]], "files_external:import": [[154, "files-external-import"]], "files_external:list": [[154, "files-external-list"]], "files_external:notify": [[154, "files-external-notify"]], "files_external:option": [[154, "files-external-option"]], "files_external:scan": [[154, "files-external-scan"]], "files_external:verify": [[154, "files-external-verify"]], "files_external_allow_create_new_local": [[60, "files-external-allow-create-new-local"]], "files_no_background_scan": [[60, "files-no-background-scan"]], "filesystem_cache_readonly": [[60, "filesystem-cache-readonly"]], "filesystem_check_changes": [[60, "filesystem-check-changes"]], "forbidden_filename_basenames": [[60, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[60, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[60, "forbidden-filename-extensions"]], "forbidden_filenames": [[60, "forbidden-filenames"]], "force_language": [[60, "force-language"]], "force_locale": [[60, "force-locale"]], "forwarded_for_headers": [[60, "forwarded-for-headers"]], "group:add": [[158, "group-add"]], "group:adduser and group:removeuser": [[158, "group-adduser-and-group-removeuser"]], "group:delete": [[158, "group-delete"]], "group:info": [[158, "group-info"]], "group:list": [[158, "group-list"]], "gs.enabled": [[60, "gs-enabled"]], "gs.federation": [[60, "gs-federation"]], "has_internet_connection": [[60, "has-internet-connection"]], "hashingCost": [[60, "hashingcost"]], "hashingMemoryCost": [[60, "hashingmemorycost"]], "hashingThreads": [[60, "hashingthreads"]], "hashingTimeCost": [[60, "hashingtimecost"]], "hashing_default_password": [[60, "hashing-default-password"]], "hide_login_form": [[60, "hide-login-form"]], "htaccess.IgnoreFrontController": [[60, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[60, "htaccess-rewritebase"]], "http_client_add_user_agent_url": [[60, "http-client-add-user-agent-url"]], "info:file": [[157, "info-file"]], "info:file:space": [[157, "info-file-space"]], "info:storage": [[157, "info-storage"]], "info:storages": [[157, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[154, "integrity-check-app"]], "integrity:check-core": [[154, "integrity-check-core"]], "integrity:sign-app": [[154, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[155, "ldap-check-group"]], "ldap:check-user": [[155, "ldap-check-user"]], "ldap:create-empty-config": [[155, "ldap-create-empty-config"]], "ldap:delete-config": [[155, "ldap-delete-config"]], "ldap:search": [[155, "ldap-search"]], "ldap:set-config": [[155, "ldap-set-config"]], "ldap:show-remnants": [[155, "ldap-show-remnants"]], "ldap:test-config": [[155, "ldap-test-config"]], "ldap:test-user-settings": [[155, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[60, "ldapusercleanupinterval"]], "ldap_log_file": [[60, "ldap-log-file"]], "localstorage.allowsymlinks": [[60, "localstorage-allowsymlinks"]], "localstorage.umask": [[60, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[60, "localstorage-unlink-on-truncate"]], "log.backtrace": [[60, "log-backtrace"]], "log.condition": [[60, "log-condition"]], "log:file": [[157, "log-file"]], "log:manage": [[157, "log-manage"]], "log_query": [[60, "log-query"]], "log_rotate_size": [[60, "log-rotate-size"]], "log_type": [[60, "log-type"]], "log_type_audit": [[60, "log-type-audit"]], "logdateformat": [[60, "logdateformat"]], "logfile": [[60, "logfile"]], "logfile_audit": [[60, "logfile-audit"]], "logfilemode": [[60, "logfilemode"]], "login_form_autocomplete": [[60, "login-form-autocomplete"]], "login_form_timeout": [[60, "login-form-timeout"]], "loglevel": [[60, "loglevel"]], "loglevel_dirty_database_queries": [[60, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[60, "loglevel-frontend"]], "logo_url": [[60, "logo-url"]], "logtimezone": [[60, "logtimezone"]], "lookup_server": [[60, "lookup-server"]], "lost_password_link": [[60, "lost-password-link"]], "mail_domain": [[60, "mail-domain"]], "mail_from_address": [[60, "mail-from-address"]], "mail_send_plaintext_only": [[60, "mail-send-plaintext-only"]], "mail_sendmailmode": [[60, "mail-sendmailmode"]], "mail_smtpauth": [[60, "mail-smtpauth"]], "mail_smtpdebug": [[60, "mail-smtpdebug"]], "mail_smtphost": [[60, "mail-smtphost"]], "mail_smtpmode": [[60, "mail-smtpmode"]], "mail_smtpname": [[60, "mail-smtpname"]], "mail_smtppassword": [[60, "mail-smtppassword"]], "mail_smtpport": [[60, "mail-smtpport"]], "mail_smtpsecure": [[60, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[60, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[60, "mail-smtptimeout"]], "mail_template_class": [[60, "mail-template-class"]], "maintenance": [[60, "id1"]], "maintenance:data-fingerprint": [[157, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[157, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[157, "maintenance-mode"]], "maintenance:repair": [[157, "maintenance-repair"]], "maintenance:repair-share-owner": [[157, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[157, "maintenance-theme-update"]], "maintenance:update:htaccess": [[157, "maintenance-update-htaccess"]], "maintenance_window_start": [[57, "maintenance-window-start"], [60, "maintenance-window-start"]], "max_file_conversion_filesize": [[60, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[60, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[60, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[81, "memberof-read-memberof-permissions"]], "memcache.distributed": [[60, "memcache-distributed"]], "memcache.kvstore": [[60, "memcache-kvstore"]], "memcache.local": [[60, "memcache-local"]], "memcache.locking": [[60, "memcache-locking"]], "memcache_customprefix": [[60, "memcache-customprefix"]], "memcached_options": [[60, "memcached-options"]], "memcached_servers": [[60, "memcached-servers"]], "metadata_max_filesize": [[60, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[60, "minimum-supported-desktop-version"]], "mysql.collation": [[60, "mysql-collation"]], "mysql.utf8mb4": [[60, "mysql-utf8mb4"]], "nginx": [[26, "nginx"], [93, "nginx"]], "no_unsupported_browser_warning": [[60, "no-unsupported-browser-warning"]], "objectstore": [[60, "objectstore"], [60, "id2"], [60, "id3"]], "objectstore.multibucket.preview-distribution": [[60, "objectstore-multibucket-preview-distribution"]], "occ commands": [[58, "occ-commands"], [161, "occ-commands"]], "ocm:keys:activate": [[156, "ocm-keys-activate"]], "ocm:keys:list": [[156, "ocm-keys-list"]], "ocm:keys:retire": [[156, "ocm-keys-retire"]], "ocm:keys:stage": [[156, "ocm-keys-stage"]], "openmetrics_allowed_clients": [[60, "openmetrics-allowed-clients"]], "openmetrics_skipped_classes": [[60, "openmetrics-skipped-classes"]], "openssl": [[60, "openssl"]], "overwrite.cli.url": [[60, "overwrite-cli-url"]], "overwritecondaddr": [[60, "overwritecondaddr"]], "overwritehost": [[60, "overwritehost"]], "overwriteprotocol": [[60, "overwriteprotocol"]], "overwritewebroot": [[60, "overwritewebroot"]], "part_file_in_storage": [[60, "part-file-in-storage"]], "passwordsalt": [[60, "passwordsalt"]], "pgsql_ssl": [[60, "pgsql-ssl"]], "preview:cleanup": [[154, "preview-cleanup"]], "preview_concurrency_all": [[60, "preview-concurrency-all"]], "preview_concurrency_new": [[60, "preview-concurrency-new"]], "preview_expiration_days": [[60, "preview-expiration-days"]], "preview_ffmpeg_path": [[60, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[60, "preview-ffprobe-path"]], "preview_imaginary_key": [[60, "preview-imaginary-key"]], "preview_imaginary_url": [[60, "preview-imaginary-url"]], "preview_libreoffice_path": [[60, "preview-libreoffice-path"]], "preview_max_filesize_image": [[60, "preview-max-filesize-image"]], "preview_max_memory": [[60, "preview-max-memory"]], "preview_max_x": [[60, "preview-max-x"]], "preview_max_y": [[60, "preview-max-y"]], "profile.enabled": [[60, "profile-enabled"]], "profiler": [[60, "profiler"]], "profiling.path": [[60, "profiling-path"]], "profiling.request": [[60, "profiling-request"]], "profiling.request.rate": [[60, "profiling-request-rate"]], "profiling.sample": [[60, "profiling-sample"]], "profiling.sample.rate": [[60, "profiling-sample-rate"]], "profiling.sample.rotation": [[60, "profiling-sample-rotation"]], "profiling.secret": [[60, "profiling-secret"]], "projects.enabled": [[60, "projects-enabled"]], "proxy": [[60, "proxy"]], "proxyexclude": [[60, "proxyexclude"]], "proxyuserpwd": [[60, "proxyuserpwd"]], "qmail": [[63, "qmail"]], "query_log_file": [[60, "query-log-file"]], "query_log_file_backtrace": [[60, "query-log-file-backtrace"]], "query_log_file_parameters": [[60, "query-log-file-parameters"]], "query_log_file_requestid": [[60, "query-log-file-requestid"]], "quota_include_external_storage": [[60, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[60, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[60, "ratelimit-overwrite"]], "redis": [[60, "redis"]], "redis.cluster": [[60, "redis-cluster"]], "redis_log_file": [[60, "redis-log-file"]], "reduce_to_languages": [[60, "reduce-to-languages"]], "reference_opengraph": [[60, "reference-opengraph"]], "remember_login_cookie_lifetime": [[60, "remember-login-cookie-lifetime"]], "secret": [[60, "secret"]], "security.ipv6_normalized_subnet_size": [[60, "security-ipv6-normalized-subnet-size"]], "security:bruteforce:attempts": [[157, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[157, "security-bruteforce-reset"]], "security:certificates": [[157, "security-certificates"]], "security:certificates:export": [[157, "security-certificates-export"]], "security:certificates:import": [[157, "security-certificates-import"]], "security:certificates:remove": [[157, "security-certificates-remove"]], "server": [[60, "server"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[154, "share-list"], [157, "share-list"]], "share_folder": [[60, "share-folder"]], "sharing.allow_custom_share_folder": [[60, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[60, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[60, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[60, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[60, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[60, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[60, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[60, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[60, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[60, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[60, "sharing-minsearchstringlength"]], "sharing:cleanup-remote-storages": [[154, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[154, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[154, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[154, "sharing-fix-share-owners"]], "simpleSignUpLink.shown": [[60, "simplesignuplink-shown"]], "skeletondirectory": [[60, "skeletondirectory"]], "sort_groups_by_name": [[60, "sort-groups-by-name"]], "sqlite.journal_mode": [[60, "sqlite-journal-mode"]], "supportedDatabases": [[60, "supporteddatabases"]], "syslog": [[67, "syslog"]], "syslog_tag": [[60, "syslog-tag"]], "syslog_tag_audit": [[60, "syslog-tag-audit"]], "systemd": [[57, "systemd"], [67, "systemd"]], "tag:add": [[158, "tag-add"]], "tag:delete": [[158, "tag-delete"]], "tag:edit": [[158, "tag-edit"]], "tag:list": [[158, "tag-list"]], "taskprocessing:task-type:set-enabled": [[157, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[157, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[157, "taskprocessing-task-get"]], "taskprocessing:task:list": [[157, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[157, "taskprocessing-task-stats"]], "taskprocessing:worker": [[157, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[157, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[154, "trashbin-cleanup"], [154, "id1"]], "trashbin:expire": [[154, "trashbin-expire"], [154, "id2"]], "trashbin:restore": [[154, "trashbin-restore"]], "trashbin:size": [[154, "trashbin-size"], [154, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[158, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[158, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[158, "twofactorauth-enforce"]], "twofactorauth:state": [[158, "twofactorauth-state"]], "unified_search.enabled": [[60, "unified-search-enabled"]], "updatechecker": [[60, "updatechecker"]], "updatedirectory": [[60, "updatedirectory"]], "updater.release.channel": [[60, "updater-release-channel"]], "updater.server.url": [[60, "updater-server-url"]], "upgrade.cli-upgrade-link": [[60, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[60, "upgrade-disable-web"]], "user": [[60, "user"]], "user:add": [[158, "user-add"]], "user:auth-tokens:add": [[158, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[158, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[158, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[158, "user-clear-avatar-cache"]], "user:delete": [[158, "user-delete"]], "user:disable and user:enable": [[158, "user-disable-and-user-enable"]], "user:info": [[158, "user-info"]], "user:keys:verify": [[158, "user-keys-verify"]], "user:lastseen": [[158, "user-lastseen"]], "user:list": [[158, "user-list"]], "user:profile": [[158, "user-profile"]], "user:report": [[158, "user-report"]], "user:resetpassword": [[158, "user-resetpassword"]], "user:setting": [[158, "user-setting"]], "user:sync-account-data": [[158, "user-sync-account-data"]], "user:welcome": [[158, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[154, "versions-cleanup"], [154, "id4"]], "versions:expire": [[154, "versions-expire"], [154, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[157, "workflows-list"]], "\u201cAccess through untrusted domain\u201d error with HTTP/3": [[130, "access-through-untrusted-domain-error-with-http-3"]], "\u201cCSync unknown error\u201d": [[94, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[94, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/eu_ai_act", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "apps_management_api", "collectives/index", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_monitoring/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/index", "desktop/massdeployment", "desktop/restrictaccess", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/data_retention", "gdpr/helpful_apps", "gdpr/index", "gdpr/personal_data", "gdpr/subject_rights", "groupware/calendar", "groupware/contacts", "groupware/contactsinteraction", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/automatic_configuration", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_apps", "occ_command", "occ_database", "occ_encryption", "occ_files", "occ_ldap", "occ_ocm", "occ_system", "occ_users", "office/collabora_online", "office/configuration", "office/euro-office/configuration", "office/euro-office/index", "office/euro-office/installation", "office/euro-office/installation_debian", "office/euro-office/installation_docker", "office/euro-office/installation_ubuntu", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_notes/upgrade_to_33", "release_notes/upgrade_to_35", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/eu_ai_act.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "apps_management_api.rst", "collectives/index.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_monitoring/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/restrictaccess.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/data_retention.rst", "gdpr/helpful_apps.rst", "gdpr/index.rst", "gdpr/personal_data.rst", "gdpr/subject_rights.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/contactsinteraction.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/automatic_configuration.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_apps.rst", "occ_command.rst", "occ_database.rst", "occ_encryption.rst", "occ_files.rst", "occ_ldap.rst", "occ_ocm.rst", "occ_system.rst", "occ_users.rst", "office/collabora_online.rst", "office/configuration.rst", "office/euro-office/configuration.rst", "office/euro-office/index.rst", "office/euro-office/installation.rst", "office/euro-office/installation_debian.rst", "office/euro-office/installation_docker.rst", "office/euro-office/installation_ubuntu.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_notes/upgrade_to_33.rst", "release_notes/upgrade_to_35.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 26, 27, 28, 29, 31, 37, 38, 40, 41, 44, 45, 48, 49, 56, 57, 58, 59, 60, 62, 63, 64, 67, 69, 72, 74, 77, 81, 83, 84, 88, 92, 93, 94, 96, 97, 99, 100, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 119, 121, 122, 125, 127, 130, 131, 132, 133, 134, 137, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 161, 162, 164, 165, 168, 173, 181, 184, 185, 187, 188], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 16, 17, 22, 23, 24, 26, 28, 29, 33, 41, 45, 48, 52, 53, 59, 60, 63, 67, 69, 70, 71, 75, 76, 77, 81, 82, 85, 88, 92, 94, 96, 97, 99, 100, 108, 113, 114, 117, 118, 119, 125, 127, 129, 130, 131, 133, 135, 139, 145, 148, 149, 150, 151, 152, 154, 155, 157, 158, 160, 165, 167, 173, 180, 181, 182, 183, 184, 186, 187, 188], "00": [22, 23, 55, 59, 60, 67, 154, 157, 158], "000": [29, 113, 114, 120], "0000": 157, "001": 60, "0022": 60, "00679e": 157, "0082c9": [72, 157], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 135, 152, 154, 157, 158], "0100": 63, "0123": 76, "01t00": 154, "01t08": 158, "01t09": 154, "01t12": 154, "01t14": 157, "02": [6, 59, 67, 154], "03": [55, 67, 158], "04": [22, 72, 88, 128, 134, 135, 154, 162, 163, 170, 186], "05": [57, 60, 130, 152, 154], "050": 157, "055": 22, "06": [130, 157], "062": 22, "0640": [60, 67], "07": [60, 154], "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 119, "08": [60, 154, 157], "09": [67, 130, 157], "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 138, "0e": 55, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17, 22, 23, 24, 26, 28, 29, 31, 33, 43, 47, 48, 53, 56, 57, 58, 59, 60, 63, 66, 67, 70, 71, 75, 76, 77, 81, 82, 88, 92, 93, 94, 96, 97, 99, 100, 108, 113, 114, 117, 119, 125, 127, 129, 130, 131, 133, 134, 137, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 163, 165, 167, 173, 179, 180, 182, 183, 184, 185, 187, 188], "10": [1, 2, 4, 5, 6, 7, 9, 10, 12, 15, 22, 23, 24, 41, 44, 47, 55, 56, 58, 60, 63, 67, 69, 72, 81, 85, 86, 88, 94, 97, 113, 114, 117, 124, 133, 135, 145, 154, 157, 158, 160, 163, 164, 165, 166, 182, 183, 186, 188], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 117, 120, 133, 157, 165, 173, 181, 187], "1000": [5, 53, 81, 94, 125, 133], "10000": [59, 125], "1000000": 94, "10000000": 94, "1002": 188, "100m": 165, "100mb": [3, 8, 76, 94], "100mib": 183, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 117, 133], "103": [75, 76], "103f": 155, "104": 76, "1040": 139, "10485760": [56, 97], "104857600": [26, 48, 60, 67, 165], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 154], "10m": [97, 157], "10mib": 183, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 119, 135, 149, 154, 157, 158, 171, 186, 188], "110": [63, 76], "111": [60, 76], "1110": 158, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 185, "12": [60, 65, 76, 81, 88, 93, 107, 130, 135, 150, 151, 157, 158, 162, 163, 182, 186], "120": [9, 16], "123": [18, 60, 188], "1234": 4, "12345": [8, 76, 157], "1255": 133, "127": [59, 60, 63, 97, 100, 127, 129, 130, 152, 157, 167, 173], "128": [60, 81], "128m": [22, 59], "128mb": 135, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 109, 135, 145, 158, 185, 186], "1319": 60, "1393": 119, "14": [22, 43, 67, 83, 93, 106, 109, 135, 145, 154, 157], "140": 5, "143": 63, "1465910968": 158, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 107, 108, 111, 113, 114, 117, 135, 145, 152, 154, 157, 158, 186], "1524": 63, "155": 60, "15552000": [70, 127], "1575981518": 157, "15768000": 125, "15778463": 130, "15857": 56, "15m": 117, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 127, 133, 135, 145, 157, 165], "16000": 8, "162409623552": 158, "162409624662": 158, "164": 81, "168": [22, 41, 52, 60, 63, 67, 97, 127, 129, 157], "169": 165, "16g": 26, "17": [88, 135, 148, 157, 158, 188], "1700001000": 188, "1700001200": 188, "1700001234": 188, "1700054321": 188, "1700099500": 188, "1700100000": 188, "1700100500": 188, "1702606600": 188, "1711971024": 188, "1736283": 188, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 135, 149, 157, 158], "180": [16, 53, 108], "1800": [60, 113, 114], "19": [60, 149, 150, 151, 157], "192": [22, 41, 52, 60, 63, 67, 97, 127, 129, 157], "1941": 81, "19417": 119, "19563": 59, "1970": 135, "198": 60, "19c": 135, "19fa45b394": 188, "19t08": 158, "1d": [70, 117], "1d4725ae1ac4e4798b541ca3f3cdce6": 119, "1gb": [2, 6, 26], "1h": [117, 157], "1st": [88, 142, 188], "1und1": 117, "2": [2, 3, 4, 5, 7, 8, 9, 13, 15, 22, 24, 25, 26, 29, 44, 48, 56, 59, 60, 63, 67, 70, 73, 77, 81, 88, 96, 97, 106, 117, 119, 125, 127, 128, 129, 130, 131, 135, 148, 149, 150, 151, 152, 153, 156, 157, 158, 163, 165, 174, 179, 180, 181, 184, 185, 186, 188, 189], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 107, 117, 119, 149, 158, 165], "200": [53, 82, 83, 154, 157, 165], "2000": 22, "2001": 60, "2002": 139, "2005": 60, "2006": [88, 139], "20080704": 22, "201": 5, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 157], "2020": 119, "2021": [67, 124], "2024": [88, 90, 130, 158, 188], "2025": [4, 88, 90, 157, 188], "20251111t100000z": 188, "2026": [88, 90, 130, 152, 154, 157], "203": 60, "2038": 135, "2048": [5, 81], "204800": [154, 157], "20971520": 26, "20mb": 26, "20t17": 158, "21": [33, 60, 67, 130, 150, 171], "2100": 107, "214": 127, "215": [89, 127], "21a7": 60, "21c": 135, "22": [37, 55, 63, 135, 154, 157, 188], "220": [63, 188], "221": [63, 157], "222": [60, 157], "22203": 59, "2245": 63, "23000": 96, "2323": 60, "233": 60, "2375": [97, 98], "23999": 96, "23ai": 135, "23t07": 157, "23t08": 157, "23t09": 157, "23t10": 157, "24": [43, 44, 58, 60, 72, 73, 88, 94, 97, 107, 108, 111, 115, 128, 134, 135, 149, 162, 163, 170, 183, 186], "24000": [97, 98], "24001": 97, "24099": 97, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 93, 114, 130, 149, 157], "250": 63, "2500": 60, "250m": 165, "251": 157, "252": 60, "254": 165, "255": 60, "256": [29, 47, 60, 130], "256mb": 135, "2592000": [73, 113, 157], "26": [6, 63, 88, 113, 114, 117, 135, 149, 158, 178, 187], "261535": 119, "262086": 119, "262087": 119, "26379": 59, "26396": 137, "2668": 157, "268435456": 165, "27": [88, 114, 143, 149, 157, 178, 187], "28": [7, 18, 60, 88, 118, 143, 148, 149, 178, 180, 187], "284": 157, "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 143, 148, 149], "293": 157, "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 119, "2f": 82, "2fa": [80, 117, 158], "2fldap": 82, "2g": 18, "2gb": [3, 26, 154], "2h": 157, "2k": 22, "2m": 22, "2nd": 81, "2x": 183, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 94, 96, 117, 127, 129, 131, 133, 134, 135, 139, 148, 149, 151, 154, 157, 158, 163, 165, 175, 181, 182, 183, 184, 186, 187, 188], "30": [8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 96, 97, 108, 111, 113, 114, 117, 119, 133, 148, 157, 158, 178, 183, 184], "300": [60, 83, 97, 117, 130], "30000": [113, 114], "301": [69, 125, 127, 130, 139], "3010": 92, "302": 130, "30566": 51, "3060": 96, "31": [10, 50, 55, 60, 88, 107, 119, 124, 178], "3100": 184, "31308": 38, "31536000": [130, 165], "3166": 60, "31d4a230559d4f3e2c471d3ea094": 138, "32": [3, 15, 22, 26, 29, 31, 48, 50, 60, 88, 113, 114, 135, 165, 178, 189], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 16, 52, 88, 93, 113, 148, 153, 154, 178, 189], "3306": [20, 63, 129], "34": [3, 59, 88, 145, 148, 188], "34262": 133, "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189], "36": [22, 67], "3600": [26, 60, 81, 117, 125, 157], "365": [53, 60, 73, 108, 111], "37": [60, 67, 119], "3733554": 157, "38": 157, "3845056": 157, "3847229": 157, "389": [81, 82], "39": 63, "399": 188, "3a": 82, "3mb": 117, "3rd": [60, 63, 139, 143, 149, 160, 174, 176], "3rdparti": [88, 124, 130, 132], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 117, 119, 124, 127, 130, 131, 133, 135, 141, 143, 149, 151, 157, 160, 163, 165, 171, 179, 182, 183, 184, 186, 187, 188], "40": 55, "400": [11, 120], "4000": 5, "40000": 8, "401": 93, "403": 93, "404": 130, "4086": 127, "4096": [5, 60, 188], "41": 97, "413": 165, "41395": 181, "42": [14, 60, 154, 157, 158, 188], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 138, "43200": 127, "437": 188, "438": 188, "4389": 67, "44": 158, "441": 157, "4418": 63, "443": [48, 60, 93, 125, 127, 130, 167], "444": 125, "45": 60, "450": 6, "456": 76, "46": 158, "465": 63, "469": 127, "46cfa6e729ff329e6ede076853154113": 119, "47": [56, 158], "48": [58, 94], "483": 119, "49": [60, 119], "4966612345678": 81, "497": 119, "4a87e94522a3cf26dba8977ae901094d": 119, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 130, "5": [0, 1, 2, 3, 5, 15, 16, 48, 57, 59, 60, 67, 85, 88, 93, 97, 102, 108, 113, 114, 117, 119, 125, 127, 133, 134, 135, 139, 148, 149, 150, 151, 154, 157, 158, 163, 165, 182, 185, 188], "50": [41, 44, 60, 83, 85, 94, 113, 114, 117, 129, 133, 154, 157], "500": [28, 53, 60, 82, 85, 133, 139, 157, 158, 165], "5000": [60, 113, 114, 184], "50000000": 94, "500mb": [3, 165], "501": 119, "502": [88, 133], "504": [26, 130, 133], "50m": 60, "51": [60, 83, 188], "511": 60, "512": [38, 119, 125, 127, 148, 154], "512k": 130, "512m": 130, "512mb": [46, 88, 130, 131, 135], "512x512": 9, "513": 119, "513m": 125, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 94, "52428800": 63, "524288000": [48, 60, 165], "5242880000": 48, "53": 26, "537": 67, "537919488": 125, "5432": [129, 164, 165, 166], "55": [63, 67, 154], "5545": 152, "56": [22, 60, 63, 67], "5646": 60, "5672": 165, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 119], "594627": 157, "599": 188, "5e": 55, "5f": 55, "5gb": [6, 154], "5min": 57, "5pm": 102, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 88, 113, 117, 119, 125, 131, 144, 151, 157, 163, 171, 183, 186], "60": [15, 16, 22, 47, 60, 73, 107, 108, 120, 130, 133, 188], "600": [81, 82], "6000": 94, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 119, "62x34": 72, "63072000": 73, "631": 63, "6321": 152, "636": 81, "6379": [45, 59, 60, 124, 125, 165], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 130, 135], "640": 143, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 157, "68": 67, "6f": 55, "7": [15, 29, 43, 53, 56, 60, 67, 72, 88, 108, 115, 117, 124, 130, 131, 135, 144, 154, 157, 163, 179, 186, 187, 188], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "71d5": 155, "72": 127, "7200": 117, "7265": 152, "73": 55, "750": 143, "767": 60, "768": 165, "77": 11, "770": 59, "78": 184, "789": 76, "7b": [5, 11, 55], "7d": 130, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 96, 117, 119, 127, 128, 130, 131, 133, 134, 135, 139, 145, 157, 163, 179, 180, 181, 182, 183, 184, 185, 186], "80": [6, 47, 55, 63, 124, 127, 130, 133, 134, 165], "800": 165, "8000": 5, "800mb": [10, 165], "8080": [60, 97, 134], "8081": 60, "8088": 60, "8096": 29, "8125": 165, "8147": 29, "8192": 29, "8283": 28, "83": 119, "83379f9bc36915d5024de878386060b5": 119, "838860800": 165, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 158, "8601": 60, "86400": 127, "8651a9ac37674907606c936ced1333d7": 119, "8780": [97, 98], "8781": 97, "8782": [97, 98], "8802": 130, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 138, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 119, "8e9f60369dce3d8b2b27430bd50ec46d": 119, "8gb": [3, 5, 9], "8m": 133, "9": [15, 17, 22, 28, 41, 60, 81, 85, 93, 102, 117, 135, 151, 164, 165, 166, 182, 186, 188], "90": [1, 22, 53, 108, 133], "9000": [130, 133], "9031": 8, "909": 157, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 138, "94": 119, "9421": 156, "95": [11, 55, 60], "95a8": 155, "95af": 155, "9651": 188, "97": [55, 119], "97985889682313216": 157, "98": 158, "98108257692012544": 157, "98109588267847680": 157, "98109592852221952": 157, "98109592927719424": 157, "98109593040965632": 157, "9825679": 2, "9839": 119, "98543234": 2, "9876": 81, "99": 60, "993": [63, 119], "995": 63, "9980": [167, 172], "9999": [48, 81], "9_": 81, "9am": 102, "9b": [1, 5], "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 24, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 94, 96, 97, 107, 108, 112, 113, 115, 117, 119, 120, 121, 125, 127, 129, 130, 133, 134, 135, 138, 139, 143, 144, 147, 151, 154, 157, 161, 162, 163, 164, 165, 166, 167, 169, 170, 175, 179, 187], "AND": [67, 112, 139], "And": [3, 31, 38, 48, 57, 59, 63, 125, 143, 148, 155, 187], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 60, 77, 83, 94, 96, 102, 112, 113, 119, 124, 125, 127, 144, 181, 187, 189], "At": [0, 1, 2, 3, 5, 6, 9, 11, 16, 63, 67, 70, 80, 81, 113, 114, 144], "BY": [22, 126], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 96, 97, 113, 130, 139, 173], "But": [47, 50, 58, 60, 97, 165, 183], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 80, 81, 85, 95, 99, 113, 117, 127, 130, 134, 138, 146, 147, 150, 152, 157, 158, 160, 165, 168, 187, 188], "For": [1, 3, 6, 7, 8, 12, 14, 15, 16, 22, 23, 24, 25, 26, 28, 29, 33, 37, 38, 40, 41, 44, 45, 49, 51, 53, 55, 56, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 83, 85, 92, 93, 94, 95, 96, 97, 100, 108, 109, 112, 113, 114, 115, 119, 120, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 143, 144, 148, 149, 150, 151, 152, 153, 154, 155, 156, 160, 165, 167, 170, 171, 181, 184, 185, 187, 188, 189], "IF": [22, 126], "IT": 134, "If": [2, 3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 38, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 69, 70, 77, 78, 80, 81, 84, 85, 92, 93, 94, 96, 97, 98, 102, 108, 112, 113, 114, 115, 117, 118, 119, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 167, 173, 181, 182, 183, 184, 185, 187, 188, 189], "In": [0, 1, 3, 5, 6, 12, 14, 15, 16, 18, 22, 23, 25, 26, 28, 29, 31, 34, 40, 41, 42, 43, 48, 53, 56, 57, 58, 59, 60, 63, 66, 68, 69, 70, 72, 77, 79, 80, 81, 84, 85, 86, 92, 94, 96, 97, 98, 100, 102, 103, 113, 117, 119, 124, 125, 127, 129, 130, 131, 133, 134, 135, 136, 138, 139, 143, 145, 147, 148, 150, 151, 160, 170, 173, 175, 181, 188, 189], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 24, 25, 26, 28, 31, 36, 38, 40, 41, 44, 45, 48, 49, 53, 58, 59, 60, 61, 63, 64, 68, 70, 80, 81, 82, 92, 93, 94, 95, 96, 97, 98, 102, 103, 109, 110, 113, 114, 115, 118, 119, 120, 125, 127, 129, 130, 131, 132, 133, 134, 136, 138, 139, 143, 144, 147, 148, 149, 150, 153, 156, 157, 160, 162, 165, 173, 179, 181, 183, 184, 187, 188, 189], "Its": [58, 60, 108, 133], "NO": 144, "NOT": [22, 59, 60, 97, 126], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 96, 103, 107, 109, 133, 139, 148, 152, 153, 154, 157, 158, 173], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 94, 119, 133, 158], "ON": [22, 23, 60, 126], "OR": 67, "Of": [107, 129, 139, 189], "On": [16, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 94, 97, 107, 124, 126, 134, 139, 144, 146, 152, 157, 167, 187], "One": [8, 12, 43, 48, 59, 60, 94, 96, 134, 170], "Or": [1, 95, 134], "Such": 127, "TO": [22, 60, 126], "That": [22, 27, 56, 60, 62, 63, 81, 113, 114, 117, 143, 167], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 53, 56, 57, 59, 60, 61, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 83, 84, 85, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189], "Their": [152, 158], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 125, 126, 127, 133, 134, 143, 144, 148, 149, 152, 155, 164, 187], "There": [3, 24, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 94, 97, 98, 99, 106, 108, 127, 134, 136, 138, 139, 144, 149, 153, 157, 170, 175], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 59, 60, 70, 77, 80, 81, 83, 92, 94, 97, 111, 112, 117, 124, 127, 131, 133, 134, 137, 143, 148, 149, 150, 154, 155, 156, 157, 160, 161, 165, 178, 187, 189], "To": [3, 4, 13, 16, 22, 24, 27, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 94, 99, 108, 109, 112, 113, 114, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 132, 133, 134, 135, 136, 138, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 167, 176, 181, 187, 188, 189], "WITH": [22, 164, 166], "Will": [43, 155], "With": [0, 5, 29, 43, 60, 63, 77, 97, 120, 130, 139, 149, 157, 175, 183], "_": [81, 85, 154, 164, 166], "__host": [65, 88, 107], "_arm64": 130, "_bin": 60, "_complet": 151, "_context_chat_": 3, "_groupsr": 127, "_ping": 97, "_postgresql": 125, "_static": 60, "a2enmod": [134, 167], "a2ensit": 134, "a3b30430b1ccb41089170eecbe315d3a": 119, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 141, "aax": 147, "abbrevi": 85, "abc123": [154, 157], "abc123def456": 188, "abil": [6, 14, 58, 104, 129, 134, 160], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 94, 96, 98, 100, 102, 103, 113, 117, 121, 127, 131, 134, 146, 163, 172, 173], "abort": [60, 80, 122], "about": [1, 2, 3, 5, 6, 7, 8, 11, 16, 24, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 94, 97, 113, 117, 118, 119, 124, 127, 130, 133, 134, 137, 138, 139, 144, 145, 149, 150, 153, 154, 155, 157, 158, 173, 181, 183, 184, 185, 189], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 69, 72, 77, 81, 87, 88, 94, 97, 98, 113, 119, 121, 122, 124, 127, 129, 130, 134, 138, 139, 143, 148, 150, 151, 181, 188], "absenc": [81, 88], "absent": [152, 188], "absolut": [16, 60, 69, 81, 99, 122, 139, 150], "absorb": 133, "abstract": [133, 136], "abund": 139, "abus": 88, "abuse_detect": 117, "abuse_number_of_messages_per_15m": 117, "abuse_number_of_messages_per_1d": 117, "abuse_number_of_messages_per_1h": 117, "abuse_number_of_recipients_per_message_threshold": 117, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 24, 31, 32, 40, 41, 48, 60, 63, 66, 67, 69, 70, 84, 94, 97, 98, 112, 117, 118, 127, 151, 154, 157, 165, 173, 188, 189], "access": [0, 2, 8, 12, 13, 14, 15, 16, 18, 26, 28, 31, 32, 33, 34, 38, 40, 41, 43, 48, 52, 53, 54, 57, 58, 59, 60, 63, 64, 65, 72, 77, 80, 81, 84, 85, 88, 91, 92, 94, 96, 97, 98, 100, 103, 105, 106, 107, 108, 109, 111, 114, 115, 119, 120, 121, 122, 124, 128, 129, 133, 134, 139, 144, 145, 147, 148, 153, 154, 157, 158, 161, 165, 173, 176, 187, 188], "access_log": [94, 130], "accessible_featur": 88, "accident": [99, 108, 148], "accommod": [94, 143, 149], "accomplish": 113, "accord": [12, 44, 60, 81, 89, 108, 111, 145, 154, 160, 170], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 97, 139], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 29, 36, 43, 53, 54, 57, 58, 60, 63, 68, 73, 77, 80, 81, 83, 85, 88, 94, 108, 112, 115, 116, 121, 129, 131, 134, 151, 154, 155, 157, 188, 189], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 119, "accountmanag": [60, 77], "accumul": 94, "accur": [139, 149, 181], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 118, 127], "acl": [53, 59, 60, 69, 93, 117, 165], "acm": [72, 97, 130, 157], "acquir": [59, 119], "across": [1, 2, 7, 10, 32, 53, 59, 60, 77, 96, 107, 108, 115, 117, 131, 152, 154], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 109, 113, 188], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 88, 93, 96, 97, 105, 109, 111, 117, 128, 139, 148, 157, 158, 189], "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 93, 112, 113, 114, 125, 127, 131, 133, 134, 135, 139, 144, 148, 150, 153, 154, 155, 157, 158, 160, 164, 166, 187, 188], "activity_": 25, "activity_dbdriveropt": 25, "activity_dbhost": 25, "activity_dbnam": 25, "activity_dbpassword": 25, "activity_dbport": 25, "activity_dbus": 25, "activity_expire_dai": [53, 88, 108, 111], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 127], "actor_id": 112, "actor_typ": 112, "actual": [1, 4, 22, 26, 29, 53, 58, 60, 67, 70, 92, 97, 131, 139, 148, 157, 184, 188], "ad": [2, 4, 6, 8, 12, 18, 20, 24, 27, 28, 29, 40, 43, 52, 53, 57, 58, 59, 60, 63, 64, 67, 69, 70, 73, 81, 85, 88, 92, 109, 113, 114, 116, 118, 119, 121, 122, 125, 127, 133, 134, 135, 148, 157, 158, 160, 165, 179, 182, 183, 184, 188, 189], "ad2dab17b2f9": 155, "adapt": [59, 97, 127, 130, 139, 144, 171, 187, 189], "add": [0, 2, 6, 12, 18, 22, 23, 24, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 94, 96, 97, 98, 109, 111, 113, 114, 117, 119, 120, 122, 124, 125, 127, 130, 133, 134, 139, 141, 144, 145, 149, 150, 151, 154, 160, 164, 167, 173, 174, 180, 181, 182, 185, 188, 189], "add_head": [26, 130], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 5, 13, 16, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 44, 48, 54, 55, 56, 58, 60, 72, 74, 77, 80, 82, 85, 88, 91, 94, 95, 96, 97, 99, 100, 101, 111, 113, 124, 126, 127, 129, 131, 132, 133, 135, 136, 138, 139, 143, 151, 154, 157, 158, 161, 187, 188, 189], "addition": [2, 12, 41, 59, 81, 83, 93, 113, 114, 139, 184, 189], "additional_opt": 97, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 94, 96, 97, 98, 100, 102, 108, 109, 111, 116, 117, 128, 129, 130, 134, 144, 146, 149, 152, 154, 157, 158, 160, 161, 187], "address_of_remote_machin": 97, "addressbook": [41, 60, 88, 114, 115, 127, 139], "addressbookchang": 114, "addressbookid": 139, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 113, 114, 135], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 94, 97, 108, 125, 130, 131, 132, 133, 134, 135, 139, 143, 145, 171, 182, 183, 184, 187, 188], "adm": 75, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 18, 28, 34, 40, 41, 43, 45, 48, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 71, 74, 75, 76, 77, 80, 81, 82, 85, 87, 88, 92, 94, 96, 97, 100, 112, 113, 114, 117, 118, 119, 122, 124, 128, 133, 134, 138, 139, 143, 144, 146, 148, 149, 150, 151, 152, 153, 154, 158, 160, 161, 167, 168, 181, 185, 187, 188, 189], "admin_": 188, "admin_audit": [53, 88, 108, 111, 112], "admin_manu": 60, "adminemail": 121, "administ": [120, 157], "administr": [0, 1, 2, 6, 14, 16, 22, 24, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 94, 97, 102, 104, 106, 108, 109, 110, 111, 112, 113, 117, 120, 121, 122, 127, 129, 134, 139, 146, 149, 154, 157, 158, 161, 165, 173, 174, 181, 184, 187, 188], "adminlogin": 121, "adminpanel_en": 165, "adminpass": 121, "adminw": [167, 172], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 98, 101, 121, 134, 157, 170, 189], "advantag": [29, 32, 57, 88], "advertis": [57, 60, 156], "advic": [60, 110], "advis": [8, 160, 183, 189], "ae": [3, 29, 60, 133], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 94, 97, 102, 119, 127, 133, 135, 152, 154, 165, 171], "after": [1, 3, 4, 8, 14, 15, 16, 18, 20, 22, 24, 27, 28, 32, 37, 38, 44, 45, 47, 48, 49, 50, 57, 58, 59, 60, 62, 63, 64, 67, 68, 73, 77, 78, 79, 81, 85, 88, 93, 94, 96, 97, 99, 100, 102, 103, 106, 108, 109, 111, 114, 115, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 138, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 156, 157, 158, 160, 161, 165, 167, 168, 173, 181, 186, 187, 188, 189], "afterward": [58, 80, 81, 117, 134, 147, 148, 153, 167], "ag": [7, 46, 60, 85, 88, 105, 108, 125, 127, 130, 154, 157, 165], "again": [3, 16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 94, 97, 102, 113, 115, 118, 119, 124, 125, 143, 145, 148, 149, 150, 153, 173], "against": [0, 3, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 93, 103, 121, 122, 127, 133, 148, 152, 154, 157, 187, 188, 189], "agenda": 117, "agent": [5, 12, 13, 60, 64, 67, 88, 93, 102], "aggreg": 60, "aggress": 187, "agpl": 17, "agplv3": 16, "agre": 127, "agreement": 12, "ahead": 187, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 96, 117, 157, 185, 189], "ai_provid": 8, "aim": [127, 171], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 96, 101, 131, 133, 134, 188], "air": 148, "ajax": [53, 88, 117, 130, 150, 157, 160], "aka": 134, "akiaiosfodnn7exampl": 154, "alarm": [88, 116], "albert": 158, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 97, 98, 119, 127, 147], "alia": [81, 117, 134, 158, 165], "alias": 88, "aliasgroup1": 167, "aliasgroup2": 167, "alic": [18, 40, 77, 81, 188], "alice_1337": 81, "align": [63, 108], "aliv": [60, 133], "all": [1, 2, 3, 5, 6, 7, 9, 10, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 29, 33, 34, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 61, 64, 65, 67, 69, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 94, 96, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 129, 130, 132, 133, 134, 136, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 170, 171, 174, 181, 184, 187, 188, 189], "allenai": [5, 11], "alloc": [47, 60, 133], "allow": [1, 2, 3, 5, 7, 12, 15, 16, 22, 25, 26, 27, 29, 31, 32, 38, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 63, 64, 65, 68, 69, 73, 76, 77, 81, 82, 84, 85, 88, 93, 95, 96, 97, 99, 102, 103, 106, 107, 109, 114, 115, 117, 118, 127, 128, 129, 130, 131, 133, 134, 135, 148, 150, 151, 154, 156, 157, 158, 160, 161, 165, 170, 173, 174, 182, 188, 189], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 117], "allow_meta_ip_address": 165, "allow_persist": 22, "allow_private_ip_address": 165, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 127], "allowed_no_password_confirmation_rang": 88, "allowed_user_ag": 88, "allowencodedslash": 167, "allowlist": 185, "allowoverrid": [124, 134, 139], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 97, "almost": [60, 81, 134], "alon": [77, 127, 189], "along": [3, 5, 20, 44, 60, 120, 127, 129], "alongsid": [60, 130, 152], "alpin": 135, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 94, 97, 100, 114, 115, 117, 121, 122, 125, 127, 129, 131, 132, 133, 134, 139, 148, 150, 152, 153, 154, 156, 157, 165, 171, 181, 187, 189], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 36, 38, 40, 41, 42, 43, 47, 48, 50, 51, 53, 54, 57, 58, 59, 60, 64, 67, 69, 72, 74, 76, 80, 81, 83, 84, 85, 87, 88, 92, 93, 94, 96, 97, 99, 100, 102, 103, 106, 108, 109, 111, 113, 114, 115, 117, 119, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 151, 153, 154, 155, 157, 158, 161, 171, 173, 174, 181, 182, 183, 184, 185, 187, 188, 189], "alter": [12, 22, 23, 44, 49, 81, 183], "altern": [2, 26, 50, 57, 65, 88, 94, 121, 122, 131, 134, 137, 141, 150, 151, 157, 161, 169], "although": [43, 133, 151], "altitud": 127, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 24, 29, 39, 40, 43, 44, 53, 56, 58, 59, 60, 66, 67, 69, 71, 72, 77, 80, 81, 91, 92, 97, 98, 120, 125, 127, 129, 130, 131, 133, 138, 139, 143, 148, 149, 153, 154, 156, 157, 167, 181, 187, 188], "am": 152, "amazon": [40, 48, 60, 88, 184], "amazonaw": 48, "amazons3": 154, "amd": [3, 100], "amd64": [163, 164, 166], "american": 10, "among": [0, 3, 84, 120, 131, 187], "amongst": 96, "amount": [8, 28, 47, 59, 60, 81, 83, 94, 127, 134, 154, 184], "amp": 82, "amqp": 165, "amqp_": 165, "amqp_host": 165, "amqp_port": 165, "amqp_pwd": 165, "amqp_uri": 165, "amqp_us": 165, "amqp_vhost": 165, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 12, 14, 15, 16, 18, 22, 26, 28, 29, 31, 32, 33, 36, 38, 40, 41, 43, 44, 45, 48, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 69, 72, 74, 76, 77, 78, 79, 80, 81, 82, 85, 87, 88, 92, 93, 94, 96, 97, 99, 102, 104, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 143, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 165, 167, 168, 170, 173, 175, 179, 181, 183, 184, 187, 188, 189], "analysi": 12, "analyt": 15, "analyz": [1, 5, 60, 117], "andrew": 2, "android": [60, 64, 65, 72, 88, 102, 120, 135], "android_app": 55, "androidclienturl": 72, "angel": 89, "ani": [0, 1, 2, 3, 5, 7, 12, 14, 15, 16, 20, 22, 25, 26, 27, 28, 29, 32, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 54, 56, 57, 58, 59, 60, 63, 64, 67, 69, 70, 80, 81, 83, 84, 85, 87, 88, 92, 94, 95, 96, 97, 98, 99, 100, 102, 106, 108, 111, 112, 113, 114, 115, 117, 121, 122, 127, 133, 134, 135, 138, 139, 144, 148, 149, 151, 152, 153, 154, 156, 157, 158, 161, 163, 165, 173, 174, 179, 181, 185, 187, 188, 189], "anim": [6, 60, 165], "anna": 2, "anniversari": 187, "announc": [12, 63, 81, 127], "annual": 188, "anon": 60, "anonym": [81, 112, 127], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 94, 112, 115, 117, 122, 127, 129, 130, 132, 136, 138, 139, 149, 152, 154, 156, 167, 181, 182, 187], "ansi": 151, "answer": [1, 2, 60, 81, 88, 163, 185, 189], "anti": [56, 60, 88], "anticip": 187, "antiviru": [65, 88, 151], "anymor": [76, 81, 88, 145, 155, 184], "anyon": [12, 43, 67, 77, 161], "anyth": [14, 22, 31, 56, 58, 60, 113, 114, 143, 144], "anytim": [49, 60], "anywai": [92, 152], "anywher": [32, 125, 129, 157], "apach": [19, 41, 59, 60, 68, 70, 88, 94, 97, 111, 126, 127, 128, 129, 130, 133, 135, 139, 146, 151, 163, 181], "apache2": [59, 88, 93, 94, 126, 127, 131, 134, 139, 167], "apache2ctl": 134, "apachectl": 93, "apart": 124, "apc": [59, 60, 151, 183], "apcu": [60, 65, 70, 88, 124, 131, 133, 151, 183], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 28, 36, 43, 58, 59, 60, 68, 74, 77, 84, 86, 88, 94, 96, 97, 100, 117, 127, 130, 133, 157, 160, 175, 181, 188, 189], "apirequest": [17, 75, 76, 77, 82, 87, 189], "app": [0, 12, 13, 14, 18, 20, 25, 27, 40, 41, 42, 43, 44, 47, 49, 54, 55, 57, 59, 62, 64, 65, 68, 70, 72, 74, 77, 80, 81, 82, 83, 84, 85, 87, 92, 94, 95, 99, 100, 101, 102, 103, 104, 106, 108, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 124, 125, 126, 127, 128, 130, 131, 132, 134, 141, 143, 145, 146, 148, 149, 151, 152, 153, 155, 157, 158, 159, 162, 165, 169, 170, 173, 174, 175, 176, 181, 184, 187, 189], "app1": 150, "app2": 150, "app3": 150, "app_": 18, "app_api": [2, 3, 4, 8, 88, 97, 98, 99], "app_api_haproxy_us": 97, "app_container_nam": 97, "app_display_nam": 8, "app_host": 8, "app_id": [8, 98, 100], "app_port": 8, "app_python_skeleton": 99, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 95, 97, 98, 99, 100, 101], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 150], "appdata": [94, 154], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 94, 96, 109, 115, 126, 129, 130, 133, 138, 154, 155, 157, 174, 188], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 129, 137, 148, 151], "appframework": 100, "appid": [3, 14, 17, 97, 99, 137, 138, 157], "appimag": 135, "appinfo": [17, 138], "appl": [60, 72, 94, 135], "applewebkit": 67, "appli": [8, 12, 23, 24, 25, 26, 27, 29, 41, 43, 44, 53, 59, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 93, 97, 103, 107, 108, 119, 120, 127, 134, 140, 147, 148, 149, 150, 151, 154, 157, 158, 161, 165, 188], "applianc": [134, 144], "applic": [0, 2, 8, 12, 16, 17, 24, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 94, 96, 97, 102, 108, 111, 113, 117, 127, 128, 130, 133, 134, 136, 138, 139, 143, 144, 147, 149, 151, 153, 157, 160, 161, 165, 187], "appnam": 150, "appoint": [61, 113], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 108, 122, 142, 143, 187], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 93, 97, 108, 112, 113, 117, 126, 130, 133, 134, 137, 143, 144, 151, 157, 187], "approv": 88, "approve_link": 189, "approxim": [60, 81, 94, 153, 187], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 188], "apt": [56, 126, 127, 164, 166, 167, 168], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 85, 88, 91, 92, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 111, 112, 113, 114, 116, 117, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 168, 170, 171, 173, 174, 175, 181, 182, 184, 187, 188, 189], "arab": 4, "arbitrari": [1, 40, 60, 93, 130], "arch": [151, 164, 166], "architectur": [26, 60, 88, 97, 100, 134, 146, 163], "archiv": [56, 60, 88, 108, 112, 119, 122, 124, 126, 134, 143, 148, 149, 154, 157, 165], "area": [54, 69, 134, 176], "arg": 130, "arg_v": 130, "argon2": [60, 131], "argon2i": 127, "argon2id": 127, "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 130, 139, 151, 153, 154, 157, 158], "aris": [60, 144, 187], "ark": 133, "arm32v7": 151, "arm64": [93, 163, 164, 166], "around": [10, 15, 16, 88, 102, 103, 187], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 97, 113, 121, 124, 125, 129, 138, 188, 189], "arrang": 187, "arraycach": 60, "arriv": [24, 40, 69, 109, 133], "art": 127, "articl": [63, 88, 108, 109, 111, 139], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 96], "asc": [124, 126], "ascii": [60, 71, 81, 131, 138], "asdf": 67, "asian": 5, "asid": 184, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 93, 109, 117, 139, 147, 148, 149, 151, 153, 154, 157, 175, 181], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 127, 130, 182], "asset_immut": 130, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 102, 105, 106, 133, 154, 155, 189], "assignable\u00b2": 158, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 94, 103, 117, 148], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 88, 94, 112, 139, 144, 157, 158, 187, 188], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 93, 97, 113, 114, 125, 127, 130, 134, 139, 144, 146, 147, 148], "assumpt": 130, "asterisk": 155, "astroc": 152, "astronomi": 152, "async": 189, "asynchron": [24, 189], "atom": [60, 130], "attach": [1, 5, 15, 18, 38, 81, 88, 98, 188], "attack": [29, 58, 107, 127, 184], "attempt": [25, 28, 58, 78, 81, 88, 92, 94, 100, 102, 111, 127, 129, 139, 152, 153], "attend": 2, "attende": [111, 113], "attr": 82, "attr_persist": 60, "attribut": [40, 60, 75, 76, 77, 82, 87, 88, 112, 155], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88, 161], "audio": [1, 2, 4, 5, 6, 12, 15, 51, 60, 180, 181], "audit": [12, 53, 60, 65, 88, 108, 112, 127, 132, 157], "auth": [58, 63, 80, 87, 88, 97, 108, 127, 130, 154], "auth_availability_delai": 88, "authent": [2, 17, 22, 28, 29, 31, 33, 34, 35, 36, 37, 39, 40, 46, 48, 58, 60, 63, 67, 68, 74, 75, 76, 77, 79, 82, 85, 88, 92, 93, 94, 97, 107, 108, 111, 112, 116, 121, 122, 131, 134, 139, 144, 151, 154, 157, 163, 179, 188], "authmiddlewar": 189, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 113, 117, 120, 131, 134, 138, 161, 165, 189], "authorit": [69, 77, 147], "authorized_kei": [32, 37], "authtyp": 134, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 108, 124, 127, 154, 155], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 114, 115], "autoconfig": [22, 60, 88, 128], "autoconfigur": [60, 119, 127], "autocr": [48, 60], "autofil": 96, "autom": [3, 59, 60, 67, 81, 88, 92, 102, 105, 106, 119, 122, 128, 129, 134, 148, 157, 158, 188, 189], "automat": [2, 3, 5, 6, 15, 18, 20, 28, 38, 40, 43, 44, 49, 50, 53, 56, 57, 58, 59, 60, 63, 64, 66, 69, 71, 72, 79, 80, 81, 83, 85, 87, 88, 91, 94, 96, 97, 98, 106, 108, 109, 111, 112, 113, 114, 115, 117, 121, 127, 131, 134, 139, 146, 147, 148, 151, 152, 153, 154, 155, 156, 157, 158, 165, 179, 181, 183, 188, 189], "autotest": 130, "autumn": 15, "aux": 50, "av_background_scan": 56, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 20, 22, 28, 31, 33, 34, 36, 42, 43, 44, 45, 46, 47, 49, 53, 56, 58, 59, 60, 62, 63, 64, 70, 72, 76, 77, 81, 83, 85, 88, 91, 92, 94, 95, 97, 98, 99, 100, 105, 106, 108, 109, 112, 113, 115, 119, 120, 121, 122, 124, 125, 127, 129, 131, 133, 134, 137, 139, 143, 144, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 161, 164, 169, 170, 171, 174, 175, 181, 182, 187, 188, 189], "available_ram_for_php": 133, "avatar": [63, 74, 77, 82, 88, 111, 152, 154], "avatarscop": 77, "avconv": 131, "averag": [26, 113, 114, 133, 157], "average_worker_rss": 133, "avoid": [19, 22, 24, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 94, 99, 103, 108, 122, 127, 129, 131, 148, 157, 188], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 124, 132, 184], "awai": [18, 88, 113, 133, 139, 144], "await": 189, "awar": [8, 77, 81, 94, 109, 127], "awk": 133, "ax": 59, "axi": 47, "azur": [88, 116], "b": [40, 60, 93, 97, 154, 157], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 138, "b4af8db0ae269d73432e9a01e63a": 138, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 138, "back": [3, 24, 25, 26, 28, 38, 56, 58, 60, 63, 97, 102, 114, 115, 129, 130, 136, 139, 141, 143, 144, 148, 149, 153, 161, 165], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 26, 32, 37, 38, 39, 45, 46, 48, 53, 56, 58, 59, 65, 67, 75, 76, 79, 81, 83, 84, 85, 88, 93, 94, 112, 114, 120, 121, 127, 129, 130, 133, 134, 144, 155, 157, 158, 184], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 83, 88, 112, 115, 128, 145, 149, 151, 152, 154, 161, 185, 188, 189], "background_color": [72, 157], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "background_jobs_expiration_dai": 88, "backgroundcolor": 72, "backgroundjob": [157, 188], "backport": [137, 187], "backportbot": 137, "backslash": 188, "backtrac": [67, 88, 133], "backup": [23, 46, 47, 60, 80, 88, 112, 117, 134, 136, 139, 142, 143, 144, 145, 148, 149, 150, 154, 157, 158, 171, 187], "backup_cod": 158, "backward": [22, 82], "bad": [5, 88, 127, 133], "badger": 64, "bak": [141, 147], "balanc": [24, 26, 40, 59, 69, 81, 88, 129, 133], "ban": 127, "bandwidth": [26, 130], "banner": [81, 149], "bantim": 127, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 136], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 24, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 97, 100, 102, 103, 108, 121, 122, 124, 125, 127, 128, 130, 131, 134, 135, 142, 143, 144, 149, 151, 154, 157, 165, 169, 171, 187, 188, 189], "base64": [29, 31, 48, 60, 148, 153], "base64_signature_her": 148, "basenam": [60, 182], "baseurl": 189, "bash": [34, 124, 134, 151], "bash_profil": 151, "basi": [57, 107], "basic": [5, 17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 97, 124, 127, 133, 134, 139, 179, 189], "batch": [11, 81, 88, 142, 155, 158], "bc95cbaff3abbed716e1d40bbdaa58a0": 119, "bcrypt": [127, 131], "bearer": [2, 68, 74, 88, 127], "beauti": 189, "becaus": [19, 20, 22, 24, 26, 27, 28, 29, 32, 38, 40, 43, 45, 48, 54, 55, 56, 57, 59, 60, 62, 64, 67, 70, 77, 81, 84, 85, 93, 94, 107, 113, 117, 119, 124, 127, 129, 132, 133, 134, 135, 139, 143, 148, 150, 153, 154, 158, 165, 188], "becom": [40, 43, 60, 69, 88, 133, 134, 139, 152, 153, 154, 156, 161, 184], "been": [2, 3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 94, 102, 106, 107, 115, 138, 145, 150, 151, 156, 157, 158, 164, 166, 171, 177, 179, 184, 186, 187], "befor": [1, 3, 5, 7, 8, 14, 19, 20, 22, 23, 32, 46, 47, 48, 51, 53, 56, 57, 58, 60, 63, 68, 81, 88, 93, 94, 96, 97, 106, 109, 112, 113, 117, 118, 119, 121, 122, 125, 129, 130, 131, 133, 134, 135, 136, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 166, 167, 182, 187, 188], "beforehand": [136, 187], "beforenodecopiedev": 188, "beforenodecreatedev": 188, "beforenodedeletedev": 188, "beforenodereadev": 188, "beforenoderenamedev": 188, "beforenoderestoredev": 188, "beforenodetouchedev": 188, "beforenodewrittenev": 188, "begin": [2, 3, 5, 7, 81, 107, 132, 139, 143, 144, 155, 181], "begin_of_text": 5, "behalf": [1, 12, 77, 154], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 94, 127, 133, 139], "behaviour": [52, 81, 85, 127, 130, 152, 154], "behind": [15, 24, 26, 58, 60, 70, 88, 94, 134, 138, 154, 161], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 96, 100, 102, 103, 113, 117, 121, 124, 127, 130, 133, 137, 144, 150, 154, 155, 157, 182, 187], "believ": 139, "belong": [2, 24, 81, 85, 111, 119, 121, 122, 154, 160, 161], "below": [1, 2, 3, 5, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 94, 96, 97, 102, 107, 108, 119, 122, 127, 129, 130, 131, 139, 143, 145, 149, 155, 158, 165, 167, 188], "benchmark": [4, 12, 60, 119], "bender": 155, "benefici": 133, "benefit": [48, 60, 96, 97, 120, 127, 133, 134, 139, 187], "berlin": [2, 14, 60, 67, 118, 150, 158], "besid": [58, 60, 81, 96, 130], "best": [14, 15, 24, 47, 58, 59, 63, 92, 102, 117, 127, 129, 131, 134, 135, 139, 143, 144, 149, 168, 188], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 139, 185, 187], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 94, 96, 97, 98, 102, 127, 133, 143, 145, 147, 149, 153, 154, 156, 160, 165, 187], "bewar": [18, 40, 57], "beyond": [22, 48, 53, 55, 88, 108], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 94, 130, 131, 139, 183, 187], "big_temp_fil": 26, "bigger": [57, 60, 149], "bigint": [21, 25, 88, 145], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 97, 111, 116, 125, 134, 151, 188], "binari": [29, 38, 47, 60, 63, 97, 135, 138, 153, 154], "binary_search_path": 88, "bind": [81, 93, 97, 98, 131, 134, 155], "bind_address": 97, "bing": 175, "binlog_format": [22, 135], "bio": 133, "biographi": [77, 81, 111], "biographyscop": 77, "birth": 81, "birthdai": [88, 116], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 125, 135, 170], "bitmap": 60, "black": 2, "blacklisted_fil": 182, "blank": 161, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 91, 100, 125, 127, 130, 133, 173, 182], "block_nextcloud_desktop": 93, "blocked_nextcloud_desktop": 93, "blockednextclouddesktop": 93, "blocker": 64, "blog": [5, 6, 8, 11, 28, 60, 120, 124, 130], "blue": 89, "blueski": [77, 111], "blueskyscop": 77, "blurri": 47, "bmp": [60, 130], "board": [2, 175, 176], "bob": [77, 158, 188], "bock": 182, "bodi": [60, 93, 125, 165, 188, 189], "bodyparamet": 189, "bold": 187, "book": [11, 43, 60, 77, 85, 88, 113, 116, 152, 154, 157], "bookmark": [15, 88], "bookworm": [163, 164], "bool": [113, 119, 130], "boolean": [16, 20, 23, 41, 60, 150, 152, 161], "boolval": 97, "boot": [57, 59, 124, 133], "bootstrap": [59, 60], "border": 40, "borrow": 130, "bot": [13, 15, 88], "both": [3, 12, 15, 22, 25, 28, 37, 40, 41, 44, 47, 48, 49, 56, 58, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 92, 93, 97, 100, 103, 109, 115, 117, 119, 120, 121, 127, 130, 131, 133, 134, 144, 149, 151, 153, 154, 158, 160, 161, 165, 169, 173, 174, 188, 189], "bottleneck": 133, "bottom": [53, 112, 143], "bound": [3, 60, 94, 97], "boundari": 93, "bounti": 12, "box": [28, 54, 58, 63, 81, 94, 96, 119, 170, 179, 189], "bpxrficyexamplekei": 154, "bracket": [81, 82], "branch": 138, "brand": [59, 60, 64, 65, 88, 120, 168], "brazilian": 4, "breach": [86, 127], "break": [15, 60, 130, 135, 139, 150, 187], "breakdown": [88, 157], "breton": 4, "bridg": [97, 98, 109], "brief": [152, 179], "briefli": 97, "bring": [15, 174], "british": 10, "broadcast": [88, 151], "broaden": 155, "broken": [23, 28, 70, 130, 139, 153, 154, 165, 181], "broker": 165, "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 94, 102, 107, 108, 124, 125, 127, 128, 129, 130, 133, 134, 139, 144, 146, 148, 157, 161, 162, 165, 167, 171, 172, 173, 181, 184], "brute": [60, 65, 88, 108, 111, 127, 157], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 125, "bt": 11, "btoa": 189, "bucket": [31, 36, 46, 60, 88, 144, 154], "bucketnam": 48, "buffer": [26, 94, 130, 133], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 94, 119, 120, 133, 135, 140, 149, 150, 152], "bugtrack": 139, "build": [6, 8, 12, 56, 88, 92, 93, 119, 130, 137, 165], "built": [1, 2, 5, 7, 9, 10, 11, 16, 28, 32, 45, 54, 58, 59, 60, 67, 70, 88, 94, 108, 109, 110, 112, 113, 127, 130, 131, 134, 135, 139, 142, 143, 145, 149, 157, 159, 162, 165, 167, 169, 170, 173], "builtin": 154, "bulk": [6, 60, 77], "bulkupload": 88, "bump": 186, "bun": 189, "bundl": [3, 16, 40, 45, 59, 60, 131, 157, 165, 188], "burst": 133, "busi": [60, 133, 134, 139, 173], "bust": 130, "button": [1, 16, 27, 32, 40, 41, 60, 63, 72, 81, 85, 88, 94, 95, 96, 109, 114, 117, 139, 148, 161, 189], "byedvluwkxkmflpbgvxc": 67, "bypass": [48, 54, 56, 60, 81, 93, 94, 121, 127, 148, 154, 161], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 94, 117, 119, 125, 127, 135, 139, 141, 157, 165], "bytecod": 133, "bz2": [124, 126, 143], "bzip2": 124, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 94, 97, 119, 124, 126, 127, 131, 133, 134, 139, 147, 148, 157, 164, 166], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 138, "c478e6c156c5955ed53c40d06585": 138, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 138, "ca": [22, 59, 60, 97, 121, 122, 157], "ca_cert": 60, "cach": [8, 38, 46, 58, 65, 69, 82, 88, 113, 128, 130, 136, 139, 144, 150, 151, 153, 154, 155, 156, 157, 164, 165, 166, 181], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [94, 139], "caddi": [88, 130], "caddyfil": 93, "cadenc": 187, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 133], "caldav": [60, 65, 69, 88, 114, 116, 119, 125, 130, 134, 139, 179, 188], "caldav_external_attendees_dis": 113, "calendar": [12, 16, 23, 61, 63, 88, 109, 111, 112, 115, 116, 118, 138, 140, 145, 151], "calendarchang": [113, 152], "calendardata": 188, "calendarid": 188, "calendarobjectcreatedev": 188, "calendarobjectdeletedev": 188, "calendarobjectmovedev": 188, "calendarobjectmovedtotrashev": 188, "calendarobjectrestoredev": 188, "calendarobjectupdatedev": 188, "calendarretentionoblig": 113, "calendarserv": 188, "calendarsubscriptionrefreshr": 113, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 94, 96, 115, 117, 130, 132, 134, 135, 139, 147, 148, 152, 154, 158, 160, 174, 188, 189], "callback": [161, 189], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 64, 66, 67, 68, 69, 70, 71, 72, 73, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106, 107, 108, 109, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 181, 182, 183, 184, 185, 187, 188], "can_instal": 125, "cancel": [139, 157], "candid": 88, "cannot": [0, 3, 5, 8, 9, 12, 26, 29, 32, 34, 38, 40, 45, 50, 51, 53, 55, 56, 60, 63, 70, 76, 77, 81, 85, 88, 92, 93, 108, 112, 115, 119, 127, 130, 131, 135, 137, 138, 143, 147, 148, 149, 151, 153, 154, 157, 158, 179, 187], "canon": [60, 69, 88], "cantonbeck": 152, "cap": [133, 154, 167], "cap_add": 133, "capabl": [1, 2, 4, 5, 12, 15, 60, 81, 88, 97, 110, 113, 133, 154, 158, 167, 172, 173, 174], "capac": [5, 7, 9, 10, 48, 133], "captur": [93, 188], "carbonara": 2, "card": [2, 15, 69, 77, 85, 96, 114, 175, 176], "carddav": [43, 65, 69, 88, 113, 115, 116, 125, 130, 134, 139, 179], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 97, 98, 125, 130], "carefulli": [139, 150], "carol": 188, "carri": [2, 24, 60, 93, 107, 154, 157, 161, 165], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 20, 22, 23, 25, 28, 29, 42, 43, 50, 56, 57, 58, 59, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 94, 96, 97, 98, 100, 102, 103, 117, 119, 124, 127, 129, 131, 133, 134, 135, 139, 143, 144, 145, 147, 148, 150, 151, 153, 158, 160, 173, 179, 181, 187, 188, 189], "cast": [2, 60], "cat": [2, 31, 152, 154], "catalan": 4, "catch": [56, 139], "categori": [2, 16, 77, 96, 108, 111, 115, 157, 165], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 94, 127, 130, 132, 133, 134, 138, 139, 144, 147, 148, 151, 152, 154, 157, 181, 183, 184], "caution": [8, 119, 130], "cautiou": [60, 63], "caveat": 53, "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "ccb": 3, "cd": [8, 15, 23, 28, 34, 125, 168, 188], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 138, "ce6cd914": 155, "ce8b61c2": 155, "ce9e248333c44a5a64ccad26f2550f95": 119, "ceas": 187, "ceil": 133, "center": 63, "cento": [56, 59, 88, 128, 130, 134, 135, 151], "central": [28, 29, 59, 154], "ceph": 48, "cert": [22, 59, 60, 93, 95, 97, 121, 122, 125, 157, 167], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 94, 106, 113, 114, 127, 130, 134, 148, 155, 173], "certfil": 97, "certif": [22, 32, 33, 46, 60, 64, 82, 88, 90, 94, 97, 117, 121, 122, 125, 127, 130, 134, 135, 138, 154, 161, 165, 167, 168, 179], "certifi": 89, "cfb": 60, "cfg": [93, 94], "cgi": 130, "chain": 165, "challeng": [127, 130, 133], "chanc": [119, 139, 187], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 25, 27, 28, 38, 39, 43, 45, 46, 47, 48, 51, 52, 53, 56, 59, 60, 61, 63, 65, 66, 67, 71, 72, 74, 77, 81, 82, 88, 93, 94, 96, 97, 102, 108, 113, 114, 117, 119, 122, 124, 126, 127, 130, 131, 133, 134, 138, 141, 143, 144, 147, 149, 150, 154, 157, 158, 161, 165, 171, 173, 179, 180, 181, 182, 183, 187, 188, 189], "changelog": [16, 88, 143, 148], "channel": [16, 88, 109, 120, 139, 148], "chapter": [92, 110, 131, 134, 139, 187], "char": [81, 154], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 94, 126, 127, 131, 141, 147, 154, 165], "character_set_serv": 22, "characterist": 60, "charg": [84, 112, 189], "charli": 77, "charset": [25, 60, 88], "chart": [85, 134], "chat": [2, 13, 14, 61, 88, 102, 112, 152, 161], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 184, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 24, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 93, 96, 97, 99, 101, 102, 115, 117, 119, 125, 127, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 148, 149, 151, 161, 164, 165, 166, 173, 182, 183, 187, 188, 189], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 81, 85, 92, 97, 113, 114, 161], "checker": [60, 70], "checkout": 3, "checksum": [81, 124, 126, 148, 152, 184], "children": 157, "chines": 4, "chmod": [28, 34, 97, 143], "choic": [8, 22, 56, 60, 80, 81, 88, 127, 128, 131, 144, 149], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 96, 97, 113, 114, 125, 129, 130, 131, 134, 139, 143, 163, 167, 174, 187, 189], "chooser": 60, "chose": [117, 149], "chosen": [1, 20, 22, 40, 59, 60, 129], "chown": [28, 34, 122, 124, 126, 130, 134, 143], "christoph": 119, "chrome": [67, 135], "chromium": [135, 184], "chroot": [88, 128], "chunk": [3, 43, 46, 60, 88, 94, 119, 130], "chunked_upload": [26, 88], "chunksiz": 94, "ci": [60, 158], "cidr": [60, 69], "cif": [40, 88, 128, 131], "cipher": [29, 88, 94, 127], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": [60, 93], "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamp": 81, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 138, 157, 188], "class_nam": 157, "classic": 134, "classif": [157, 188], "classifi": [6, 94, 119], "clean": [1, 3, 49, 53, 57, 60, 80, 88, 100, 109, 112, 113, 134, 154, 155, 157, 158, 179], "cleanli": 157, "cleanup": [1, 44, 47, 60, 74, 80, 81, 88, 108, 109, 115, 155, 181], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 107, 119, 133, 157], "clear_env": 134, "cli": [57, 63, 65, 67, 69, 88, 95, 99, 101, 113, 124, 127, 128, 133, 134, 144, 149, 151, 157, 181], "click": [16, 27, 40, 41, 54, 60, 63, 64, 78, 81, 85, 94, 96, 117, 129, 138, 139, 148, 161, 189], "clickjack": [64, 127], "client": [12, 15, 19, 22, 26, 28, 31, 32, 38, 43, 45, 48, 50, 55, 58, 60, 63, 64, 65, 67, 68, 69, 73, 80, 81, 85, 88, 97, 98, 102, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 127, 128, 129, 130, 132, 133, 134, 138, 139, 142, 144, 148, 152, 157, 160, 165, 167, 172, 189], "client_body_buffer_s": 130, "client_body_temp_path": 26, "client_body_timeout": 130, "client_max_body_s": [26, 130], "clientarchitectur": 93, "clientreqid": 67, "clone": [7, 8], "close": [2, 7, 8, 10, 43, 60, 63, 69, 88, 107, 108, 139, 148, 161], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 69, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 95, 97, 115, 120, 127, 130, 134, 154, 156, 157, 158, 167, 173, 189], "cloud2": 167, "cloud_id": 158, "cloudfil": [36, 60], "cloudflar": [60, 94, 130, 139], "club": 77, "clue": 88, "cluster": [0, 3, 6, 24, 45, 88, 144], "cmd": [92, 97, 124], "cn": [60, 81, 82, 155], "cname": 144, "cnf": [22, 60, 125], "co": [5, 11], "co2": [6, 11], "coauthor": 161, "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 15, 17, 28, 29, 47, 51, 63, 65, 66, 69, 70, 75, 76, 77, 80, 81, 88, 92, 94, 120, 127, 130, 133, 136, 139, 140, 148, 149, 152, 154, 159, 167, 168, 169, 170, 171, 173, 188], "code_docker_imag": 170, "codebas": [60, 145], "cold": 133, "collabor": [32, 88, 102, 103, 120, 162, 169], "collabora": [32, 88, 134, 168, 169, 170, 172, 173, 176, 181], "collaboraoffic": [168, 170, 171], "collaboraonlin": [160, 167, 168, 170, 171, 172], "collaps": 129, "collat": [22, 23, 88, 126, 147], "collation_serv": 22, "colleagu": 152, "collect": [15, 57, 60, 119, 127, 133, 165, 175, 176], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 152, 158, 161], "column": [19, 25, 85, 88, 117, 145, 149], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 20, 22, 28, 35, 41, 48, 55, 56, 59, 60, 63, 67, 69, 72, 75, 76, 77, 81, 82, 83, 86, 87, 88, 92, 93, 94, 97, 111, 113, 117, 120, 121, 122, 124, 126, 127, 129, 130, 131, 133, 134, 135, 137, 138, 139, 143, 148, 150, 152, 155, 157, 160, 161, 164, 166, 167, 168, 170, 171, 172, 173, 181, 184, 185, 188], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 94, 131, 134, 146, 148, 154, 155, 158, 189], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 96, 97, 124, 134, 135, 139, 151, 157, 170, 188, 189], "comma": [60, 61, 81, 158], "command": [1, 4, 6, 13, 14, 15, 16, 18, 19, 20, 30, 34, 38, 40, 41, 43, 46, 47, 48, 51, 52, 53, 56, 57, 60, 61, 63, 67, 69, 72, 77, 78, 81, 83, 88, 92, 93, 97, 98, 99, 100, 104, 112, 113, 117, 118, 119, 124, 126, 128, 131, 132, 133, 134, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 162, 165, 183, 184, 188], "commandjob": 157, "comment": [2, 23, 26, 40, 43, 56, 65, 88, 109, 112, 134, 137, 143, 148, 161, 175, 176], "commentsmanag": 60, "commerci": [120, 134, 139], "commit": [60, 65, 88, 135], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 96, 105, 112, 117, 124, 127, 130, 133, 134, 148, 151, 157, 162, 172, 189], "commonli": [28, 48, 58, 59, 93, 121, 131, 139], "commonnam": [60, 134, 188], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 93, 96, 98, 101, 119, 120, 126, 131, 134, 139, 148, 151, 161, 172, 174, 183, 187], "compact": 161, "compani": [2, 12, 64, 72, 81, 148], "compar": [3, 20, 57, 59, 60, 81, 93, 143, 152], "comparison": [46, 60, 81, 88, 188], "comparison_of_file_system": 60, "compat": [0, 1, 3, 5, 16, 22, 28, 31, 38, 40, 45, 46, 48, 59, 60, 80, 82, 88, 93, 131, 133, 145, 149, 153, 167, 187, 188], "compens": 38, "compil": [22, 59, 133], "complain": 150, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 102, 111, 122, 124, 125, 127, 131, 132, 133, 134, 136, 147, 148, 149, 151, 154, 157, 165, 175, 178, 188], "completionexpectedat": 14, "complex": [28, 60, 97, 108, 112, 127], "compli": [60, 112, 154], "complianc": [13, 53, 60, 88, 108, 139], "compliant": [80, 127, 135], "compon": [12, 60, 88, 93, 130, 133, 134, 139, 163, 174, 179, 186, 188], "component_classic_hash": 186, "compos": [56, 130, 133, 161], "composit": [115, 176], "compound": 88, "comprehens": 139, "compress": [56, 60, 85, 88, 94, 102, 108, 127, 128, 131, 183], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 96, 97, 98, 100], "compute_devic": 98, "computedevic": 98, "concaten": [29, 38], "concept": [25, 125, 150], "concern": [8, 26, 28, 29, 47, 60, 130, 187], "concert": 2, "concurr": [3, 4, 48, 60, 133, 181], "condit": [14, 15, 65, 70, 81, 88, 93, 103, 139, 187, 188, 189], "condition": 60, "conf": [22, 56, 59, 81, 97, 124, 125, 127, 130, 134, 139, 165], "confdir": 92, "confer": [2, 120], "confid": 156, "confidenti": [68, 102, 158, 160], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 70, 71, 72, 73, 79, 81, 82, 83, 84, 85, 88, 93, 96, 97, 98, 99, 104, 107, 108, 113, 114, 117, 118, 119, 121, 122, 124, 125, 129, 130, 131, 132, 133, 134, 136, 139, 141, 143, 144, 145, 147, 148, 149, 151, 152, 158, 162, 165, 167, 173, 181, 182, 183, 184, 185], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 155], "configtest": 93, "configur": [2, 4, 12, 13, 20, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 50, 52, 54, 57, 58, 66, 68, 69, 71, 73, 74, 80, 83, 85, 86, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 105, 107, 108, 109, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 126, 129, 135, 136, 139, 143, 144, 145, 147, 148, 151, 153, 154, 155, 156, 157, 158, 159, 162, 165, 166, 169, 172, 176, 178, 185, 188, 189], "configuration_serv": 60, "confin": [43, 134], "confirm": [4, 19, 22, 41, 48, 60, 65, 68, 70, 77, 78, 81, 88, 109, 110, 124, 126, 131, 133, 134, 143, 144, 153, 154, 157, 158, 161], "conflict": [16, 38, 60, 81, 119, 147, 152], "confus": [28, 38], "congratul": [117, 164, 166, 167], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 21, 22, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 96, 97, 98, 112, 113, 114, 117, 125, 128, 129, 130, 132, 133, 134, 135, 139, 144, 154, 155, 157, 160, 161, 162, 164, 165, 166, 172, 173, 181, 185, 188], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 128, 129, 152, 162, 165], "consecut": 34, "consent": [107, 117], "consequ": [46, 88, 130, 153], "conserv": 133, "consid": [1, 8, 16, 24, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 94, 108, 109, 111, 113, 114, 119, 127, 134, 135, 139, 147, 173, 187], "consider": [46, 60, 65, 85, 88, 127, 187], "consist": [20, 24, 29, 40, 44, 60, 93, 102, 117, 122, 130, 139, 143, 151], "consol": [19, 53, 64, 99, 130, 134, 139, 143, 151, 167], "const": 189, "constant": [60, 77], "constitut": 110, "constrain": 92, "constraint": [77, 134, 148, 154], "construct": 93, "consult": [16, 26, 28, 56, 59, 60, 110, 112, 127, 131, 135, 188], "consum": [8, 26, 58, 60, 77, 149], "consumpt": [5, 6, 7, 11, 26, 88, 90, 133], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 109, 111, 112, 113, 116, 122, 134, 138, 140, 145, 150, 154, 157, 161, 185], "contactinteractedwithev": 115, "contactsinteract": 115, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 69, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 96, 98, 99, 101, 102, 107, 108, 111, 112, 114, 115, 117, 119, 121, 127, 130, 133, 134, 136, 137, 139, 148, 151, 153, 157, 160, 161, 165, 167, 170, 173, 181, 188, 189], "container": 134, "container_id": 167, "container_nam": 56, "containerlogmaxfil": 97, "containerlogmaxs": 97, "content": [2, 3, 5, 11, 12, 15, 20, 24, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 94, 97, 103, 111, 113, 114, 120, 124, 125, 126, 127, 130, 138, 139, 143, 147, 150, 153, 154, 157, 175, 188], "context": [5, 8, 13, 28, 38, 58, 59, 60, 67, 77, 88, 92, 93, 102, 131, 151, 176, 184], "context_ag": [1, 13, 15, 88], "context_chat": [1, 3, 15], "context_chat_backend": [1, 3, 15], "contextchat": 3, "continu": [3, 19, 44, 53, 67, 85, 97, 99, 107, 122, 127, 135, 148, 152, 153, 157, 173], "contract": 107, "contrast": 18, "contrib": [88, 163], "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 127, 139], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 93, 96, 103, 105, 106, 108, 110, 111, 113, 114, 127, 130, 133, 134, 146, 150, 151, 152, 154, 157, 158, 161, 165, 181], "convei": [11, 153], "conveni": 77, "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 111, 112, 119, 160, 165, 175, 176], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 103, 133, 139, 145, 153, 164, 165, 166, 167], "cookbook": 88, "cooki": [60, 65, 88, 108, 110, 111, 127], "cookie_domain": 88, "cool": [167, 171, 172], "coolconfig": [160, 168], "coolwsd": [160, 167, 168, 170, 171, 172], "cooper": 120, "coordin": [2, 131], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 69, 81, 85, 88, 97, 108, 109, 115, 117, 124, 126, 127, 130, 141, 143, 144, 147, 156, 157, 165, 188], "copied_sample_config": 88, "copyright": 113, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 108, 125, 126, 130, 131, 133, 134, 138, 143, 146, 153, 156, 157, 158, 181, 187, 188], "coreinfo": 133, "corpor": [72, 134], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 94, 96, 112, 119, 121, 127, 129, 130, 131, 134, 137, 138, 139, 143, 145, 151, 154, 155, 187, 189], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 94, 95, 100, 115, 118, 124, 130, 134, 139, 152, 154, 157, 182], "correspond": [22, 26, 45, 47, 48, 77, 81, 83, 121, 122, 124, 126, 127, 130, 131, 136, 139, 143, 153, 154, 158, 176, 188], "corrupt": [45, 59, 60, 144, 148, 149, 154], "cost": [60, 127, 130], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 94, 102, 119, 125, 127, 130, 135, 138, 139, 141, 147, 150, 155, 157, 173], "couldn": 100, "counsel": 110, "count": [2, 60, 85, 88, 106, 127, 133, 139, 157, 158, 165], "counter": 153, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 102, 129, 139, 148, 167, 189], "court": 81, "cover": [22, 93, 97, 102, 117, 129, 130, 138, 149, 154, 157, 164, 166, 178, 183, 184, 185], "coverag": [5, 9, 11], "cp": [3, 4, 124, 125, 126, 154], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 96, 97, 98, 133], "cpuinfo": [3, 133], "cr": 81, "cram": 63, "crammd5": 63, "crash": [94, 157], "crawl": 3, "crawler": 185, "crc32": 184, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 24, 27, 28, 29, 31, 33, 34, 36, 40, 44, 46, 47, 48, 50, 51, 53, 54, 56, 57, 59, 60, 64, 67, 71, 74, 76, 77, 81, 84, 87, 88, 92, 96, 97, 98, 100, 102, 103, 106, 111, 113, 114, 115, 117, 119, 120, 121, 122, 124, 125, 126, 127, 129, 134, 136, 139, 143, 144, 145, 146, 147, 148, 150, 153, 156, 157, 158, 160, 161, 163, 165, 181, 188], "create_example_ev": [113, 152], "createcli": 189, "createdb": 22, "createrol": 129, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 97, 106, 111, 113, 114, 127, 134, 157, 158, 185], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 94, 117, 121, 122, 127, 129, 144, 152, 153, 154, 160, 165, 189], "crew": 155, "criteria": [7, 25, 67, 102, 188], "critic": [3, 5, 7, 8, 12, 60, 88, 127, 135, 139, 143, 149, 187], "crl": [60, 122, 157], "crlf": 81, "cromwel": 131, "cron": [6, 24, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 108, 113, 115, 117, 127, 128, 130, 131, 139, 143, 145, 149, 150, 152, 154, 161, 188], "cronjob": [43, 57, 58, 125], "crontab": [53, 57, 113, 139, 143, 145], "crop": 81, "cross": [60, 107, 111, 120, 130, 133], "crt": [59, 60, 93, 97, 130, 154, 157], "crucial": [60, 160], "crypto": 97, "cryptograph": 127, "cryptographi": 3, "csrf": [70, 88, 107], "css": [69, 88, 133, 154], "csync": 88, "csyncoc": 93, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [94, 131], "ctype": 131, "cuda": [3, 4, 5, 6, 7, 9, 11, 96, 98], "cudnn": 6, "culprit": 133, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 93, 97, 124, 126, 131, 164, 165, 166, 173, 181], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 29, 32, 43, 44, 53, 57, 58, 59, 60, 62, 64, 66, 67, 68, 77, 80, 81, 88, 93, 94, 96, 97, 98, 102, 108, 113, 117, 124, 125, 127, 133, 134, 135, 138, 143, 145, 149, 150, 151, 152, 153, 154, 156, 157, 161, 173, 185, 187, 188], "currentvers": 148, "cursor": [81, 85], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 27, 48, 51, 53, 59, 60, 61, 64, 65, 69, 79, 83, 85, 88, 92, 93, 94, 96, 97, 103, 111, 114, 117, 120, 123, 130, 131, 132, 133, 134, 138, 141, 142, 144, 154, 157, 162, 175, 182, 183, 188, 189], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 157], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 108], "cycl": [40, 81, 120], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 97, 108, 124, 125, 127, 130, 132, 133, 134, 141, 143, 147, 148, 164, 165, 166, 167, 168], "d1": [44, 49, 60, 108], "d2": [44, 49, 60, 108], "d5685c3b45aee373b09be54742ea": 138, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 99, 101, 172], "daemon_config_nam": 8, "daemonconfig": [97, 98], "dai": [1, 2, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 94, 106, 107, 108, 111, 113, 115, 117, 120, 124, 152, 154, 187, 188], "daili": [12, 53, 58, 60, 108, 120, 154], "daisi": 158, "dall": 176, "danger": 64, "dark": [60, 161], "dash": [67, 85, 154], "dashboard": [60, 65, 88, 117], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 29, 34, 40, 45, 46, 51, 56, 57, 59, 63, 67, 68, 73, 77, 78, 80, 81, 82, 83, 84, 85, 88, 94, 95, 97, 99, 107, 110, 116, 117, 122, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 160, 161, 163, 174, 176, 181, 184, 187, 188, 189], "data_request": 109, "databas": [3, 12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 59, 65, 67, 81, 83, 88, 94, 113, 114, 115, 126, 127, 128, 134, 136, 139, 142, 143, 144, 145, 148, 149, 151, 154, 157, 158, 163, 175, 176, 186, 188], "databaseid": 119, "datacent": [31, 48], "datadir": [28, 60, 132], "datadirectori": [29, 67, 88, 121, 136, 144, 148], "dataintegr": [60, 184], "dataloss": 147, "dataset": 11, "date": [2, 14, 19, 24, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 111, 113, 117, 123, 124, 131, 133, 135, 139, 141, 147, 154, 157, 158, 161, 165, 178, 187], "dateinterv": 113, "datepattern": 127, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 94, 109, 112, 113, 114, 115, 118, 119, 124, 125, 130, 134, 139, 151, 157], "davclnt": 130, "david": 188, "davstorag": [26, 41, 88], "davx5": 115, "davx\u2075": 119, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 94, 121, 122, 125, 129, 139, 141, 145, 147, 149, 158, 164, 166], "db8": 60, "db_": 130, "db_host": 165, "db_name": [141, 147, 165], "db_password": 165, "db_port": 165, "db_pwd": 165, "db_type": 165, "db_user": 165, "dbal": 60, "dbdriveropt": [22, 25, 88, 121, 122], "dbhost": [22, 25, 88, 121, 136, 144], "dbindex": [59, 60, 150], "dbname": [22, 24, 25, 88, 121, 144], "dbpass": 121, "dbpassword": [22, 25, 88, 121, 129, 144], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbsslca": 121, "dbsslcert": 121, "dbsslcrl": 121, "dbsslkei": 121, "dbsslmode": 121, "dbsslnoverifi": 121, "dbtableprefix": [22, 88, 121], "dbtype": [20, 22, 88, 121, 136], "dbuser": [22, 25, 88, 121, 129, 144], "dc": [81, 82, 83, 155], "dd": [81, 152, 154], "ddl": 183, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 113, 117, 182, 183, 184], "deal": [119, 134], "deb": [126, 161, 164, 166, 168], "debconf": [164, 166], "debian": [22, 56, 59, 72, 88, 122, 131, 133, 134, 135, 139, 151, 162, 163, 167, 186], "debug": [12, 13, 70, 81, 88, 119, 128, 130, 138, 144, 148, 152, 154, 157, 165], "decemb": 124, "decid": [12, 22, 24, 28, 92, 96, 106, 130, 149, 187], "decim": 48, "decis": [28, 136], "deck": [15, 28, 88, 154, 157, 175, 176], "declar": [81, 88], "decod": 157, "decompress": 131, "decreas": [60, 88, 94], "decrement": 153, "decrypt": [46, 48, 60, 88, 97, 107, 127, 133, 139, 151], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 113, 120, 121, 128, 129, 130, 133, 136, 148, 152, 154, 157, 162, 170], "deem": 47, "deep": [28, 65, 88], "deeper": 11, "deepl": [1, 4, 15], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 63, 65, 68, 69, 72, 80, 81, 82, 83, 85, 86, 87, 88, 92, 93, 94, 95, 96, 98, 99, 107, 108, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 139, 141, 146, 147, 149, 150, 151, 152, 154, 157, 158, 161, 164, 165, 168, 169, 170, 172, 175, 184, 187, 188, 189], "default_certificates_bundle_path": 88, "default_en": 17, "default_file_extens": 71, "default_host": 22, "default_languag": [66, 88], "default_local": [66, 88], "default_password": 22, "default_phone_region": [81, 88], "default_port": 22, "default_property_scop": [77, 81, 88], "default_scop": 77, "default_socket": 22, "default_timezon": [88, 118], "default_us": 22, "defaultapp": 88, "defaultmodul": 153, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 108, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 95, 97, 102, 103, 104, 113, 127, 130, 138, 151, 152, 154, 160, 161, 181, 187, 188, 189], "definit": [20, 46, 88, 127, 187], "defunct": 81, "degrad": [60, 133, 152], "degre": 136, "delai": [0, 15, 24, 40, 41, 53, 57, 58, 60, 88, 113, 157], "deleg": [65, 88, 116, 151, 188], "delegate_permiss": 55, "delet": [1, 2, 3, 16, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 94, 99, 102, 106, 108, 109, 111, 112, 113, 114, 116, 118, 119, 136, 138, 139, 143, 147, 148, 151, 153, 156, 188], "delete_timestamp": 29, "deliber": [93, 97, 108, 187], "delimit": [31, 81], "deliv": [12, 53, 109, 130, 187], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 108, 154], "demo": [60, 157], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 93, 105, 130, 132, 158], "denial": [58, 132], "denot": 29, "deny_statu": 93, "depart": 82, "depend": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 19, 29, 32, 40, 43, 47, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 88, 92, 96, 115, 117, 121, 124, 125, 127, 129, 130, 134, 135, 136, 139, 143, 144, 146, 149, 151, 153, 165, 167, 176, 182, 183, 184, 188], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 101, 120, 124, 125, 130, 133, 139, 170, 187], "deploy": [3, 28, 60, 65, 77, 88, 91, 96, 98, 100, 101, 110, 120, 122, 124, 128, 131, 133, 134, 135, 136, 139, 149, 163, 170, 187], "deployconfig": [88, 97], "deploydaemon": 97, "deprec": [60, 76, 135, 158, 165, 180, 182, 183, 184, 185, 189], "deprovis": 136, "deriv": [59, 60, 72, 77, 81, 88, 127, 130, 134, 153, 154, 157], "describ": [12, 24, 26, 29, 41, 43, 53, 57, 59, 60, 63, 67, 70, 77, 80, 81, 92, 93, 96, 97, 98, 102, 103, 106, 108, 109, 110, 112, 121, 122, 127, 139, 145, 167], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 95, 111, 113, 117, 121, 122, 124, 131, 133, 134, 157, 161, 165, 175, 188], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 110, 120, 127, 134, 146, 149, 173], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 103, 129, 130, 134, 144], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 94, 102, 120, 128, 133], "desktopshortcut": 92, "despit": [43, 60, 130, 153, 154], "destin": [2, 32, 37, 39, 60, 112, 126, 152, 154], "destruct": 152, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 94, 96, 100, 109, 111, 119, 124, 126, 127, 129, 130, 131, 133, 134, 139, 143, 144, 151, 152, 154, 157, 158, 166, 170, 171, 173, 182, 183, 184, 185, 187, 189], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 97, 107, 129, 131, 154, 155, 157], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 94, 97, 119, 134, 153, 154], "dev": [60, 65, 67, 88, 93, 125, 135, 151, 165, 189], "develop": [12, 15, 16, 54, 60, 80, 91, 94, 95, 96, 119, 127, 129, 134, 135, 137, 138, 139, 146, 149, 154, 159, 165, 169, 187, 188], "developer_manu": 60, "deviat": 127, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 94, 96, 97, 98, 100, 127, 133, 134, 146], "diagnos": [67, 81, 133, 151, 157, 158, 181], "diagnost": [3, 88], "diagram": [15, 97, 189], "dialect": 7, "dialog": [41, 43, 77, 81, 115, 154, 161], "dialogu": [81, 147], "dictat": 97, "did": [20, 28, 30, 88, 100, 139, 150], "diff": 137, "differ": [2, 3, 5, 7, 15, 22, 25, 28, 29, 31, 32, 40, 46, 55, 56, 57, 58, 59, 60, 64, 66, 69, 77, 80, 81, 85, 88, 92, 94, 96, 97, 99, 100, 113, 114, 121, 127, 129, 130, 134, 136, 138, 139, 142, 147, 151, 152, 153, 154, 157, 158, 160, 165, 181, 188], "differenti": [15, 113, 114], "diffi": 165, "difficult": [60, 129, 138], "difficulti": [2, 147], "diffus": [15, 176], "digestmail": 157, "digit": 135, "dimens": 60, "diminish": 60, "dir": [23, 28, 94, 122, 134, 139, 148, 157], "dirbkp": 147, "dirbkp_": 141, "direct": [26, 40, 59, 60, 77, 79, 81, 93, 102, 130, 133, 134, 139, 165, 183, 187], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 25, 26, 28, 32, 40, 48, 53, 55, 57, 60, 63, 69, 81, 92, 94, 97, 102, 107, 109, 112, 127, 129, 130, 134, 136, 139, 148, 149, 150, 154, 157, 161, 162, 175, 189], "directori": [3, 5, 7, 8, 18, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 55, 56, 57, 60, 65, 67, 77, 79, 83, 88, 91, 92, 94, 102, 103, 112, 119, 122, 124, 125, 126, 128, 130, 133, 134, 136, 137, 140, 141, 143, 144, 145, 147, 148, 150, 151, 153, 154, 155, 157, 158], "directory2": 81, "dirti": [60, 67], "disabl": [1, 2, 3, 16, 18, 23, 25, 26, 29, 30, 31, 32, 38, 40, 41, 44, 46, 49, 50, 52, 58, 63, 65, 67, 72, 74, 81, 88, 93, 94, 96, 97, 98, 101, 102, 104, 108, 111, 112, 113, 114, 115, 118, 119, 130, 131, 132, 133, 134, 135, 143, 145, 148, 149, 150, 151, 154, 155, 157, 161, 165, 168, 182, 183, 184, 185], "disable_act": 85, "disable_email": 85, "disable_funct": 131, "disablefreebusi": 113, "disadvantag": [29, 57], "disallow": [3, 60, 88, 128], "disappear": [24, 43, 45, 58, 59, 124], "disapprov": 189, "discard": [117, 165], "disclaim": 43, "disclos": 108, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 129, 144, 151], "discov": [60, 188], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 111, 134, 140, 167, 172, 173], "discret": [58, 187], "discuss": [12, 22, 43, 94, 120, 184, 187], "disk": [3, 28, 39, 44, 60, 85, 88, 94, 97, 130, 133, 139, 153, 154, 161, 163, 164, 165, 166, 183], "dispar": 7, "dispatch": [88, 115], "displai": [15, 28, 43, 46, 47, 51, 53, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 93, 95, 96, 97, 98, 99, 111, 112, 113, 115, 117, 119, 121, 129, 130, 138, 151, 152, 154, 157, 158, 161], "display_nam": 158, "displaynam": [75, 76, 81, 82, 112, 113, 152, 155, 158, 188], "displaynamescop": 77, "disregard": 139, "disrupt": 149, "dist": [51, 102], "distinct": [48, 77, 88, 108, 112, 188], "distinguish": [46, 60, 88], "distribut": [24, 26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 94, 96, 97, 120, 124, 127, 130, 131, 132, 134, 135, 138, 139, 144, 149, 151, 154, 163, 170], "distro": [38, 60, 97, 132, 134, 139, 146], "dive": 28, "diverg": 152, "divid": 60, "dmz": [88, 128], "dn": [59, 81, 82, 83, 97, 144, 161, 173, 181], "dnextcloud": 22, "dnf": 124, "do": [0, 2, 3, 4, 5, 7, 9, 10, 14, 15, 16, 19, 20, 22, 25, 26, 28, 32, 40, 43, 47, 51, 53, 56, 58, 59, 60, 63, 64, 69, 70, 72, 80, 81, 82, 85, 88, 92, 93, 94, 96, 97, 99, 102, 103, 108, 118, 119, 122, 124, 125, 127, 129, 130, 132, 133, 134, 135, 139, 142, 143, 144, 145, 147, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 165, 167, 174, 181, 182, 183, 184, 186, 187, 188, 189], "do_not_schedule_reboot": 92, "doc": [15, 60, 94, 100, 120, 125, 135, 153, 160, 167, 168, 169, 170, 171, 172, 184], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 98, 100, 101, 131, 133, 134, 149, 151, 153, 161, 162, 163, 170, 173, 181, 188], "docker_aio": 97, "docker_instal": [96, 98], "docker_local_sock": [98, 99], "docker_socket_port": 98, "dockerfil": 8, "dockersocketproxi": 97, "docservic": [164, 166], "doctrin": 60, "document": [1, 2, 3, 12, 22, 23, 26, 29, 31, 32, 35, 40, 43, 45, 47, 51, 56, 59, 60, 62, 64, 67, 70, 88, 92, 93, 94, 97, 103, 110, 118, 119, 120, 121, 122, 124, 126, 127, 129, 130, 131, 133, 134, 135, 138, 139, 145, 146, 151, 153, 154, 155, 157, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 183, 184, 188, 189], "document_root": 130, "documentation_url": 88, "documentroot": [124, 134, 139], "documentserv": [161, 164, 165, 166], "documentserver_": [164, 166], "documentserverurl": 161, "docx": [162, 165, 169], "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 24, 28, 29, 31, 32, 33, 36, 38, 40, 43, 45, 48, 53, 55, 56, 57, 58, 59, 60, 63, 65, 66, 68, 69, 75, 76, 77, 81, 85, 88, 92, 93, 96, 97, 98, 99, 102, 109, 110, 114, 117, 118, 119, 121, 122, 125, 127, 129, 130, 132, 133, 134, 138, 139, 142, 143, 145, 147, 149, 150, 151, 153, 154, 157, 158, 163, 174, 181, 184, 187, 189], "doesn": [18, 22, 28, 76, 81, 119, 124, 130, 148, 173, 189], "doesnotexist": 150, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 131], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 96, 125, 128, 134, 150, 167, 173, 185], "don": [2, 6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 96, 113, 119, 130, 132, 134, 138, 141, 143, 150], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 97, 99, 124, 125, 134, 144, 145, 148, 152, 153, 160, 167, 181, 185, 188], "dora": 158, "dot": [8, 38, 40, 50, 96, 97, 130, 139, 182, 188], "doubl": [12, 60, 139], "dow": 56, "down": [40, 59, 88, 94, 113, 114, 117, 119, 133, 189], "downgrad": [88, 148, 149], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 69, 85, 88, 89, 94, 97, 101, 102, 107, 109, 111, 112, 122, 124, 126, 127, 134, 137, 139, 142, 143, 144, 145, 149, 150, 153, 154, 157, 160, 161, 163, 167, 168], "downsid": [48, 181], "downstream": [5, 12, 15], "downtim": 81, "dozen": 169, "draft": [2, 3, 5, 7, 119, 139, 154], "draw": [2, 58], "drawback": [32, 134], "drawn": 60, "drive": [26, 60, 133], "driven": [40, 134], "driver": [6, 22, 60, 97, 100, 122, 129], "droid": 60, "drop": [3, 22, 46, 58, 63, 88, 125, 127, 139, 147, 152, 164, 166, 186, 189], "drop_account": 109, "dropbox": 94, "dropdown": [40, 43, 85], "dry": [149, 152, 153, 154], "ds_log_level": 165, "dsheurist": 81, "dsnap": 125, "dsp": [96, 97, 98], "dst_path": 99, "duckduckgo": [2, 175], "due": [2, 4, 12, 26, 38, 47, 49, 55, 59, 60, 64, 71, 81, 88, 94, 100, 102, 111, 127, 130, 133, 139, 143, 152, 154, 157, 158, 161, 171], "dummi": 148, "dump": [88, 141, 144], "duplic": [3, 11, 88, 115, 130, 139, 157], "durat": [60, 94, 157], "dure": [3, 4, 16, 22, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 97, 100, 121, 122, 124, 127, 130, 133, 134, 142, 144, 148, 153, 157, 164, 165, 166, 183, 184], "dutch": 4, "dynam": [23, 60, 82, 94, 133, 183], "e": [1, 2, 5, 8, 12, 15, 18, 19, 20, 22, 23, 26, 28, 31, 32, 34, 40, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 67, 68, 69, 72, 73, 77, 78, 80, 81, 82, 83, 94, 96, 97, 98, 99, 100, 102, 107, 108, 109, 112, 113, 114, 115, 117, 119, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 168, 171, 176, 187, 188, 189], "e2e": 28, "e4b": [1, 5], "eacceler": 139, "each": [1, 2, 3, 6, 9, 14, 15, 24, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 59, 60, 64, 67, 69, 77, 81, 85, 94, 96, 97, 100, 102, 109, 111, 115, 117, 127, 131, 133, 134, 139, 149, 151, 153, 154, 156, 157, 158, 161, 163, 164, 181, 187, 188, 189], "ear": 1, "earli": [12, 81], "earlier": [24, 57, 60, 81, 124, 139, 187], "eas": [60, 187], "easi": [56, 59, 60, 63, 83, 85, 134, 145, 146, 165, 170, 188], "easier": [55, 60, 94, 119, 133, 134], "easiest": [22, 58, 60, 63, 102, 127, 134, 139, 147, 149], "easili": [15, 41, 60, 63, 64, 134, 145, 146, 172, 189], "east": [48, 60], "easycron": 57, "ecdsa": 156, "echo": [15, 157, 164, 166, 168, 188], "ecosystem": [12, 54, 58, 96, 120, 186], "ed": 55, "edg": [15, 43, 117, 135], "edit": [2, 11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 111, 113, 130, 133, 134, 138, 139, 141, 149, 151, 157, 159, 161, 162, 164, 168, 169, 170, 187, 189], "editor": [60, 85, 88, 113, 162, 165], "edri": [60, 127], "edu": 60, "eff": [60, 127], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 94, 97, 107, 132, 133, 148, 154, 165, 181, 188], "effici": [8, 60, 133, 135], "effort": [12, 187], "efss": 136, "eg": [52, 151], "egress": 125, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 94, 96, 97, 102, 124, 126, 130, 134, 136, 138, 143, 148, 149, 154, 157, 187, 189], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 144, "elect": 81, "element": [17, 75, 76, 152], "elig": 77, "elimin": 81, "els": [14, 81, 97, 112, 133, 134, 138], "elseif": 97, "elsewher": [58, 60, 97, 130], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 109, 111, 112, 113, 115, 117, 120, 154, 157, 158, 161, 176], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 160], "embed": [3, 65, 88, 127, 157, 161, 165, 183, 184, 185], "embrac": [134, 146], "emf": [60, 181], "emit": 151, "emoji": [2, 23, 127, 135, 141, 147, 152], "emot": 11, "emploi": [3, 8, 72, 81, 86, 120, 187], "employe": [12, 188], "empti": [3, 22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 97, 108, 111, 134, 139, 143, 144, 154, 188, 189], "en": [2, 7, 8, 60, 66, 124, 135, 157, 158], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 16, 18, 19, 20, 21, 22, 25, 29, 31, 38, 39, 41, 42, 43, 46, 47, 49, 54, 57, 58, 59, 64, 65, 67, 68, 70, 72, 73, 74, 77, 81, 83, 87, 88, 91, 92, 93, 94, 95, 96, 97, 101, 102, 107, 111, 112, 113, 114, 115, 117, 118, 119, 122, 124, 125, 128, 130, 131, 135, 138, 139, 141, 143, 145, 148, 149, 150, 154, 155, 161, 162, 163, 165, 167, 168, 169, 170, 171, 173, 176, 179, 181, 182, 183, 185, 188, 189], "enable_cli": 151, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 157, "enable_preview": [47, 88, 127], "enable_shar": 154, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 113, "enabledefaultcontact": 114, "enabledpreviewprovid": [47, 88, 127, 133, 181, 182], "encapsul": 130, "encf": 132, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 130, 148, 153], "encount": [2, 3, 41, 50, 60, 119, 131, 138, 139, 143], "encourag": [86, 127, 134, 187], "encrypt": [22, 31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 108, 111, 127, 128, 130, 140, 144, 151, 154, 157, 158, 173, 179], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 113, 124, 130, 133, 144, 145, 149, 151, 152, 158, 161, 164, 166, 181], "end_header_id": 5, "endeavor": 120, "endedat": 14, "endedbefor": [14, 157], "endpoint": [2, 15, 24, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 93, 97, 114, 139, 144, 148, 156, 157, 167, 181, 188, 189], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 93, 96, 111, 113, 124, 127, 130, 138, 154, 157, 160, 179, 188], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 97, 100, 102, 133, 135, 141, 147, 157, 165, 187, 189], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 120, 133], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 94, 100, 113, 127, 133, 139, 167, 171, 183], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 69, 70, 81, 88, 92, 94, 96, 108, 109, 113, 115, 117, 122, 125, 128, 130, 131, 133, 134, 135, 138, 139, 143, 144, 151, 152, 153, 154, 158, 160, 173], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 94, 117, 125, 126, 127, 129, 134, 146, 148, 153, 158], "enterpris": [12, 22, 56, 72, 120, 122, 123, 124, 127, 134, 135, 139, 157, 169, 186, 187], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 118, 139, 141, 148, 187], "entiti": 165, "entri": [1, 22, 24, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 93, 108, 112, 113, 114, 115, 121, 125, 130, 133, 134, 136, 138, 139, 143, 144, 145, 148, 150, 152, 154, 157, 161, 165, 176, 181], "entrypoint": [58, 165, 172], "entryuuid": 155, "enumer": [77, 114, 180], "env": [4, 93, 97, 98, 99, 127, 134, 158], "env_nam": 99, "env_valu": 99, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 94, 97, 99, 101, 119, 120, 127, 130, 131, 133, 135, 139, 141, 143, 144, 146, 147, 148, 149, 157, 158, 161, 163, 170, 185, 187], "eof": 63, "eot_id": 5, "epel": [56, 124], "epoch": 135, "equal": [8, 29, 47, 60, 97], "equival": [40, 49, 59, 60, 81, 133, 157], "eras": 94, "erasur": [88, 108], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 99, 100, 111, 119, 121, 122, 124, 127, 129, 131, 132, 133, 134, 137, 140, 143, 144, 148, 150, 151, 152, 154, 157, 165, 173, 184, 189], "error_log": [60, 67, 94, 139], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 157], "escal": 54, "escap": [63, 92, 188], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 97, 103, 134, 137, 139, 143, 144, 145, 149, 181, 188], "esperanto": 4, "essenti": [8, 60, 68, 81, 133, 139, 189], "establish": [41, 43, 55, 63, 77, 88, 94, 131, 135, 154, 155], "estim": [4, 133], "esx": 134, "etag": [40, 130, 157, 188], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 93, 97, 112, 121, 122, 124, 125, 127, 129, 130, 131, 132, 134, 139, 144, 145, 153, 154, 158, 161, 164, 165, 167, 168, 171, 173, 175, 179, 181, 188, 189], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 154], "euc": 71, "euro": [161, 162, 163, 164, 165, 166, 169], "eurooffic": [161, 165], "europ": [60, 67, 118, 150], "european": 5, "eval": 151, "evalu": [67, 77, 93, 187, 188], "even": [1, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 81, 88, 96, 97, 99, 102, 108, 113, 115, 127, 130, 132, 134, 139, 143, 147, 149, 187], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 94, 108, 111, 112, 115, 116, 117, 127, 129, 151, 154, 157, 189], "eventfilt": 188, "eventu": 108, "everi": [5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 69, 80, 81, 85, 88, 94, 97, 109, 111, 113, 114, 115, 120, 124, 133, 135, 144, 145, 148, 149, 151, 153, 154, 157, 165, 175, 176, 185, 187, 188, 189], "everybodi": 139, "everyon": [18, 52, 77, 80, 120, 155, 187], "everyth": [59, 60, 63, 65, 81, 88, 92, 134, 139, 187, 189], "everywher": [81, 176], "evict": 60, "ex": [2, 92, 94, 96, 145, 151], "ex_app_port": 97, "exact": [38, 57, 60, 70, 77, 81, 148, 188], "exactli": [48, 59, 60, 93, 124, 133, 149], "examin": [12, 83], "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 12, 14, 15, 16, 18, 20, 22, 26, 28, 32, 33, 34, 35, 38, 40, 41, 43, 45, 47, 48, 50, 51, 53, 55, 56, 57, 59, 63, 64, 65, 68, 72, 77, 79, 81, 83, 85, 87, 88, 93, 94, 95, 96, 97, 99, 105, 116, 117, 119, 122, 127, 128, 129, 130, 132, 134, 136, 137, 138, 139, 141, 143, 148, 149, 150, 151, 154, 155, 156, 157, 158, 161, 165, 170, 172, 173, 179, 187, 188], "example_en": 165, "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 95, 98, 100, 182, 183, 184], "exapp_direct": 98, "exapphost": 97, "exce": [4, 44, 49, 60, 85, 133, 154, 165, 184], "exceed": [26, 44, 49, 60, 152, 154], "excel": 59, "except": [3, 59, 60, 67, 76, 80, 81, 92, 130, 133, 138, 143, 144, 148, 151, 157], "excerpt": 94, "excess": [112, 133], "exchang": [0, 5, 7, 41, 63, 179], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 94, 103, 157, 158], "exclus": [36, 40, 48, 58, 60, 70, 94, 97, 139, 154], "exec": [4, 15, 40, 143, 153, 188], "execcondit": 57, "execstart": [15, 57, 188], "execut": [1, 3, 4, 6, 8, 15, 19, 24, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 97, 105, 117, 127, 130, 132, 138, 143, 148, 149, 151, 152, 155, 161, 185, 188], "exempt": [58, 60], "exhibit": [7, 8, 130], "exif": [131, 154], "exim": 63, "exim4": 63, "exist": [3, 6, 12, 16, 20, 22, 23, 27, 28, 31, 33, 36, 38, 44, 48, 51, 53, 54, 60, 61, 63, 67, 74, 75, 76, 81, 83, 85, 88, 92, 93, 94, 96, 97, 108, 113, 115, 117, 119, 126, 127, 129, 130, 131, 134, 138, 139, 143, 144, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 165, 171, 178, 181, 187, 188, 189], "exit": [92, 125, 153, 154, 157], "expand": [16, 88, 120, 129, 161], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 117, 127, 137, 138, 148, 157, 160, 164, 166, 181, 182, 183, 184, 187], "expedit": 8, "expens": [40, 113], "experi": [4, 16, 57, 65, 88, 114, 117, 120, 127, 133, 135, 139, 173], "experienc": 94, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 117], "expertis": [139, 187], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 94, 107, 108, 113, 117, 127, 130, 188], "expiri": [44, 60, 81, 108, 165], "explain": [16, 38, 56, 65, 88, 109, 112, 120, 124, 131], "explan": 40, "explicit": 115, "explicitli": [14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 107, 129, 130, 139, 151, 154, 158, 161, 165, 179], "explod": [60, 97], "explor": [12, 92], "export": [52, 60, 88, 94, 109, 112, 117, 127, 150, 151, 158, 189], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 96, 97, 98, 121, 122, 127, 129, 131, 139, 163], "exposur": [77, 108, 127, 139], "express": [60, 69, 93, 102, 188, 189], "ext4": 38, "extapp": 160, "extend": [1, 2, 8, 43, 60, 63, 108, 112, 120, 135, 174, 187], "extendedsupport": 157, "extens": [3, 22, 51, 60, 63, 65, 67, 70, 88, 90, 92, 112, 119, 120, 122, 124, 127, 130, 131, 133, 134, 139, 144, 146, 154, 180, 181, 182, 187], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 15, 31, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47, 57, 60, 65, 68, 81, 84, 85, 87, 88, 101, 103, 109, 111, 113, 127, 131, 132, 133, 135, 136, 143, 144, 150, 151, 153, 157, 158, 161, 165, 181, 188, 189], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 153, "extra": [12, 16, 56, 60, 72, 81, 100, 124, 125, 138, 143, 153, 164], "extra_fil": 138, "extract": [1, 3, 29, 60, 93, 97, 124, 126, 130, 148, 157], "extrem": [58, 70, 129, 133], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 93, 100, 113, 141, 143, 147, 149, 152, 154, 157, 188], "f12": [94, 139], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 138, "f6": 55, "fa829794448eaffbc9a04a29d216": 138, "face": [7, 9, 12, 14, 15, 77, 88, 92, 130], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 133, 187], "fact": 127, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 119, 127, 133, 151], "factori": 60, "fail": [3, 14, 16, 24, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 94, 100, 108, 111, 113, 121, 127, 131, 138, 139, 146, 148, 151, 152, 153, 154, 156, 157, 158, 165, 181], "fail2ban": [65, 88, 128], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 127, "failur": [60, 75, 76, 88, 94, 100, 139, 144, 151], "fair": [88, 140], "fairli": 94, "fall": [25, 26, 38, 60, 115, 129, 130], "fallback": [51, 60, 67, 127, 130, 161, 175], "fallen": 157, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 97, 98, 113, 117, 119, 127, 129, 133, 139, 141, 149, 150, 152, 153, 157, 165, 168, 181, 188], "famili": 77, "familiar": [60, 134], "faq": [3, 70, 88, 101, 134, 139, 140, 146], "far": [2, 15, 85, 117, 187], "farsi": 4, "fast": [5, 63, 117, 150], "fastcgi": [125, 130, 134], "fastcgi_buff": 130, "fastcgi_connect_timeout": 130, "fastcgi_hide_head": 130, "fastcgi_intercept_error": 130, "fastcgi_max_temp_file_s": 130, "fastcgi_param": [127, 130], "fastcgi_pass": 130, "fastcgi_path_info": 130, "fastcgi_read_timeout": [26, 130, 133], "fastcgi_request_buff": 130, "fastcgi_script_nam": 130, "fastcgi_send_timeout": 130, "fastcgi_split_path_info": 130, "faster": [0, 3, 7, 11, 15, 59, 88, 128, 134, 187], "fastest": 133, "fat": 38, "fatal": [60, 67, 157], "fault": [24, 26], "faulti": 63, "favicon": [72, 157], "favor": 60, "favorit": 187, "fb": 55, "fcgid": 134, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [124, 132], "fd00": 127, "fd9e": 60, "fe80": [60, 129], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 24, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 109, 111, 113, 114, 116, 117, 119, 124, 127, 131, 133, 134, 135, 139, 151, 154, 157, 167, 170, 174, 178, 184, 187, 188], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 111, 112, 114, 115, 116, 127, 151, 156, 157], "fedivers": [77, 81, 111], "fediversescop": 77, "fedora": [59, 133, 134, 151], "fee": 112, "feedback": [5, 7, 9, 10, 15, 148, 161, 187, 188], "feel": [72, 97], "fell": 157, "fetch": [2, 16, 60, 81, 82, 125, 147, 149, 155, 160, 165, 189], "few": [32, 41, 58, 60, 81, 85, 98, 117, 133, 134, 143, 148, 149], "fewer": [108, 127], "ff5733": 152, "ffmpeg": [47, 60, 131], "ffprobe": 60, "ffri": 69, "fidel": [162, 169], "field": [1, 14, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 93, 96, 97, 109, 111, 112, 127, 129, 134, 139, 155, 157, 187, 188, 189], "figur": 149, "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 22, 23, 32, 33, 34, 37, 41, 47, 48, 49, 50, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 72, 77, 79, 81, 85, 91, 92, 97, 99, 100, 105, 107, 109, 112, 113, 114, 115, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 131, 134, 136, 137, 138, 140, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 161, 162, 163, 168, 171, 175, 176, 180, 183, 184, 185, 186], "file_serv": 93, "filecach": [19, 25, 40, 51, 60, 88, 145, 157], "fileconverter_input_limit_uncompress": 165, "fileconverter_max_download_byt": 165, "fileformat": 188, "fileid": [60, 157, 160, 188], "fileinfo": [131, 139], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 94, 111, 147, 150, 157, 182], "filepart": 60, "filepath": [34, 132, 134, 150], "files_accesscontrol": 3, "files_antiviru": [56, 88, 94], "files_encrypt": [28, 29, 153], "files_extern": [3, 38, 40, 60, 88, 150], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 154], "files_pdfview": 148, "files_shar": [41, 60, 85, 150, 157], "files_texteditor": 17, "files_trashbin": [29, 49, 154, 188], "files_vers": [18, 29, 44, 154], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 134, "filesmetadata": 157, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 132, 154, 158, 188], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 154], "filetyp": [47, 60, 127], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 96, 97, 109, 113, 117, 129, 189], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 131, 133, 152, 154, 155, 157, 158, 173, 184, 189], "final": [3, 5, 7, 26, 38, 60, 63, 88, 97, 117, 124, 126, 127, 128, 134, 148, 161, 187], "financ": 158, "financi": 139, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 28, 33, 38, 40, 48, 56, 58, 60, 70, 77, 80, 81, 85, 88, 91, 94, 109, 112, 117, 123, 131, 133, 134, 137, 139, 143, 149, 155, 183, 187, 189], "finder": [60, 139], "findtim": 127, "fine": [5, 11, 60, 103, 127, 132, 134, 161, 189], "fingerprint": [88, 144, 147], "finish": [3, 4, 8, 14, 56, 57, 97, 99, 100, 129, 139, 141, 143, 148, 149, 157], "firefox": [135, 158], "firewal": [16, 58, 93, 97, 100, 124, 127, 173, 181], "firm": 108, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 94, 97, 99, 100, 102, 112, 113, 114, 115, 119, 121, 124, 126, 127, 130, 133, 134, 136, 137, 138, 139, 143, 144, 145, 146, 149, 151, 152, 153, 155, 156, 157, 162, 164, 165, 166, 182, 187], "first_seen": 158, "fit": [1, 6, 38, 59, 96, 134, 146, 163, 179], "five": [133, 141], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 97, 115, 130, 131, 133, 135, 137, 139, 140, 157, 187], "fix_pathinfo": 130, "flac": [130, 180, 181], "flag": [53, 60, 83, 84, 98, 133, 150, 151, 153, 157, 158], "flash": 56, "flat": 60, "flexibl": [134, 136, 187], "flight": 156, "flite": 60, "float": [12, 60, 150], "flood": 67, "floor": 133, "flow": [60, 67, 68, 84, 88, 92, 93, 102, 106, 189], "flow_input": 189, "flowchart": 15, "fluentd": 97, "flush": 126, "fn": 115, "focu": [0, 1], "focus": [28, 120, 149, 187], "folder": [2, 7, 8, 16, 20, 26, 27, 31, 33, 34, 38, 39, 41, 43, 44, 46, 48, 49, 60, 65, 69, 72, 81, 82, 83, 88, 94, 95, 97, 103, 105, 124, 125, 130, 132, 134, 138, 139, 142, 143, 148, 154, 157], "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 38, 39, 40, 41, 43, 47, 48, 52, 53, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 72, 77, 80, 81, 83, 85, 88, 92, 93, 94, 96, 97, 98, 102, 104, 111, 113, 114, 115, 116, 118, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 143, 145, 150, 151, 153, 154, 155, 161, 167, 172, 173, 175, 181, 187, 188, 189], "followsymlink": [124, 134], "font": [60, 88, 130, 164, 165, 166], "fontobject": 130, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 133], "footer": 109, "footprint": 108, "forbid": [50, 86, 113], "forbidden": [60, 93], "forbidden_char": 182, "forbidden_filenam": [88, 182], "forbidden_filename_basenam": [50, 88, 182], "forbidden_filename_charact": [50, 88, 182], "forbidden_filename_extens": [50, 88, 182], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 99, 108, 111, 114, 119, 127, 150, 151, 152, 154, 155, 157], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 113, "forcesav": 161, "foreign": 63, "forest": 2, "forev": [49, 60, 157], "forgeri": 127, "forget": [28, 29, 60, 63, 133, 134, 141, 146], "forgot": 80, "form": [56, 60, 81, 87, 88, 96, 100, 112, 121, 124, 129, 139, 189], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 59, 65, 66, 67, 71, 81, 82, 83, 88, 93, 119, 133, 135, 151, 152, 154, 160, 161, 162, 165, 169, 183, 188, 189], "formid": 188, "formsubmittedev": 188, "forum": [70, 120, 139, 148, 149, 187], "forward": [15, 60, 69, 70, 97, 129, 130, 134, 139, 143, 151, 172], "forwarded_for_head": [58, 69, 88], "found": [0, 1, 3, 4, 6, 18, 44, 47, 51, 56, 58, 59, 60, 67, 70, 80, 81, 88, 94, 96, 97, 100, 115, 124, 127, 129, 130, 131, 133, 134, 137, 138, 139, 146, 149, 152, 153, 157, 160, 167, 168, 170, 171, 172, 173, 181, 184, 187], "foundat": 0, "four": [15, 56, 81, 147, 157, 165, 187, 188], "fourth": 187, "fpm": [26, 60, 70, 88, 125, 127, 128, 130, 131, 135], "fr": [60, 66], "frame": [64, 113, 127, 130], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [152, 154, 157, 158], "freda": 41, "free": [2, 15, 20, 24, 44, 80, 97, 119, 120, 127, 134, 139, 152, 158], "free_prompt_picker_en": 1, "freebsd": 131, "freebusi": [88, 116], "freed": 154, "freedom": 175, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 133], "frequent": [13, 56, 59, 60, 88, 93, 108, 139, 187], "fresh": [3, 40, 81, 130, 143, 149, 152, 153], "freshclam": 56, "fridai": 2, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 24, 26, 28, 29, 30, 32, 37, 38, 39, 40, 41, 43, 44, 45, 46, 50, 54, 55, 56, 57, 59, 60, 64, 65, 67, 69, 70, 72, 75, 77, 80, 81, 82, 83, 85, 86, 88, 93, 94, 95, 96, 97, 99, 100, 102, 103, 106, 107, 108, 109, 112, 113, 114, 115, 117, 118, 119, 120, 121, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 164, 165, 166, 167, 169, 173, 175, 176, 181, 182, 183, 184, 185, 187, 188, 189], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 119, 130, 163, 170], "front_controller_act": [130, 134], "frontend": [26, 60, 67, 69, 88, 93, 96, 174, 175], "frontend1": 69, "frp": [96, 97, 98], "frp_address": 98, "frpc": [97, 98], "fry": 155, "fss": 97, "ftp": [40, 88, 125, 131, 138], "fulfil": [2, 108, 112, 129, 139], "full": [3, 22, 28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 102, 108, 109, 111, 112, 114, 121, 122, 127, 133, 134, 135, 144, 146, 150, 151, 152, 153, 154, 157, 158, 167, 168, 172, 187, 188], "fulli": [0, 1, 12, 13, 28, 41, 53, 60, 63, 88, 110, 121, 134, 148, 149, 154, 157, 159, 169, 171, 187, 188], "fullscreen": 167, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 29, 39, 45, 54, 60, 63, 64, 67, 77, 87, 88, 92, 96, 97, 103, 107, 117, 120, 127, 131, 132, 134, 135, 136, 139, 143, 144, 149, 160, 171, 173, 187, 189], "fund": 120, "fundament": [60, 70, 81], "further": [16, 22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 94, 109, 112, 124, 128, 134, 143, 146, 170, 187], "furthermor": [29, 59, 60], "fuse": 132, "fusef": [88, 128], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 113, 157, 165, 182, 183, 184, 188], "g": [2, 5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 69, 72, 77, 81, 82, 83, 88, 96, 97, 98, 99, 100, 102, 107, 108, 113, 114, 115, 117, 119, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 143, 144, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 164, 166, 167, 171, 187, 188, 189], "gain": [3, 14, 127], "galera": 24, "galleri": [47, 60, 148, 157], "gap": 148, "garbag": [57, 60], "garbl": 5, "garm": [16, 127], "gatewai": [48, 88, 133, 134], "gather": [81, 139, 181], "gb": [3, 4, 11, 26, 60, 81, 85, 96, 133, 157, 163, 164, 165, 166], "gc": 60, "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 124, 126, 131], "gdpr": [88, 107, 108, 109, 111, 112], "gear": 85, "gecko": 67, "gemma": [1, 2, 5], "gender": 7, "gener": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 18, 28, 31, 32, 36, 37, 40, 46, 48, 51, 52, 53, 58, 59, 60, 63, 69, 72, 77, 80, 81, 82, 88, 92, 94, 97, 107, 110, 113, 115, 117, 124, 128, 129, 130, 132, 133, 134, 136, 140, 144, 149, 150, 151, 154, 156, 157, 158, 160, 161, 164, 165, 166, 174, 175, 176, 181, 182, 183, 184, 187], "generalizedtim": 81, "generate_font": 165, "genr": [15, 88], "geo": 130, "german": [4, 5, 60, 66], "germani": [2, 60], "get": [1, 2, 13, 16, 22, 26, 28, 29, 32, 38, 46, 47, 51, 60, 62, 67, 69, 80, 81, 82, 92, 106, 124, 125, 127, 130, 132, 134, 135, 137, 138, 139, 143, 148, 151, 153, 158, 161, 164, 166, 167, 170, 173, 176, 181, 189], "get_lin": 63, "getctag": 188, "getenv": [60, 65, 88, 134], "getpath": [137, 150], "gguf": [5, 12], "ghcr": [97, 133, 165], "gib": 26, "gid": 158, "gidnumb": [82, 155], "gif": [60, 99, 130, 175, 176], "giphi": [175, 176], "git": [7, 8, 137], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 94, 120, 127, 130, 133, 134, 137, 146, 164, 166, 175, 176, 181, 184, 187], "githubusercont": 127, "gitlab": [175, 176], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 104, 108, 109, 111, 125, 132, 134, 138, 148, 156, 157, 187], "given": [2, 24, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 97, 102, 106, 119, 127, 134, 139, 153, 154, 157, 158, 160, 161, 181], "givennam": [82, 155], "glanc": 133, "global": [32, 53, 60, 65, 67, 81, 88, 97, 113, 117, 118, 120, 130, 151, 154, 158, 176], "gmail": 117, "gmbh": [12, 16, 72, 103, 120, 122, 127, 134, 139, 157, 187], "gmp": [126, 131], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 96, 97, 98, 109, 113, 124, 126, 133, 137, 143, 144, 148, 167, 187, 189], "goal": [28, 77, 81, 92, 134], "goe": [14, 24, 85, 97, 145], "gold": [7, 10], "gone": [85, 88, 139], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 127, 133, 134, 143, 149, 187], "googl": [2, 15, 60, 72, 80, 88, 135, 175], "got": [2, 18, 103, 187], "govern": 77, "gpg": [88, 124, 126, 128, 168], "gpt": [1, 176], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 96, 97, 98, 100], "grab": 124, "grace": 81, "gracefulli": 129, "gradual": 48, "grain": [132, 161, 189], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 93, 112, 119, 121, 124, 126, 134, 157], "graph": [15, 60], "graphic": [1, 15, 47, 92, 96, 122, 134], "great": 124, "greater": [60, 88], "greatli": [3, 134, 135], "green": [5, 15, 40, 41, 81, 88, 89, 161], "grep": [3, 15, 20, 56, 59, 100, 131, 133, 134, 188], "groceri": 2, "groqcloud": [0, 15], "group": [2, 6, 16, 31, 33, 34, 36, 38, 43, 46, 54, 56, 59, 60, 64, 67, 74, 80, 82, 83, 87, 88, 93, 111, 112, 114, 119, 122, 134, 150, 151, 152, 154, 157, 161, 165, 173, 188], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 103, 154], "groupid": [75, 76, 81, 158], "groupofnam": 155, "groupwar": [112, 113, 114, 117, 139], "grow": [88, 97, 120, 133], "growth": [53, 133], "gt": 188, "gte": 188, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 24, 45, 49, 59, 60, 77, 93, 108, 188], "guard": [93, 133], "guess": [58, 127], "guest": [16, 88, 165], "gui": [3, 32, 66, 92, 133], "guid": [23, 28, 60, 63, 92, 96, 117, 120, 124, 126, 127, 131, 133, 134, 147, 153, 157, 164, 166, 170, 171, 178, 179, 184], "guidanc": [28, 88, 110, 111, 112, 120, 128, 129, 131, 133, 134], "guidelin": 130, "guooq": 158, "guzzl": 60, "gz": [60, 119], "gzip": [119, 130], "gzip_comp_level": 130, "gzip_min_length": 130, "gzip_proxi": 130, "gzip_typ": 130, "gzip_vari": 130, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 97, 127, 134, 141, 147, 151], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 19, 24, 26, 28, 29, 32, 38, 40, 41, 43, 47, 48, 51, 53, 54, 56, 57, 58, 60, 63, 64, 66, 67, 68, 70, 77, 80, 81, 85, 88, 93, 94, 96, 97, 98, 102, 107, 111, 112, 113, 115, 117, 118, 119, 122, 124, 127, 129, 132, 133, 134, 136, 138, 139, 144, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 165, 166, 167, 171, 179, 184, 185, 186, 187, 188, 189], "hackeron": [12, 28], "had": [29, 53, 60, 92, 179, 181, 184], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [103, 187], "handl": [1, 2, 3, 8, 20, 24, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 94, 95, 97, 109, 111, 113, 117, 122, 127, 130, 131, 133, 139, 152, 154, 172, 173, 185, 188], "handle_all_url": 55, "handler": [60, 63, 88, 93, 161], "hanson": 155, "hansson": 134, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 102, 113, 117, 130, 138, 139, 144, 148, 167, 188, 189], "happi": [14, 31, 48], "haproxi": [88, 96, 97, 130], "haproxy_host": 97, "haproxy_password": [97, 98], "haproxypass": 97, "hard": [26, 43, 64, 127], "hardcod": [127, 130], "harden": [60, 88, 128, 129, 131], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 96, 100, 133, 134, 144], "harp": [88, 98, 100, 101], "harp_docker_socket_port": 98, "harp_exapp_direct": 98, "harp_frp_address": 98, "harp_proxy_dock": 98, "harp_proxy_host": 98, "harp_shared_kei": 98, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 111, 127, 131, 138, 188, 189], "hash_equ": 29, "hash_hmac": 29, "hasher": 127, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 176, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 134, 135], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 24, 25, 26, 28, 29, 30, 32, 33, 34, 38, 40, 41, 43, 47, 48, 50, 51, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 77, 78, 80, 81, 83, 85, 88, 91, 92, 94, 96, 97, 98, 100, 102, 104, 106, 108, 109, 113, 114, 115, 117, 119, 121, 122, 124, 125, 127, 129, 130, 132, 133, 134, 135, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 165, 167, 168, 171, 172, 173, 175, 177, 181, 183, 187, 188, 189], "haveibeenpwnd": 86, "hbegin": 29, "hdr": [60, 93], "head": [58, 68, 70, 124], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 93, 97, 128, 129, 130, 133, 134, 139, 157, 161, 165, 181, 184, 189], "header_regexp": 93, "headless": 122, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 133, "health": [24, 100, 164, 165, 166], "healthcheck": [164, 165, 166], "healthi": [100, 139], "heartbeat": [60, 88], "heartbeat_count": 100, "heavi": [0, 1, 19, 45, 59, 97, 131], "heavili": [58, 60], "heic": [60, 133, 134], "heif": [60, 134], "height": 60, "held": [88, 112], "hellman": 165, "hello": [1, 63], "helm": 134, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 94, 102, 103, 107, 110, 111, 113, 114, 119, 120, 122, 124, 132, 133, 134, 137, 139, 143, 147, 148, 149, 151, 153, 157, 161, 187], "helper": [15, 107, 129], "henc": [80, 151], "hend": 29, "her": 2, "here": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 18, 20, 22, 28, 31, 43, 56, 60, 63, 67, 68, 69, 81, 91, 93, 96, 97, 117, 119, 127, 129, 130, 133, 134, 149, 151, 175, 189], "hetzner": 12, "heurist": [56, 70], "hex": 152, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 94, 113, 119, 127, 130, 139, 161], "hide": [38, 60, 77, 88, 107, 118, 119, 130, 161], "hide_absence_set": 118, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 113, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 112, 117, 127, 133, 134, 135, 136, 162, 169, 183, 187], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 111, 114, 145, 165, 187], "highest": [2, 81, 133, 149, 187], "highli": [58, 60, 70, 81, 119, 120, 127, 129, 131, 133, 138, 160, 170, 187], "highlight": [15, 134, 143, 149, 187], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 129, 130, 149], "hintexcept": 151, "histor": 28, "histori": [14, 15, 40, 58, 86, 88, 112, 122, 154], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 96, 102, 108, 111, 130, 165, 188], "holidai": [113, 152], "home": [28, 40, 63, 81, 83, 88, 92, 94, 134, 139, 154, 157, 173], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 187], "hook": 151, "hope": 25, "hopefulli": 148, "hord": 119, "horde_": 119, "horde_imap": 119, "horizon": 161, "hors": 56, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 22, 24, 31, 37, 38, 45, 48, 55, 56, 59, 60, 63, 69, 70, 81, 82, 88, 93, 95, 96, 98, 113, 117, 119, 121, 122, 124, 125, 127, 129, 130, 134, 139, 143, 144, 148, 150, 157, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 172, 173, 181, 188], "host2": 97, "host3": 97, "hoster": [22, 60, 117], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 93, 96, 117, 121, 122, 129, 130, 134, 144, 146, 157, 173], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 94, 108, 109, 111, 113, 114, 115, 117, 143, 144, 149, 156, 189], "hourli": 53, "hous": [31, 143], "housekeep": [57, 143], "hover": [81, 85, 175], "how": [2, 6, 7, 10, 12, 15, 16, 18, 21, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 96, 108, 112, 113, 114, 116, 117, 119, 120, 124, 127, 129, 130, 131, 133, 134, 138, 139, 142, 144, 148, 157, 158, 165, 167, 174, 178, 179, 183, 184, 185, 187], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 22, 29, 30, 56, 57, 58, 59, 60, 71, 79, 80, 97, 113, 118, 127, 133, 134, 135, 145, 146, 149, 170, 172, 181], "hp_frp_address": 97, "hp_shared_kei": [96, 97], "hp_trusted_proxy_ip": 97, "href": 188, "hst": [70, 125, 127, 130, 165], "hstspreload": 130, "htaccess": [26, 88, 124, 127, 129, 130, 132, 139, 181, 182, 184], "htaccesstest": 130, "htdoc": 121, "html": [60, 63, 67, 94, 124, 130, 131, 132, 135, 139, 148, 151, 160, 167, 168, 170, 171, 172, 184], "htop": 133, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 20, 26, 28, 31, 34, 35, 36, 39, 40, 41, 45, 48, 52, 55, 56, 57, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 77, 79, 81, 82, 83, 87, 88, 91, 92, 94, 95, 96, 97, 98, 100, 107, 112, 113, 117, 119, 122, 124, 125, 126, 128, 129, 131, 132, 135, 137, 138, 139, 141, 143, 145, 146, 148, 149, 151, 156, 157, 160, 161, 163, 164, 166, 167, 168, 170, 171, 172, 173, 174, 181, 184, 188, 189], "http2": 130, "http_author": 134, "http_client_add_user_agent_url": 88, "http_code": 93, "http_forwarded_for": 60, "http_host": 130, "http_proxi": 60, "http_user_ag": [93, 130], "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 94, 102, 103, 124, 128, 134], "httpd_can_connect_ldap": 132, "httpd_can_network_connect": [124, 132], "httpd_can_network_connect_db": 132, "httpd_can_network_memcach": 132, "httpd_can_sendmail": 132, "httpd_sys_rw_content_t": [124, 132], "httpd_unifi": 132, "httpd_use_cif": 132, "httpd_use_fusef": 132, "httpd_use_gpg": 132, "httpd_use_nf": 132, "httpdavmodul": 139, "https_frontend": 93, "https_proxi": 60, "hub": [0, 2, 15, 171, 189], "hug": 7, "huge": [19, 60, 133], "huggingfac": [5, 11], "human": [6, 11, 81, 154, 189], "hundr": 139, "hurri": 63, "hy000": 139, "hybrid": 120, "hyperlink": 43, "hypervisor": 134, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 175, 176, 179, 180, 181, 184, 185, 186, 187, 188], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 118], "ibm": [1, 8, 12, 13, 15, 88], "ic": [112, 113, 152, 188], "ical": 152, "icalendar": 152, "icap": [65, 88], "icmp_req": [22, 63], "ico": [130, 157], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 130, 157], "id": [2, 5, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 97, 98, 107, 115, 117, 127, 151, 152, 154, 155, 156, 158, 161, 167, 173, 188, 189], "id1125420102": [60, 72], "idea": [2, 56, 120, 143, 149], "ideal": [1, 134, 139, 146, 188], "idelegatedset": 157, "ident": [36, 48, 60, 72, 74, 81, 88, 121, 127, 134, 144], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 100, 107, 111, 115, 118, 119, 126, 127, 133, 138, 139, 144, 152, 154, 157, 158, 160, 189], "idl": 133, "ie": [1, 3, 124], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 188, "ifmodul": [124, 127, 134, 139], "ifram": [60, 64, 127], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 94, 115, 121, 131, 137, 155, 160], "ignore_notic": 22, "ignorefrontcontrol": [88, 134], "illustr": [47, 60, 134], "im_end": 5, "im_start": 5, "imag": [2, 5, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 130, 131, 133, 134, 154, 157, 158, 163, 167, 170, 173, 175, 176, 182, 183, 184, 185], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 126, 131, 133], "imagin": 43, "imaginari": [60, 88, 133, 134], "imaginarypdf": [60, 182], "imap": [63, 88, 131], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 93, 107, 108, 152, 154, 157, 158], "immut": [81, 130], "impact": [28, 40, 48, 58, 59, 60, 63, 97, 104, 133, 187], "imperson": 165, "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 28, 29, 32, 48, 54, 56, 60, 63, 68, 80, 81, 88, 97, 113, 119, 127, 134, 135, 144, 151, 157, 175], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 113, 114, 117, 124, 126, 129, 130, 131, 133, 134, 136, 139, 144, 150, 178, 188, 189], "importantli": [120, 134], "impos": [15, 127], "impract": 108, "imprint": 88, "imprinturl": [72, 157], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 96, 120, 124, 130, 131, 133, 135, 149, 170], "in_arrai": 97, "inaccess": [23, 28, 48, 153], "inaccur": 8, "inact": 60, "inadvert": [58, 133], "inbound": 165, "inbox": [2, 15, 119], "inc": 72, "incid": 67, "inclin": 187, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 45, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 94, 98, 100, 109, 111, 115, 117, 118, 119, 120, 121, 127, 129, 130, 131, 133, 134, 136, 137, 139, 141, 148, 149, 152, 154, 157, 158, 160, 162, 165, 169, 170, 182, 183, 184, 185, 187, 188, 189], "includedir": 22, "includesubdomain": [127, 130], "inclus": 152, "incom": [12, 60, 61, 69, 109, 154], "incoming_server2server_share_en": 150, "incompat": [60, 133, 145], "incomplet": [152, 154], "inconsist": [38, 141, 152, 154, 157], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 94], "incorrectli": [60, 69, 119], "increas": [16, 18, 26, 32, 38, 41, 59, 60, 63, 67, 100, 117, 125, 127, 130, 133, 134, 135, 139, 151, 161, 183], "increment": [19, 153], "indefinit": [58, 108, 111, 157], "independ": [3, 29, 59, 60, 67, 77, 88, 94, 102, 111, 120, 121, 148, 165], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 97, 102, 125, 127, 130, 134, 138, 139, 148, 150, 164, 170], "indexerjob": 3, "indi": 130, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 100, 107, 117, 129, 132, 139, 145, 149, 161, 187, 188], "indirectli": 103, "individu": [24, 26, 28, 32, 40, 54, 58, 60, 92, 94, 112, 119, 120, 121, 127, 133, 151, 153, 154, 157], "industri": [12, 144], "inetorgperson": [81, 82, 155], "inevit": [127, 135], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 113, 114], "info": [8, 43, 60, 67, 70, 77, 81, 88, 94, 99, 109, 112, 130, 139, 151, 165], "inform": [0, 1, 3, 4, 5, 7, 8, 12, 14, 16, 17, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 45, 48, 52, 53, 58, 59, 60, 63, 64, 66, 67, 69, 70, 72, 76, 77, 81, 85, 88, 91, 92, 94, 99, 102, 107, 109, 112, 113, 114, 117, 118, 119, 120, 122, 125, 127, 130, 131, 133, 134, 135, 138, 143, 146, 148, 149, 151, 154, 155, 157, 158, 175, 179, 181, 183, 184, 185, 189], "infrastructur": [12, 60, 97, 139, 157, 163], "inher": [57, 107], "ini": [22, 26, 33, 59, 60, 71, 88, 124, 125, 127, 128, 130, 132, 133, 134, 139, 151, 183], "init": [56, 88], "initdb": 125, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 97, 99, 100, 103, 111, 121, 154, 157, 187, 189], "initialis": [125, 134, 146, 154], "inject": 60, "inlin": 15, "innodb": [23, 60, 135], "innodb_buffer_pool_inst": 22, "innodb_buffer_pool_s": 22, "innodb_file_format": [22, 60], "innodb_file_per_t": [22, 23, 60], "innodb_flush_log_at_trx_commit": 22, "innodb_large_prefix": [22, 60], "innodb_log_buffer_s": 22, "innodb_max_dirty_pages_pct": 22, "inotifi": 154, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 127, 150, 152, 154, 157, 176, 189], "insecur": [63, 88, 135, 161], "insensit": [38, 50, 60, 93, 102], "insert": [15, 60, 88, 130, 152, 165, 176], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 94, 97, 103, 113, 125, 133, 148, 153, 154, 157, 161, 165, 188], "insight": [1, 12, 13, 88], "inspect": [4, 24, 56, 88, 154, 156, 157], "inspector": 70, "instal": [13, 15, 16, 17, 18, 20, 22, 23, 26, 29, 30, 35, 38, 39, 40, 41, 45, 49, 54, 57, 59, 63, 64, 65, 67, 70, 72, 80, 81, 84, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 106, 109, 113, 114, 117, 120, 130, 132, 133, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 159, 160, 162, 169, 171, 172, 174, 176, 178, 179, 181, 186], "installdir": 92, "installed_vers": 150, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16, 18, 19, 20, 22, 23, 28, 29, 43, 46, 47, 53, 57, 59, 60, 63, 67, 68, 69, 72, 77, 81, 84, 88, 92, 94, 96, 97, 108, 111, 112, 113, 114, 115, 117, 119, 120, 121, 124, 128, 129, 130, 133, 134, 135, 139, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 157, 158, 160, 161, 165, 170, 173, 183, 185, 187, 188, 189], "instance_id": [18, 107], "instanceid": [29, 88, 144, 148], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 16, 18, 23, 26, 31, 32, 38, 45, 47, 48, 51, 53, 57, 59, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 93, 117, 119, 121, 124, 127, 130, 134, 138, 139, 145, 146, 148, 149, 150, 152, 153, 154, 157, 161, 165, 167, 179, 185], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 119, 126, 127, 131, 133, 134, 136, 143, 145, 149, 185, 189], "insuffici": [76, 94], "int": [26, 60, 73, 75, 76, 82, 97, 119], "int8_float32": 11, "intact": 112, "integ": [1, 19, 48, 57, 60, 93, 97, 113, 114, 150, 152, 188], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 115, 117, 118, 120, 131, 134, 139, 140, 148, 151, 167, 175, 176, 182, 183, 185, 188, 189], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 117], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 138, "intel": [7, 10, 133], "intellig": [0, 1, 12, 15, 88, 96], "intend": [60, 77, 80, 81, 92, 127, 153, 157], "intens": [18, 28, 57, 133], "intention": [60, 77, 92, 111, 119, 127], "interact": [1, 2, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 116, 148, 151, 153, 158, 166, 189], "intercept": 127, "interchang": [28, 63, 131], "interest": [107, 187], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 94, 96, 97, 109, 113, 115, 116, 118, 119, 126, 127, 128, 134, 135, 139, 149, 151, 154, 157, 158, 161, 184, 189], "intermedi": [149, 161], "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 69, 70, 74, 82, 85, 88, 97, 98, 102, 117, 130, 133, 134, 148, 153, 160, 161, 165, 176, 188], "internal_defaultexpdai": 43, "interned_strings_buff": 125, "internet": [57, 60, 63, 127, 129, 134, 157, 185], "interoper": [13, 88], "interpret": [92, 96, 127], "interrupt": [28, 45, 57, 131], "interv": [38, 40, 56, 57, 60, 83, 88, 111, 113, 115, 133, 157, 187, 188], "intervent": [6, 56, 127, 188], "intl": [124, 126, 131], "introduc": [15, 50, 81, 96, 130, 185, 187], "introduct": [65, 88, 97, 124], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 108, 121, 127, 130, 133, 140, 154, 158, 181], "invalid_hash": 138, "invalidsignatur": 138, "invalidsignatureexcept": 138, "invert": 102, "investig": [60, 154, 157], "invis": [40, 88, 102, 105, 106, 158], "invit": [63, 88, 111, 115, 116, 179], "invite": 113, "invoc": [24, 60, 127, 157, 181], "invok": [60, 92, 109, 122, 148, 151, 181], "involv": [26, 93, 107, 133, 135, 165, 181], "io": [45, 60, 64, 72, 97, 102, 120, 130, 133, 134, 135, 139, 146, 165], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [134, 146], "iotop": 133, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 93, 96, 97, 98, 100, 102, 108, 111, 117, 128, 129, 130, 134, 144, 146, 157, 160, 165, 173], "ip_host2_dock": 97, "ipad": 69, "ipaddress": 130, "iphon": 69, "iptabl": [58, 127, 173], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 130, "isanonym": 188, "isn": [23, 28, 60, 77, 81, 119, 134], "iso": [60, 66], "iso8601": 154, "iso_639": 60, "isol": [59, 60, 65, 88, 108, 133, 134, 135, 148], "isset": 97, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 22, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 100, 113, 114, 121, 126, 127, 129, 130, 133, 135, 137, 138, 146, 148, 149, 151, 157, 158, 167, 173, 175, 176, 183, 184], "isvfsen": 92, "italian": [4, 5, 10], "item": [2, 3, 43, 46, 65, 83, 88, 103, 113, 116, 133, 143, 154, 157], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 5, 8, 12, 14, 15, 16, 20, 24, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 94, 97, 112, 115, 117, 122, 124, 126, 127, 132, 133, 134, 138, 139, 143, 148, 152, 154, 156, 157, 158, 165, 174, 181, 184], "itself": [5, 22, 24, 32, 38, 40, 58, 60, 84, 92, 93, 96, 97, 102, 118, 121, 122, 126, 127, 134, 138, 139, 146, 148, 150, 151, 153, 165, 166, 173, 181], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 155, 164, 166, 167, 181], "jail": [88, 125], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 127, 133, 139, 180, 181, 189], "jcal": 152, "jeffmatson": 69, "jeroboam": 155, "ji": 71, "jit": 88, "jit_buffer_s": 133, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 108, 112, 115, 117, 128, 131, 139, 143, 145, 149, 151, 152, 154, 161, 185, 188, 189], "jobclass": 185, "joe": 188, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 158, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 100, 188], "journald": [97, 100], "jp": 71, "jpeg": [60, 88, 133], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [130, 157], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 97, 99, 100, 102, 113, 119, 124, 127, 130, 138, 150, 151, 152, 153, 154, 156, 157, 158, 161, 165, 188, 189], "json_pretti": [14, 151, 152, 153, 154, 156, 157, 158], "jump": [92, 143], "just": [22, 27, 53, 57, 60, 63, 64, 81, 85, 92, 102, 113, 119, 125, 127, 129, 130, 133, 134, 139, 143, 144, 148, 167, 187, 188], "jwfcftvztglwtje": 41, "jwk": 156, "jwt": [161, 165], "jwt_enabl": 165, "jwt_enabled_inbox": 165, "jwt_enabled_outbox": 165, "jwt_header": 165, "jwt_header_inbox": 165, "jwt_header_outbox": 165, "jwt_in_bodi": 165, "jwt_secret": [161, 165], "jwt_secret_inbox": 165, "jwt_secret_outbox": 165, "k": 76, "k7mdeng": 154, "karlsruh": 14, "kazakh": 4, "kb": [60, 154], "keep": [3, 15, 18, 24, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 94, 97, 100, 102, 108, 110, 113, 114, 117, 119, 124, 125, 126, 133, 134, 135, 139, 143, 144, 148, 149, 150, 158, 161, 165, 178, 187, 188], "keepal": [60, 139], "keepalive_timeout": 130, "keepalivetimeout": 139, "kei": [2, 3, 11, 16, 19, 22, 25, 31, 36, 37, 40, 41, 45, 46, 48, 60, 65, 67, 74, 75, 76, 77, 81, 85, 88, 96, 97, 98, 108, 117, 121, 122, 125, 126, 127, 130, 134, 136, 139, 145, 149, 150, 151, 154, 157, 161, 164, 165, 166, 176, 188], "kept": [49, 59, 60, 108, 133, 148, 156], "keyboard": 88, "keydb": 59, "keyfil": 97, "keyformat": 29, "keypair": 32, "keyr": 168, "keyston": [36, 48, 60], "keyvalu": [45, 48, 59], "keyvaluecach": [46, 65, 88, 131], "kfrh9": 158, "khtml": 67, "kib": 60, "kick": [58, 60], "kid": 156, "kill": 133, "killmod": 57, "kind": [1, 14, 69, 97, 127, 189], "kink": 56, "kitchen": 2, "know": [24, 29, 31, 40, 60, 67, 81, 84, 113, 119, 139, 155, 157, 165, 167], "knowledg": [11, 139], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 102, 115, 119, 125, 130, 135, 139, 150, 155, 158, 161, 174], "kokoro": 10, "korean": 4, "kovh8": 158, "krita": [60, 133], "kubectl": 3, "kubelet": 97, "kubernet": 88, "kunz": 83, "kvm": 134, "kvstore": [45, 59, 88], "l": [22, 57, 59, 69, 94, 125, 139, 157], "lab": 127, "label": [2, 15, 41, 69, 81, 98, 132, 139, 158], "labeleduri": 81, "lack": [129, 130], "lag": 24, "lamp": 134, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 158], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 96, 117, 120, 131, 135, 189], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 77, 88, 94, 113, 117, 119, 120, 130, 133, 134, 139, 149, 152, 157, 158, 165], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 127, 133, 158, 165], "largest": [96, 157], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 100, 106, 111, 112, 115, 129, 146, 148, 152, 154, 155, 157, 158, 187], "last_run": 157, "last_seen": 158, "lastact": 158, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 158, "lastmodifi": 188, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 188], "latenc": 133, "later": [17, 20, 43, 60, 83, 92, 103, 117, 119, 127, 134, 135, 139, 160, 165, 173], "latest": [1, 2, 4, 12, 26, 44, 48, 60, 61, 77, 91, 120, 124, 126, 133, 134, 135, 143, 146, 149, 164, 165, 166, 171, 178, 184, 187], "latin": 127, "latitud": 127, "latter": 59, "launch": [2, 55, 56, 59, 88, 94, 96, 98, 121, 143, 188], "law": 108, "lawyer": 12, "lax": 107, "layer": [28, 58, 60, 77, 80, 88, 91, 133, 138], "layla": [152, 153, 154, 157, 158], "layout": [60, 61, 149, 157, 162], "lazi": [60, 150], "ld": [81, 130], "ldap": [40, 46, 65, 74, 79, 85, 88, 112, 124, 127, 128, 131, 133, 134, 144, 151, 157, 158], "ldap_group_map": 81, "ldap_log_fil": 88, "ldap_matching_rule_in_chain": 81, "ldap_opt_network_timeout": 82, "ldap_user_map": 81, "ldapadmingroup": 81, "ldapagentnam": 82, "ldapagentpassword": 82, "ldapattributesforgroupsearch": 82, "ldapattributesforusersearch": [82, 155], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 155], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 155], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 155], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 155], "ldaphost": 82, "ldapignorenamingrul": 82, "ldaploginfilt": 82, "ldaploginfilterattribut": 82, "ldaploginfilteremail": 82, "ldaploginfiltermod": 82, "ldaploginfilterusernam": 82, "ldapnestedgroup": 82, "ldapoverridemainserv": 82, "ldappagings": 82, "ldapport": 82, "ldapquotaattribut": 82, "ldapquotadefault": 82, "ldaptl": 82, "ldapuseravatarrul": [81, 82], "ldapusercleanupinterv": [83, 88], "ldapuserdisplaynam": [82, 155], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 155], "lead": [24, 33, 38, 52, 53, 57, 58, 59, 60, 70, 94, 113, 114, 127, 130, 133, 134, 139, 165], "leak": [53, 60, 130, 133, 139, 188], "leakag": 127, "leaki": 133, "leap": 135, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 127, 138, 149, 150], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 108, 115, 129, 131, 133, 135, 145, 149, 155, 156, 158, 160, 181, 187, 188], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 117, 133, 144, 152, 157, 161], "lectur": 157, "leela": 155, "left": [40, 48, 57, 60, 63, 81, 85, 112, 133, 138, 148, 150, 154, 165], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 93, 151, 154, 157], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 107, 108, 110, 112], "legibl": 9, "legitim": [28, 58, 107, 108, 111], "length": [8, 32, 48, 56, 60, 86, 88, 130], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 127, 131, 133, 135, 187], "let": [15, 20, 40, 58, 63, 72, 85, 92, 97, 109, 130, 134, 144, 148, 154, 157, 161, 167], "letsencrypt": 130, "letter": [38, 85, 189], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 94, 111, 127, 128, 135, 139, 148, 151, 154, 157, 158, 165, 188], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 130, 165], "libapache2": [126, 134], "libargon2": 131, "liber": 94, "libmagickcor": 72, "librari": [11, 45, 47, 59, 60, 63, 87, 94, 127, 133, 179], "libreoffic": [47, 60, 88, 131], "libsmbclient": 38, "libxml": 131, "libxml2": 131, "licenc": 17, "licens": [15, 16, 127], "life": [88, 124, 145, 149], "lifetim": [60, 81, 88, 107, 111, 156], "lift": 97, "light": [41, 60, 81, 161], "lighter": 187, "lighttpd": 139, "lightweight": 60, "like": [1, 2, 3, 4, 5, 6, 7, 8, 12, 14, 15, 16, 20, 22, 23, 27, 28, 31, 32, 38, 41, 45, 48, 50, 53, 54, 57, 59, 60, 61, 64, 67, 80, 81, 83, 86, 87, 92, 94, 96, 97, 103, 113, 114, 117, 118, 119, 124, 127, 129, 130, 131, 133, 134, 139, 141, 143, 145, 146, 148, 149, 150, 151, 155, 157, 173, 174, 175, 176, 181, 189], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 53, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 94, 96, 97, 108, 109, 116, 119, 124, 125, 129, 133, 134, 135, 139, 144, 148, 152, 153, 154, 155, 157, 158, 163, 181, 184, 187], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 93, 97, 112, 113, 117, 119, 126, 128, 130, 131, 133, 134, 139, 142, 143, 149, 151, 154, 164, 184, 188], "liner": 152, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 102, 109, 117, 127, 129, 134, 137, 138, 139, 148, 154, 157, 158, 161, 165, 174, 176, 189], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 94, 97, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 135, 139, 141, 143, 149, 151, 158, 163, 170, 186], "list": [1, 2, 3, 4, 5, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 69, 71, 75, 86, 87, 88, 92, 95, 96, 101, 102, 107, 109, 111, 113, 119, 121, 122, 124, 127, 129, 130, 131, 134, 135, 138, 139, 143, 149, 150, 151, 155, 160, 164, 165, 167, 168, 173, 178, 180, 181, 186, 187, 189], "listen": [38, 40, 45, 56, 59, 88, 97, 100, 115, 125, 130, 151, 154, 167, 172, 189], "listexapp": 99, "liter": 130, "literaci": 12, "littl": [4, 15, 70, 85, 97], "live": [0, 2, 7, 13, 24, 60, 81, 88, 107, 108, 111, 120, 133, 156, 157, 161, 164], "live_transcript": [13, 15, 88], "ll": [2, 16, 22, 28, 38, 43, 60, 63, 81, 85, 113, 117, 130, 134, 143, 155, 167, 187], "llama": [1, 5, 12, 15], "llm": [2, 5, 8, 12, 14, 15, 88, 116], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 125], "load": [5, 7, 13, 22, 24, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 97, 107, 127, 128, 129, 131, 139, 150, 151, 161, 186], "loadbalanc": 26, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 13, 15, 16, 18, 22, 26, 28, 31, 33, 38, 39, 40, 41, 43, 59, 63, 65, 69, 72, 73, 74, 81, 85, 88, 92, 94, 96, 98, 99, 102, 111, 114, 115, 120, 124, 125, 127, 130, 133, 134, 137, 139, 144, 146, 148, 150, 151, 154, 161, 165, 167, 181], "local_cert": [59, 60], "local_dock": 98, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [134, 146], "localhost": [22, 45, 52, 59, 60, 63, 69, 97, 98, 100, 117, 121, 124, 125, 126, 129, 134, 139, 146, 150, 157, 164, 165, 166, 167, 185], "localitynam": 81, "localrootmountprovid": 154, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 94, 96, 97, 102, 103, 111, 125, 127, 128, 130, 134, 136, 139, 141, 143, 144, 148, 149, 152, 154, 171, 175, 176], "lock": [32, 46, 59, 65, 67, 88, 102, 124, 128, 130, 131, 139, 141, 144, 149, 157], "lock_retri": 59, "lock_wait_tim": 59, "locking_en": 59, "lockout": [60, 86], "log": [12, 13, 14, 15, 22, 28, 32, 36, 40, 41, 53, 54, 56, 58, 63, 65, 68, 69, 77, 80, 85, 88, 92, 93, 101, 102, 107, 109, 112, 113, 114, 117, 124, 127, 128, 129, 131, 132, 134, 135, 136, 141, 144, 146, 148, 149, 151, 154, 155, 158, 163, 173, 184, 188], "log4j": 165, "log_driv": 97, "log_error": 139, "log_not_found": 130, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_size_max": 97, "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 94, "logdir": 94, "logexpir": 94, "logfil": [3, 26, 67, 88, 94, 125, 130, 136, 144, 157], "logfile_audit": [67, 88, 136], "logfilemod": [67, 88, 127], "logic": [24, 53, 67, 80, 99, 100, 147, 188], "login": [15, 22, 27, 28, 32, 37, 38, 57, 60, 63, 64, 65, 67, 72, 73, 76, 78, 79, 80, 83, 84, 85, 86, 88, 92, 93, 107, 108, 109, 111, 112, 126, 139, 141, 142, 143, 149, 152, 153, 157, 158], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 97, "logist": 120, "loglevel": [58, 63, 67, 81, 88, 119, 127, 133], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 157], "logo_url": 88, "logohead": [72, 157], "logon": 38, "logout": 60, "logpath": 127, "logread": 67, "logrot": 108, "logtimezon": [67, 88, 150], "logwindow": 94, "loleaflet": 171, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 94, 106, 108, 111, 113, 114, 127, 129, 130, 133, 134, 143, 148, 153, 154, 183, 187], "long_query_tim": 22, "longer": [24, 26, 44, 48, 58, 60, 63, 66, 67, 85, 113, 124, 127, 130, 133, 153, 154, 156, 165, 179, 181, 182, 185, 186, 188], "longest": 26, "longitud": 127, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 97, 102, 117, 119, 129, 130, 134, 137, 138, 143, 148, 150, 151, 153, 160, 168, 175, 189], "lookup": [38, 60, 69, 77, 111, 127], "lookup_serv": [88, 111], "lool": [167, 171], "loolwsd": 171, "loop": [88, 97], "loopback": [60, 129], "lose": [28, 45, 60, 153, 158, 165], "loss": [22, 28, 40, 60, 85, 94, 135, 139, 153, 161], "lost": [28, 29, 74, 80, 88, 108, 139, 152, 153, 154, 158, 165], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 119, 133, 139, 143, 149, 189], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 108, 133, 134, 135], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 108, 133, 134], "lowest": [133, 135, 187], "lsof": 100, "lt": [4, 88, 128, 134, 135, 162, 163, 186, 188], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 127], "lte": 188, "luk": 28, "m": [14, 22, 56, 59, 83, 93, 125, 127, 130, 131, 133, 134, 141, 157], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 59, 60, 63, 88, 96, 97, 127, 128, 136, 144, 152, 153, 154, 156, 157, 158, 165], "macintosh": [81, 93], "maco": [88, 91, 92, 93, 115, 120, 135, 139], "macro": 161, "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 94, 112, 119, 133, 134, 136, 144, 161, 187, 189], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 131, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 24, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 42, 43, 44, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 64, 67, 69, 76, 77, 79, 80, 81, 82, 83, 85, 88, 92, 94, 96, 100, 108, 109, 111, 112, 113, 114, 117, 118, 119, 121, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 160, 161, 171, 173, 181, 183, 187, 188, 189], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 115, 116, 118, 127, 132, 144, 155, 157, 161, 176, 179], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_max_item": 53, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 144], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 144], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 116, 119], "mailcow": 117, "mailer": [60, 63, 179], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 188, "main": [4, 11, 15, 22, 60, 67, 81, 82, 96, 97, 100, 103, 130, 139, 141, 147, 148, 164, 165, 167, 171, 189], "mainli": [4, 16, 28, 62, 149], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 94, 114, 120, 127, 134, 139, 146, 148, 149, 151, 187], "mainten": [19, 22, 23, 25, 28, 51, 65, 85, 133, 134, 135, 143, 144, 147, 148, 150, 154, 170, 183], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 127, 130, 134, 139, 143, 145, 148, 149, 170], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 31, 33, 34, 38, 41, 43, 47, 48, 53, 54, 55, 58, 59, 60, 64, 66, 68, 73, 76, 81, 83, 84, 88, 92, 94, 97, 102, 106, 109, 113, 115, 117, 119, 124, 125, 127, 130, 131, 133, 134, 135, 136, 138, 139, 143, 144, 145, 146, 147, 148, 149, 151, 153, 154, 157, 160, 165, 167, 173, 174, 179, 180, 181, 182, 185, 186, 187, 188, 189], "malform": 154, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 127], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 65, 69, 81, 84, 87, 88, 92, 95, 96, 102, 103, 106, 108, 113, 120, 124, 127, 128, 148, 149, 151, 153, 154, 156, 158, 161, 170, 182, 183, 184, 188], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 158], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 94, 113, 114, 119, 130, 133, 134, 139, 148, 151, 157, 158, 162, 169, 181, 187], "manifest": [55, 130], "manifestli": 112, "manipul": [154, 155, 157], "manner": [1, 182, 183, 184], "manual": [3, 4, 6, 16, 19, 20, 22, 25, 26, 28, 32, 50, 53, 54, 57, 59, 60, 64, 69, 77, 81, 82, 83, 88, 91, 94, 96, 97, 98, 103, 108, 109, 112, 117, 120, 122, 124, 126, 127, 128, 133, 136, 137, 138, 139, 142, 145, 146, 148, 152, 154, 157, 160, 170, 182, 187, 188, 189], "manual_instal": [8, 96, 98], "manual_install_harp": 98, "map": [2, 48, 60, 83, 88, 93, 130, 133, 145, 155, 175], "march": 26, "marco": 2, "margin": 133, "mariadb": [20, 23, 25, 60, 88, 122, 124, 126, 129, 131, 133, 134, 152, 157, 182, 183, 186], "mark": [2, 40, 60, 63, 77, 83, 88, 127, 153, 154, 155, 189], "markdown": [18, 60, 71, 133], "marker": 93, "market": [2, 11, 145], "markup": 161, "martin": 2, "mask": 119, "master": [28, 46, 60, 63, 88, 151], "master_": 29, "mastodon": [175, 176], "match": [3, 5, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 93, 97, 102, 108, 114, 115, 119, 121, 122, 125, 127, 130, 133, 134, 139, 144, 151, 154, 155, 156, 157, 158, 161, 165, 171, 173, 188], "matcher": 93, "materi": 127, "math": 5, "matrix": 88, "matter": [43, 152, 165, 181], "max": [1, 26, 46, 56, 88, 97, 125, 127, 130, 157, 165], "max_accelerated_fil": 125, "max_allowed_packet": 22, "max_children": [133, 134], "max_execution_tim": [26, 60, 131], "max_file_conversion_files": 88, "max_file_s": 165, "max_filesize_animated_gifs_public_shar": 88, "max_heap_table_s": 22, "max_image_generation_idle_tim": 1, "max_input_tim": 26, "max_link": 22, "max_parallel_count": 88, "max_persist": 22, "max_request": 133, "max_siz": [26, 88], "max_spare_serv": 133, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 94, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 53, 58, 77, 81, 85, 88, 94, 108, 113, 114, 127, 130, 133, 154, 157, 165], "maximumadressbook": 114, "maximumcalendarssubscript": 113, "maxkeepaliverequest": 139, "maxretri": 127, "mayb": 94, "mb": [38, 47, 60, 67, 82, 85, 94, 97, 133, 157, 165], "mb4": 60, "mbstring": [71, 124, 126, 131], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 124, 125, 126, 186], "md5sum": [124, 126], "mdm": 92, "me": [2, 14, 60, 88, 111], "mean": [11, 14, 15, 41, 50, 58, 59, 60, 68, 69, 70, 77, 80, 81, 85, 92, 97, 108, 117, 124, 127, 129, 130, 133, 135, 138, 149, 153, 181, 187, 188, 189], "meaningless": 130, "meant": [58, 60, 187], "measur": [7, 10, 12, 60, 70, 127, 133], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 122, 179], "media": [1, 2, 6, 7, 88, 102, 108, 128], "medium": [7, 77], "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 109, 110, 143, 187, 188], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 102, 120, 152, 155, 158, 160, 175, 176], "memberof": [82, 88, 155], "membership": [43, 81, 82, 85, 102, 111, 119, 155, 158], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 124, 125, 128, 131, 136, 144, 151], "memcache_customprefix": [59, 88, 124], "memcached_opt": 88, "memcached_serv": [59, 88, 144], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 100, 119, 130, 131, 133, 134, 157, 183, 188], "memory_consumpt": [125, 133], "memory_limit": [18, 26, 56, 131], "mention": [1, 3, 14, 77, 94, 96, 102, 124, 125, 127, 138, 148], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 96, 97, 139, 154, 157, 161, 176, 182, 183, 184], "mere": [20, 77, 187], "merg": [12, 65, 67, 88, 117, 175, 176], "mermaid": 15, "mesh": 156, "messag": [1, 2, 5, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 111, 112, 117, 118, 119, 127, 137, 140, 143, 144, 151, 152, 154, 156, 173, 174, 175, 176, 189], "met": [2, 15, 49, 60, 67, 81, 127, 134], "meta": [15, 17, 75, 76, 81, 82, 131, 165], "metadata": [12, 16, 40, 43, 48, 60, 77, 85, 88, 97, 112, 119, 127, 130, 136, 139, 154, 157, 161], "metadata_max_files": 88, "metal": [88, 136], "method": [17, 22, 24, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 94, 96, 97, 98, 119, 131, 134, 139, 144, 149, 151, 154, 157, 163, 189], "metric": [52, 60, 88, 89, 163, 164, 166, 185], "metrics_en": 165, "metrics_host": 165, "metrics_port": 165, "metrics_prefix": 165, "mg": 125, "mib": [4, 26, 60, 88, 133], "micro": 134, "microservic": 133, "microsoft": [50, 56, 60, 63, 88, 94, 116, 130, 135, 179], "mid": [12, 133], "middl": 127, "middlewar": [69, 189], "might": [0, 2, 3, 11, 15, 16, 20, 22, 25, 32, 38, 40, 47, 48, 50, 51, 53, 56, 57, 59, 60, 63, 70, 77, 81, 82, 94, 96, 97, 100, 104, 114, 117, 119, 126, 127, 130, 132, 133, 135, 137, 139, 144, 145, 151, 160, 173, 174, 180, 184, 186], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 96, 116, 119, 131, 142, 148, 151, 152, 154, 157, 158, 159, 169, 183], "milli": 158, "million": 120, "millisecond": [48, 60, 94, 157], "milliwai": [154, 157, 158], "mime": [102, 111, 117, 130, 134, 154, 181], "mimetyp": [47, 60, 88, 102, 127, 130, 154], "mimetypealias": [51, 102], "mimetypelist": 157, "mimetypemap": [51, 157], "min_spare_serv": 133, "minchunks": 94, "mind": [3, 18, 59, 60, 96, 102, 125, 126, 134, 148, 189], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 108, 115, 124, 125, 129, 133, 135, 139, 187], "minimis": 108, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 94, 96, 99, 108, 117, 127, 135, 144, 163, 164, 165, 166, 186, 187], "minio": 48, "miniredir": 60, "minor": [3, 133, 143], "minsearchstringlength": 88, "mint": [56, 59, 134], "minut": [0, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 94, 113, 114, 117, 143, 144, 149, 154, 158, 164, 166, 188], "miral": 93, "mirror": [127, 130, 148], "misbehav": 58, "misbehavior": 70, "misbehaviour": 157, "miscellan": 88, "misconfigur": [58, 60, 88, 94, 100, 105, 119, 127, 130], "misformat": 81, "mismatch": [133, 154, 158, 184], "miss": [25, 43, 80, 81, 88, 92, 100, 121, 127, 131, 134, 145, 147, 149, 154, 188], "missing_fil": 138, "missingok": 108, "mission": [139, 187], "mistak": [60, 81, 139], "mistakenli": 119, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 127], "mitm": 127, "mix": [41, 48], "mixer": 127, "mixtur": 60, "mj": [130, 180, 181], "mkdir": [28, 34, 88, 97, 124, 125], "mknod": 167, "mkv": 47, "mlocat": 124, "mm": [81, 152, 154], "mmproj": 5, "mmproj_path": 5, "mnt": [81, 134], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 102, 120, 127, 128, 133], "mod": [126, 134, 188], "mod_authz_cor": 93, "mod_dav": [124, 134, 139], "mod_defl": 139, "mod_dir": 134, "mod_env": [60, 68, 127, 134], "mod_evas": 139, "mod_fastcgi": 139, "mod_fcgi": 134, "mod_fcgid": [88, 139], "mod_head": [68, 127, 134], "mod_mim": 134, "mod_pagespe": 139, "mod_php": [133, 134, 135, 139], "mod_proxy_fcgi": [88, 139], "mod_reqtimeout": [26, 139], "mod_rewrit": [41, 60, 68, 134, 139], "mod_secur": 139, "mod_setenvif": 93, "mod_spdi": 139, "mod_webdav": 134, "mod_xsendfil": 139, "modal": 95, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 98, 99, 113, 119, 121, 122, 124, 126, 128, 138, 142, 143, 144, 147, 150, 152, 153, 161], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 96, 117, 127, 131, 136], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 130, "modif": [12, 22, 43, 63, 94, 106, 111, 113, 114, 134, 143], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 94, 102, 103, 106, 108, 111, 113, 114, 115, 119, 127, 133, 134, 138, 139, 154, 155, 157, 158, 165], "modul": [22, 26, 28, 29, 38, 46, 59, 60, 72, 81, 88, 93, 125, 126, 128, 129, 130, 134, 135, 151, 167, 180, 181], "modular": [1, 15], "module_nam": 131, "molli": 81, "moment": [8, 173], "momentj": 66, "mon": [53, 56], "mondai": [2, 53], "monitor": [16, 24, 58, 59, 60, 88, 127, 133, 157, 185, 188], "monterei": 135, "month": [1, 2, 14, 112, 127, 130, 134, 157], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 24, 26, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 61, 63, 67, 70, 72, 76, 77, 78, 81, 83, 84, 91, 92, 93, 94, 95, 96, 97, 100, 102, 108, 113, 114, 117, 118, 119, 120, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 143, 144, 147, 149, 150, 151, 154, 156, 157, 158, 161, 162, 167, 169, 170, 172, 173, 179, 181, 183, 184, 185, 187, 188, 189], "moreov": 16, "morn": 53, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 28, 44, 48, 57, 58, 59, 60, 63, 64, 67, 69, 70, 77, 81, 96, 97, 111, 112, 119, 120, 127, 130, 131, 132, 133, 134, 135, 139, 146, 149, 151, 157, 158, 165, 170, 171, 172, 178, 179, 187, 189], "mostli": [134, 189], "mount": [3, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 97, 99, 101, 102, 111, 134, 153, 165], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 108, 127, 129, 143, 144, 148, 149, 153, 156, 183, 187], "movi": [47, 60, 175, 176], "mozilla": [67, 93, 119, 127, 130, 135], "mp3": [51, 60, 183, 184, 185], "mp4": [130, 157], "mpeg": 51, "mrtumnu": 69, "mscorefont": 164, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 154], "much": [26, 61, 94, 97, 129, 132, 133, 139, 147, 157], "multi": [3, 15, 46, 58, 59, 81, 88, 144, 163, 188], "multibucket": [46, 88], "multibyt": [127, 131, 147], "multilingu": [7, 12, 13, 88], "multimod": [13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 3, 6, 9, 12, 15, 20, 24, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 93, 96, 97, 99, 117, 121, 127, 131, 133, 134, 145, 147, 150, 152, 154, 157, 158, 160, 170, 187, 188], "multiview": [124, 134], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 24, 26, 28, 29, 31, 33, 34, 36, 40, 41, 45, 48, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 82, 83, 85, 92, 93, 94, 96, 97, 99, 108, 109, 112, 113, 117, 121, 127, 129, 130, 131, 132, 133, 134, 135, 136, 139, 141, 143, 144, 145, 147, 148, 149, 151, 152, 153, 154, 157, 158, 161, 163, 165, 188], "mutual": [58, 154], "mx": [117, 119], "my": [2, 16, 48, 51, 72, 75, 81, 88, 96, 98, 113, 152, 154, 157, 173], "myapp": [63, 154], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 188, "mygroup": [75, 155], "myisam": 135, "mylogfil": 132, "mylogo": 72, "mymast": 59, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 157], "mysql": [20, 21, 25, 88, 122, 124, 126, 129, 131, 133, 134, 139, 146, 157, 183, 186], "mysql_attr_init_command": 60, "mysql_attr_ssl_ca": [22, 60], "mysql_attr_ssl_cert": [22, 60], "mysql_attr_ssl_kei": [22, 60], "mysql_attr_ssl_verify_server_cert": [22, 60], "mysql_secure_instal": 124, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 141], "mysqlnd": 124, "n": [1, 5, 15, 19, 20, 29, 81, 93, 100, 151, 153, 154, 157, 188], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 17, 20, 22, 23, 28, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 46, 48, 50, 52, 55, 56, 59, 60, 63, 65, 67, 68, 72, 75, 76, 77, 81, 82, 83, 85, 88, 92, 94, 96, 97, 98, 99, 102, 107, 111, 112, 113, 115, 117, 119, 121, 122, 124, 125, 126, 127, 129, 130, 133, 134, 138, 150, 152, 154, 155, 157, 158, 161, 164, 165, 166, 171, 188], "namespac": [14, 55, 60, 63, 157], "nat": 161, "nation": 108, "nativ": [24, 38, 161, 189], "natur": [12, 15, 84, 160], "navig": [1, 55, 60, 94, 96, 102, 103, 106, 107, 113, 114, 117, 125, 137], "nc": [60, 63, 88, 101, 130], "nc_app_": 100, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 151, "nc_domain": 97, "nc_instance_url": [96, 97], "nc_loglevel": 151, "nc_pass": 158, "nc_samesitecookielax": [70, 107], "nc_samesitecookiestrict": [70, 107], "nc_serverid": [60, 144], "nc_session_id": 107, "nc_token": 107, "nc_usernam": 107, "ncdata": 139, "ncp": 131, "ncvm": 134, "ne": 188, "nearli": [124, 181], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 97, 107, 108, 117, 119, 122, 124, 129, 130, 131, 134, 139, 160, 183, 189], "necessarili": [58, 77, 96, 97, 139], "need": [0, 1, 2, 3, 4, 5, 6, 8, 11, 12, 15, 16, 18, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 69, 70, 80, 81, 82, 84, 85, 88, 92, 94, 96, 97, 98, 100, 102, 103, 109, 112, 113, 114, 117, 119, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 160, 163, 165, 167, 173, 174, 179, 182, 183, 185, 186, 187, 188, 189], "needsdbupgrad": 157, "neg": 6, "neglig": 24, "neither": [78, 165], "nest": [82, 88, 154, 157, 188], "net": [60, 97, 98, 124, 145, 157, 160], "netdata": 133, "netstat": [56, 63], "network": [15, 22, 40, 58, 59, 60, 69, 88, 92, 94, 96, 97, 98, 100, 102, 127, 128, 134, 135, 146, 157, 161, 163, 165, 181, 188], "never": [28, 40, 44, 53, 60, 77, 81, 97, 108, 111, 127, 133, 153, 154, 158, 165], "nevertheless": 149, "new": [2, 3, 5, 6, 11, 12, 20, 23, 24, 25, 26, 27, 28, 30, 32, 33, 37, 40, 44, 45, 46, 48, 53, 57, 60, 63, 67, 68, 74, 75, 78, 80, 81, 82, 83, 88, 92, 93, 94, 96, 97, 99, 109, 112, 113, 115, 117, 119, 120, 125, 127, 129, 131, 132, 133, 134, 135, 139, 141, 143, 144, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 164, 165, 166, 167, 171, 179, 181, 182, 183, 186, 187, 188, 189], "newer": [23, 38, 70, 96, 114, 117, 119, 133, 135, 147, 153, 187], "newest": [44, 145, 187], "newgroup": [75, 76], "newli": [20, 24, 28, 40, 48, 53, 56, 57, 60, 77, 81, 106, 134, 156, 187, 189], "newnam": 188, "newpassword": 158, "newus": 158, "next": [1, 2, 5, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 95, 96, 113, 114, 124, 128, 139, 148, 149, 152, 153, 154, 157, 165, 170, 175, 187, 189], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 54, 57, 58, 62, 63, 64, 66, 67, 68, 70, 73, 74, 75, 76, 77, 78, 79, 80, 85, 87, 88, 91, 92, 93, 96, 99, 100, 101, 102, 103, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 121, 122, 126, 128, 129, 131, 132, 133, 134, 135, 136, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 165, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 187], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 124, "nextcloud_config_dir": [60, 127], "nextcloud_docker_network_nam": 97, "nextcloud_host": [69, 93], "nextcloud_imaginari": 133, "nextcloud_install_product": 134, "nextcloud_log": 94, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 97, 98], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 134, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 128], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 97, 111, 127, 128, 129, 133, 134, 135, 139, 163, 164, 166, 179, 180, 181], "nginx_access_log": 165, "nginx_client_max_body_s": 165, "nginx_worker_connect": 165, "nginx_worker_process": 165, "ngo": 139, "ngx_pagespe": [130, 139], "ni": 133, "nice": 51, "nightli": 165, "nin": 188, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 130, "no_last_modifi": 130, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobl": [163, 166], "nobodi": 138, "nocanon": 167, "node": [6, 59, 60, 88, 97], "nodecod": 167, "nodecopiedev": 188, "nodecreatedev": 188, "nodedeletedev": 188, "nodeinfo": 139, "noderenamedev": 188, "noderestoredev": 188, "nodetouchedev": 188, "nodewrittenev": 188, "nofollow": [127, 130], "noindex": [127, 130], "nologon": 151, "nomatim": 2, "nominatim": 127, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 96, 98, 127, 129, 131, 144, 148, 150, 152, 154, 157, 158, 160, 166, 188], "none": [15, 32, 58, 60, 63, 81, 82, 85, 121, 122, 130, 143, 152, 153, 154, 156, 157, 158, 167, 179], "nonexist": [81, 130], "nonexistingfil": 188, "nonexistingfold": 188, "noon": 2, "nor": [38, 57, 88, 96, 148, 165, 188], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 93, 136, 139, 144, 148, 149, 151, 154, 156, 157, 165], "nosniff": [127, 130], "notabl": 38, "notat": [60, 67, 69, 188], "note": [0, 1, 2, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 94, 97, 103, 109, 113, 114, 121, 127, 128, 130, 134, 135, 139, 140, 143, 149, 150, 151, 153, 158, 161, 173, 175, 187, 188], "noth": [3, 19, 24, 154, 165], "notic": [24, 45, 47, 58, 72, 111, 129, 144, 158], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 106, 109, 111, 116, 127, 132, 134, 139, 142, 148, 150, 152, 157, 161, 179, 188, 189], "notifempti": 108, "notifi": [16, 28, 38, 40, 53, 63, 88, 106, 109, 150, 188], "notify_guest": 16, "notion": [175, 176], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 96, 97, 113, 114, 117, 119, 124, 125, 126, 129, 131, 134, 139, 143, 148, 167, 179, 180, 181, 184, 185, 186, 188, 189], "nowadai": [60, 184], "nsign": 168, "nss": [65, 88], "nsuit": 168, "ntf": 38, "ntlm": [63, 179], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 93, 98, 125, 150, 184, 188, 189], "num_bucket": 48, "num_nucket": 48, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 19, 26, 33, 43, 48, 49, 53, 56, 58, 59, 60, 63, 77, 81, 82, 85, 94, 108, 111, 113, 114, 117, 124, 126, 127, 129, 133, 135, 139, 143, 148, 152, 153, 157, 158, 165, 171, 181, 187, 188], "numer": [47, 60, 86, 93, 129, 154, 157], "numeric_id": 29, "nuri": 168, "nvidia": [3, 4, 5, 6, 7, 9, 11, 96, 98, 100], "o": [26, 28, 58, 60, 81, 88, 93, 125, 130, 131, 133, 134, 139, 144, 157, 164, 166], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 189], "oauth2": [65, 88, 151], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 113, 127, 131, 133, 144, 151, 152, 175, 184, 185, 189], "object_typ": 112, "objectclass": [81, 82, 155], "objectdata": 188, "objectid": 188, "objectprefix": 60, "objectstor": [48, 88, 136, 144], "objecttyp": 188, "oblig": [108, 109, 110], "obscur": [93, 139], "observ": 12, "obsolet": 47, "obtain": [3, 63, 68, 88, 127, 140, 154], "obviou": [58, 181], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 93, 124, 125, 130, 133, 138, 148, 151, 154, 157, 181, 182, 188, 189], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 139, "oc_admin": 129, "oc_admin1": 129, "oc_admin2": 129, "oc_appconfig": 3, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 139, "oc_carla": 60, "oc_com": 112, "oc_comments_read_mark": 112, "oc_context_chat_action_queu": 3, "oc_context_chat_content_queu": 3, "oc_context_chat_fs_ev": 3, "oc_context_chat_queu": 3, "oc_databas": 152, "oc_dav_shar": 119, "oc_dbus": 152, "oc_default_modul": [29, 153], "oc_filecach": [29, 139, 152], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 119, "oc_mail_recipi": 119, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 157, "oc_pass": 158, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 107, "oc_shar": 20, "oc_storag": [29, 83, 139], "oca": [60, 63, 157, 181, 188], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 38, 40, 41, 43, 44, 46, 47, 48, 49, 51, 53, 56, 57, 60, 61, 67, 68, 71, 72, 73, 74, 77, 78, 80, 83, 85, 88, 99, 101, 104, 108, 109, 112, 113, 114, 117, 118, 119, 122, 127, 130, 133, 134, 137, 138, 139, 141, 143, 145, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 162, 182, 183, 184, 185, 188, 189], "occ6f7365735": 60, "occ_command": 67, "occasion": [8, 143, 167], "occupi": 156, "occur": [2, 26, 59, 63, 97, 99, 133, 139, 144, 148, 157, 184, 188], "occurr": 26, "ocdownloadstart": 107, "oci": [20, 60, 122, 157], "ocm": [88, 151], "ocp": [60, 77, 151, 188], "ocr": 5, "ocsp": 130, "octal": [60, 67], "od": 162, "odd": 133, "odf": [160, 169], "odp": 162, "odt": 162, "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 97, 117, 119, 124, 130, 132, 134, 143, 148, 151, 155, 157, 158, 165, 167], "offend": 58, "offer": [0, 1, 5, 12, 15, 16, 28, 56, 60, 64, 72, 115, 117, 119, 127, 134, 136, 139, 148, 187], "offic": [2, 15, 42, 47, 51, 58, 110, 116, 134, 159, 161, 163, 164, 165, 166, 167, 170, 171, 172, 173, 175, 176], "offici": [2, 56, 58, 60, 72, 81, 97, 120, 124, 125, 127, 130, 131, 133, 134, 135, 138, 139, 148, 165, 178, 186, 187], "offlin": [81, 94, 113, 114, 127, 144, 148], "offload": [0, 1, 97, 133, 157], "offset": [75, 76, 155, 157, 158], "offsit": 2, "often": [1, 26, 57, 58, 60, 94, 108, 113, 114, 117, 127, 131, 134, 181, 183, 187], "ogg": [130, 180, 181], "oid": [60, 154], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 153, 154], "okai": 143, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 138, 139, 143, 148, 153, 154, 156, 157, 179, 184], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 88, 94, 108, 131, 133, 137, 139, 148, 149, 154, 157], "oldest": [44, 85], "oldfil": 188, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 59, 60, 69, 70, 81, 92, 93, 107, 150, 152, 153, 154, 165], "onbootsec": 57, "onc": [2, 14, 18, 24, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 94, 96, 109, 113, 119, 124, 126, 127, 130, 143, 144, 148, 150, 152, 153, 154, 155, 156, 157, 158, 161, 167, 178, 181, 187, 188, 189], "ondemand": 133, "one": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 24, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 69, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 93, 96, 98, 102, 103, 109, 111, 112, 113, 115, 117, 119, 124, 127, 129, 130, 131, 134, 135, 136, 137, 139, 143, 144, 145, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 165, 167, 170, 175, 181, 187, 188, 189], "ones": [20, 44, 53, 54, 59, 60, 108, 133, 134, 143, 145, 148, 153, 175, 181, 187], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 22, 23, 24, 27, 28, 29, 31, 32, 34, 38, 40, 43, 45, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64, 65, 66, 67, 68, 69, 77, 78, 79, 80, 81, 83, 84, 85, 88, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 107, 109, 113, 114, 115, 117, 118, 119, 121, 122, 124, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 144, 145, 147, 148, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 165, 173, 175, 181, 184, 185, 187, 188, 189], "onlin": [32, 60, 88, 119, 120, 124, 134, 144, 149, 168, 169, 170, 172, 173], "onlyoffic": [32, 134], "onlyoffice_https_hsts_": 165, "onlyoffice_https_hsts_en": 165, "onlyoffice_https_hsts_maxag": 165, "onrequest": 189, "ons": [120, 133], "onunitactivesec": 57, "ooxml": 88, "opaqu": 188, "opcach": [59, 60, 88, 124, 125, 128, 130, 131], "opcod": [59, 133], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 23, 32, 40, 45, 56, 59, 60, 71, 81, 88, 92, 94, 97, 117, 120, 121, 127, 131, 134, 139, 148, 156, 160, 161, 165, 173, 189], "open_basedir": [26, 127, 131], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 176], "openapi": [12, 60, 189], "openbsd": [88, 128], "opendocu": [47, 60, 133, 160], "opendyslex": 60, "opengraph": 175, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 131], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 119, 125, 131, 133], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [127, 175, 176], "opensus": [135, 151], "opentopodata": 127, "opentyp": 130, "openweathermap": 14, "oper": [6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 94, 102, 109, 110, 128, 133, 134, 135, 136, 139, 143, 148, 149, 151, 153, 156, 158, 160, 167, 186, 187, 188], "operand": 130, "opinion": [134, 146], "opportunist": 63, "opt": [15, 29, 40, 60, 97, 117, 124, 129, 136, 151, 157, 184, 188], "opt_binary_protocol": 60, "opt_compress": 60, "opt_connect_timeout": 60, "opt_libketama_compat": 60, "opt_poll_timeout": 60, "opt_recv_timeout": 60, "opt_retry_timeout": 60, "opt_send_timeout": 60, "opt_seri": 60, "optim": [0, 1, 2, 6, 26, 35, 120, 127, 130, 131, 133, 134, 187], "optimis": [6, 11, 139], "option": [0, 1, 2, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 48, 53, 56, 57, 58, 59, 63, 64, 65, 68, 69, 71, 72, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 88, 94, 96, 97, 100, 101, 102, 106, 109, 111, 113, 114, 115, 117, 118, 119, 120, 121, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 143, 144, 148, 149, 150, 151, 152, 153, 155, 157, 158, 161, 163, 168, 170, 175, 181, 182, 187, 188, 189], "optout": 88, "ora": 121, "oracl": [20, 22, 25, 60, 121, 122, 129, 135, 157, 185], "orang": 15, "orchestr": 97, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 60, 63, 71, 77, 80, 81, 96, 97, 117, 127, 134, 135, 141, 150, 157, 160, 187, 189], "ordinari": 60, "org": [56, 60, 68, 76, 79, 94, 127, 130, 134, 157, 164, 188], "organ": [60, 72, 85, 88, 120, 135, 157], "organis": [77, 81, 110, 135, 139], "organisationscop": 77, "organiz": [81, 85, 117], "organizationnam": 81, "orient": 131, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 93, 107, 111, 119, 127, 139, 143, 144, 151, 154, 161, 188], "orphan": [44, 88, 139, 157], "osarchitectur": 93, "otf": 130, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 24, 25, 26, 27, 28, 32, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 54, 56, 57, 58, 59, 64, 65, 66, 67, 77, 80, 81, 84, 85, 87, 88, 92, 93, 97, 98, 99, 107, 108, 111, 112, 113, 114, 115, 117, 118, 120, 122, 125, 126, 127, 128, 129, 130, 131, 133, 138, 140, 143, 146, 148, 150, 151, 152, 153, 157, 158, 160, 161, 163, 165, 170, 180, 181, 182, 183, 184, 185, 187, 188, 189], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 96, 102, 106, 109, 113, 117, 121, 127, 130, 133, 134, 139, 144, 154, 165, 188], "ou": [81, 82, 83, 155], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 96, 97, 102, 103, 123, 124, 125, 127, 131, 133, 134, 135, 138, 139, 145, 181, 187, 189], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 94, 96, 102, 107, 108, 116, 130, 132, 134, 135, 138, 139, 143, 144, 148, 149, 157, 158, 170, 179, 181, 186, 187, 189], "outbound": [63, 88, 156, 163, 181], "outdat": [44, 60, 65, 88, 113, 114, 124, 147, 157], "outdoor": 2, "outgo": [63, 88, 117, 119], "outlin": [2, 56], "outlook": [63, 88, 117], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 94, 112, 119, 131, 133, 134, 138, 149, 150, 151, 152, 153, 154, 156, 157, 158, 164, 166, 188], "output_buff": 26, "outright": [58, 135], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 97, 102, 111, 113, 126, 129, 130, 133, 134, 136, 139, 141, 143], "outstand": [2, 7, 157], "ova": 134, "over": [22, 24, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 94, 97, 107, 112, 120, 121, 124, 127, 133, 134, 135, 143, 157, 161, 163, 165, 175, 180], "overal": 133, "overcom": 60, "overflow": 40, "overhead": [59, 60, 94, 127, 133], "overlai": 81, "overlaid": 161, "overlap": [38, 187], "overload": 139, "overlook": 165, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 97, 98, 108, 130, 144, 148, 152, 157], "overridden": [60, 69], "override_app_host": [97, 98, 100], "overridelocaldir": 92, "overrideserverurl": 92, "overseen": 120, "overview": [0, 1, 2, 3, 13, 16, 46, 59, 61, 88, 111, 120, 138, 139, 142, 145, 152, 179, 181, 185, 189], "overwrit": [27, 63, 65, 88, 113, 134, 144, 154, 181], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 144], "overwriteprotocol": [69, 70, 88, 144], "overwritewebroot": [69, 88, 144], "overwritten": [27, 60, 67, 73, 77, 81, 113], "owasp": 184, "own": [0, 1, 3, 4, 5, 12, 15, 16, 24, 26, 27, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 94, 102, 104, 108, 109, 112, 113, 114, 115, 122, 125, 129, 134, 139, 149, 154, 165, 167, 181, 188, 189], "owncloud": [30, 70, 88, 94, 139, 141, 142, 147, 151, 154, 157, 188], "owncloud_core_dump": 94, "owner": [22, 43, 77, 88, 102, 103, 106, 109, 111, 119, 124, 152, 161, 164, 166, 189], "ownerid": 188, "ownership": [3, 34, 43, 60, 88, 109, 112, 122, 126, 134, 143, 151, 157], "p": [8, 22, 59, 97, 100, 124, 125, 132, 133, 137, 141, 147, 153, 165, 167], "p256": 156, "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 142, 149, 154, 157, 160, 163, 170, 189], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 24, 27, 28, 34, 40, 41, 43, 53, 54, 56, 57, 59, 60, 61, 63, 64, 65, 67, 72, 77, 78, 81, 82, 85, 88, 89, 94, 95, 96, 100, 108, 109, 111, 112, 113, 117, 124, 126, 127, 130, 131, 133, 134, 138, 139, 143, 145, 148, 149, 150, 153, 154, 157, 158, 161, 175, 176, 178, 189], "pagespe": 130, "paid": [148, 149], "pain": 96, "pair": [28, 37, 46, 60, 88, 98, 107, 117, 127, 154, 165], "pandoc": 42, "pane": [15, 85, 188], "panel": [56, 60, 66, 81, 85, 112, 133, 134, 157, 161, 165, 189], "pant": 63, "paper": 7, "paragraph": [127, 175], "parallel": [15, 22, 26, 60, 70, 96, 139, 185, 188], "param": [188, 189], "paramet": [3, 5, 14, 16, 20, 21, 24, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 94, 97, 108, 113, 122, 127, 128, 130, 131, 134, 144, 151, 157, 165, 181, 185, 187, 188, 189], "parameter_nam": 131, "paramount": [15, 81], "parent": [40, 45, 102, 134, 139, 154, 157], "pars": [3, 29, 60, 130, 131, 165], "parser": 133, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 94, 112, 124, 127, 134, 135, 138, 150, 156, 167, 172, 186, 187, 189], "part_file_in_storag": 88, "parti": [2, 6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 107, 135, 139, 143, 149, 160, 161, 174, 176], "partial": [63, 119, 121, 188], "particip": [111, 113, 120], "particular": [1, 7, 22, 38, 48, 54, 81, 93, 130, 133, 187], "particularli": [58, 187], "partit": [26, 60], "partner": [111, 120], "pass": [2, 5, 22, 32, 38, 56, 59, 60, 65, 67, 81, 88, 92, 97, 98, 99, 121, 122, 125, 130, 138, 139, 148, 151, 152, 154, 156, 157, 158, 160, 165, 187, 188], "passiv": 92, "passphras": [29, 111], "passwd": 56, "password": [2, 3, 20, 22, 24, 28, 29, 33, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 56, 58, 59, 60, 63, 74, 76, 77, 80, 81, 82, 88, 92, 94, 96, 97, 98, 107, 109, 111, 112, 117, 119, 121, 122, 124, 125, 126, 128, 129, 131, 134, 139, 141, 146, 147, 150, 151, 153, 154, 157, 158, 164, 165, 166, 168, 179, 189], "password1": [24, 60], "password2": [24, 60], "password_argon2_default_memory_cost": 60, "password_argon2_default_thread": 60, "password_argon2_default_time_cost": 60, "password_default": 60, "passwordconfirmationrequir": 60, "passwordsalt": 88, "past": [56, 60, 70, 138, 152, 157], "pasta": 2, "patch": [63, 70, 88, 119, 140, 148, 165, 187], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 59, 65, 67, 69, 77, 81, 88, 92, 93, 94, 97, 98, 99, 111, 119, 121, 122, 125, 127, 129, 130, 132, 134, 137, 144, 150, 151, 152, 153, 154, 157, 158, 165, 171, 188, 189], "path_info": 130, "path_redirect": 69, "pathparamet": 189, "pattern": [44, 49, 58, 60, 69, 93, 129, 133], "pauvo": 69, "payload": [88, 111, 165, 189], "payment": 0, "pbkdf2": 29, "pc": [22, 143], "pcntl": 131, "pcntl_signal": 131, "pcntl_signal_dispatch": 131, "pcre": 93, "pdf": [2, 3, 47, 56, 60, 88, 103, 131, 134, 153, 154, 157, 158, 188], "pdo": [22, 60], "pdo_mysql": [22, 131], "pdo_pgsql": [22, 125, 131], "pdo_sqlit": 131, "peak": 157, "pecl": [38, 59, 60, 124], "pecl82": 125, "peer": [22, 63, 117, 120, 130, 156], "peertub": [175, 176], "pem": [22, 29, 60, 93, 121, 122, 125], "pencil": 85, "pend": [59, 127, 152, 156, 157], "peopl": [6, 9, 43, 53, 58, 83, 103, 115, 139, 155, 175, 176], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 59, 60, 77, 82, 88, 97, 108, 109, 111, 113, 114, 135, 144, 153, 154, 158, 161, 165, 175, 177, 181, 188], "perbucket": 48, "percentag": 187, "perfect": [4, 9, 134, 146], "perfectli": 187, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 19, 20, 23, 25, 26, 28, 32, 38, 40, 45, 47, 56, 57, 58, 59, 60, 67, 70, 81, 87, 88, 94, 96, 97, 100, 104, 107, 109, 119, 120, 127, 128, 129, 130, 131, 134, 135, 144, 145, 148, 149, 151, 152, 153, 154, 157, 170, 183, 184, 185, 187, 189], "period": [40, 44, 57, 58, 60, 81, 85, 86, 106, 108, 112, 113, 114, 115, 117, 118, 127, 135, 143, 149, 152, 154, 157, 161, 187], "peripher": 134, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 97, 107, 112, 124, 127, 153, 154, 157, 158], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 102, 108, 119, 122, 125, 130, 132, 134, 139, 143, 144, 148, 151, 157, 161], "permit": [54, 60, 127, 130, 154, 187], "persian": 4, "persist": [22, 46, 59, 60, 85, 88, 94, 99, 107, 119, 127, 136, 157, 163, 173], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 107, 108, 109, 110, 112, 113, 115, 117, 134, 138, 152, 153, 154, 170, 176], "personnel": 94, "perspect": 15, "pertain": [26, 94], "pg_ctl": [3, 125], "pg_dump": 141, "pg_hba": 22, "pg_user": 22, "pgp": [124, 126, 132], "pgpassword": [141, 147], "pgsql": [3, 20, 22, 60, 121, 122, 157], "pgsql_ssl": [22, 88, 121, 122], "pgvector": 3, "phar": [131, 148, 157], "phase": [148, 157], "philip": 155, "phone": [43, 60, 76, 77, 80, 81, 111, 114, 120, 158], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 111, 154], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 78, 79, 80, 81, 82, 83, 85, 87, 88, 93, 94, 96, 97, 107, 108, 109, 111, 112, 113, 114, 115, 118, 119, 122, 126, 128, 129, 132, 137, 138, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 162, 173, 179, 180, 181, 182, 184, 185, 186, 188, 189], "php7": 22, "php70": 151, "php74": 124, "php8": [130, 133], "php82_fpm": 125, "php_fastcgi": 93, "php_valu": 26, "phpdoc": 188, "phpinfo": [131, 139], "phpredi": [46, 60, 65, 88, 131], "physic": [13, 28, 56, 88, 97, 111, 129, 144], "pi": [60, 120, 134], "pick": [15, 22, 24, 40, 66, 94, 144, 154, 156, 176], "picker": [1, 2, 15, 88, 174], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 111, 131], "pid": 157, "pin": [148, 165], "ping": [22, 63], "pipe": [60, 119, 150], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 125, "pkg_add": 125, "pki": 130, "place": [1, 5, 24, 26, 27, 45, 56, 60, 63, 88, 93, 115, 117, 119, 121, 122, 125, 129, 130, 132, 133, 137, 138, 139, 143, 148, 172, 174, 175, 188], "placehold": [29, 32, 60, 81, 161], "plai": [60, 72, 133], "plain": [14, 60, 63, 70, 71, 102, 107, 130, 134, 139, 151, 165], "plaintext": [81, 111, 121, 122, 127], "plan": [2, 8, 25, 81, 126, 131, 134, 135, 149, 187], "planetexpress": 155, "platform": [31, 48, 92, 94, 120, 124, 133, 135, 136, 188], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 22, 26, 40, 47, 56, 57, 58, 60, 66, 68, 70, 81, 85, 94, 97, 102, 103, 114, 118, 119, 124, 127, 129, 133, 134, 135, 138, 139, 143, 145, 148, 149, 151, 152, 153, 173, 181, 187, 189], "plu": [67, 188, 189], "plug": 133, "pluggabl": 80, "plugin": [97, 161, 165, 188], "plugins_en": 165, "plusserv": [0, 15], "pm": [133, 134], "png": [31, 60, 72, 130, 157], "pod": 3, "pod_nam": 3, "podman": [3, 88, 134], "point": [6, 12, 15, 16, 22, 24, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 96, 102, 108, 113, 114, 129, 130, 133, 134, 135, 139, 144, 148, 149, 154, 165], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 107, 108, 109, 111, 127, 130, 131, 132, 140, 154], "policycoreutil": 124, "polish": 4, "polit": [1, 14], "poll": [2, 40, 133, 157, 188], "pomerium": 88, "pool": [59, 127, 130, 133, 134, 156], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 111, 134, 143, 156], "popular": [45, 96, 97], "popup": 117, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 96, 97, 98, 100, 122, 124, 125, 127, 129, 133, 150, 152, 157, 160, 164, 165, 166, 172], "portabl": 88, "portal": [48, 63, 103, 117, 123], "portion": 139, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 181, 187], "posix": [50, 131], "posixgroup": 81, "possess": 127, "possibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 22, 25, 28, 41, 43, 44, 48, 49, 50, 54, 55, 58, 59, 60, 61, 63, 64, 77, 80, 81, 82, 84, 92, 94, 96, 97, 98, 100, 102, 103, 113, 114, 117, 119, 122, 127, 130, 131, 132, 133, 134, 135, 138, 139, 143, 144, 145, 147, 148, 150, 153, 160, 167, 173, 187, 189], "possibli": [60, 119, 127, 139], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 88, 119, 129, 130, 137, 150, 160, 163, 164, 166, 188, 189], "post_allow": 160, "post_max_s": [26, 125, 134], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 125, 164, 165, 166], "postgresql": [3, 20, 60, 88, 122, 125, 129, 131, 133, 135, 152, 157, 164, 166, 182, 185], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 133], "power": [3, 5, 6, 7, 9, 10, 14, 60, 102, 130, 134, 144, 162, 169], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 169, "pptx": [2, 162, 165, 169], "pr": 137, "practic": [47, 60, 77, 108, 119, 127, 144], "pre": [50, 60, 65, 72, 88, 96, 100, 127, 129, 131, 139, 149, 153, 163, 187], "preced": [24, 51, 60, 80, 88, 121, 154, 161, 165], "precis": [48, 81, 95], "precompil": 133, "preconfigur": [88, 102], "predefin": [50, 92, 94], "predi": 59, "predict": [108, 133, 187], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 94, 116, 118, 119, 122, 127, 130, 131, 134, 139, 157, 165, 188], "prefil": [92, 121], "prefix": [3, 25, 31, 60, 65, 67, 88, 93, 107, 115, 130, 134, 155, 165], "preinstal": 170, "preliminari": 157, "preload": [125, 127, 130], "prem": 15, "prematur": [113, 114], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 110, 120], "premium": 135, "prepar": [15, 88, 96, 111, 128, 134], "prepend": [1, 60, 130, 139, 151, 165], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 122, 126, 128, 129, 142, 144, 163], "preseed": 60, "presenc": 188, "present": [2, 51, 54, 60, 63, 64, 67, 81, 97, 111, 120, 121, 127, 133, 134, 137, 148, 154, 162, 165, 167, 168, 169, 188], "preserv": [0, 1, 4, 40, 43, 44, 85, 93, 124, 133, 143, 147, 158, 162], "preset": [77, 85], "press": [2, 41, 63, 94, 113, 114, 139, 176], "pretrain": 5, "pretti": [68, 88, 126, 128, 130, 189], "prettier": 134, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 94, 105, 107, 113, 117, 127, 129, 130, 133, 135, 138, 139, 141, 147, 149, 155, 181, 184], "preview": [28, 40, 46, 65, 88, 128, 131, 134, 151, 152, 161, 174], "preview_concurrency_al": [88, 181], "preview_concurrency_new": [88, 181], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 133, "preview_imaginary_kei": [88, 133], "preview_imaginary_url": [88, 133], "preview_libreoffice_path": 88, "preview_max_filesize_imag": 88, "preview_max_i": [47, 88], "preview_max_memori": [47, 88], "preview_max_scale_factor": 47, "preview_max_x": [47, 88], "preview_office_cl_paramet": 181, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 97, 108, 111, 119, 138, 142, 147, 148, 149, 152, 156, 171, 189], "previous": [53, 67, 96, 131, 139, 171, 181, 183, 185], "previousnam": 188, "previousvalu": 188, "primari": [1, 24, 25, 26, 31, 46, 58, 60, 72, 81, 82, 88, 145, 149, 154, 155], "primarili": [5, 77, 120], "primary_color": [72, 157], "princip": [139, 152, 188], "principaluri": 139, "principl": 108, "print": [99, 133, 161, 188], "printenv": 134, "prior": [12, 26, 58, 94, 145, 188], "priorit": 12, "prioriti": [2, 16, 71, 133], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 107, 108, 109, 111], "privacyurl": [72, 157], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 111, 114, 117, 120, 121, 122, 125, 127, 130, 150, 154, 157, 158, 165], "privatedata": 20, "privatekei": [29, 154], "privileg": [22, 65, 74, 76, 81, 88, 121, 126, 129, 157, 189], "proactiv": 43, "probabl": [48, 81, 130, 168], "probe": [93, 127], "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 113, 114, 130, 132, 133, 134, 138, 140, 144, 148, 157, 187], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 148], "proc": [3, 133], "proce": [29, 109, 117, 121, 124, 148, 152, 166], "procedur": [12, 28, 77, 94, 108, 148, 157], "proceed": [28, 143, 149, 154], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 24, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 94, 96, 98, 100, 111, 116, 121, 122, 124, 127, 130, 131, 135, 138, 139, 143, 148, 149, 151, 153, 154, 156, 158, 165, 185, 188], "process_idle_timeout": 133, "processor": 133, "produc": [5, 8, 11, 67, 108, 112, 133, 154], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 108, 122, 124, 127, 129, 132, 133, 134, 139, 152, 157, 162, 163, 165], "productnam": 157, "profession": [11, 15, 28, 135, 139], "profil": [40, 43, 74, 84, 88, 94, 112, 114, 115, 127, 132, 151, 181], "profile_en": 158, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 139, "program": [12, 57, 63, 92, 94, 96, 144, 151], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 151], "project": [2, 48, 84, 88, 120, 126, 138, 154, 157, 187, 188], "projector": 5, "prometheu": 185, "promin": [183, 189], "promot": [81, 88, 156], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 94, 117, 122, 126, 134, 146, 151, 152, 153, 154, 157, 166, 189], "pronoun": [77, 158], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 133, 138, 139, 148, 152, 154, 181], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 94, 100, 127, 131, 138, 139, 143, 153, 157, 167], "properti": [60, 74, 81, 85, 88, 92, 94, 158, 188, 189], "property_address": 77, "property_avatar": 77, "property_biographi": 77, "property_birthd": 77, "property_blueski": 77, "property_displaynam": 77, "property_email": 77, "property_fedivers": 77, "property_headlin": 77, "property_organis": 77, "property_phon": [60, 77], "property_pronoun": 77, "property_rol": 77, "property_twitt": 77, "property_websit": 77, "propfind": [40, 67, 93, 94, 133], "propget": 94, "propos": 12, "proprietari": [8, 15], "prospect": 187, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 103, 108, 110, 111, 122, 127, 134, 148, 157, 161], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 59, 60, 69, 82, 88, 94, 96, 97, 98, 100, 119, 127, 160, 165, 173], "prototyp": 97, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 24, 25, 28, 29, 31, 32, 34, 36, 38, 40, 42, 46, 47, 48, 50, 56, 58, 59, 60, 61, 65, 67, 68, 69, 70, 72, 74, 76, 81, 82, 85, 88, 92, 94, 95, 98, 107, 110, 113, 114, 115, 117, 120, 121, 122, 124, 125, 127, 129, 130, 131, 133, 134, 135, 138, 139, 144, 146, 148, 154, 157, 158, 160, 161, 170, 174, 179, 181, 182, 183, 184, 185, 187, 188, 189], "provider_id": [80, 158], "providerfactori": 60, "provis": [24, 48, 74, 77, 84, 88, 93, 117], "provisioning_api": [17, 150], "proxi": [2, 16, 48, 65, 70, 88, 93, 98, 100, 101, 111, 129, 134, 144, 148, 161, 163, 168, 170], "proxy_add_x_forwarded_for": 130, "proxy_buff": 26, "proxy_connect_timeout": [97, 130], "proxy_fcgi": 134, "proxy_hide_head": 69, "proxy_http": 167, "proxy_max_temp_file_s": 26, "proxy_pass": 97, "proxy_protocol": 97, "proxy_read_timeout": 130, "proxy_send_timeout": 130, "proxy_set": [167, 168, 171, 172], "proxy_set_head": 130, "proxy_timeout": 97, "proxy_wstunnel": 167, "proxyexclud": 88, "proxyfcgibackendtyp": 134, "proxypass": [97, 167], "proxypassmatch": 167, "proxypassrevers": [97, 167], "proxypreservehost": 167, "proxytimeout": [26, 133], "proxyuserpwd": 88, "prune": [44, 100, 108, 119], "pseudo": 127, "psql": [22, 147, 164, 166], "pt6h": 113, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 97, 100, 102, 109, 111, 120, 124, 125, 127, 130, 134, 156, 158, 161, 165, 175, 176], "public_html": 33, "publiccalendar": 113, "publickei": 29, "publicli": [5, 12, 18, 29, 119, 134, 150], "publish": [2, 12, 60, 77, 97, 111, 156, 187], "pubshare_": 29, "pull": [3, 81, 88, 130, 137, 165, 167, 171, 175, 176, 181], "punctuat": 4, "pure": 3, "purg": [108, 113, 164, 166], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 107, 108], "push": [40, 53, 111, 113, 127, 138, 154, 157], "pushfe": 127, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 93, 119, 125, 129, 134, 139, 141, 143, 144, 149, 189], "putsizelimit": 48, "pwa": 60, "pwd": [97, 164, 166], "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 129, "py": 18, "python": [3, 124], "q": [22, 63, 151], "q16": 72, "q3": 2, "qmail": [60, 65, 88], "quali": 127, "qualifi": [12, 41, 63, 157, 188], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 133, 154, 187], "quantiz": [5, 7], "queri": [1, 3, 15, 21, 25, 43, 60, 67, 76, 81, 87, 88, 112, 113, 115, 121, 122, 129, 133, 139, 149, 151, 188, 189], "query_cache_limit": 22, "query_cache_min_res_unit": 22, "query_cache_s": 22, "query_cache_typ": 22, "query_log_fil": 88, "query_log_file_backtrac": 88, "query_log_file_paramet": 88, "query_log_file_requestid": 88, "question": [1, 2, 3, 13, 20, 22, 60, 77, 81, 88, 119, 148, 151], "queu": [3, 53, 133, 157], "queue": [3, 53, 88, 133], "quic": 130, "quick": [2, 56, 64, 88, 117, 128, 134, 163], "quickest": 165, "quickli": [16, 50, 85, 94, 155], "quickstart": [88, 142], "quiet": [44, 49, 56, 92, 151, 154], "quit": [19, 22, 56, 63, 126, 145, 149, 153], "quot": [60, 82, 97], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 108, 112, 140, 158], "quota_include_external_storag": [85, 88], "qwen": [1, 2, 5], "qwen3": 5, "r": [7, 10, 28, 34, 69, 82, 122, 124, 126, 131, 134, 137, 139, 143], "rabbitmq": [88, 163, 164, 166], "race": [7, 70], "rackspac": 36, "rainloop": [88, 128], "rais": [12, 22, 26, 60, 133, 139, 165], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 133, 135, 163, 164, 165, 166], "ramdisk": 60, "ran": [6, 70, 181], "rand": 48, "random": [24, 29, 40, 48, 81, 107, 111, 119, 127, 129, 165], "random_byt": 29, "randomli": [60, 107], "rang": [48, 58, 60, 67, 69, 88, 93, 96, 97, 102, 128, 133, 149, 162, 165], "rank": 157, "rapid": 187, "rapidli": 187, "rar": 56, "rare": [28, 31, 48, 60, 147], "raspberri": [60, 120], "rate": [0, 5, 7, 13, 88, 109, 116, 129], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 114, "ratelimitcalendarcr": 113, "ratelimitperiodaddressbookcr": 114, "ratelimitperiodcalendarcr": 113, "rather": [32, 35, 41, 45, 60, 63, 81, 92, 93, 112, 115, 130, 133, 139, 148, 154, 157, 165, 181], "ration": 60, "raw": [15, 29, 71, 81, 97, 138, 139], "rc4": 153, "rcctl": 125, "re": [3, 4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 95, 97, 102, 108, 112, 117, 119, 129, 130, 134, 135, 139, 143, 144, 148, 149, 153, 154, 158, 165, 183, 184, 187], "re2": 93, "reach": [40, 43, 58, 60, 67, 70, 81, 93, 96, 100, 124, 127, 134, 135, 139, 144, 146, 148, 149, 152, 161, 163, 173, 181, 187], "reachabl": [8, 58, 60, 69, 77, 88, 96, 97, 100, 130, 134, 139, 144, 157, 161, 181, 189], "react": [2, 151, 189], "reaction": [2, 111], "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 102, 108, 113, 114, 115, 119, 122, 124, 125, 130, 134, 135, 136, 138, 152, 153, 154, 157, 158, 160, 161, 165, 183, 184, 185], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 121, 122, 130, 152, 153, 154, 156, 157, 158], "reader": [20, 157], "readi": [40, 60, 81, 100, 134, 165, 173, 187], "readili": 28, "readm": [3, 18, 84, 96, 97, 100, 125, 134], "readonli": 188, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 93, 119, 129, 130, 133, 157, 162, 169, 187, 188], "real_ip_head": 130, "realiz": 15, "realli": [127, 153, 157], "reallysuppress": 92, "realtim": 58, "reappear": 108, "reason": [5, 15, 24, 48, 52, 58, 60, 63, 64, 70, 81, 92, 108, 111, 119, 129, 131, 132, 133, 134, 135, 139, 144, 167, 181, 183, 184, 185], "reassign": 102, "reboot": 88, "rebuild": 157, "recalcul": 81, "receiv": [15, 24, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 93, 109, 112, 117, 124, 127, 135, 138, 149, 151, 154, 187, 188, 189], "recent": [26, 43, 44, 58, 81, 88, 108, 111, 116, 133, 144, 157, 158, 165, 167, 171], "recid": 127, "recip": 2, "recipi": [29, 41, 60, 112, 115, 117, 119, 154, 157], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88, 93], "recognis": 32, "recognit": [15, 88], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 22, 26, 27, 28, 30, 38, 39, 40, 42, 45, 53, 57, 58, 60, 64, 65, 67, 68, 69, 70, 77, 81, 88, 94, 96, 97, 102, 108, 119, 125, 126, 127, 128, 129, 130, 133, 134, 135, 138, 139, 141, 146, 147, 149, 150, 152, 153, 157, 160, 163, 167, 170, 174, 179, 180, 181, 183, 184, 185, 187, 188, 189], "recommended": 187, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 94, 108, 111, 112, 115, 119, 127, 133, 144, 152, 154, 157], "recov": [28, 29, 78, 85, 88, 127, 147, 154], "recover": 127, "recoveri": [46, 80, 88, 108, 142, 153, 154], "recoverykey_": 29, "recreat": [97, 147, 165], "rectif": 88, "recurs": [154, 157], "recv": 63, "recycl": 133, "red": [15, 40, 41, 59, 94, 134, 135], "redact": [94, 119], "reddit": [175, 176], "redeploi": 3, "redhat": 56, "redi": [26, 46, 65, 70, 88, 128, 131, 136, 144, 150, 163, 164, 166], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 96, 97, 100, 117, 130, 134, 139], "redirectregex": 69, "redis_log_fil": 88, "redis_server_db": 165, "redis_server_host": 165, "redis_server_pass": 165, "redis_server_port": 165, "redis_server_us": 165, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 108, 119, 128, 130, 139, 187], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 100, 108, 118, 119, 124, 128, 129, 137, 139, 149, 175, 181, 188, 189], "referenc": [14, 18, 29, 139, 156], "reference_opengraph": 88, "referr": [127, 130], "refil": 59, "reflect": [60, 69, 130, 144, 157], "refman": [60, 135], "reformat": 81, "reformul": 1, "refresh": [24, 59, 60, 81, 88, 146, 156, 157], "refus": 154, "reg": 93, "regard": [84, 119, 131, 136, 187], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 108, 129, 150, 157, 187], "regener": [32, 144, 154, 157, 165], "regex": [69, 127, 130], "region": [31, 36, 48, 60, 154], "regionon": [48, 60], "regist": [3, 4, 5, 8, 15, 57, 60, 88, 96, 97, 101, 113, 117, 144, 154, 157, 158, 174, 175], "registr": [57, 117], "registrar": 134, "regress": 135, "regul": 110, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 93, 102, 115, 148, 149, 170, 188], "regularli": [12, 15, 53, 57, 108, 134, 149, 152, 187], "regulatori": 110, "reindex": 3, "reinforc": 5, "reinstal": [3, 92, 139, 145, 164, 166], "reject": [38, 88, 93, 121, 127, 165], "rejectunauthor": 165, "rel": [18, 29, 60, 134, 158], "relai": 144, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 94, 96, 97, 114, 119, 128, 131, 133, 134, 136, 137, 144, 152, 155, 182, 183, 184, 187], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 94, 97, 124, 126, 127, 131, 133, 134, 135, 137, 138, 142, 145, 146, 148, 149, 150, 151, 164, 165, 166, 167, 168, 171, 185, 186], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 94, 117, 125, 127, 130, 144, 187], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 118, 127, 135, 174, 176, 186, 187], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 131, 135, 139, 143, 144, 173], "reliev": 45, "reload": [40, 64, 93, 97, 124, 133, 134], "remain": [28, 40, 43, 60, 77, 81, 85, 97, 109, 112, 117, 121, 122, 125, 127, 130, 144, 153, 154], "remedi": [60, 114, 139], "rememb": [60, 81, 85, 88, 92, 111, 124, 125, 132, 189], "remember_login_cookie_lifetim": [88, 107, 108, 111], "remi": 124, "remind": [88, 116], "remirepo": 88, "remnant": [20, 60, 81, 83, 88], "remot": [2, 3, 17, 22, 33, 35, 37, 38, 39, 41, 43, 56, 59, 60, 63, 67, 69, 70, 73, 81, 88, 92, 94, 96, 98, 102, 111, 112, 113, 115, 117, 119, 121, 122, 125, 128, 130, 134, 135, 139, 148, 150, 157, 185], "remote_addr": [60, 130], "remoteaddr": [67, 127], "remotedirpath": 92, "remoteport": [97, 98], "remov": [2, 3, 11, 16, 20, 26, 28, 30, 43, 44, 53, 54, 58, 60, 63, 70, 74, 75, 77, 81, 83, 85, 87, 88, 92, 97, 99, 100, 102, 103, 106, 108, 109, 112, 113, 114, 115, 117, 119, 121, 127, 130, 132, 134, 136, 138, 148, 150, 153, 154, 156, 158, 164, 165, 166, 167, 171, 173, 180, 181, 184], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 143, 154, 158, 171, 188], "render": [9, 60, 71, 162, 169, 174, 175], "renew": 134, "rep": 154, "repair": [2, 23, 28, 51, 60, 88, 143, 149, 151], "repeat": [31, 58, 100, 144, 157], "repeatedli": [6, 127, 130, 133], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 93, 97, 112, 113, 124, 126, 127, 128, 131, 134, 138, 139, 144, 148, 149, 150, 152, 154, 157, 164, 165, 166, 167, 179, 182, 188], "repli": [2, 63, 117], "replic": [0, 1, 15, 21, 25, 59, 65, 88, 154, 176], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 168, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 94, 120, 132, 133, 139, 150, 153, 154, 156, 157, 173, 182, 183, 184], "repositori": [13, 29, 56, 58, 88, 120, 124, 164, 171, 175, 176, 187], "repres": [29, 44, 47, 119, 188, 189], "represent": 157, "reproduc": 70, "req": 93, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 24, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 94, 96, 97, 98, 100, 102, 107, 108, 110, 111, 119, 125, 127, 130, 131, 133, 135, 137, 138, 139, 156, 160, 161, 163, 172, 175, 176, 181, 188, 189], "request_checksum_calcul": [60, 184], "request_slowlog_timeout": 133, "request_terminate_timeout": 133, "request_timeout": [26, 41, 88], "request_uri": 130, "requestreadtimeout": 26, "requir": [1, 13, 15, 17, 18, 21, 23, 26, 28, 29, 31, 32, 33, 36, 37, 38, 40, 41, 42, 45, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 63, 67, 70, 72, 76, 77, 80, 81, 82, 87, 88, 93, 94, 96, 97, 98, 100, 107, 108, 109, 111, 117, 121, 122, 126, 127, 128, 129, 130, 132, 133, 134, 138, 139, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 160, 161, 162, 163, 167, 169, 170, 171, 173, 187, 188], "requireal": 93, "rerun": 28, "rescan": [40, 88, 140, 143, 154, 157], "resembl": 12, "resend": 88, "reserv": [50, 115, 183], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 111, 113, 114, 119, 124, 127, 130, 133, 139, 148, 153, 154, 158, 179], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 97, 132], "resist": 58, "resiz": 81, "resolut": [9, 173, 181], "resolv": [28, 40, 58, 60, 65, 88, 94, 97, 115, 125, 127, 148, 149, 175, 181], "resolveexappurl": 97, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 96, 114, 116, 119, 127, 128, 133, 134, 139, 143, 146, 189], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 96, 97, 113, 117, 188], "respond": [52, 60, 88, 93, 100, 102, 109, 110, 133], "respons": [2, 12, 14, 24, 29, 65, 67, 88, 92, 93, 97, 111, 120, 127, 130, 139, 148, 175, 184, 189], "response_checksum_valid": [60, 184], "rest": [28, 119, 124, 133, 139, 157], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 94, 97, 124, 127, 130, 131, 133, 134, 139, 143, 165, 167, 168, 188], "restor": [16, 23, 29, 44, 60, 88, 108, 139, 141, 142, 143, 144, 148, 149, 152, 157, 187, 188], "restorecon": [124, 132], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 102, 105, 106, 111, 113, 114, 119, 121, 128, 139, 150, 157, 158, 161, 180, 185], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 94, 96, 97, 117, 119, 122, 127, 129, 130, 133, 134, 138, 152, 154, 157, 161, 181, 188, 189], "resum": [60, 189], "resync": 114, "retain": [12, 14, 40, 43, 44, 53, 77, 107, 108, 111, 112, 141], "retent": [44, 49, 60, 88, 103, 105, 110, 111, 112, 116, 154, 158], "rethink": 108, "retir": 88, "retrain": 187, "retreat": 2, "retri": [60, 148, 167], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 112, 127, 157, 189], "retroact": [53, 60], "return": [17, 24, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 93, 97, 113, 124, 125, 130, 133, 134, 139, 150, 158, 165, 175, 189], "reus": [60, 119], "reusabl": 60, "revalid": 88, "revalidate_freq": [125, 133], "reveal": [127, 173], "revers": [28, 60, 65, 70, 88, 93, 96, 100, 129, 134, 137, 144, 153, 161, 163, 168, 170], "reverse_proxi": [69, 93], "reversibli": 127, "revert": [88, 94, 113, 140, 146, 148, 149, 153], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 127, 139, 143, 144, 149, 158, 161, 181, 183, 187], "revis": [143, 149], "revisit": [133, 143, 149], "revoc": [121, 122, 157], "revok": [54, 60, 108], "rewrit": [93, 114, 130, 134, 139, 157, 181], "rewritebas": [88, 134], "rewriteengin": [69, 139], "rewriterul": [69, 139], "rewritten": 130, "rf": 132, "rfc": [60, 80, 127, 152, 156], "rfc6749": 68, "rh": [124, 151], "rhel": [133, 134], "rich": [65, 88, 175], "rich_editing_en": 71, "richdocu": 181, "richdocumentscod": 130, "rid": [47, 153], "right": [1, 24, 25, 33, 59, 60, 76, 81, 85, 88, 108, 109, 113, 130, 134, 143, 148, 181, 188], "rim": 130, "risk": [12, 28, 34, 60, 63, 127, 130, 133, 139, 148, 149, 187], "riski": 12, "rm": [99, 147, 165, 167], "rmi": 165, "rmm": 92, "ro": 8, "roadmap": 12, "roam": 94, "rob": 155, "robbi": 155, "robert": 155, "roberta": 155, "robin": [17, 155], "robot": [127, 130], "robust": [13, 88, 134, 146], "rocm": [96, 98, 100], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 187, "rollback": 93, "rollout": 92, "roman": 2, "room": [8, 88, 116, 154, 157], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 103, 119, 121, 122, 124, 125, 126, 129, 130, 132, 133, 134, 137, 138, 139, 148, 151, 154], "rootcert": [22, 60], "ropa": 111, "rotat": [4, 67, 88, 101, 108, 111, 121, 131, 151, 157], "rough": [5, 7, 9, 10, 15, 60], "round": 29, "rout": [2, 21, 60, 88, 97, 111, 130], "router": [60, 69], "routin": [151, 154, 187], "row": [22, 23, 24, 40, 119, 135, 152, 183, 188], "row_format": [23, 60], "rowaddedev": 188, "rowdeletedev": 188, "rowid": 188, "rowupdatedev": 188, "rpm": [124, 161], "rsa": [29, 32, 40, 127, 165], "rss": [130, 133], "rsync": [94, 141, 144, 147], "rt": 189, "rtrim": 97, "rtx": 96, "rule": [13, 44, 60, 81, 82, 86, 88, 97, 104, 105, 106, 124, 127, 130, 134, 148, 157, 160, 172], "ruleset": 132, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 38, 40, 44, 45, 47, 48, 49, 50, 53, 56, 57, 58, 59, 60, 63, 65, 69, 80, 81, 83, 88, 92, 94, 96, 97, 98, 108, 112, 113, 114, 115, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 138, 139, 141, 143, 144, 145, 147, 148, 150, 152, 153, 154, 155, 156, 161, 163, 164, 165, 166, 167, 168, 170, 173, 181, 185, 186, 187, 188], "runner": [15, 158], "runtim": [82, 88, 92, 135, 157, 165], "runus": 151, "russian": 4, "rv": 132, "rw": 82, "s01": [81, 82, 155], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 144, 154], "s_time": 119, "sabr": 139, "sabredav": [134, 139, 188], "safari": [67, 135], "safe": [15, 19, 20, 24, 28, 44, 59, 60, 63, 68, 96, 124, 126, 130, 131, 139, 144, 148, 153, 154, 157], "safest": 102, "safeti": 64, "sai": [2, 63, 148], "said": [12, 15], "sake": 124, "sale": 150, "salt": [29, 60, 127, 157], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 24, 25, 26, 28, 29, 32, 38, 41, 43, 45, 48, 51, 56, 58, 59, 60, 63, 67, 69, 70, 77, 81, 87, 88, 92, 93, 94, 96, 98, 99, 102, 107, 111, 113, 114, 115, 119, 121, 122, 124, 125, 127, 130, 134, 136, 137, 139, 144, 146, 148, 149, 150, 151, 152, 154, 157, 158, 160, 161, 163, 165, 167, 173, 181, 182, 183, 184, 188, 189], "sameorigin": [127, 130], "samesit": [60, 107], "saml": [29, 32, 85, 112, 133, 158], "sampl": [26, 45, 88, 125, 150], "sandbox": 134, "sanit": [46, 88], "sapi": 131, "satisfi": [56, 67, 77, 129, 134], "saturdai": 2, "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 94, 96, 109, 115, 117, 119, 130, 153, 161, 165, 189], "save_com": [125, 133], "sbin": [60, 63, 134], "scalabl": [48, 120, 133, 134, 146, 170, 173], "scale": [13, 20, 25, 48, 60, 88, 108, 120, 135, 139], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 94, 138, 139, 143, 147, 151], "scanfil": 157, "scanner": [40, 60, 63, 65, 88, 157], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 127, 136, 147, 170, 188], "scene": 15, "schedul": [2, 3, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 108, 113, 116, 118, 149, 150, 152, 157, 188], "scheduledaft": [14, 157], "scheduledat": 14, "schema": [20, 22, 25, 88, 136, 145, 148, 154, 157], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 97], "school": [77, 139], "scl": 151, "scope": [8, 21, 22, 48, 60, 68, 74, 81, 88, 93, 99, 111, 127, 138, 154, 157, 158], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 134, 148], "screen": [41, 63, 78, 79, 88, 109, 134, 148, 157, 189], "screenshar": 135, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 127, 128, 130, 133, 151, 157, 158, 160, 164, 166, 188], "script_filenam": 130, "scriptnam": 67, "scroll": [41, 85, 112, 113, 114, 117, 148], "sdk": [6, 124, 132, 160, 167, 168, 170, 171, 172, 184], "sdkref": [60, 184], "seal": 88, "sealert": 132, "seamless": [81, 188], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 96, 113, 127, 131, 133, 134, 139, 144, 158, 161, 174], "sec": [22, 23, 82, 119], "second": [1, 15, 16, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 93, 102, 107, 113, 117, 119, 127, 133, 134, 138, 139, 150, 154, 157, 158, 165, 167, 188], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 117, 121, 122, 127, 133, 144, 150, 153, 154, 157, 160, 161, 165], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 16, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 94, 97, 100, 102, 103, 112, 113, 114, 117, 118, 119, 120, 129, 130, 133, 134, 139, 145, 148, 149, 150, 154, 157, 161, 167, 173, 187], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 94, 98, 108, 109, 111, 112, 113, 119, 124, 128, 129, 130, 131, 132, 134, 135, 138, 139, 145, 146, 149, 151, 158, 162, 164, 165, 167, 185, 187], "secure_link_secret": 165, "see": [0, 1, 2, 3, 4, 5, 7, 11, 15, 16, 18, 22, 23, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 51, 53, 54, 56, 58, 59, 60, 63, 67, 68, 70, 74, 78, 81, 82, 83, 85, 88, 92, 93, 94, 96, 97, 100, 102, 103, 108, 109, 111, 112, 113, 114, 115, 117, 119, 120, 121, 122, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 165, 170, 173, 178, 179, 180, 182, 183, 184, 185, 188, 189], "seed": [59, 60, 88, 163], "seem": [3, 24, 60, 63, 70, 148], "seen": [60, 94, 96, 103, 114, 138, 155], "segment": 26, "segreg": 127, "select": [1, 2, 3, 4, 5, 7, 8, 12, 16, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 77, 80, 81, 85, 92, 93, 107, 108, 111, 112, 117, 121, 122, 127, 129, 133, 139, 148, 150, 152, 154, 161, 164, 166, 189], "selector": [88, 151], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 94, 97, 109, 115, 117, 134, 157, 159, 165, 169, 179], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 128], "semanag": [124, 132], "semant": [3, 93], "semaphor": 131, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 16, 17, 18, 24, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 94, 97, 109, 113, 115, 116, 127, 129, 132, 134, 148, 154, 157, 158, 161, 165, 174, 179, 188, 189], "send_timeout": 130, "sendemail": 158, "sender": [63, 117], "sendeventremindersmod": [113, 152], "sendfil": 139, "sendmail": [60, 65, 88, 128], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 94, 119, 127, 134, 139, 150], "sent": [12, 24, 40, 59, 60, 63, 67, 81, 88, 97, 111, 113, 117, 119, 121, 122, 127, 152, 157, 158, 189], "sentinel": [45, 59, 65, 88], "sentinel1": 59, "sentinel2": 59, "sentinel3": 59, "sentri": 119, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 94, 96, 100, 112, 127, 149, 150, 157, 158, 165, 189], "septemb": 4, "sequenc": [157, 185], "seri": [175, 176, 184], "serial": 60, "serializer_igbinari": 60, "seriou": 139, "serious": 70, "serv": [3, 5, 7, 24, 26, 60, 63, 69, 70, 81, 88, 93, 102, 120, 128, 134, 144, 148, 160, 165, 167, 181, 182, 184], "server": [0, 1, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 19, 20, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 56, 57, 58, 64, 65, 67, 68, 69, 72, 75, 76, 77, 78, 79, 82, 83, 85, 88, 91, 92, 96, 97, 98, 100, 106, 107, 112, 116, 118, 119, 120, 121, 122, 124, 125, 126, 129, 130, 131, 136, 138, 140, 141, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 162, 163, 164, 166, 169, 170, 172, 173, 175, 178, 185, 186, 187, 188], "server0": 59, "server1": [48, 59, 129], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 93, 97, 125, 130], "server_token": 130, "serveraddr": 97, "serverid": [88, 144], "serverinfo": [59, 139, 181], "servernam": [93, 97, 124, 127, 134], "servernotavailableexcept": 157, "serverport": 97, "serverroot": [16, 60], "serverurl": 92, "servic": [1, 2, 3, 5, 12, 13, 22, 31, 32, 36, 40, 56, 57, 58, 59, 60, 63, 65, 67, 68, 70, 72, 81, 82, 84, 88, 94, 100, 107, 109, 124, 125, 127, 133, 134, 140, 144, 154, 157, 158, 160, 161, 163, 164, 166, 168, 170, 171, 174, 176, 187], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 94, 107, 119, 127, 130, 131, 141, 144, 149, 151, 154, 157, 158], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 154, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 38, 40, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 66, 68, 69, 71, 72, 73, 74, 80, 82, 83, 84, 86, 87, 88, 92, 93, 94, 95, 96, 97, 98, 100, 102, 103, 104, 106, 107, 108, 109, 111, 112, 114, 115, 116, 117, 118, 119, 121, 125, 126, 127, 128, 129, 130, 132, 135, 138, 139, 141, 143, 144, 145, 147, 148, 149, 151, 154, 156, 162, 164, 165, 166, 168, 173, 179, 180, 181, 183, 187, 188], "set_real_ip_from": 130, "setenv": [127, 134], "setenvif": 134, "setenvifnocas": 93, "setroubleshoot": 132, "setsebool": [124, 132], "settingclass": 157, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 22, 24, 28, 32, 40, 44, 45, 48, 49, 57, 58, 62, 63, 65, 69, 80, 81, 88, 91, 94, 97, 98, 101, 124, 128, 129, 130, 133, 134, 135, 139, 144, 145, 149, 150, 151, 152, 153, 167, 168, 170, 171, 172, 179, 182, 183, 185], "setup_create_db_us": 129, "setupcheck": 157, "sever": [12, 26, 28, 58, 60, 63, 77, 92, 97, 99, 108, 109, 112, 117, 127, 130, 131, 133, 134, 139, 144, 149, 154, 157, 170, 187], "sf": [16, 125], "sftp": [32, 40, 60, 88, 131, 154], "sgi": 60, "sh": [15, 134, 188], "sha": [127, 148], "sha256": [29, 124, 126, 156], "sha256_cert_fingerprint": 55, "sha256sum": [124, 126], "sha512": [29, 148], "sha512sum": 148, "shall": [60, 66, 81], "shallow": [40, 154], "shape": [93, 165], "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 94, 96, 97, 98, 102, 103, 108, 109, 111, 112, 115, 116, 120, 125, 127, 132, 134, 136, 140, 143, 147, 148, 151, 156, 158, 160, 161, 165, 168, 176, 188], "share20": [60, 157], "share_fold": 88, "shareabl": 115, "shareapi_restrict_user_enumeration_full_match_email": 43, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 43, "shareapi_restrict_user_enumeration_full_match_userid": 43, "sharebymail": 60, "shared_secret": [60, 67], "sharekei": 29, "sharer": [111, 154], "shares_extern": 154, "sharescount": 60, "sharesreminderjob": 157, "sheet": 184, "shell": [15, 23, 57, 60, 122, 151, 188], "shellextens": 92, "shibbol": 160, "ship": [1, 4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 114, 115, 124, 127, 130, 133, 148, 150, 154, 155, 157, 174, 182, 185], "shm_size": [59, 183], "shop": 2, "short": [24, 60, 77, 81, 83, 96, 107, 113, 114, 117, 139, 152], "shortcut": [88, 92], "shorten": 107, "shorter": [24, 29, 134], "shortli": 106, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 20, 22, 23, 27, 29, 36, 38, 39, 40, 41, 45, 51, 56, 57, 59, 60, 63, 66, 67, 68, 69, 71, 77, 81, 82, 85, 92, 93, 94, 96, 97, 98, 100, 102, 106, 113, 114, 117, 119, 122, 124, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 139, 144, 145, 148, 149, 151, 152, 160, 167, 172, 179, 180, 183, 185, 187, 188, 189], "shouldn": 60, "show": [1, 2, 3, 7, 10, 19, 22, 23, 27, 28, 38, 43, 47, 48, 51, 53, 56, 59, 60, 63, 64, 77, 80, 81, 82, 83, 85, 88, 94, 99, 100, 112, 113, 114, 119, 121, 129, 130, 133, 138, 139, 143, 148, 149, 150, 151, 152, 154, 156, 158, 161, 181, 188, 189], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 189], "showexpir": 188, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 111, 127, 129, 130, 131, 138, 139, 143, 148, 149, 152, 153, 154, 157, 158, 161], "showonli": 150, "showpassword": 82, "shred": 108, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 108, 111, 113, 127, 129, 130, 133, 139, 148, 153, 154, 155, 157, 181, 183], "sidebar": [85, 95], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 94, 117, 124, 130, 134, 135, 139, 140, 156, 157, 165, 179], "signal": [4, 107], "signatur": [56, 88, 117, 124, 126, 138, 154, 156], "signific": [8, 12, 34, 45, 53, 138, 187], "significantli": [8, 12, 24, 26, 59, 60, 67, 135, 149], "signup": [2, 60], "silent": [92, 99, 109, 132, 153, 154, 165], "similar": [0, 6, 19, 26, 36, 60, 81, 94, 103, 106, 119, 121, 124, 127, 132, 133, 134, 136, 138, 150], "similarli": [144, 150, 160, 184], "simpl": [15, 20, 51, 60, 88, 103, 120, 134, 146, 189], "simplesignuplink": 88, "simplest": [97, 139], "simplexml": 131, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 96, 102, 103, 143, 147, 148, 188], "simplifi": [97, 153], "simul": 154, "simultan": [45, 133, 134, 150, 187], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 94, 102, 104, 106, 115, 125, 130, 135, 145, 148, 154, 156, 157, 158, 171, 181, 183, 187, 189], "singl": [3, 20, 24, 26, 28, 41, 57, 58, 60, 67, 69, 81, 85, 88, 117, 119, 124, 126, 130, 132, 133, 134, 141, 152, 153, 155, 157, 158, 165, 188], "sink": 2, "site": [26, 65, 88, 107, 127, 134, 139], "situat": [3, 5, 7, 48, 58, 60, 69, 94, 124, 127, 139], "sixteen": 187, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 81, 85, 88, 94, 96, 97, 102, 111, 120, 125, 127, 130, 140, 143, 144, 153, 157, 163, 179, 188], "sji": 71, "skeleton": [18, 27, 60, 189], "skeletondirectori": [27, 88], "skill": [134, 146], "skip": [40, 53, 57, 60, 65, 81, 88, 92, 98, 119, 127, 148, 149, 151, 152, 154, 157], "skip_name_resolv": 22, "skipapp": 181, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 94, "sl": 59, "sla": 12, "slash": [33, 40, 51, 59, 94, 139, 165, 188], "slate": 3, "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 99], "slogan": [72, 157], "slot": [2, 88, 151], "slow": [6, 22, 28, 56, 58, 59, 60, 88, 94], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 153, 170], "slowlog": 133, "sluggish": 133, "small": [2, 12, 43, 47, 57, 60, 77, 88, 113, 114, 130, 139, 170, 187], "smaller": [4, 5, 7, 12, 26, 60, 148], "smallest": [11, 81], "smart": [1, 2, 15, 88, 117, 174], "smb": [40, 60, 88, 128, 131, 154], "smbclient": [38, 131], "sme": 134, "smili": 23, "smith": [152, 158], "smtp": [60, 65, 88, 128, 144], "sn": [82, 155], "snap": [88, 128, 131, 142, 149], "snapcraft": [134, 146], "snapd": [134, 146], "snapshot": [81, 97, 108], "sni": 70, "sniff": 127, "snip": 57, "snooz": [88, 116], "snowflak": [88, 151], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 24, 26, 27, 28, 29, 30, 35, 38, 40, 41, 43, 45, 48, 50, 51, 53, 56, 58, 59, 60, 63, 67, 68, 76, 78, 81, 83, 84, 85, 92, 93, 94, 95, 96, 97, 98, 102, 103, 106, 108, 112, 113, 117, 118, 119, 121, 122, 124, 125, 127, 130, 131, 132, 133, 134, 138, 139, 143, 144, 145, 147, 148, 149, 150, 151, 154, 155, 156, 165, 166, 168, 171, 174, 181, 186, 187, 188, 189], "sock": [22, 45, 59, 60, 97, 98, 125, 130, 150], "socket": [22, 45, 56, 60, 88, 98, 100, 101, 125, 129, 133, 172], "sodium": 131, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 94, 135, 179], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 94, 117, 134, 138, 139, 144, 159, 162, 169, 171, 173], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 132, 137, 148, 184], "some": [0, 1, 2, 15, 16, 22, 25, 28, 29, 31, 32, 40, 43, 47, 48, 51, 52, 57, 58, 59, 60, 63, 65, 73, 77, 81, 85, 87, 88, 94, 95, 96, 97, 99, 102, 111, 113, 114, 117, 119, 124, 125, 127, 129, 130, 131, 133, 134, 135, 138, 139, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 157, 158, 160, 161, 167, 170, 174, 175, 178, 181, 183, 186, 188, 189], "some_secure_password": 98, "some_very_secure_password": [97, 98], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 96, 97, 130, 133, 138, 145, 173, 188], "sometim": [2, 5, 15, 43, 48, 57, 85, 133, 139, 143, 148, 187], "somewher": [81, 97, 130, 134, 189], "soon": [4, 15, 62, 113, 133, 187], "sooner": [108, 187, 188], "sophist": [58, 94], "sorri": 173, "sort": [44, 60, 115, 131, 170], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 143, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 32, 46, 51, 56, 58, 59, 60, 63, 77, 88, 113, 120, 124, 127, 130, 131, 133, 134, 136, 139, 147, 148, 151, 154, 160, 164, 168, 188], "sourcecalendardata": 188, "sourcecalendarid": 188, "sourcecod": 29, "sourceshar": 188, "sovereignti": [0, 1, 4], "sp7": [135, 186], "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 94, 128, 139, 150, 153, 154, 161, 163, 164, 165, 166, 183], "spaghetti": 2, "spam": [60, 63, 117], "span": [24, 73, 102], "spanish": [4, 5, 10, 11], "spawn": [38, 133], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 113, 134, 139, 188], "specialis": 51, "specif": [1, 2, 5, 6, 7, 9, 10, 11, 14, 16, 17, 22, 28, 29, 32, 33, 38, 40, 42, 43, 48, 53, 54, 55, 58, 59, 60, 61, 66, 68, 69, 77, 85, 88, 92, 94, 97, 105, 108, 109, 110, 113, 114, 119, 120, 121, 128, 134, 144, 148, 150, 151, 152, 153, 154, 157, 158, 161, 165, 175, 181, 182, 187, 188, 189], "specifi": [1, 16, 17, 20, 22, 25, 31, 32, 33, 36, 38, 39, 48, 51, 57, 58, 59, 60, 67, 69, 76, 79, 81, 82, 83, 91, 92, 94, 97, 113, 122, 127, 129, 130, 133, 134, 138, 150, 151, 152, 154, 158, 160, 161, 167, 188, 189], "speech": [4, 13, 88, 157, 176], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 94, 96, 130, 133, 185], "speedscop": 60, "split": [21, 24, 88, 130, 161, 177], "spoof": [60, 69], "sporad": 94, "spread": 134, "spreadsheet": [2, 51, 162, 169], "spreed": [4, 8], "sprintf": 97, "sql": [24, 60, 88, 112, 139, 149, 152], "sqlbkp": 147, "sqlbkp_": 141, "sqlite": [20, 25, 88, 122, 128, 129, 135, 136, 139, 152, 157], "sqlite3": [20, 60, 141, 147], "sqlnet": 121, "sqlstate": 139, "squeez": 22, "src": [124, 132], "src_path": 99, "ss": 93, "sse": [28, 31, 46, 88, 157], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 93, 95, 119, 121, 125, 128, 130, 157, 167, 168, 172], "ssl_certif": 130, "ssl_certificate_kei": 130, "ssl_certificate_path": 165, "ssl_context": [59, 60], "ssl_dhparam": 165, "ssl_dhparam_path": 165, "ssl_key_path": 165, "ssl_stapl": 130, "ssl_stapling_verifi": 130, "ssl_verify_cli": 165, "sslmode": 22, "sslproxycheckpeercn": 167, "sslproxycheckpeernam": 167, "sslproxyengin": 167, "sslproxyverifi": 167, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 127, "stabil": [12, 70, 135, 183, 184, 185], "stabilityai": 15, "stabl": [15, 60, 93, 125, 134, 135, 138, 146, 169, 176, 187], "stable_bas": 56, "stablediffus": 15, "stack": [58, 134, 170], "stage": [60, 88, 148, 187], "stai": [24, 134, 149, 151, 156, 165, 187], "stale": [24, 40, 60, 144, 152, 154, 158], "stall": [60, 133], "stand": 189, "standalon": [4, 17, 165, 170], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 88, 89, 92, 113, 124, 127, 131, 134, 135, 143, 144, 151, 152, 154, 165, 182, 183, 184, 188], "standup": 2, "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 94, 97, 107, 113, 119, 124, 125, 126, 128, 131, 133, 134, 139, 143, 144, 146, 148, 149, 152, 153, 155, 157, 163, 167, 171, 173, 181, 182, 183, 184, 185, 188, 189], "start_header_id": 5, "start_serv": 133, "startedat": 14, "startlimitburst": [15, 188], "startlimitinterv": [15, 188], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 179], "startup": [59, 97, 100, 144, 165], "stat": [1, 3, 88], "state": [24, 28, 44, 63, 77, 80, 85, 88, 119, 127, 147, 151, 152, 154, 157, 165, 188], "statement": 152, "static": [12, 29, 60, 69, 127, 130, 133, 167, 180, 181, 182, 189], "statist": [1, 3, 119, 127, 154, 157], "statsd": 165, "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 93, 99, 101, 111, 118, 127, 130, 137, 149, 151, 152, 154, 161, 168, 173, 187, 188], "status": 150, "status_cancel": 14, "status_fail": 14, "status_run": 14, "status_schedul": 14, "status_success": 14, "status_unknown": 14, "statuscod": [17, 75, 76, 82], "stdin": [60, 151], "stdout": [4, 154, 157], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 94, 96, 97, 99, 100, 109, 117, 119, 124, 128, 129, 133, 134, 137, 139, 142, 144, 148, 156, 157, 163, 167, 170, 171], "stephani": 158, "stereotyp": 9, "stick": 60, "still": [2, 3, 8, 20, 23, 25, 26, 30, 43, 47, 48, 50, 56, 57, 58, 59, 60, 64, 67, 80, 81, 83, 85, 88, 92, 93, 96, 119, 127, 130, 131, 139, 144, 148, 153, 154, 155, 156, 165, 181, 182, 183, 184, 185, 187, 188], "stilli": 186, "stolen": [80, 108], "stop": [5, 6, 26, 53, 56, 60, 67, 94, 97, 103, 139, 143, 144, 148, 157, 165, 167, 171], "stop_aft": 157, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 94, 99, 103, 111, 129, 131, 132, 133, 134, 135, 136, 139, 144, 150, 151, 158, 165, 168], "storage43": 81, "storageclass": 48, "store": [0, 13, 19, 22, 28, 31, 32, 38, 40, 44, 45, 46, 47, 53, 59, 61, 64, 65, 67, 68, 70, 72, 77, 80, 81, 82, 88, 92, 96, 108, 109, 110, 112, 114, 117, 121, 127, 129, 130, 132, 133, 136, 139, 150, 151, 152, 153, 158, 161, 165, 182, 183, 184], "storecryptedpassword": [88, 127], "str_ends_with": 97, "straight": [18, 92], "straightforward": 55, "strain": 119, "strategi": [23, 48, 108], "stream": [26, 40, 53, 56, 60, 97, 124, 135, 165], "streamable_http": 2, "street": 2, "strength": 129, "strengthen": 70, "strict": [14, 58, 65, 88, 107, 130], "strictest": 77, "strictli": [97, 122, 133, 134], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 93, 97, 99, 111, 121, 130, 150, 152, 158, 161, 164, 165, 166, 187, 188], "strip": [68, 77, 134, 158], "strive": 15, "strong": [86, 129, 165], "stronger": 132, "strongli": [38, 60, 64, 70, 94, 133, 134, 135, 144, 187], "strtotim": 154, "structur": [28, 29, 48, 60, 67, 81, 97, 152, 154, 188], "stt_whisper2": [1, 13, 15, 88], "stuck": 143, "studio": 60, "stuff": 100, "stuttgart": 158, "style": [11, 31, 60, 72, 175, 188], "su": [125, 151], "sub": [6, 76, 81, 93, 178, 189], "subadmin": 88, "subdir": [88, 128], "subdirectori": [36, 40, 60, 88, 93, 130, 134, 154], "subdomain": [60, 69, 125, 127, 134, 167], "subfold": [33, 37, 38, 39, 92, 134, 139], "subgroup": 81, "subject": [28, 77, 88, 108, 109, 110, 113, 119, 127], "submiss": [63, 188, 189], "submissionmessag": 188, "submit": 127, "submitmultipl": 188, "subnet": [60, 97], "subpag": 177, "subpath": 97, "subreddit": [175, 176], "subscrib": 113, "subscript": [12, 88, 116, 127, 135, 169, 173, 187], "subsecond": 48, "subsequ": [24, 92, 119, 127, 134, 146, 155], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 93, 97], "subsystem": 157, "subtitl": 15, "succe": [67, 92, 97], "succeed": [15, 148, 157], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 96, 108, 111, 121, 124, 125, 127, 129, 139, 143, 148, 154, 157, 161, 164, 166], "successfulli": [14, 41, 60, 78, 100, 135, 148, 153, 157, 158, 164, 166, 189], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 97, 108, 109, 112, 113, 114, 119, 122, 126, 131, 133, 134, 137, 139, 141, 143, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 166, 168, 188], "suexec": 60, "suffer": 11, "suffici": [77, 93, 121, 124, 127, 129, 133, 134, 139, 145, 157, 165], "suffix": [129, 165], "suggest": [14, 43, 60, 70, 97, 115, 120, 124, 132, 133, 134, 187], "suit": [12, 28, 97, 127], "suitabl": [45, 57, 59, 60, 96, 127, 133, 152, 157, 187], "sum": [124, 126, 133], "summar": [1, 5, 13, 15, 53, 88, 117, 157], "summari": [13, 15, 88, 112, 116, 133, 163], "summaris": 53, "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 152], "superus": 125, "supervisor": [154, 164, 166], "supplement": 60, "supplementari": 134, "suppli": [59, 81, 88, 113, 117, 121, 127, 134, 148, 165], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 25, 28, 30, 31, 37, 38, 40, 41, 42, 45, 46, 47, 50, 54, 58, 59, 62, 66, 67, 68, 70, 72, 73, 75, 76, 77, 80, 81, 82, 88, 92, 93, 94, 95, 96, 97, 98, 100, 102, 113, 117, 119, 120, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 152, 154, 157, 158, 159, 161, 162, 165, 169, 173, 174, 175, 179, 180, 181, 182, 183, 184, 185, 186, 188], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 154], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 33, 34, 38, 41, 43, 48, 58, 59, 60, 66, 68, 81, 83, 92, 94, 97, 102, 106, 109, 113, 115, 119, 124, 125, 127, 130, 133, 134, 135, 138, 139, 143, 144, 145, 147, 149, 151, 158, 167, 173, 179, 180, 181, 182, 183, 185, 186, 187, 188], "surfac": 77, "surfer": 64, "surnam": [81, 97], "surround": 60, "surveyserv": 127, "surviv": 85, "suse": [135, 186], "suspect": 187, "suspend": [88, 112], "suspici": [15, 57, 58, 60], "sustain": [8, 139], "sv1b7krauqmf8qq": 134, "svg": [47, 60, 72, 130, 133, 134], "swap": [26, 29, 133], "swift": [36, 60, 88, 144, 154], "switch": [13, 16, 60, 81, 88, 114, 119, 127, 133, 151, 152, 153, 157, 170, 189], "symbol": 16, "symfoni": 151, "symlink": [60, 139], "symmetr": 29, "symptom": 24, "sync": [3, 18, 19, 22, 24, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 115, 119, 129, 133, 144, 147, 151, 157, 188], "sync_xxxxxxx": 94, "synchron": [24, 50, 60, 65, 88, 91, 94, 102, 113, 114, 120, 152, 154, 157], "synchronis": [88, 142], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 135, 151, 155, 158], "sys_nic": 133, "syslog": [60, 88, 97, 157], "syslog_tag": [67, 88], "syslog_tag_audit": [67, 88], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 22, 23, 28, 32, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 63, 67, 70, 73, 77, 80, 81, 85, 87, 88, 92, 93, 94, 100, 104, 108, 111, 112, 113, 115, 116, 119, 122, 124, 125, 126, 128, 131, 132, 139, 143, 144, 145, 150, 151, 154, 160, 161, 163, 174, 175, 187], "system_addressbook_expos": 114, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 93, 97, 124, 133, 164, 166, 167, 168, 188], "systemd": [53, 56, 60, 88, 100, 154, 157, 168], "systempl": 160, "systemtag": 188, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [131, 181], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 22, 23, 26, 31, 43, 44, 45, 56, 57, 59, 60, 62, 63, 66, 76, 77, 81, 88, 93, 96, 100, 113, 119, 124, 127, 130, 132, 134, 138, 139, 141, 143, 144, 145, 148, 150, 154, 167, 173, 188, 189], "tab": [88, 151, 161, 189], "tabl": [3, 15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 109, 113, 114, 119, 126, 128, 139, 145, 147, 152, 154, 155, 157, 158, 175, 176, 183], "tableid": 188, "tablespac": 129, "tag": [2, 6, 12, 16, 40, 43, 88, 102, 105, 127, 130, 138, 151, 154, 160, 161, 163], "tagassignedev": 188, "tagid": 188, "tagunassignedev": 188, "tail": [4, 130, 157], "tajik": 4, "take": [3, 6, 19, 22, 26, 29, 32, 41, 47, 52, 56, 57, 58, 59, 60, 69, 70, 80, 81, 82, 84, 85, 94, 97, 98, 121, 122, 125, 127, 130, 133, 134, 138, 143, 144, 146, 148, 149, 152, 153, 154, 161, 164, 165, 166, 183, 188, 189], "taken": [3, 43, 57, 63, 70, 81, 97, 114, 152], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 112, 134, 139, 174, 175, 176, 181, 189], "talk_bot": 8, "talo": 56, "tamper": [28, 148], "tape": 108, "tar": [60, 124, 126, 134, 143], "tarbal": [134, 143, 157], "target": [15, 28, 29, 55, 57, 60, 77, 81, 88, 92, 94, 127, 143, 151, 152, 153, 154, 157, 173, 188], "targetcalendardata": 188, "targetcalendarid": 188, "targetchunkuploaddur": 94, "targetshar": 188, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 111, 113, 120, 125, 134, 151, 185], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 188], "tasktyp": 157, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [60, 88, 97, 127, 130, 133], "te": 155, "team": [18, 46, 48, 60, 65, 88, 112, 134, 146, 170], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 108, 138, 153, 189], "techniqu": 139, "technologi": [15, 70, 134, 146], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 97, 130, 139, 143], "telnet": 63, "temp": [26, 60, 94, 134], "tempdirectori": [26, 88, 144], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 97, 130, 160, 162, 176], "template0": 22, "template1": [22, 147], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 106, 158, 189], "temporarili": [58, 63, 67, 81, 83, 93, 111, 154, 157], "tempt": 1, "ten": [40, 56, 80, 81, 120, 152], "tenant": [3, 36, 117], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 88, 126, 130, 134, 153, 154, 163, 168, 172], "terri": 155, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 28, 53, 56, 58, 59, 65, 74, 77, 88, 93, 94, 96, 97, 99, 101, 102, 119, 120, 127, 130, 132, 135, 137, 138, 139, 152, 154, 157, 161, 181, 185, 187, 188], "tester": 102, "testfil": 56, "testgroup": 76, "tex2image_stablediffusion2": 1, "text": [2, 3, 4, 5, 8, 9, 11, 12, 13, 18, 28, 43, 47, 51, 60, 63, 65, 81, 82, 88, 93, 102, 111, 117, 127, 130, 134, 138, 139, 144, 151, 152, 157, 161, 162, 167, 169, 174, 175, 176, 181], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 157], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 130, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 24, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 94, 108, 112, 113, 115, 117, 120, 122, 124, 127, 129, 131, 133, 134, 135, 138, 139, 143, 147, 148, 151, 154, 157, 165, 167, 170, 181, 183, 184, 187, 189], "thank": [2, 69, 187], "theft": 28, "thei": [0, 1, 2, 3, 4, 5, 8, 12, 15, 16, 18, 25, 27, 28, 30, 40, 41, 42, 43, 44, 45, 47, 50, 52, 53, 58, 59, 60, 61, 62, 63, 69, 71, 80, 81, 84, 85, 87, 88, 91, 92, 94, 96, 97, 102, 103, 104, 107, 108, 109, 111, 112, 113, 117, 119, 120, 121, 122, 126, 127, 129, 130, 133, 134, 135, 137, 139, 143, 144, 150, 152, 154, 156, 157, 158, 160, 161, 165, 174, 183, 187], "them": [3, 6, 7, 14, 15, 16, 22, 23, 24, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 59, 60, 63, 64, 67, 69, 70, 71, 72, 81, 83, 85, 86, 92, 94, 96, 97, 102, 103, 108, 109, 111, 112, 113, 115, 119, 121, 122, 124, 126, 127, 130, 133, 134, 138, 139, 143, 144, 147, 149, 150, 152, 153, 154, 156, 157, 158, 160, 165, 166, 181, 189], "theme": [64, 65, 88, 141, 143, 147, 148, 151, 152, 161], "themingnam": 161, "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 102, 115], "theori": [5, 9], "therefor": [8, 12, 22, 24, 26, 29, 32, 43, 47, 60, 67, 77, 81, 93, 102, 103, 113, 114, 127, 134, 136, 147, 149, 151, 175], "therein": 12, "thereof": 130, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 164, 165, 166, 167, 170, 171, 173, 175, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189], "thing": [15, 60, 80, 127, 134, 141, 147, 148, 187], "think": [36, 139], "third": [2, 12, 15, 16, 22, 28, 57, 78, 88, 107, 135, 143, 149, 161], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 59, 60, 64, 68, 69, 70, 81, 85, 93, 94, 97, 103, 109, 112, 113, 124, 127, 129, 130, 131, 135, 138, 139, 148, 149, 152, 153, 154, 157, 158, 174, 185, 187, 188], "though": [38, 39, 43, 56, 59, 88, 127, 130, 134, 138, 181], "thought": 18, "thousand": [120, 139], "thread": [4, 7, 10, 15, 60, 88, 116, 139], "threat": [28, 127], "three": [8, 40, 56, 57, 59, 60, 63, 67, 80, 93, 96, 97, 117, 119, 129, 147, 156, 158], "threshold": [58, 88, 117, 127], "throttl": [58, 157], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 94, 96, 97, 104, 109, 111, 113, 117, 119, 121, 124, 127, 134, 139, 148, 151, 154, 157, 158, 165, 169, 170, 172, 173, 187], "throughout": [29, 58, 187], "throughput": [7, 10, 60], "throw": 94, "thrown": 151, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 96, 127, 130, 134, 135, 149, 186], "thumbnail": [28, 41, 47, 60, 85, 161], "thumbnailphoto": 81, "thunderbird": [113, 114, 115, 119], "ti": [8, 43, 144], "ticket": [61, 148, 149, 175, 176], "tidewai": 139, "tiff": [47, 60, 134], "tighter": 77, "time": [2, 3, 6, 8, 14, 15, 22, 25, 26, 29, 38, 41, 43, 44, 45, 47, 49, 53, 54, 56, 57, 58, 59, 60, 63, 67, 69, 73, 77, 81, 83, 85, 94, 96, 102, 106, 108, 111, 112, 113, 114, 117, 118, 119, 124, 126, 127, 129, 130, 133, 134, 135, 143, 144, 146, 148, 149, 151, 152, 153, 154, 156, 157, 161, 162, 165, 169, 183, 185, 187, 188], "timefram": 24, "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 100, 125, 130, 133, 134, 143, 148, 150, 157, 188], "timer": 57, "timestamp": [14, 29, 67, 111, 115, 144, 157, 188], "timezon": [8, 57, 60, 67, 102, 131, 157], "tip": [46, 70, 74, 88, 128, 142, 183], "titl": [1, 2, 81, 111, 175, 188], "tl": [28, 45, 60, 63, 69, 70, 82, 88, 96, 97, 119, 121, 125, 127, 128, 130, 134, 157, 161, 163], "tld": [60, 70, 82, 97, 119, 125, 127, 150, 158], "tld_fullchain": 125, "tld_privat": 125, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 94, 119, 134, 148, 152, 154, 164, 166], "tmp_table_s": 22, "tmpdir": [60, 134], "tmpfile": 60, "tmux": 88, "to_gif_exampl": 99, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 121, 122, 127, 135, 139, 165], "toggl": [53, 60, 72, 77, 81, 113, 114, 133, 139, 154], "token": [1, 2, 32, 58, 60, 65, 74, 88, 97, 107, 111, 112, 160, 161, 165, 188, 189], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "toler": 24, "tom": 75, "toml": [69, 97], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 94, 113, 114, 127, 129, 133, 134, 139, 143, 146, 165, 181], "took": 119, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 94, 96, 99, 112, 117, 127, 132, 133, 139, 149, 165, 188], "toolbar": 161, "toolkit": 6, "tooltip": 81, "toot": [175, 176], "top": [1, 12, 16, 60, 64, 67, 70, 85, 139, 148, 149, 176, 188], "topic": [1, 28, 45, 60, 120, 134, 139], "topologi": [59, 60], "total": [6, 29, 36, 60, 67, 81, 85, 87, 157, 158], "totalnumberofsynctokenstokeep": [113, 114], "totalsizelimit": 60, "totp": [80, 158], "touch": [88, 125, 143], "toward": 60, "town": 76, "trace": [67, 133, 151], "trace_mod": 22, "track": [53, 88, 92, 94, 113, 114, 116, 119, 154, 161], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 93, 134, 167], "trail": [40, 50, 53, 155], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 128, 131, 135, 139, 141], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 176], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 108, 109, 112, 130, 133, 138, 143, 148], "transferincomingshar": [88, 154], "transient": 133, "transifex": 66, "transit": [60, 134, 139, 165], "translat": [13, 27, 88, 116, 120, 121, 131, 176], "translate2": [1, 4, 13, 15, 88], "transmit": [107, 111, 127, 189], "transp": 188, "transpar": [13, 15, 29, 58, 60, 88], "transport": [2, 65, 81, 88, 94, 97, 117, 130, 135], "trash": [28, 29, 41, 46, 65, 85, 88, 111, 116, 119, 151, 152], "trashbin": [43, 49, 60, 88, 108, 139, 151, 152], "trashbin_retention_oblig": [49, 88, 108, 154], "trashcan": 40, "travers": 188, "treat": [38, 60, 69, 70, 81, 129, 130, 139], "tree": [2, 40, 81, 88, 133, 157, 165], "tremend": 94, "tri": [18, 127, 129, 152, 153], "triag": 120, "trick": [74, 88, 128, 183], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 60, 67, 76, 81, 85, 88, 114, 119, 133, 138, 139, 148, 154, 157, 181, 188, 189], "triplecheck": 173, "trixi": [135, 186], "trojan": 56, "troubl": [81, 139, 181], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 116, 127, 128, 134, 142, 144, 149, 159, 169], "true": [3, 14, 15, 16, 17, 20, 22, 23, 28, 31, 41, 48, 53, 60, 63, 66, 67, 69, 75, 76, 77, 82, 84, 85, 87, 94, 102, 117, 119, 121, 127, 130, 134, 139, 141, 149, 150, 151, 154, 157, 158, 161, 164, 165, 166, 168, 188, 189], "truena": [88, 128], "truncat": [29, 53, 60, 127], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 97, 111, 117, 127, 128, 148, 150, 157, 165], "trusted_domain": [41, 69, 88, 121, 129, 130, 144, 150, 181], "trusted_proxi": [58, 69, 88], "trustedcafil": 97, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 94, 96, 97, 102, 119, 130, 132, 135, 138, 139, 143, 147, 148, 152, 173, 179, 187], "try_fil": 130, "trystack": 60, "ttf": [130, 164], "ttl": [22, 63, 88], "tty": 153, "tue": 63, "tuesdai": 2, "tune": [5, 88, 127, 128, 130, 131, 134], "tunisian": 4, "tunnel": [96, 97, 98], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 117, 134, 148, 157, 187, 189], "turnkei": [131, 134], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [120, 124, 125], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 24, 26, 28, 36, 40, 41, 44, 45, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 94, 96, 97, 109, 112, 113, 119, 120, 121, 127, 134, 148, 149, 150, 151, 154, 161, 164, 165, 166, 169, 187, 188, 189], "twofactor_totp": 150, "twofactorauth": [80, 88], "txk4": 158, "txt": [28, 38, 50, 60, 71, 130, 132, 133, 188], "ty": 133, "type": [1, 2, 3, 5, 10, 14, 15, 16, 17, 21, 23, 25, 26, 28, 40, 41, 42, 43, 46, 47, 48, 56, 57, 58, 63, 65, 68, 73, 80, 85, 87, 88, 97, 98, 102, 107, 111, 112, 114, 116, 117, 119, 126, 127, 130, 131, 133, 139, 143, 149, 150, 154, 158, 161, 164, 166, 168, 175, 179, 181, 184, 188, 189], "typescript": 189, "typic": [28, 40, 57, 59, 60, 77, 81, 89, 92, 94, 107, 113, 119, 126, 129, 131, 133, 139, 144, 158, 187, 188], "u": [1, 2, 8, 12, 14, 15, 18, 19, 20, 22, 23, 26, 28, 34, 40, 48, 51, 53, 56, 57, 59, 60, 68, 72, 73, 77, 78, 80, 81, 83, 100, 108, 109, 112, 113, 114, 119, 122, 125, 131, 134, 137, 139, 141, 143, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 164, 166, 181, 188], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 122, 128, 131, 133, 134, 135, 139, 141, 143, 146, 149, 151, 162, 163, 167, 170, 186], "uc": 134, "udp": 63, "ui": [2, 12, 15, 40, 58, 60, 77, 82, 85, 92, 96, 98, 99, 115, 117, 139, 148, 149, 152, 157, 161], "uid": [29, 80, 81, 82, 83, 108, 109, 112, 119, 152, 155, 158, 188], "uid1": 158, "uid2": 158, "uidn": 158, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 154], "unaffect": 60, "unansw": 117, "unattend": 122, "unauthent": [43, 77], "unauthor": [28, 93, 173], "unavail": [3, 40, 51, 60, 80, 97, 131, 151, 157], "unavoid": 40, "unban": 127, "unchang": 165, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 60, 130, 134], "uncompress": 165, "uncondition": 69, "unconfigur": 48, "undefin": [2, 60], "under": [1, 2, 5, 6, 7, 10, 15, 16, 18, 22, 40, 47, 50, 54, 57, 58, 59, 60, 63, 67, 69, 77, 80, 81, 89, 94, 96, 107, 108, 110, 111, 124, 129, 130, 131, 133, 134, 137, 138, 139, 149, 154, 161, 173, 181, 187], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 131, 133, 134, 154], "underscor": [31, 48, 85, 154], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 136, 139], "undertak": 6, "underutil": 134, "undesir": 60, "undetect": 139, "undo": 85, "unencrypt": [22, 28, 63, 85, 88], "unencrypted_s": 139, "unevenli": [7, 10], "unexpect": [59, 60, 139, 173, 187], "unexpectedli": [60, 92], "unexplain": 134, "unfavor": 181, "unforeseen": 144, "unfortun": 57, "unfound": 112, "unhandl": 151, "unicod": [40, 60, 152], "unicodepwd": 81, "unifi": [1, 60, 172], "unified_search": 88, "uninstal": [3, 4, 88, 92, 128, 132, 158, 163], "uniqu": [48, 59, 60, 61, 64, 81, 85, 96, 97, 98, 99, 111, 127, 139, 157, 158, 188], "uniquememb": [81, 82], "unison": 94, "unit": [15, 57, 117, 157, 165, 188], "univent": 134, "univers": 77, "unix": [14, 45, 56, 60, 81, 88, 102, 103, 129, 133, 135, 154, 188], "unix_domain_socket": 97, "unixpath": 97, "unixsocketperm": 59, "unknown": [75, 76, 88, 112, 154, 157, 161], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 97, 108, 112, 117, 131, 134, 139, 151, 154, 165], "unlik": [59, 69, 94, 154], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 127], "unnecessarili": 57, "unoffici": 146, "unpack": [122, 126, 134, 143, 157], "unpredict": [12, 28], "unprotect": 161, "unreach": 81, "unread": 165, "unrecover": 28, "unregist": [8, 88, 101], "unreli": [40, 60, 94, 117], "unrequir": 138, "unscan": [38, 60, 88, 154, 157], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81, 165], "unshar": [88, 119, 154], "unsign": 154, "unspecifi": 60, "unstabl": 150, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 130, 149, 173, 175], "unsur": [3, 26, 130], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 94, 97, 99, 107, 112, 126, 127, 129, 133, 147, 149, 152, 153, 154, 156, 157, 165, 181, 184, 187], "untouch": 150, "untrust": [88, 127], "unus": [60, 73, 100, 182], "unusu": [1, 133], "unwant": [119, 133, 139], "unzip": [124, 126, 143, 165], "up": [0, 1, 2, 3, 5, 14, 15, 16, 19, 20, 22, 24, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 94, 96, 97, 100, 109, 112, 113, 116, 119, 123, 127, 128, 129, 133, 135, 136, 139, 143, 144, 147, 148, 154, 155, 156, 157, 158, 161, 165, 168, 178, 179, 181, 183, 185, 187], "upcom": [12, 61, 113, 187], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 81, 82, 88, 97, 101, 112, 113, 114, 115, 117, 120, 124, 126, 127, 128, 130, 131, 134, 135, 138, 142, 143, 144, 145, 146, 147, 150, 152, 153, 154, 155, 158, 160, 161, 163, 168, 181, 183, 185, 186, 187, 188], "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "updatesinglemetadata": 157, "upfront": 153, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 125, 126, 127, 131, 133, 138, 139, 142, 145, 151, 152, 153, 167, 178], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 94, 103, 105, 106, 111, 117, 125, 131, 133, 138, 139, 144, 146, 154, 161, 165, 167, 181, 183, 184, 188], "upload_max_files": [26, 125, 134], "upload_tmp_dir": [26, 131], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 108, 111, 127, 134, 139, 146], "upostgr": 22, "upper": 86, "upscal": [47, 48, 99], "upscaler_exampl": 99, "upstream": [59, 112, 130, 133, 135], "upward": 133, "urandom": [65, 88], "urg": [12, 145], "urgent": [2, 61, 152], "uri": [60, 69, 81, 93, 117, 119, 130, 139, 152, 157, 165, 188], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 93, 96, 97, 98, 99, 102, 109, 111, 113, 124, 125, 126, 127, 128, 129, 130, 133, 137, 139, 142, 144, 152, 157, 160, 161, 165, 167, 171, 173, 181, 185, 189], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 154, 188], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 61, 64, 65, 66, 68, 69, 71, 72, 74, 76, 77, 78, 79, 80, 82, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 103, 106, 107, 109, 111, 112, 113, 114, 118, 119, 120, 121, 122, 124, 125, 126, 128, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 158, 161, 162, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 179, 182, 183, 184, 185, 187, 188, 189], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 108, 111, 127, 131, 133, 147, 151, 155, 157, 158, 173, 187], "use_legacy_base64_encod": 88, "use_path_styl": 48, "use_ssl": [48, 60], "use_unauthorized_storag": 165, "usememberoftodetectmembership": 82, "usemultipartcopi": 48, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 20, 24, 26, 27, 31, 32, 33, 34, 36, 38, 39, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 75, 78, 80, 82, 91, 92, 93, 94, 97, 98, 99, 103, 104, 106, 107, 108, 109, 111, 112, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126, 127, 130, 131, 132, 134, 135, 136, 138, 141, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 160, 161, 163, 164, 165, 166, 169, 173, 174, 180, 181, 187, 188, 189], "user1": 43, "user123": 119, "user2": 43, "user_agent_client_desktop": 93, "user_directori": 158, "user_id": [112, 154, 158], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 155], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 104, "userag": 67, "useragentstr": 93, "userdeletedev": 151, "userdirectori": 40, "userdisplaynam": 161, "userid": [2, 14, 18, 28, 76, 81, 92, 112, 115, 119, 139, 161, 188, 189], "useridfilt": [14, 157], "usermod": [59, 134], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 94, 107, 111, 112, 114, 121, 124, 126, 129, 134, 139, 141, 146, 147, 151, 154, 158, 165], "userpassword": [81, 158], "usr": [56, 57, 59, 60, 63, 97, 125, 134, 151, 168], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 96, 122, 127, 131, 134, 136, 137, 138, 139, 143, 149, 181, 187, 188], "utc": [57, 60, 67, 118, 154, 157], "utf": 71, "utf8": [22, 60, 125, 135, 147], "utf8mb4": [20, 22, 23, 25, 88, 126, 141, 147, 152], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 126, 147], "util": [6, 8, 54, 60, 67, 93, 119, 124, 151, 187], "uuid": [81, 82, 155], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 97, 101, 130, 131, 133, 151, 154, 157, 164, 165, 166, 188], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 97, 119, 130, 133, 148], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 130, 189], "v27": [143, 149], "v28": [15, 143, 149], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 102], "v6": [60, 102], "v9": [28, 59], "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 94, 109, 121, 127, 129, 130, 131, 138, 144, 152, 154, 155, 157, 165, 167, 181, 189], "valkei": [45, 60, 65, 88], "valu": [1, 3, 8, 14, 15, 16, 20, 22, 23, 25, 26, 27, 28, 29, 41, 43, 44, 45, 47, 48, 49, 53, 56, 57, 59, 61, 63, 66, 67, 68, 69, 71, 72, 73, 75, 76, 81, 82, 83, 85, 88, 92, 93, 96, 97, 98, 99, 104, 108, 113, 114, 117, 118, 119, 121, 126, 127, 129, 130, 133, 134, 136, 139, 144, 152, 154, 155, 157, 161, 164, 165, 166, 181, 183, 184, 188], "value1": 60, "value2": 60, "vanish": 119, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 94, 97, 98, 108, 113, 122, 124, 125, 126, 127, 130, 131, 132, 133, 134, 136, 139, 143, 148, 149, 150, 151, 154, 157, 158, 165], "vari": [3, 4, 59, 77, 131, 134], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 94, 99, 101, 127, 133, 135, 144, 158, 161, 163, 185, 188, 189], "variable_nam": [22, 23], "variant": [56, 165], "varieti": [1, 71, 189], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 94, 133, 139, 151, 160, 171, 174], "vboxsf": 134, "vcard": [111, 114, 115, 130], "vcf": [112, 114], "ve": [119, 133, 134, 178, 187], "vector": [3, 29, 51, 127, 184], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 187, "vendor": 133, "verbatim": [121, 144], "verbos": [56, 67, 94, 133, 151, 154, 157], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 94, 127, 139, 155, 189], "verif": [58, 63, 65, 88, 119, 127, 138, 161, 165], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 94, 96, 100, 117, 121, 122, 124, 126, 127, 131, 132, 133, 134, 137, 138, 143, 144, 145, 148, 153, 156, 157, 161, 163, 173, 181, 187], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "verify_peer_off": 161, "versatil": 120, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 16, 17, 22, 23, 24, 26, 28, 29, 30, 32, 33, 46, 48, 49, 52, 56, 57, 59, 63, 65, 67, 72, 73, 75, 76, 77, 81, 82, 85, 88, 93, 96, 99, 111, 113, 114, 117, 118, 119, 121, 122, 124, 125, 126, 127, 130, 131, 133, 134, 137, 138, 143, 144, 145, 146, 148, 149, 150, 151, 152, 157, 161, 164, 165, 166, 167, 171, 176, 184, 185, 186, 188], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 108, 154], "versionstr": [151, 157], "vevent": 188, "vhd": 134, "vhdx": 134, "vhost": 139, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 27, 40, 43, 44, 46, 48, 49, 53, 56, 57, 58, 59, 60, 63, 65, 67, 68, 74, 77, 80, 83, 84, 85, 86, 87, 88, 92, 94, 95, 97, 102, 107, 108, 109, 111, 112, 113, 115, 117, 119, 127, 128, 129, 130, 131, 133, 136, 137, 139, 142, 144, 149, 152, 154, 156, 158, 160, 161, 162, 163, 168, 175, 181, 182, 183, 184, 187, 188, 189], "video": [1, 2, 15, 47, 60, 88, 120, 131, 135, 157, 175, 176], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 94, 112, 122, 139, 155, 157, 161], "viewer": [18, 60, 67, 161, 189], "virtual": [2, 48, 60, 88, 92, 93, 97, 127, 128, 133, 136, 144, 165], "virtualbox": 134, "virtualhost": [93, 124, 125, 127, 134, 167], "viru": [56, 94], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 100, 111, 115, 118, 139, 147, 161, 181, 182, 183, 184, 187, 188], "visible\u00b9": 158, "vision": [1, 5], "visit": [57, 102, 117, 124, 134, 146, 148, 149], "visitor": [77, 127], "visual": 12, "vm": [133, 134, 149], "vmdk": 134, "vmp": 134, "vmware": 134, "vnd": 130, "vo": 125, "voic": 88, "volum": [56, 60, 99, 112, 135, 165], "volunt": 187, "vosk": 4, "vote": 2, "vp": [88, 128], "vpn": 97, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 96], "vsdx": 165, "vtodo": 188, "vtt": 130, "vulkan": 3, "vulner": [127, 187], "vv": [151, 154], "vvv": [119, 139, 151, 154], "w": [28, 93, 125, 127, 167, 172], "wa": [7, 8, 10, 12, 14, 15, 16, 18, 20, 22, 28, 40, 43, 50, 53, 57, 58, 59, 60, 67, 69, 74, 76, 81, 88, 96, 97, 106, 111, 114, 117, 118, 119, 121, 131, 134, 138, 139, 144, 145, 146, 147, 148, 149, 150, 153, 157, 158, 181, 182, 183, 184, 185, 188], "waf": 93, "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 94, 96, 97, 102, 109, 111, 113, 127, 130, 133, 134, 139, 143, 147, 149, 153, 165, 170, 182, 183, 184], "wait": [4, 8, 53, 60, 99, 133, 144, 149, 154, 156, 187, 189], "wait_timeout": [22, 60], "wal": 60, "walk": [124, 134], "walkthrough": 152, "want": [2, 5, 6, 7, 15, 16, 20, 22, 26, 31, 34, 40, 41, 43, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 62, 63, 66, 67, 69, 72, 81, 83, 84, 85, 91, 92, 94, 96, 97, 100, 104, 109, 112, 114, 117, 120, 121, 124, 125, 127, 129, 132, 134, 135, 136, 137, 138, 139, 148, 149, 150, 151, 153, 154, 157, 158, 167, 173, 174, 178, 184, 187, 188, 189], "wantedbi": [15, 57, 188], "warm": 133, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 94, 111, 124, 127, 129, 130, 133, 134, 138, 139, 145, 146, 151, 153, 154, 157, 165, 173, 183], "wasm": 130, "watch": [58, 157], "watermark": [88, 160], "watsonx": [1, 8, 12, 13, 15, 88], "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 20, 22, 25, 26, 38, 39, 44, 47, 57, 60, 63, 70, 81, 88, 94, 97, 119, 124, 125, 127, 129, 130, 131, 133, 134, 139, 145, 149, 151, 167, 173, 181, 183, 185, 187, 189], "weak": 129, "weaken": 64, "weather": [2, 14, 127], "web": [2, 5, 7, 9, 10, 11, 16, 24, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 94, 96, 97, 100, 109, 115, 117, 119, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 133, 140, 142, 143, 144, 149, 151, 153, 154, 156, 157, 158, 172], "webauthn": 88, "webcal": [60, 152], "webcalallowlocalaccess": 113, "webcron": [53, 88, 150, 157], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 94, 109, 112, 119, 127, 130, 134, 140, 157], "webdavf": 60, "webfing": [125, 139], "webhook": [88, 151, 189], "webhook_listen": [157, 188, 189], "webhookcal": 188, "webhooklisten": 188, "webinterfac": 130, "webm": 130, "webmail": 132, "webp": [60, 130, 133, 134, 182], "webp_qual": 133, "webpag": 130, "webroot": [8, 60, 69, 88, 128], "webserv": [26, 27, 57, 59, 60, 69, 88, 124, 127, 130, 134, 135, 170, 184], "websit": [14, 55, 64, 70, 76, 77, 81, 111, 127, 139], "websitescop": 77, "websocket": [96, 167], "webspac": 134, "wednesdai": 2, "week": [2, 44, 56, 187], "weekli": 53, "weight": [12, 15, 24, 60], "welcom": [12, 60, 88, 120], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 24, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 119, 124, 125, 130, 132, 133, 134, 136, 139, 143, 144, 146, 148, 173, 178, 187, 188, 189], "went": [143, 144], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 69, 113, 118, 131, 138, 139, 148, 149, 153, 154, 157, 181], "west": [31, 48], "wget": [124, 126, 137, 164, 166, 168, 181], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 94, 96, 97, 109, 111, 112, 127, 133, 139, 142, 154, 157, 189], "whatev": [20, 43, 60, 130, 148], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 29, 32, 33, 35, 38, 40, 41, 43, 44, 45, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 66, 67, 69, 70, 71, 72, 80, 81, 82, 84, 85, 88, 92, 93, 95, 96, 97, 102, 103, 106, 107, 108, 109, 111, 113, 114, 115, 117, 119, 121, 122, 124, 126, 127, 129, 131, 132, 133, 134, 136, 137, 138, 139, 141, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 160, 161, 165, 167, 173, 175, 181, 184, 187, 188, 189], "when_requir": [60, 184], "when_support": 60, "whenev": [40, 43, 44, 93, 133, 139, 187, 188], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 24, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 94, 96, 97, 112, 113, 115, 117, 122, 124, 126, 127, 134, 136, 137, 139, 143, 145, 148, 151, 152, 153, 154, 156, 157, 161, 173, 174, 185, 187, 188, 189], "wherev": [91, 144], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 96, 102, 107, 115, 117, 127, 130, 133, 136, 150, 153, 154, 155, 157, 158, 187], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 24, 25, 26, 28, 29, 31, 32, 38, 40, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 73, 76, 80, 81, 82, 85, 92, 94, 96, 97, 98, 100, 102, 109, 111, 115, 117, 119, 124, 125, 127, 130, 131, 132, 133, 134, 135, 138, 139, 144, 145, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 164, 165, 168, 170, 174, 175, 183, 184, 185, 187, 188, 189], "whichev": [60, 69, 154], "while": [1, 4, 5, 11, 15, 19, 24, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 69, 77, 81, 102, 119, 127, 133, 134, 144, 146, 148, 149, 150, 151, 152, 156, 187, 188], "whisper": [13, 15, 88, 176], "whiteboard": 15, "whitelist": [58, 92, 129], "whitespac": [92, 155], "who": [2, 3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 69, 77, 81, 85, 111, 114, 115, 122, 127, 139, 152, 157, 158, 161, 188], "whole": [39, 88, 96, 97, 113, 119, 124, 128, 147, 165], "whom": [12, 111], "whose": [44, 53, 67, 154, 188], "why": [38, 64, 88, 112, 119, 154], "wide": [28, 60, 80, 111, 127, 133, 157, 162], "widenetworkaddress": 97, "wider": 96, "widespread": 187, "widget": [61, 174, 175], "width": 60, "wiki": [60, 134, 146], "wikipedia": 60, "wildcard": [60, 129, 155], "win": [56, 165], "windmil": 88, "window": [15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 94, 108, 120, 128, 135, 183, 188], "wipe": 73, "wise": 119, "wish": [22, 28, 37, 54, 59, 60, 85, 94, 113, 129], "within": [12, 22, 24, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 94, 98, 112, 113, 114, 115, 120, 127, 130, 131, 133, 135, 136, 138, 139, 143, 151, 152, 154, 158, 161, 187], "without": [6, 15, 27, 28, 29, 38, 40, 43, 44, 49, 53, 54, 56, 57, 58, 60, 67, 68, 69, 70, 71, 73, 81, 85, 88, 92, 95, 96, 97, 98, 103, 107, 108, 109, 112, 113, 114, 117, 121, 122, 127, 129, 131, 133, 134, 139, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 165, 166, 170, 175, 179, 181, 182, 188], "wizard": [22, 41, 60, 63, 82, 88, 122, 124, 125, 128], "wjalrxutnfemi": 154, "woff2": 130, "won": [15, 43, 60, 81, 113, 145], "wopi": [88, 163, 164, 166, 167, 168, 173], "wopi_en": 165, "wopi_priv": 165, "wopi_publ": 165, "word": [7, 51, 77, 92, 131], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 24, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 94, 96, 99, 102, 103, 113, 120, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 143, 145, 146, 149, 150, 151, 152, 155, 157, 158, 165, 170, 173, 174, 179, 188], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 133, 165, 188, 189], "worker_connect": 165, "workflow": [65, 88, 92, 103, 151, 158, 188], "workflowengin": [67, 104, 157], "workload": [45, 96], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 97, 187], "worm": 56, "worri": 3, "wors": [60, 133], "worst": [15, 94], "worthi": 58, "would": [5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 96, 97, 100, 113, 114, 119, 130, 139, 144, 147, 148, 150, 154, 165, 171, 181], "wrap": [153, 157], "wrapper": [63, 151], "writabl": [16, 34, 50, 60, 122, 134, 144, 148, 152, 153, 154], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 94, 113, 117, 120, 121, 122, 124, 128, 134, 138, 148, 150, 153, 154, 161, 165, 189], "writeabl": 127, "written": [3, 24, 29, 30, 60, 67, 92, 93, 96, 111, 114, 119, 121, 127, 129, 144, 152, 154, 165, 189], "wrong": [14, 28, 43, 60, 79, 81, 138, 139, 143, 145, 154, 165, 173], "wsdlcach": 130, "wss": [4, 167], "wurst": 119, "www": [1, 8, 15, 19, 20, 23, 26, 28, 34, 40, 51, 53, 55, 56, 57, 59, 60, 67, 68, 73, 78, 80, 81, 83, 87, 108, 109, 112, 113, 114, 119, 121, 122, 124, 125, 126, 127, 130, 131, 132, 134, 136, 137, 139, 141, 143, 145, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 165, 168, 170, 185, 188], "wwwhomepag": 81, "wwwrun": [57, 151], "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 53, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 97, 102, 124, 126, 127, 129, 130, 139, 145, 151, 184, 185, 187, 188], "x11": 67, "x64": 92, "x86": [4, 6, 11, 133], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 152, "xeon": [7, 10], "xeu": [15, 188], "xhtml": 130, "xjf": 143, "xjvf": 126, "xl": [15, 169], "xlii": 82, "xloc": 130, "xlsx": [162, 165, 169], "xml": [60, 88, 99, 119, 126, 130, 131, 133, 152, 160, 165, 168, 171, 188], "xmlreader": 131, "xmlwriter": 131, "xoauth2": [63, 88, 116], "xss": 184, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 124, 126, 127, 141, 143, 148, 149, 153, 154, 157, 164, 166, 185], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 104, 107, 113, 118, 139, 145, 150, 154, 158, 173], "year": [73, 135, 165, 187], "yellow": [15, 40, 41, 81, 88], "yet": [1, 4, 15, 24, 54, 60, 65, 68, 81, 88, 92, 138, 144, 153, 154, 156, 157, 176], "yield": 60, "yml": 161, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 79, 80, 81, 83, 84, 85, 86, 88, 91, 92, 94, 96, 97, 99, 100, 102, 103, 104, 106, 108, 109, 111, 112, 113, 114, 117, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 165, 167, 168, 173, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 24, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 77, 78, 79, 80, 81, 83, 84, 86, 88, 91, 92, 94, 95, 96, 97, 100, 102, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 122, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 165, 166, 167, 171, 173, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [119, 173], "yourself": [5, 56, 92, 127, 148], "yourserv": 94, "yourswifthost": 60, "youtub": [2, 120], "yum": [56, 124], "yyyi": [81, 152, 154], "yyyymmdd": 81, "z": [85, 92, 115, 124, 126, 127, 143, 149, 185], "z0": 81, "za": 81, "zammad": [175, 176], "zend": 59, "zero": [29, 158], "zip": [56, 85, 94, 102, 112, 124, 126, 131, 143, 148, 165], "zlib": 131, "zone": [97, 118, 124], "zsh": 151, "zshrc": 151, "\u00b2": 158, "\u00b9": 158}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Legal: Compliance with EU AI Act", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "Apps management API", "Collectives", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "External Storage", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Monitoring", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for groups", "Instruction set for users", "Profiles", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Desktop Clients", "Desktop Client Deployment and Setup", "Block desktop client access at the HTTP layer", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "Data retention", "Helpful apps", "GDPR compliance", "Personal data stored", "Responding to data subject requests", "Calendar / CalDAV", "Contacts / CardDAV", "Contacts Interaction", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Automated installation with autoconfig.php", "Install from the command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 24.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Apps, background jobs & config commands", "Using the occ command", "DAV & database commands", "Encryption commands", "Files commands", "LDAP commands", "OCM commands", "System & maintenance commands", "User & group commands", "Collabora Online", "Configuration", "Configuration", "Nextcloud Office", "Installation", "Installing on Debian 12", "Installing via Docker", "Installing on Ubuntu 24.04 LTS", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 35", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "0": 93, "04": [126, 166, 168], "1": [69, 164, 166], "10": 130, "11": 55, "12": [55, 164], "15": 112, "16": 112, "17": 112, "18": 112, "1st": [134, 146], "2": [11, 69, 93, 124, 133, 164, 166], "20": 112, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [126, 166, 168], "26": 179, "27": 180, "28": 181, "3": [97, 130, 164, 166], "30": 182, "31": 183, "32": 184, "33": 185, "34": 93, "35": 186, "3rdparti": 139, "4": [23, 93, 164, 166], "5": [164, 166], "502": 130, "512mb": 26, "6": [164, 166], "64bit": 19, "7": 164, "8": [124, 125], "No": 92, "Not": [28, 138], "The": [58, 68, 70, 82, 115, 176], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 152, "abus": 117, "access": [3, 22, 68, 69, 70, 93, 102, 112, 127, 130, 132, 160], "accessible_featur": 60, "account": [92, 109, 111, 117, 119, 127, 158], "account_manag": 60, "act": 12, "action": [6, 103, 127], "activ": [53, 58, 60, 81, 108, 111, 156, 182, 183, 184], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 117, "add": [68, 76, 138, 152, 157, 158, 168], "addendum": 5, "addit": [12, 59, 67, 81, 98, 134, 160], "address": [58, 63, 85, 114, 115, 127, 180, 184], "addressbook": [152, 154], "addus": 158, "adjust": 26, "admin": [53, 67, 70, 78, 127, 157], "admin_audit": 67, "administr": [54, 81, 85, 114], "advanc": [43, 67, 81, 92, 95, 99, 161], "advantag": 135, "after": [53, 92, 139, 147], "ag": [44, 106], "agent": [1, 2, 15, 185], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [97, 98], "ajax": 57, "alarm": 113, "alert": 117, "alias": 51, "all": [28, 60, 63, 97, 127, 153], "allow": [18, 40, 70, 113, 132], "allow_custom_share_fold": 60, "allow_disabled_password_enforcement_group": 60, "allow_local_remote_serv": 60, "allow_user_to_change_display_nam": 60, "allowed_admin_rang": 60, "allowed_no_password_confirmation_rang": 60, "allowed_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 150], "android": 55, "ani": 130, "anoth": 43, "answer": [164, 166], "anti": 117, "antiviru": [56, 157], "anymor": 138, "apach": [26, 93, 124, 134, 167], "apache2": 69, "apcu": 59, "api": [16, 17, 82, 87], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 28, 53, 56, 58, 60, 61, 63, 67, 71, 73, 88, 96, 109, 133, 135, 137, 138, 139, 150, 154, 160, 161, 167, 182, 183, 188], "app_api": [182, 183, 184], "appapi": [96, 182, 183, 184], "appcodecheck": 60, "appear": [72, 175], "appli": 137, "applic": [68, 131, 154], "approach": [92, 149], "approv": 189, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [24, 40, 53, 70, 115], "architectur": 135, "archiv": 94, "argument": [98, 99], "around": 22, "arrai": 150, "articl": 112, "artifici": [2, 13], "ask": [15, 173], "assetlink": 55, "assign": [103, 158], "assist": 1, "associ": 127, "attach": 117, "attempt": [60, 157], "attribut": 81, "audienc": 120, "audit": [67, 111], "auth": [60, 158], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 117, 127, 158, 165, 189], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 151, "autoconfig": [119, 121, 129], "autom": [73, 103, 121, 182], "automat": [92, 129], "avail": [40, 102, 103], "avatar": [81, 158], "avoid": 130, "awai": 22, "azur": [48, 117], "backend": [15, 28, 40, 60, 113, 154], "background": [44, 49, 56, 57, 81, 113, 117, 133, 134, 150, 157], "background_jobs_expiration_dai": 60, "backtrac": 60, "backup": [28, 48, 81, 108, 141, 147], "bad": [28, 130], "balanc": 58, "bare": 97, "base": [32, 59, 67, 133, 148], "basic": [67, 94], "batch": 148, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 187, "better": 53, "between": [43, 189], "beyond": 63, "big": 26, "bigint": [19, 152], "bin": [49, 60, 108, 113, 154], "binary_search_path": 60, "birthdai": [113, 152], "blob": 48, "block": [29, 93, 102, 189], "book": [114, 115, 180, 184], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 157, "browser": 135, "brute": 58, "bruteforc": [60, 157], "bucket": 48, "bug": [139, 187], "build": 189, "built": 148, "bulkupload": 60, "button": 113, "byte": 23, "c": 48, "cach": [45, 59, 60, 70, 81, 131, 133, 152, 158], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": [69, 93], "caldav": [70, 113, 152], "calendar": [2, 113, 119, 139, 152, 188], "call": 111, "can": [22, 63, 77, 176, 189], "candid": 187, "cannot": 28, "canon": 160, "capabl": 63, "carddav": [70, 114], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 124, "certif": [40, 63, 81, 89, 157], "chang": [40, 41, 62, 85, 92, 139, 152, 153, 178, 185], "changelog": 178, "channel": [60, 187], "charset": 152, "chat": [1, 3, 5, 8, 15, 111], "check": [29, 30, 40, 70, 100, 154, 155, 157, 181, 184], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 129, "choos": [92, 93], "chroot": 125, "chunk": [26, 183], "chunked_upload": 60, "cif": [38, 132], "cipher": 60, "circl": 2, "citrix": 94, "clamav": 56, "clean": [73, 152, 153, 182], "cleanup": [83, 154, 157, 158], "clear": [152, 158], "cli": [60, 72, 98, 131], "client": [40, 72, 91, 92, 93, 94, 135, 147], "close": 94, "cloud": [26, 60, 139], "clue": 130, "cluster": [59, 60], "code": [60, 138, 157], "collabor": 106, "collabora": [159, 160, 167, 171], "collat": 60, "collect": [18, 88], "column": 152, "com": 119, "combin": 2, "command": [3, 22, 28, 50, 58, 94, 114, 122, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 185], "comment": [60, 133], "commit": [22, 70], "common": [92, 102, 106, 139, 161], "commun": 97, "comparison": 28, "compat": [50, 154], "complet": [121, 129], "complianc": [12, 110], "compon": [120, 164], "compound": 67, "compress": 133, "condit": [60, 67, 69], "config": [59, 63, 77, 94, 127, 150, 154, 155, 157, 161], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 16, 18, 21, 22, 24, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 97, 104, 117, 127, 128, 130, 131, 132, 133, 134, 150, 160, 161, 167, 168, 171, 179, 180, 181, 182, 183, 184], "confirm": 56, "connect": [24, 59, 81, 84, 94, 119, 121, 122, 127, 189], "connectivity_check_domain": 60, "connector": [131, 161], "consequ": [50, 127], "consider": [32, 68], "consumpt": 89, "contact": [2, 114, 115, 119, 139, 152], "contain": [97, 100], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "contrib": 164, "control": [3, 44, 102, 153], "convers": [20, 42, 152], "convert": [20, 152], "cookbook": 2, "cooki": [70, 107], "cookie_domain": 60, "copi": 154, "copied_sample_config": 60, "core": [60, 94, 120, 154], "count": [182, 183, 184], "cpu": 135, "creat": [22, 41, 43, 55, 75, 82, 85, 94, 152, 154, 155, 164, 166, 189], "creation": [44, 129, 152], "critic": 178, "cron": [57, 125, 133, 157], "csrf": 60, "css": 130, "csync": 94, "current": 2, "custom": [2, 16, 72, 113, 148, 160, 161], "customclient_desktop": 60, "cybersecur": 12, "daemon": [96, 97, 98, 100], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 108, 109, 111, 112, 113, 114, 115, 119, 121, 127, 129, 139, 147, 152, 153, 154, 157, 158, 165], "databas": [20, 21, 22, 25, 53, 60, 70, 119, 121, 122, 124, 125, 129, 131, 132, 133, 135, 141, 147, 152, 164, 165, 166, 183], "datadirectori": [60, 139], "date": 43, "dav": [152, 179], "davstorag": 60, "db": [60, 152, 157], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debian": 164, "debug": [14, 60, 63, 67, 94, 127, 133, 139, 151], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 153], "dedic": [67, 127], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 97, 117, 153, 160, 182, 183, 185], "default_certificates_bundle_path": 60, "default_languag": 60, "default_local": 60, "default_phone_region": 60, "default_property_scop": 60, "default_timezon": 60, "defaultapp": 60, "defin": 69, "definit": 28, "delai": 38, "deleg": [54, 117, 157], "delet": [49, 60, 75, 76, 82, 83, 85, 115, 150, 152, 154, 155, 157, 158], "demand": 67, "demot": 76, "deni": 102, "depend": [18, 154], "deploi": [95, 96, 97, 98, 99, 100], "deploy": [59, 92, 97, 123, 127], "deployconfig": 98, "deriv": 29, "desktop": [40, 60, 91, 92, 93, 135], "detail": 29, "detect": [6, 40, 56, 130], "determin": 63, "dev": [70, 127], "develop": 120, "diagnost": 60, "did": 138, "differ": [48, 63, 144], "directori": [16, 59, 81, 121, 127, 129, 132, 139], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 99, 117, 127, 139, 152, 153, 158], "disallow": 132, "discoveri": [69, 139], "disk": 6, "dispatch": 188, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 171], "dmz": 127, "do": [138, 148, 175], "docker": [96, 97, 165, 167, 171], "document": [15, 165], "documentation_url": 60, "doe": [70, 148, 175], "dokuwiki": 18, "domain": [62, 63, 69, 119, 127, 129, 130, 139], "don": 28, "down": [77, 138], "downgrad": 187, "download": [100, 148, 164, 165, 166], "drop": [43, 109, 135, 153], "due": 53, "dump": 94, "duplic": 81, "dure": [44, 149], "edit": [71, 75, 76, 120, 158, 160], "editor": 161, "email": [53, 63, 76, 85, 179], "embed": [60, 64], "empti": [70, 155], "enabl": [17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 99, 100, 127, 132, 133, 134, 151, 153, 157, 158, 160, 164, 184], "enable_lazy_object": 60, "enable_mail_link_password_expir": 60, "enable_non": 60, "enable_preview": 60, "enable_share_accept": 60, "enable_share_mail": 60, "enabledpreviewprovid": 60, "encod": [40, 71], "encrypt": [28, 29, 30, 48, 56, 60, 63, 121, 122, 133, 134, 139, 153], "end": [6, 187], "endpoint": 185, "energi": 89, "enforc": [80, 158], "enforce_them": 60, "ensur": 127, "entri": 67, "envelop": [29, 188], "environ": [60, 95, 134, 151, 165], "erasur": 112, "error": [22, 28, 94, 130, 138, 139], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [113, 119, 152, 188], "everi": 93, "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 98, 102, 103, 106, 113, 114, 121, 124, 125, 126, 133, 152, 167, 168, 189], "exapp": [96, 97, 99, 101], "exclud": [53, 58], "execut": [103, 157], "exist": [18, 77], "expand": 184, "expect": 152, "experi": 60, "expert": 81, "expir": [43, 53, 154], "explain": 67, "export": [113, 119, 152, 154, 157], "expos": 180, "extens": [59, 71, 89], "extern": [28, 32, 40, 48, 53, 64, 96, 102, 134, 154, 160], "external_storag": 60, "face": 6, "factor": [47, 80, 158], "fail": [119, 130], "fail2ban": [58, 127], "failur": [38, 92], "fair": 139, "faq": [77, 96, 138, 189], "faster": 133, "featur": [15, 92, 118], "feder": [26, 41, 60, 113, 139, 154], "field": [67, 76, 77], "file": [2, 3, 26, 27, 28, 29, 30, 38, 40, 42, 43, 44, 45, 46, 53, 56, 60, 67, 70, 71, 88, 94, 102, 103, 106, 108, 111, 130, 133, 135, 139, 154, 157, 158, 160, 165, 181, 182, 188], "filecach": 152, "filekei": 153, "filelock": 60, "filenam": [50, 154], "files_antiviru": 157, "files_extern": 154, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 127, 188], "final": 125, "find": [22, 63], "fingerprint": [60, 157], "fix": [138, 152, 153, 154], "flow": [104, 105], "folder": [28, 40, 53, 92, 102, 141, 147, 188], "follow": 117, "font": 160, "forbidden_filenam": 60, "forbidden_filename_basenam": 60, "forbidden_filename_charact": 60, "forbidden_filename_extens": 60, "forc": [58, 60, 66], "force_languag": 60, "force_local": 60, "force_share_accept": 60, "form": [2, 188], "format": [29, 30, 60, 153], "forwarded_for_head": 60, "found": 28, "fpm": [133, 134], "freebusi": 113, "frequenc": 40, "frequent": [15, 173], "from": [18, 48, 53, 58, 63, 76, 92, 122, 145, 171], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 94, "further": [28, 120, 131], "fusef": 132, "g": 60, "gatewai": 130, "gdpr": 110, "gener": [9, 15, 22, 29, 47, 127, 131, 139], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 119, 120, 150, 152, 154, 157], "getenv": 70, "give": 127, "global": [71, 77, 119], "gone": 22, "googl": 117, "gpg": 132, "grant": 85, "greater": 130, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 102, 155, 158, 160], "group_everyon": 18, "groupwar": [88, 111, 116], "grow": 53, "guest": 18, "guidanc": 127, "ha": 22, "handl": [55, 81], "handler": [59, 130], "haproxi": [69, 93], "harden": 127, "hardwar": 12, "harp": [96, 97], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 127], "heartbeat": 100, "held": 111, "help": 109, "hidden": 38, "hide": 113, "hide_login_form": 60, "hierarch": 150, "histori": 157, "home": 59, "host": [16, 97], "how": [22, 24, 40, 58, 63, 77, 115, 149, 175], "htaccess": [60, 134, 157], "http": [70, 93, 127, 130, 133, 134, 165], "http_client_add_user_agent_url": 60, "httpd": 125, "i": [15, 22, 28, 56, 63, 70, 127, 138, 182, 183, 189], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 119, 139, 157, 185], "ident": 84, "identifi": [19, 93, 94], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 100, 127, 165, 171], "imagick": 124, "imaginari": 182, "imap": [117, 119], "implement": [2, 12], "implic": 48, "import": [18, 92, 152, 154, 157, 168], "imprint": 109, "improv": [0, 1, 15], "inconvert": 20, "independ": 97, "index": 3, "indic": 152, "info": [17, 56, 154, 157, 158], "inform": 139, "ini": 131, "init": 100, "initi": [3, 18, 25, 89], "insecur": 94, "insert": 119, "insight": 14, "inspect": 152, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 96, 121, 122, 124, 125, 126, 127, 128, 129, 131, 134, 146, 157, 161, 163, 164, 165, 166, 167, 168, 170, 187, 188, 189], "instanc": [48, 127], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 138, 154, 184], "intellig": [2, 13], "interact": [67, 92, 115, 121], "interfac": [50, 67, 114, 117, 132], "intern": [81, 139], "interoper": 12, "interv": [81, 117], "introduct": [54, 58, 60, 120, 127, 188], "invalid": [28, 50, 63, 138, 152], "invis": 103, "invit": 113, "ip": [58, 127], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 94], "issu": [94, 119, 139, 140], "item": [49, 60, 114], "j": [130, 157], "jail": 127, "javascript": 130, "jit": 133, "job": [44, 49, 57, 113, 125, 133, 134, 150, 157], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 133, 152, 153, 156, 158, 168], "keyboard": 94, "keyvaluecach": [45, 59], "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 94, 113, 175, 176], "kubernet": [3, 97], "kvstore": 60, "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 158, "launch": 92, "layer": 93, "ldap": [28, 60, 81, 82, 83, 132, 155], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 153], "legal": 12, "length": [127, 187], "level": [22, 67, 70, 133], "libreoffic": 181, "life": 187, "lifetim": 108, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 113, 114, 117, 127, 151, 165], "line": [94, 114, 122, 148, 157], "link": [41, 43, 55, 60, 64, 69, 175], "linux": 134, "list": [14, 17, 76, 81, 98, 99, 152, 153, 154, 156, 157, 158, 188], "listen": [63, 157, 188], "live": [4, 15], "live_transcript": 4, "llm": 117, "llm2": 5, "load": [3, 58, 60, 81, 133], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 97, 113, 117], "localstorag": 60, "locat": [29, 59, 60, 67, 129, 153], "lock": [45, 60, 70, 77, 133, 138], "log": [3, 4, 60, 67, 81, 94, 97, 100, 108, 111, 119, 130, 133, 139, 157, 165], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 139], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 127, 130, 134, 146], "login_flow_v2": 60, "login_form_autocomplet": 60, "login_form_timeout": 60, "loglevel": 60, "loglevel_dirty_database_queri": 60, "loglevel_frontend": 60, "logo_url": 60, "logtimezon": 60, "long": [135, 149], "look": 63, "lookup_serv": 60, "loop": 130, "lost": 78, "lost_password_link": 60, "lt": [126, 166], "machin": [1, 11, 15, 134], "maco": 94, "made": 40, "mai": 184, "mail": [2, 60, 63, 117, 119], "mail_domain": 60, "mail_from_address": 60, "mail_link_password_expiration_interv": 60, "mail_send_plaintext_onli": 60, "mail_sendmailmod": 60, "mail_smtpauth": 60, "mail_smtpdebug": 60, "mail_smtphost": 60, "mail_smtpmod": 60, "mail_smtpnam": 60, "mail_smtppassword": 60, "mail_smtpport": 60, "mail_smtpsecur": 60, "mail_smtpstreamopt": 60, "mail_smtptimeout": 60, "mail_template_class": 60, "mailbox": 117, "mainten": [60, 88, 122, 141, 142, 149, 151, 152, 153, 157, 187], "maintenance_window_start": [57, 60], "major": 187, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 60, 74, 85, 98, 99, 101, 131, 133, 134, 152, 157, 174], "managerfactori": 60, "mandatori": 138, "manual": [8, 56, 119, 134, 143, 149], "map": [51, 81], "mariadb": [22, 121, 135, 141, 147], "mark": [56, 157], "master": [29, 153], "match": 67, "matrix": 77, "max": [43, 60], "max_file_conversion_files": 60, "max_filesize_animated_gifs_public_shar": 60, "max_parallel_count": 60, "max_siz": 60, "maxautocompleteresult": 60, "maximum": [47, 60, 134, 183], "mcp": 2, "me": [107, 108], "mechan": 32, "media": [131, 134], "member": 75, "memberof": 81, "memcach": [59, 60, 132], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 135], "merg": 60, "messag": [94, 130, 138, 139], "metadata": 111, "metadata_max_files": 60, "metal": 97, "method": 28, "metric": 165, "mib": 130, "microsoft": [48, 81, 117], "migrat": [25, 30, 117, 144, 145, 149, 153, 171], "mimetyp": [51, 157], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [102, 106], "miss": [40, 53, 119, 152], "mkdir": 154, "mobil": 135, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 127, 133, 141, 148, 149, 151, 157], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [45, 124, 127, 131, 139, 153], "monitor": [52, 181, 182, 183, 184], "mount": [40, 95, 154], "mountpoint": 28, "move": [139, 152, 154], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multimod": [1, 5], "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 119, 121, 135, 141, 147, 152], "name": [40, 70, 139], "nc": 97, "need": 184, "nest": 81, "network": [113, 132], "new": [18, 41, 76, 77, 85, 160], "next": 126, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 45, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 94, 97, 98, 107, 120, 124, 125, 127, 130, 137, 138, 139, 143, 160, 162, 167, 179, 180, 181, 182, 183, 184, 185, 186, 188, 189], "nf": 132, "nginx": [26, 69, 93, 130, 165], "no_unsupported_browser_warn": 60, "node": 188, "non": [92, 121, 139], "nor": 130, "note": [59, 81, 88, 125, 131, 137, 177, 178], "notif": [16, 38, 43, 53, 113, 149, 154], "notifi": 154, "now": [182, 183], "nss": 70, "o": 135, "oauth": 117, "oauth2": [68, 157], "object": [6, 26, 36, 48, 60, 154, 188], "objectstor": 60, "obtain": [94, 137], "occ": [3, 16, 28, 50, 58, 81, 98, 151, 161], "ocm": 156, "off": 81, "offic": [88, 118, 152, 160, 162, 169, 181], "old": [30, 135], "older": 93, "olmo": 5, "one": [63, 97], "onli": [63, 70], "onlin": [159, 160, 167, 171], "ooxml": 160, "opcach": 133, "open": [5, 138], "openai": 0, "openbsd": 125, "openid": 84, "openmetr": [52, 185], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [127, 154, 157], "option": [3, 28, 40, 60, 67, 81, 92, 95, 98, 99, 122, 124, 154, 160, 165], "optout": 60, "organ": 59, "orphan": [153, 154], "other": [15, 60, 94, 119, 134, 139], "out": [22, 63, 118, 152], "outbound": 165, "outdat": 70, "outgo": 185, "outlook": 119, "output": [17, 75, 76, 82], "outsid": [40, 127], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 134, 143, 149, 187, 188], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 145, "owner": [154, 157], "ownership": 154, "packag": [134, 146, 164, 166, 168, 171], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 121, 133], "part_file_in_storag": 60, "parti": 111, "pass": [70, 189], "password": [32, 73, 78, 79, 85, 86, 127, 182], "passwordsalt": 60, "patch": 137, "path": [40, 60, 70, 139], "payload": 188, "pdf": 182, "per": [48, 81, 119], "perform": [0, 48, 133], "permiss": [40, 81], "persist": [43, 165], "person": 111, "pgsql_ssl": 60, "photo": [6, 152], "php": [26, 45, 59, 63, 70, 77, 117, 121, 124, 125, 127, 130, 131, 133, 134, 135, 139, 161, 183], "phpredi": [45, 59], "physic": 12, "picker": 176, "pickup": [1, 15], "place": 127, "podman": 97, "point": 28, "polici": [86, 93, 139], "pomerium": 69, "port": 63, "portabl": 112, "post": 165, "postgresql": [22, 121, 141, 147], "pre": [68, 164, 166], "preced": 77, "preconfigur": 92, "prefer": 117, "prefix": [59, 70], "prepar": 131, "prerequisit": [127, 134, 149, 164, 165, 166], "pretti": 134, "prevent": [64, 102], "preview": [47, 60, 127, 133, 154, 160, 175, 181, 182, 183, 184, 185], "preview_concurrency_al": 60, "preview_concurrency_new": 60, "preview_expiration_dai": 60, "preview_ffmpeg_path": 60, "preview_ffprobe_path": 60, "preview_imaginary_kei": 60, "preview_imaginary_url": 60, "preview_libreoffice_path": 60, "preview_max_filesize_imag": 60, "preview_max_i": 60, "preview_max_memori": 60, "preview_max_x": 60, "previou": 143, "primari": [48, 152], "privaci": 114, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [94, 119, 139], "process": [1, 15, 112, 117, 133, 134, 157], "profil": [60, 77, 81, 111, 158], "project": 60, "promot": 76, "prompt": 15, "proper": 127, "properli": [70, 130], "properti": [77, 114], "protect": [58, 60, 184], "protocol": 63, "provid": [15, 27, 63, 80, 84, 175, 176], "provis": [87, 92], "proxi": [58, 60, 69, 96, 97, 130, 167, 171, 172], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 106, 113], "pull": 100, "put": 154, "qmail": 63, "qualiti": 47, "queri": 24, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 173], "queue": 56, "quick": [129, 131, 165], "quickstart": 146, "quota": [85, 139], "quota_include_external_storag": 60, "rabbitmq": 165, "rainloop": 132, "rang": 127, "rate": [6, 8, 11, 15, 60, 113, 114], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 127], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 115, "recogn": 6, "recognit": 6, "recommend": [59, 92, 123, 131], "recov": 153, "recoveri": [28, 29, 48, 147], "rectif": 112, "redi": [45, 59, 60, 124, 125, 133, 165], "redirect": 127, "redis_log_fil": 60, "reduc": 133, "reduce_to_languag": 60, "refer": [53, 77, 131, 151, 174], "reference_opengraph": 60, "refresh": [113, 154], "regist": [98, 99, 100, 188], "regular": 44, "reject": 63, "relat": [1, 127], "releas": [60, 88, 93, 143, 177, 178, 187], "reliabl": [12, 40], "rememb": [107, 108], "remember_login_cookie_lifetim": 60, "remind": [113, 117, 152, 154], "remirepo": 124, "remnant": 155, "remot": [97, 127, 132, 154], "remov": [76, 80, 152, 157], "removeus": 158, "renam": [40, 85], "repair": [153, 154, 157], "replac": 133, "replic": [24, 60], "report": [158, 187], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 168], "request": [60, 93, 109, 112, 165, 185], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 124, 131, 135, 164, 166, 179, 180, 181, 182, 183, 184, 185, 186], "rescan": 138, "resend": 76, "reset": [78, 79, 85, 157], "resetpassword": 158, "resolv": 70, "resourc": [113, 120, 131], "respond": 112, "respons": 70, "restor": [147, 154], "restrict": [103, 112, 127, 160], "retent": [106, 108, 113, 114, 115, 152, 179], "retir": 156, "retriev": 51, "return": [70, 157], "revalid": 133, "revers": [58, 69, 97, 167, 171, 172], "revert": 137, "rewritebas": 60, "rich": 71, "right": [92, 112], "robust": 12, "room": 113, "root": [127, 153], "rotat": [60, 97, 156], "rout": 24, "rule": [3, 77, 93, 102, 103], "run": [5, 20, 70, 149, 151, 157], "runtim": 18, "s3": [31, 48, 184], "same": 97, "sampl": 60, "sanit": [50, 154], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 153, 154, 157], "scanner": 56, "schedul": [53, 117, 187], "schema": 152, "scope": [24, 77, 114], "screen": [15, 188], "script": [134, 189], "seal": 29, "search": [2, 15, 75, 76, 155], "secret": [60, 67], "secur": [12, 60, 68, 70, 97, 127, 157, 160, 161], "see": [28, 77], "seed": [164, 166], "selector": 150, "self": [16, 40, 63], "selinux": [124, 127, 132, 134], "send": [63, 117, 152], "sendmail": [63, 132], "sensit": 38, "sent": 53, "sentinel": 60, "serv": [127, 130], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 94, 108, 111, 113, 117, 127, 128, 132, 133, 134, 135, 137, 139, 144, 160, 161, 165, 167, 179, 180, 181, 182, 184], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 111, 139, 165, 188], "session": [15, 59, 60, 108, 111, 188], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 113, 124, 131, 133, 134, 150, 152, 153, 155, 157, 158, 160, 161, 189], "setup": [8, 59, 60, 92, 96, 121, 127, 157, 181, 184], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 69, 113, 114, 117, 119, 139, 152, 154, 157], "share_fold": 60, "ship": 139, "shortcut": 94, "show": [153, 155, 157], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [117, 119], "sign": [29, 40, 63, 138, 154, 168], "signatur": [28, 29, 148], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 150], "site": [64, 70], "size": [26, 47, 117, 133, 134, 139, 154, 165, 183], "skeletondirectori": 60, "skip": 68, "slot": 156, "slow": [15, 133], "small": 59, "smart": 176, "smb": [38, 132], "smtp": [63, 117, 119, 132], "snap": [134, 146], "snooz": 117, "snowflak": [157, 185], "socket": [59, 96, 97, 130], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 138], "space": [3, 6, 8, 11, 134, 157], "special": [32, 81], "specif": [63, 81, 102, 127, 131, 160], "speech": [1, 7, 10, 15], "speed": [1, 15, 188], "split": [25, 29], "sql": 22, "sqlite": [60, 121, 133, 141, 147], "sse": 48, "ssl": [22, 60, 81, 122, 127, 134], "stage": 156, "standalone_window": 60, "standard": 93, "start": [88, 100, 120, 129, 165], "starttl": 63, "stat": 157, "state": 158, "statu": [100, 153, 157], "step": [28, 125, 126, 143, 149, 164, 166, 189], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 102, 127, 153, 154, 157], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 107, 111, 154], "storecryptedpassword": 60, "strict": [70, 127], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 130, "subdirectori": 69, "subject": 112, "subscript": [113, 152], "summar": 8, "summari": [8, 92, 108, 117, 165], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 135, 187], "supporteddatabas": 60, "suppress": 130, "suspend": 189, "swift": 48, "switch": 11, "sync": [38, 81, 94, 113, 114, 117, 139, 152, 154, 158, 179], "synchron": [70, 119], "synchronis": 147, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 114, 127, 133, 134, 135, 152, 157, 158, 164, 166, 179, 180, 181, 182, 183, 184, 185, 186, 188], "systemd": [15, 57, 67, 188], "t": 28, "tab": 81, "tabl": [20, 88, 108, 131, 188], "tag": [103, 106, 158, 165, 188], "talk": [2, 4, 8, 111, 135], "target": [20, 120], "task": [1, 2, 14, 15, 56, 157], "taskprocess": [157, 185], "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63, 161], "templatedirectori": 60, "temporari": 67, "term": 135, "termin": 165, "test": [60, 63, 70, 81, 100, 155], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": [93, 130], "thei": 175, "theme": [60, 63, 72, 109, 157], "thi": 70, "third": 111, "though": 63, "thread": [117, 119], "threshold": 60, "through": [67, 130], "timeout": [16, 117, 119], "tip": [41, 81, 130, 134, 146], "tl": [59, 81, 117, 122, 133, 165], "tmux": [15, 188], "token": [68, 84, 108, 113, 114, 127, 158, 179], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "touch": 154, "track": 115, "traefik": 69, "traffic": 127, "transact": [22, 45, 70, 133], "transcript": [4, 15], "transfer": [43, 154], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 117], "translate2": 11, "transpar": 12, "transport": [70, 127], "trash": [49, 60, 108, 113, 154], "trashbin": 154, "trashbin_retention_oblig": 60, "tree": 154, "trick": [81, 130], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 94, 119, 132, 133, 137, 139, 140, 143, 148, 173], "truena": 134, "trust": [41, 69, 129, 130], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 133, "turn": 81, "two": [80, 158], "twofactorauth": 158, "type": [20, 29, 59, 60, 67, 113, 152, 157, 187], "ubuntu": [126, 166, 168], "umask": 60, "unabl": 119, "unencrypt": 127, "unified_search": 60, "uninstal": [136, 164, 165, 166], "unix": [59, 130], "unknown": 94, "unlink_on_trunc": 60, "unregist": [98, 99], "unscan": 56, "unseal": 29, "unshar": 152, "untrust": 130, "up": [70, 73, 117, 124, 134, 152, 182, 188, 189], "updat": [16, 25, 38, 60, 92, 99, 119, 132, 139, 148, 149, 157, 164, 165, 166, 167, 171, 184], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 135, 143, 146, 148, 149, 157, 171, 179, 180, 181, 182, 183, 184, 185, 186, 187], "upload": [26, 38, 102, 130, 134], "urandom": [70, 127], "url": [60, 69, 134, 148], "us": [2, 12, 15, 16, 22, 40, 43, 45, 50, 59, 60, 63, 67, 70, 81, 84, 117, 127, 130, 133, 139, 148, 151, 160, 176, 181], "usag": [3, 6, 8, 11, 40, 54, 58, 98, 160], "use_legacy_base64_encod": 60, "user": [18, 22, 28, 29, 40, 43, 53, 60, 74, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 102, 114, 115, 117, 129, 139, 153, 155, 158, 182, 183, 184, 185], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 96], "valid": 84, "valkei": 59, "valu": [60, 77, 150, 189], "variabl": [40, 60, 95, 134, 151, 165], "verif": [60, 81, 117, 148], "verifi": [77, 93, 154, 158, 164, 166], "version": [44, 60, 70, 108, 135, 139, 153, 154, 187], "versions_retention_oblig": 60, "via": [8, 28, 41, 69, 70, 72, 81, 132, 134, 146, 148, 165], "video": 6, "view": 160, "virtual": 134, "visibl": 77, "voic": 1, "vp": 134, "wa": 85, "warn": [68, 70], "watermark": 161, "watsonx": 0, "we": [135, 138], "web": [26, 50, 60, 63, 67, 70, 108, 111, 127, 132, 134, 135, 139, 148, 179, 180, 181, 182, 184], "webauthn": 60, "webcron": 57, "webdav": [39, 139], "webhook": [157, 188], "webroot": [130, 160], "webserv": 94, "welcom": [76, 158], "well": 70, "what": [5, 63, 77, 148], "when": [12, 77, 94, 130], "where": [175, 176], "whisper": 7, "who": 120, "whole": 132, "why": [15, 28, 40, 63, 135, 138], "windmil": [15, 189], "window": [50, 92, 134, 154], "without": 130, "wizard": [92, 129, 134], "wopi": [160, 165], "work": [22, 40, 56, 58, 175], "worker": [157, 185], "workflow": [15, 67, 157, 189], "workspac": [71, 94, 189], "write": 132, "xml": [17, 75, 76, 82], "xoauth2": 117, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 119, 127, 133]}})
\ No newline at end of file
diff --git a/server/latest/user_manual/de/desktop/autoupdate.html b/server/latest/user_manual/de/desktop/autoupdate.html
index 6225bcdc352..9aae51630d1 100644
--- a/server/latest/user_manual/de/desktop/autoupdate.html
+++ b/server/latest/user_manual/de/desktop/autoupdate.html
@@ -175,7 +175,7 @@ Automatische Updates in Windows-Umgebungen verhindernskipUpdateCheck=true
Windows-Administratoren haben mehr Möglichkeiten, automatische Updates in Windows-Umgebungen zu verhindern. Dazu stehen ihnen zwei Methoden zur Verfügung. Mit der ersten Methode können Benutzer den automatischen Update-Prüfmechanismus außer Kraft setzen, während die zweite Methode manuelle Außerkraftsetzungen verhindert.
+Personen mit Windows Administrationsrechten haben mehr Möglichkeiten, automatische Updates in Windows-Umgebungen zu verhindern. Dazu stehen zwei Methoden zur Verfügung: Mit der ersten Methode kann der automatische Update-Prüfmechanismus außer Kraft gesetzt werden, während die zweite Methode manuelle Außerkraftsetzungen verhindert.
So verhindern Sie automatische Updates, lassen aber manuelle Veränderungen zu:
Diesen Registry-Key bearbeiten:
diff --git a/server/latest/user_manual/de/desktop/conflicts.html b/server/latest/user_manual/de/desktop/conflicts.html index d8a826282d9..4ff7782dda3 100644 --- a/server/latest/user_manual/de/desktop/conflicts.html +++ b/server/latest/user_manual/de/desktop/conflicts.html @@ -148,7 +148,7 @@mydata.txt enthält „Remote-Inhalte“
mydata (Konfliktkopie 2018-04-10 093612).txt enthält „lokale Inhalte“
In dieser Situation enthält die Datei „mydata.txt“ die Remote-Änderungen (und wird weiterhin mit weiteren Remote-Änderungen aktualisiert, wenn diese auftreten), aber Ihre lokalen Anpassungen wurden nicht an den Server gesendet (es sei denn, der Server aktiviert das Hochladen bei Konflikten, siehe unten).
+In dieser Situation enthält die Datei „mydata.txt“ die Entfernte-Änderungen (und wird weiterhin mit weiteren Entfernte-Änderungen aktualisiert, wenn diese auftreten), aber Ihre lokalen Anpassungen wurden nicht an den Server gesendet (es sei denn, der Server aktiviert das Hochladen bei Konflikten, siehe unten).
Der Desktop-Client benachrichtigt Sie über diese Situation durch Systembenachrichtigungen, das Taskleistensymbol und ein gelbes „ungelöste Konflikte“-Symbol im Fenster mit den Kontoeinstellungen. Wenn Sie auf dieses Symbol klicken, wird eine Liste mit den ungelösten Konflikten angezeigt. Wenn Sie auf einen dieser Konflikte klicken, wird ein Explorer-Fenster geöffnet, das auf die entsprechende Datei verweist.
Um diesen Konflikt zu lösen, öffnen Sie beide Dateien, vergleichen Sie die Unterschiede und kopieren Sie gegebenenfalls Ihre lokalen Änderungen aus der Datei „konfliktbehaftete Kopie“ in die Basisdatei. In diesem Beispiel könnten Sie mydata.txt in „lokale und Remote-Inhalte“ ändern und die Datei mit „Konfliktkopie“ im Namen löschen. Damit ist der Konflikt gelöst.
Wir unterstützen Citrix nicht.
Wir werden unser bemühen, Citrix-Benutzer bezüglich des Desktop-Clients zu beraten.
Wir werden unser bemühen, Citrix-Benutzer bezüglich des Desktop-Clients zu beraten.
Wir werden Probleme beheben, die auch auf den standardmäßig unterstützten Systemen reproduzierbar sind.
Alles Weitere liegt außerhalb unseres Zuständigkeitsbereichs.
Egal, ob Sie die neuesten Funktionen haben möchten, beim Testen helfen wollen oder einfach nur warten möchten, bis alles perfekt ist - wir haben die richtigen Optionen für Sie.
+Egal ob Sie die neuesten Funktionen nutzen möchten, beim Testen helfen möchten oder einfach warten wollen, bis alles perfekt vorbereitet ist – wir haben die passenden Optionen für Sie.
Der Desktop-Client verfügt über 4 Update-Kanäle: Enterprise, Stabil, Beta und Täglich.