diff --git a/server/latest/Nextcloud_Developer_Manual.epub b/server/latest/Nextcloud_Developer_Manual.epub index b7d1400db89..9c1dbb887b1 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 651210d2c85..302426b18c6 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 1b2fda38f3d..3d4209bdbcd 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 beca7b991e2..ec2f3856bd7 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 23e8d23d769..85c69df67f3 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 54a1e11da99..443ee04875a 100644 --- a/server/latest/admin_manual/contents.html +++ b/server/latest/admin_manual/contents.html @@ -456,6 +456,8 @@

Table of contentsJavaScript (.js) or CSS (.css) files not served properly
  • Upload of files greater than 10 MiB fails
  • Login loop without any clue in access.log, error.log, nor nextcloud.log
  • +
  • Trusted proxy not detected when using a Unix domain socket
  • +
  • “Access through untrusted domain” error with HTTP/3
  • diff --git a/server/latest/admin_manual/installation/nginx.html b/server/latest/admin_manual/installation/nginx.html index 394701d61bf..533ede80c10 100644 --- a/server/latest/admin_manual/installation/nginx.html +++ b/server/latest/admin_manual/installation/nginx.html @@ -101,6 +101,8 @@
  • JavaScript (.js) or CSS (.css) files not served properly
  • Upload of files greater than 10 MiB fails
  • Login loop without any clue in access.log, error.log, nor nextcloud.log
  • +
  • Trusted proxy not detected when using a Unix domain socket
  • +
  • “Access through untrusted domain” error with HTTP/3
  • @@ -816,6 +818,42 @@

    Login loop without any clue in access.log, error.log, nor nextcloud.log +
    +

    Trusted proxy not detected when using a Unix domain socket

    +

    When an upstream proxy (another nginx instance, Caddy, HAProxy, etc.) passes +requests to Nextcloud’s nginx via a Unix domain socket, nginx sets +REMOTE_ADDR to the literal string unix: instead of an IP address. +Nextcloud cannot parse this as a trusted proxy, causing trusted proxy detection +to fail and resulting in errors such as:

    +
    Unsupported operand types: bool & string in IpAddress.php
    +
    +
    +

    To fix this, add the following directives to the nginx server block that +listens on the Unix socket:

    +
    set_real_ip_from  unix:;
    +real_ip_header    X-Forwarded-For;
    +
    +
    +

    This tells nginx to treat the Unix socket peer as a trusted source and extract +the real client IP from the X-Forwarded-For header passed by the upstream +proxy. You must also ensure the upstream proxy sets that header correctly, +for example with proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;.

    +
    +
    +

    “Access through untrusted domain” error with HTTP/3

    +

    When HTTP/3 (QUIC) is enabled in nginx, the HTTP_HOST FastCGI parameter +may not be forwarded correctly to PHP-FPM, causing Nextcloud to show the +“Access through untrusted domain” error page even though the domain is listed +in trusted_domains.

    +

    Add the following line to the fastcgi_param block in your nginx +configuration to explicitly pass the host:

    +
    fastcgi_param  HTTP_HOST  $host;
    +
    +
    +

    Place it alongside the other fastcgi_param directives (after +include fastcgi_params;). This overrides whatever value (or lack thereof) +nginx would otherwise derive from the HTTP/3 request headers.

    +
    diff --git a/server/latest/admin_manual/searchindex.js b/server/latest/admin_manual/searchindex.js index 6823a3f8f37..8e1599cd612 100644 --- a/server/latest/admin_manual/searchindex.js +++ b/server/latest/admin_manual/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {".htaccess": [[133, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[133, "st-login"], [145, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[110, "account-data"]], "Account delegation": [[116, "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": [[110, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[107, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[159, "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": [[133, "additional-apache-configurations"]], "Additional configuration options": [[157, "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": [[97, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[113, "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": [[155, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[113, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[94, null], [98, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[134, "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"]], "All parameters": [[120, "all-parameters"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[131, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[131, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[131, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[131, "allow-access-to-ldap-server"]], "Allow access to NFS": [[131, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[131, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[131, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[131, "allow-access-to-network-memcache"]], "Allow access to remote network": [[131, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[112, "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": [[116, "anti-abuse-alerts"]], "Antivirus": [[155, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [123, "apache"]], "Apache Web server configuration": [[133, "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": [[173, "appapi-app-api-is-now-a-default-app"], [174, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[175, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[95, null]], "Applying a patch": [[136, "applying-a-patch"]], "Approaching Upgrades": [[148, "approaching-upgrades"]], "Approval/Suspend steps": [[179, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[149, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[149, null]], "Arguments": [[97, "arguments"], [98, "arguments"], [98, "id1"], [98, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[102, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[156, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[116, "attachment-size-limit"]], "Attribute update interval": [[81, "attribute-update-interval"]], "Authentication": [[73, null], [179, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[128, "autoconfig"]], "Autoconfig for your mail domain fails": [[118, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[173, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[102, null]], "Automatic configurations examples": [[120, "automatic-configurations-examples"]], "Automatic database user creation": [[128, "automatic-database-user-creation"]], "Automatic setup": [[120, null]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[101, "available-rules"], [102, "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], [112, "background-jobs"], [155, "background-jobs"]], "Background jobs selector": [[149, "background-jobs-selector"]], "Background sync interval": [[116, "background-sync-interval"]], "Backup": [[140, null]], "Backup database": [[140, "backup-database"]], "Backup folders": [[140, "backup-folders"]], "Backups": [[28, "backups"], [107, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[147, "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": [[177, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[112, "birthday-calendar"]], "Blocking user groups": [[101, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[155, "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": [[177, "bug-reporting"]], "Bugs": [[138, "bugs"]], "Building a workflow": [[179, "building-a-workflow"]], "CPU Architecture and OS": [[134, "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"], [132, "id1"]], "Caddy": [[69, "caddy"]], "Calendar": [[118, "calendar"]], "Calendar / CalDAV": [[112, null]], "Calendar Object Events": [[178, "calendar-object-events"]], "Calendar server settings": [[112, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[179, "can-i-create-a-script"]], "Canonical webroot": [[157, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[169, "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"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[124, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[93, "citrix-workspace-known-issues"]], "Code signing": [[137, null]], "Collabora Online Server": [[157, "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": [[113, "command-line"]], "Command line": [[93, "command-line"]], "Command line installation": [[155, "command-line-installation"]], "Command line upgrade": [[155, "command-line-upgrade"]], "Command reference": [[150, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [132, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[101, "common-misconfigurations"], [105, "common-misconfigurations"]], "Common problems / error messages": [[138, "common-problems-error-messages"]], "Completing Installation": [[128, "completing-installation"]], "Compression": [[132, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[149, "config-commands"]], "Config file": [[93, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [116, "configuration"], [133, "configuration"], [157, null], [159, "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": [[158, "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 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 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 issues with the macOS client on \u201cinsecure\u201d connections": [[93, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[126, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[118, "contacts"]], "Contacts / CardDAV": [[113, null]], "Contacts Interaction": [[114, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[99, "container-started"]], "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": [[106, null]], "Cookies stored by Nextcloud": [[106, "cookies-stored-by-nextcloud"]], "Core Components": [[119, "core-components"]], "Core Dumps": [[93, "core-dumps"]], "Create Debug Archive": [[93, "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": [[169, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[124, "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": [[157, "custom-fonts"]], "Custom public calendars": [[112, "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": [[151, null]], "DAV commands": [[151, "dav-commands"]], "DAV sync tokens retention": [[170, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[120, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[108, "data-request-app"]], "Data conversions": [[151, "data-conversions"]], "Data directory location": [[128, "data-directory-location"]], "Data held by third-party services": [[110, "data-held-by-third-party-services"]], "Data retention": [[107, null], [112, "data-retention"], [113, "data-retention"], [114, "data-retention"]], "Database": [[123, "database"], [124, "database"]], "Database choice": [[128, "database-choice"]], "Database commands": [[151, "database-commands"]], "Database configuration": [[21, null], [22, null], [174, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[118, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[134, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[132, "debug-mode"]], "Debugging": [[150, "debugging"]], "Debugging sync issues": [[138, "debugging-sync-issues"]], "Deck tools": [[2, "deck-tools"]], "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)": [[96, "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": [[176, "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": [[149, "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": [[101, "denied-access"]], "Denying access to folders": [[101, "denying-access-to-folders"]], "DeployConfig": [[97, "deployconfig"]], "DeployConfig options": [[97, "deployconfig-options"]], "Deployment": [[126, "deployment"]], "Deployment configurations": [[96, null]], "Deployment recommendations": [[122, 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": [[134, "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": [[98, "disable"]], "Disable 3rdparty / non-shipped apps": [[138, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[126, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[116, "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": [[151, "disable-creation-of-example-events"]], "Disable preview image generation": [[126, "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": [[131, "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?": [[137, "do-we-lock-down-nextcloud"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[96, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[96, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[96, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[96, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[95, "docker-socket-proxy"]], "Docker Socket Proxy security": [[96, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[95, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[96, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[96, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Domain Change": [[62, null]], "Downgrading": [[177, "downgrading"]], "Download Logs": [[99, "download-logs"]], "Drop Account app": [[108, "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": [[119, "editions"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[98, "enable"]], "Enable HTTP Strict Transport Security": [[126, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[132, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[132, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[157, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[126, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[131, "enable-updates-via-the-web-interface"]], "Enabled": [[99, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[133, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[16, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[150, "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": [[152, "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"]], "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": [[152, 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": [[152, "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": [[177, "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": [[126, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [94, "environment-variables"]], "Environment variables": [[150, "environment-variables"]], "Errors": [[137, "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": [[112, "event-alarm-types"]], "Events": [[112, "events"]], "ExApps management": [[100, 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"], [102, "example"], [105, "example"]], "Example configuration": [[132, "example-configuration"]], "Example contact": [[113, "example-contact"]], "Example event": [[112, "example-event"]], "Example installation on CentOS 8": [[123, null]], "Example installation on OpenBSD": [[124, null]], "Example installation on Ubuntu 24.04 LTS": [[125, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[179, "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"], [101, "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": [[102, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[151, "export-and-import-calendars"]], "Export threading data": [[118, "export-threading-data"]], "Exposed system address book": [[171, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[133, "external-media"]], "External storage": [[101, "external-storage"]], "FAQ": [[95, "faq"], [137, "faq"], [179, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[126, "fail2ban-introduction"]], "Fair Use Policy": [[138, "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": [[112, "federated-calendar-shares"]], "Federation sync": [[153, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[105, "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": [[153, "file-operations"]], "File sharing": [[153, "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"], [107, "file-versions"], [153, "file-versions"]], "Files": [[88, null]], "Files App": [[134, "files-app"]], "Files access control": [[101, null]], "Files and metadata": [[110, "files-and-metadata"]], "Files commands": [[153, null]], "Files external": [[153, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[178, "filters"]], "Fixing invalid code integrity messages": [[137, "fixing-invalid-code-integrity-messages"]], "Flow": [[104, null]], "Flow configuration": [[103, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[116, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[178, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[112, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[164, "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": [[119, "further-resources"], [130, "further-resources"]], "GDPR compliance": [[109, null]], "General troubleshooting": [[138, null], [138, "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": [[118, "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], [119, "getting-started"]], "Getting a single configuration value": [[149, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[126, "give-php-read-access-to-dev-urandom"]], "Globally": [[118, "globally"]], "Google OAuth": [[116, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[156, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [115, null]], "Groupware data": [[110, "groupware-data"]], "HAProxy": [[69, "haproxy"]], "HTTPD(8)": [[124, "httpd-8"]], "HTTPS encryption": [[133, "https-encryption"]], "HaRP": [[95, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[126, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[99, "heartbeat"]], "Helpful apps": [[108, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[112, "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?": [[166, "how-does-it-work"]], "How interactions are tracked": [[114, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "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": [[148, 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": [[116, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identifying Basic Functionality Problems": [[93, "identifying-basic-functionality-problems"]], "Image Pull": [[99, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[159, "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)": [[108, "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": [[155, "info"]], "Init": [[99, "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 packages": [[159, "install-packages"]], "Install the Apache reverse proxy": [[158, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[158, "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"], [133, "installation"], [145, "installation"], [161, null], [178, "installation"], [179, "installation"]], "Installation and server configuration": [[127, null]], "Installation example on Ubuntu 24.04": [[159, null]], "Installation example with Docker": [[158, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[133, null]], "Installation on TrueNAS": [[133, "installation-on-truenas"]], "Installation version": [[177, "installation-version"]], "Installation via install script": [[133, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[133, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[128, null], [133, "installation-wizard"]], "Installing AppAPI": [[95, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[95, "installing-exapps"]], "Installing Nextcloud": [[123, "installing-nextcloud"]], "Installing PHP and the required modules": [[123, "installing-php-and-the-required-modules"]], "Installing from command line": [[121, null]], "Installing on Windows (virtual machine)": [[133, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[123, "installing-optional-modules-redis-imagick"]], "Installing via Snap packages": [[133, "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": [[153, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[138, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [119, null], [178, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[112, "invitations"]], "Is code signing mandatory for apps?": [[137, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[93, "isolating-other-issues"]], "Issues and troubleshooting": [[139, null]], "Issues connecting to Outlook.com": [[118, "issues-connecting-to-outlook-com"]], "JIT": [[132, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[129, "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": [[132, "key-parameters"]], "Key storage": [[152, "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"]], "Keyboard shortcut": [[93, "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": [[167, "known-smart-picker-providers"]], "Known backends": [[112, "known-backends"]], "Known link preview providers": [[166, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[154, null], [154, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[116, "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": [[152, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[177, "length-of-support-maintenance"]], "Limit on password length": [[126, "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": [[150, "limitations-in-maintenance-mode"]], "Link previews": [[166, null]], "Linking external sites": [[64, null]], "List ExApps": [[98, "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": [[97, "list-registered-daemons"]], "Listening to events": [[178, "listening-to-events"]], "Listing registered webhooks": [[178, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[116, "local-imap-and-smtp-servers"]], "Log Files": [[93, "log-files"]], "Log Levels": [[132, "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": [[138, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging commands": [[155, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[118, "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": [[129, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[148, "long-running-migration-steps"]], "Long term support": [[134, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[116, null], [118, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[116, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [141, null], [151, "maintenance"]], "Maintenance and release schedule": [[177, null]], "Maintenance and repair": [[152, "maintenance-and-repair"]], "Maintenance commands": [[155, "maintenance-commands"]], "Maintenance mode": [[140, "maintenance-mode"], [148, "maintenance-mode"]], "Maintenance releases": [[177, "maintenance-releases"]], "Major releases": [[177, "major-releases"]], "Major version upgrades": [[177, "major-version-upgrades"]], "Manage absences (out-of-office)": [[151, "manage-absences-out-of-office"]], "Manage addressbooks": [[151, "manage-addressbooks"]], "Manage calendar subscriptions": [[151, "manage-calendar-subscriptions"]], "Manage calendars": [[151, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[97, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[98, null]], "Managing apps": [[16, "managing-apps"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[118, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[148, "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": [[140, "mariadb"], [146, "mariadb"], [146, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[152, "master-key"]], "Maximum chunk size": [[174, "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": [[133, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[134, "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": [[144, null]], "Migrating to a different server": [[143, null]], "Migration from Collabora Online": [[162, 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": [[118, "missing-shared-calendars"]], "Mobile apps": [[134, "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], [172, "monitoring"]], "Monitoring: Counting of active users": [[173, "monitoring-counting-of-active-users"], [174, "monitoring-counting-of-active-users"], [175, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[94, "mounts"]], "Moving the data directory / changing the datadirectory path": [[138, "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"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[140, "mysql"], [146, "mysql"], [146, "id4"]], "MySQL database": [[120, "mysql-database"]], "NC & Docker on the Same-Host": [[96, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[96, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[96, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[129, null]], "NOTE": [[124, "note"]], "Next steps": [[125, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[97, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office App Settings": [[157, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[179, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[178, "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": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[96, "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], [173, "nextcloud-configuration"], [174, "nextcloud-configuration"]], "Nextcloud final steps": [[124, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[96, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[129, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[129, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[138, "nextcloud-log-files"]], "Nextcloud prerequisites": [[126, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[93, "nextcloud-server-log-file"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[178, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[137, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[136, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[130, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [155, "oauth2"]], "OCC CLI": [[97, "occ-cli"]], "Object store": [[153, "object-store"]], "Obtaining a patch": [[136, "obtaining-a-patch"]], "Obtaining the Client Log File": [[93, "obtaining-the-client-log-file"]], "Office": [[88, null], [160, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[176, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[126, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[97, "options"], [98, "options"], [98, "id2"], [98, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[133, "other-web-servers"]], "Other issues": [[138, "other-issues"]], "Out-of-office feature": [[117, 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"], [133, "overview"], [142, "overview"], [148, "overview"], [177, "overview"], [178, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[123, "php"], [124, "php"]], "PHP Installation": [[130, "php-installation"]], "PHP Module Quick Reference Table": [[130, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[130, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[130, "php-modules-for-specific-applications"]], "PHP configuration": [[174, "php-configuration"]], "PHP ini Settings": [[130, "php-ini-settings"]], "PHP version and information": [[138, "php-version-and-information"]], "PHP-FPM configuration": [[133, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[129, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [120, "parameters"]], "Passing values between blocks": [[179, "passing-values-between-blocks"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[126, "passwords"]], "Patching Nextcloud": [[136, null]], "Patching apps": [[136, "patching-apps"]], "Patching server": [[136, "patching-server"]], "Payload envelope": [[178, "payload-envelope"]], "Per mail account": [[118, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Personal data stored": [[110, null]], "Place config directory outside of the web root": [[126, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[126, "place-data-directory-outside-of-the-web-root"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[140, "postgresql"], [146, "postgresql"], [146, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [120, "postgresql-database"]], "Preparing PHP": [[130, null]], "Prerequisites": [[148, "prerequisites"]], "Prerequisites for manual installation": [[133, "prerequisites-for-manual-installation"]], "Pretty URLs": [[133, "pretty-urls"]], "Prevent uploading of specific files": [[101, "prevent-uploading-of-specific-files"]], "Preview": [[153, "preview"]], "Previews": [[60, "previews"], [132, "previews"], [157, "previews"], [174, "previews"], [175, "previews"], [176, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[172, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[173, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[142, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[113, "privacy-and-user-property-scopes"]], "Process manager": [[133, "process-manager"]], "Process manager modes": [[132, "process-manager-modes"]], "Profile data": [[110, "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": [[126, "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": [[105, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[128, "quick-start"]], "Rate limits": [[112, "rate-limits"], [113, "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": [[130, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[130, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[130, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[126, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[59, "redis"], [123, "redis"], [124, "redis"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[132, "reducing-system-load"]], "Reference management": [[165, null]], "Refresh rate": [[112, "refresh-rate"]], "Register": [[97, "register"], [98, "register"], [99, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[177, "release-channels"]], "Release notes": [[88, null], [168, null], [169, null]], "Release schedule": [[177, "release-schedule"]], "Release types": [[177, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[106, "remember-me-cookies"]], "Remember-me tokens": [[107, "remember-me-tokens"]], "Reminder notifications": [[112, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[132, "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": [[130, "required-php-database-connectors"]], "Required PHP Modules": [[130, "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": [[137, "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": [[112, "resources-and-rooms"]], "Responding to data subject requests": [[111, null]], "Restore database": [[146, "restore-database"]], "Restore folders": [[146, "restore-folders"]], "Restoring": [[146, "restoring"]], "Restoring backup": [[146, null]], "Restrict admin actions to a specific range of IP addresses": [[126, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[157, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[157, "restrict-usage-to-specific-groups"]], "Retention of files": [[105, null]], "Revalidation": [[132, "revalidation"]], "Reverse proxy": [[69, null], [163, null]], "Reverting a patch": [[136, "reverting-a-patch"]], "Right of access (Article 15)": [[111, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[111, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[111, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[111, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[111, "right-to-restriction-of-processing-article-18"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[150, "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": [[175, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[123, "selinux"]], "SELinux configuration": [[131, null]], "SELinux configuration tips": [[133, "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": [[116, "smtp-timeout"]], "SQLite": [[140, "sqlite"], [146, "sqlite"]], "SQLite database": [[120, "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"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[151, "schema-inspection"]], "Schema maintenance": [[151, "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"], [178, "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": [[157, "secure-view-settings"]], "Security": [[155, "security"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Serve security related headers by the Web server": [[126, "serve-security-related-headers-by-the-web-server"]], "Server": [[134, "server"]], "Server and web server logs": [[107, "server-and-web-server-logs"], [110, "server-and-web-server-logs"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[132, 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": [[138, "service-discovery"]], "Session data": [[110, "session-data"]], "Session lifetime": [[107, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[149, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[149, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[149, "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": [[133, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[123, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[179, "setting-up-the-workspace-connection"]], "Settings": [[132, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[172, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[126, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[155, "setup-checks"]], "Setup deploy daemon": [[95, "setup-deploy-daemon"]], "Setup fail2ban": [[126, "setup-fail2ban"]], "Share operations": [[155, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[113, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[116, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[147, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Sizing": [[132, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[132, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[116, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[155, "snowflake-ids"], [176, "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": [[178, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[155, "status"]], "Status Checks": [[99, "status-checks"]], "Status and control": [[152, "status-and-control"]], "Status return code": [[155, "status-return-code"]], "Step-by-Step Manual Upgrade": [[142, "step-by-step-manual-upgrade"]], "Storage of access tokens": [[126, "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": [[112, "subscriptions"]], "Summary": [[92, "summary"]], "Summary table": [[107, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[129, "suppressing-log-messages"]], "Sync": [[151, "sync"]], "Sync tokens": [[112, "sync-tokens"], [113, "sync-tokens"]], "Synchronising with clients after data recovery": [[146, "synchronising-with-clients-after-data-recovery"]], "Synchronous indexing": [[3, "synchronous-indexing"]], "System & maintenance commands": [[155, null]], "System Address Book": [[113, "system-address-book"]], "System Tag Events": [[178, "system-tag-events"]], "System Tags": [[156, "system-tags"]], "System address book": [[175, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[170, "system-email"]], "System environment variables": [[133, "system-environment-variables"]], "System requirements": [[134, null], [170, "system-requirements"], [171, "system-requirements"], [172, "system-requirements"], [173, "system-requirements"], [174, "system-requirements"], [175, "system-requirements"], [176, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [178, "systemd-service"]], "TLS / encryption app": [[132, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[178, "tables-app-events"]], "Talk (chat and calls)": [[110, "talk-chat-and-calls"]], "Talk App": [[134, "talk-app"]], "Talk tools": [[2, "talk-tools"]], "Target Audience": [[119, "target-audience"]], "Task processing": [[1, "task-processing"], [155, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[99, 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": [[167, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[114, "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], [155, "theming"]], "Thread Summary": [[116, "thread-summary"]], "Timeout and other connectivity issues": [[118, "timeout-and-other-connectivity-issues"]], "Timeouts": [[116, "timeouts"]], "Tips and tricks": [[129, "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": [[116, "translation"]], "Trash bin": [[107, "trash-bin"], [112, "trash-bin"], [153, "trash-bin"]], "Trashbin": [[153, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [93, null], [118, null], [131, "troubleshooting"], [132, "troubleshooting"], [142, "troubleshooting"], [147, "troubleshooting"], [164, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[138, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[138, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[138, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[138, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[138, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[138, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[138, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[128, "trusted-domains"]], "Tune PHP-FPM": [[132, "tune-php-fpm"]], "Tuning your database": [[132, "tuning-your-database"]], "Two-factor authentication": [[80, null], [156, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[118, "unable-to-update-contacts-or-events"]], "Uninstallation": [[135, null]], "Unregister": [[97, "unregister"], [98, "unregister"]], "Update": [[98, "update"]], "Update notifications": [[16, "update-notifications"], [148, "update-notifications"]], "Update the reverse proxy configuration": [[162, "update-the-reverse-proxy-configuration"]], "Updating": [[158, "updating"]], "Upgrade distribution packages": [[162, "upgrade-distribution-packages"]], "Upgrade manually": [[142, null]], "Upgrade quickstart": [[145, "upgrade-quickstart"]], "Upgrade the docker image": [[162, "upgrade-the-docker-image"]], "Upgrade tips": [[145, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[170, null]], "Upgrade to Nextcloud 27": [[171, null]], "Upgrade to Nextcloud 28": [[172, null]], "Upgrade to Nextcloud 30": [[173, null]], "Upgrade to Nextcloud 31": [[174, null]], "Upgrade to Nextcloud 32": [[175, null]], "Upgrade to Nextcloud 33": [[176, null]], "Upgrade via built-in updater": [[147, null]], "Upgrade via snap packages": [[145, null]], "Upload of files greater than 10 MiB fails": [[129, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[97, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[126, "use-https"]], "Use OOXML by default for new files": [[157, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[126, "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": [[116, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[156, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[116, "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": [[156, "user-commands"]], "User deletion": [[114, "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": [[116, "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": [[138, "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": [[132, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[147, "using-a-custom-download-url"]], "Using a self hosted apps store": [[16, "using-a-self-hosted-apps-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[132, "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 Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[147, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [150, null]], "Using the web based updater": [[147, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Versions": [[153, "versions"]], "Voice Chat": [[1, "voice-chat"]], "Warnings on admin page": [[70, null]], "Web browser": [[134, "web-browser"]], "Web server and PHP modules": [[138, "web-server-and-php-modules"]], "Web server configuration": [[170, "web-server-configuration"], [171, "web-server-configuration"], [172, "web-server-configuration"], [173, "web-server-configuration"], [175, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[178, null]], "Webhook listeners": [[155, "webhook-listeners"]], "Webserver Log Files": [[93, "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?": [[147, "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?": [[167, "where-can-it-be-used"]], "Where do they appear?": [[166, "where-do-they-appear"]], "Who develops Nextcloud?": [[119, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[137, "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": [[134, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[179, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[157, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[155, "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": [[116, "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": [[155, "admin-delegation-add"]], "admin-delegation:remove": [[155, "admin-delegation-remove"]], "admin-delegation:show": [[155, "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"]], "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": [[155, "background-job-delete"]], "background-job:execute": [[155, "background-job-execute"]], "background-job:list": [[155, "background-job-list"]], "background-job:worker": [[155, "background-job-worker"]], "background:cron": [[155, "background-cron"]], "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": [[151, "calendar-export"]], "calendar:import": [[151, "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_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": [[151, "dav-absence-get"]], "dav:absence:set": [[151, "dav-absence-set"]], "dav:clear-calendar-unshares": [[151, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[151, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[151, "dav-create-addressbook"]], "dav:create-calendar": [[151, "dav-create-calendar"]], "dav:create-subscription": [[151, "dav-create-subscription"]], "dav:delete-calendar": [[151, "dav-delete-calendar"]], "dav:delete-subscription": [[151, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[151, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[151, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[151, "dav-list-calendar-shares"]], "dav:list-calendars": [[151, "dav-list-calendars"]], "dav:list-subscriptions": [[151, "dav-list-subscriptions"]], "dav:move-calendar": [[151, "dav-move-calendar"]], "dav:remove-invalid-shares": [[151, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[151, "dav-retention-clean-up"]], "dav:send-event-reminders": [[151, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[151, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[151, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[151, "db-add-missing-columns"]], "db:add-missing-indices": [[151, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[151, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[151, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[151, "db-convert-mysql-charset"]], "db:convert-type": [[151, "db-convert-type"]], "db:schema:expected": [[151, "db-schema-expected"]], "db:schema:export": [[151, "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": [[152, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[152, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[152, "encryption-decrypt-all"]], "encryption:disable": [[152, "encryption-disable"]], "encryption:disable-master-key": [[152, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[152, "encryption-drop-legacy-filekey"]], "encryption:enable": [[152, "encryption-enable"]], "encryption:enable-master-key": [[152, "encryption-enable-master-key"]], "encryption:encrypt-all": [[152, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[152, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[152, "encryption-fix-key-location"]], "encryption:list-modules": [[152, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[152, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[152, "encryption-recover-user"]], "encryption:scan:legacy-format": [[152, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[152, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[152, "encryption-show-key-storage-root"]], "encryption:status": [[152, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[153, "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": [[153, "files-cleanup"]], "files:copy": [[153, "files-copy"]], "files:delete": [[153, "files-delete"]], "files:get": [[153, "files-get"]], "files:mount:list": [[153, "files-mount-list"]], "files:mount:refresh": [[153, "files-mount-refresh"]], "files:move": [[153, "files-move"]], "files:object:delete": [[153, "files-object-delete"]], "files:object:get": [[153, "files-object-get"]], "files:object:info": [[153, "files-object-info"]], "files:object:list": [[153, "files-object-list"]], "files:object:orphans": [[153, "files-object-orphans"]], "files:object:put": [[153, "files-object-put"]], "files:put": [[153, "files-put"]], "files:reminders": [[153, "files-reminders"]], "files:repair-tree": [[153, "files-repair-tree"]], "files:sanitize-filenames": [[153, "files-sanitize-filenames"]], "files:scan": [[153, "files-scan"]], "files:scan-app-data": [[153, "files-scan-app-data"]], "files:transfer-ownership": [[153, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[153, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[155, "files-antivirus-background-scan"]], "files_antivirus:mark": [[155, "files-antivirus-mark"]], "files_antivirus:scan": [[155, "files-antivirus-scan"]], "files_antivirus:status": [[155, "files-antivirus-status"]], "files_external:applicable": [[153, "files-external-applicable"]], "files_external:backends": [[153, "files-external-backends"]], "files_external:config": [[153, "files-external-config"]], "files_external:create": [[153, "files-external-create"]], "files_external:delete": [[153, "files-external-delete"]], "files_external:dependencies": [[153, "files-external-dependencies"]], "files_external:export": [[153, "files-external-export"]], "files_external:import": [[153, "files-external-import"]], "files_external:list": [[153, "files-external-list"]], "files_external:notify": [[153, "files-external-notify"]], "files_external:option": [[153, "files-external-option"]], "files_external:scan": [[153, "files-external-scan"]], "files_external:verify": [[153, "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": [[156, "group-add"]], "group:adduser and group:removeuser": [[156, "group-adduser-and-group-removeuser"]], "group:delete": [[156, "group-delete"]], "group:info": [[156, "group-info"]], "group:list": [[156, "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": [[155, "info-file"]], "info:file:space": [[155, "info-file-space"]], "info:storage": [[155, "info-storage"]], "info:storages": [[155, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[153, "integrity-check-app"]], "integrity:check-core": [[153, "integrity-check-core"]], "integrity:sign-app": [[153, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[154, "ldap-check-group"]], "ldap:check-user": [[154, "ldap-check-user"]], "ldap:create-empty-config": [[154, "ldap-create-empty-config"]], "ldap:delete-config": [[154, "ldap-delete-config"]], "ldap:search": [[154, "ldap-search"]], "ldap:set-config": [[154, "ldap-set-config"]], "ldap:show-remnants": [[154, "ldap-show-remnants"]], "ldap:test-config": [[154, "ldap-test-config"]], "ldap:test-user-settings": [[154, "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": [[155, "log-file"]], "log:manage": [[155, "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": [[155, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[155, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[155, "maintenance-mode"]], "maintenance:repair": [[155, "maintenance-repair"]], "maintenance:repair-share-owner": [[155, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[155, "maintenance-theme-update"]], "maintenance:update:htaccess": [[155, "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.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"]], "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"]], "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": [[153, "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": [[155, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[155, "security-bruteforce-reset"]], "security:certificates": [[155, "security-certificates"]], "security:certificates:export": [[155, "security-certificates-export"]], "security:certificates:import": [[155, "security-certificates-import"]], "security:certificates:remove": [[155, "security-certificates-remove"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[153, "share-list"], [155, "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": [[153, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[153, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[153, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[153, "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"]], "systemtags.managerFactory": [[60, "systemtags-managerfactory"]], "tag:add": [[156, "tag-add"]], "tag:delete": [[156, "tag-delete"]], "tag:edit": [[156, "tag-edit"]], "tag:list": [[156, "tag-list"]], "taskprocessing:task-type:set-enabled": [[155, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[155, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[155, "taskprocessing-task-get"]], "taskprocessing:task:list": [[155, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[155, "taskprocessing-task-stats"]], "taskprocessing:worker": [[155, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[155, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[153, "trashbin-cleanup"], [153, "id1"]], "trashbin:expire": [[153, "trashbin-expire"], [153, "id2"]], "trashbin:restore": [[153, "trashbin-restore"]], "trashbin:size": [[153, "trashbin-size"], [153, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[156, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[156, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[156, "twofactorauth-enforce"]], "twofactorauth:state": [[156, "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:add": [[156, "user-add"]], "user:auth-tokens:add": [[156, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[156, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[156, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[156, "user-clear-avatar-cache"]], "user:delete": [[156, "user-delete"]], "user:disable and user:enable": [[156, "user-disable-and-user-enable"]], "user:info": [[156, "user-info"]], "user:keys:verify": [[156, "user-keys-verify"]], "user:lastseen": [[156, "user-lastseen"]], "user:list": [[156, "user-list"]], "user:profile": [[156, "user-profile"]], "user:report": [[156, "user-report"]], "user:resetpassword": [[156, "user-resetpassword"]], "user:setting": [[156, "user-setting"]], "user:sync-account-data": [[156, "user-sync-account-data"]], "user:welcome": [[156, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[153, "versions-cleanup"], [153, "id4"]], "versions:expire": [[153, "versions-expire"], [153, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[155, "workflows-list"]], "\u201cCSync unknown error\u201d": [[93, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[93, "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/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_system", "occ_users", "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_notes/upgrade_to_33", "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/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_system.rst", "occ_users.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_notes/upgrade_to_33.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, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 124, 126, 129, 130, 131, 132, 133, 136, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 159, 164, 172, 175, 176, 177, 178], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 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, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 117, 118, 124, 126, 128, 129, 130, 132, 134, 138, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 164, 171, 172, 173, 174, 175, 177, 178], "00": [22, 23, 55, 59, 60, 67, 153, 155, 156], "000": [29, 112, 113, 119], "0000": 155, "001": 60, "0022": 60, "00679e": 155, "0082c9": [72, 155], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 134, 151, 153, 155, 156], "0100": 63, "0123": 76, "01t00": 153, "01t08": 156, "01t09": 153, "01t12": 153, "01t14": 155, "02": [6, 59, 67, 153], "03": [55, 67, 129, 156], "04": [22, 72, 88, 127, 133, 134, 153, 160, 161], "05": [57, 60, 129, 151, 153], "050": 155, "055": 22, "06": 155, "062": 22, "0640": [60, 67], "07": 60, "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 118, "08": [60, 153], "09": 67, "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 137, "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, 95, 96, 98, 99, 107, 112, 113, 116, 118, 124, 126, 128, 129, 130, 132, 133, 136, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 158, 164, 170, 171, 173, 174, 175, 176, 177, 178], "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, 93, 96, 112, 113, 116, 123, 132, 134, 144, 153, 155, 156, 157, 173, 174, 178], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 116, 119, 132, 155, 164, 172, 177], "1000": [5, 81, 93, 124, 132], "10000": [59, 124], "1000000": 93, "10000000": 93, "1002": 178, "100mb": [3, 8, 76, 93], "100mib": 174, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 116, 132], "103": [75, 76], "103f": 154, "104": 76, "1040": 138, "10485760": 56, "104857600": [26, 48, 60, 67], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 153], "10m": 155, "10mib": 174, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 118, 134, 148, 153, 155, 156, 162, 178], "110": [63, 76], "111": [60, 76], "1110": 156, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 176, "12": [60, 65, 76, 88, 106, 129, 134, 149, 150, 155, 156, 173], "120": 9, "123": [18, 60, 178], "1234": 4, "12345": [8, 76, 155], "1255": 132, "127": [59, 60, 63, 96, 99, 126, 128, 129, 151, 155, 158, 164], "128": [60, 81], "128m": [22, 59], "128mb": 134, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 108, 134, 144, 156, 176], "1319": 60, "1393": 118, "14": [22, 43, 67, 83, 105, 108, 134, 144, 153, 155], "143": 63, "1465910968": 156, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 106, 107, 110, 112, 113, 116, 134, 144, 151, 155, 156], "1524": 63, "155": 60, "15552000": [70, 126], "1575981518": 155, "15768000": 124, "15778463": 129, "15857": 56, "15m": 116, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 126, 132, 134, 144], "16000": 8, "162409623552": 156, "162409624662": 156, "164": 81, "168": [22, 41, 52, 60, 63, 67, 96, 126, 128, 155], "16g": 26, "17": [88, 134, 147, 156, 178], "1700001000": 178, "1700001200": 178, "1700001234": 178, "1700054321": 178, "1700099500": 178, "1700100000": 178, "1700100500": 178, "1702606600": 178, "1711971024": 178, "1736283": 178, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 134, 148, 155, 156], "180": [53, 107], "1800": [60, 112, 113], "19": [60, 148, 149, 150], "192": [22, 41, 52, 60, 63, 67, 96, 126, 128, 155], "1941": 81, "19417": 118, "19563": 59, "1970": 134, "198": 60, "19c": 134, "19fa45b394": 178, "19t08": 156, "1d": [70, 116], "1d4725ae1ac4e4798b541ca3f3cdce6": 118, "1gb": [2, 6, 26], "1h": [116, 155], "1st": [88, 141, 178], "1und1": 116, "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, 95, 96, 105, 116, 118, 121, 124, 126, 127, 128, 129, 130, 134, 144, 147, 148, 149, 150, 151, 152, 155, 156, 165, 170, 171, 172, 175, 176, 178, 179], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 106, 116, 118, 144, 148, 156], "200": [82, 83, 153], "2000": 22, "2001": 60, "2002": 138, "2005": 60, "2006": [88, 138], "20080704": 22, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 155], "2020": 118, "2021": [67, 123], "2024": [88, 90, 129, 156, 178], "2025": [4, 88, 90, 155, 178], "20251111t100000z": 178, "2026": [88, 90, 129, 151, 153, 155], "203": 60, "2038": 134, "2048": [5, 81], "204800": [153, 155], "20971520": 26, "20mb": 26, "20t17": 156, "21": [33, 60, 67, 129, 149, 162], "2100": 106, "215": 89, "21a7": 60, "21c": 134, "22": [37, 55, 63, 134, 153, 178], "220": [63, 178], "221": 63, "222": 60, "22203": 59, "2245": 63, "23000": 95, "2323": 60, "233": 60, "2375": [96, 97], "23999": 95, "23ai": 134, "23t07": 155, "23t08": 155, "23t09": 155, "23t10": 155, "24": [3, 43, 44, 58, 60, 72, 73, 88, 93, 96, 106, 107, 110, 114, 127, 133, 134, 148, 160, 161, 174], "24000": [96, 97], "24001": 96, "24099": 96, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 113, 129, 144, 148, 155], "250": 63, "2500": 60, "252": 60, "255": 60, "256": [29, 47, 60, 129], "256mb": 134, "2592000": [73, 112, 155], "26": [6, 63, 88, 112, 113, 116, 129, 134, 144, 148, 156, 169, 177], "261535": 118, "262086": 118, "262087": 118, "26396": 136, "2668": 155, "27": [88, 113, 142, 144, 148, 155, 169, 177], "28": [7, 18, 60, 88, 117, 142, 144, 147, 148, 169, 171, 177], "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 142, 144, 147, 148], "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 118, "2f": 82, "2fa": [80, 116, 156], "2fldap": 82, "2g": 18, "2gb": [3, 26, 153], "2h": 155, "2k": 22, "2m": 22, "2nd": 81, "2x": 174, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 95, 116, 121, 126, 128, 130, 132, 133, 134, 138, 144, 147, 148, 150, 153, 155, 156, 166, 172, 173, 174, 175, 177, 178], "30": [3, 8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 95, 107, 110, 112, 113, 116, 118, 132, 144, 147, 155, 156, 169, 174, 175], "300": [60, 83, 96, 116, 129], "30000": [112, 113], "301": [69, 124, 126, 129, 138], "3010": 92, "302": 129, "30566": 51, "3060": 95, "31": [10, 50, 55, 60, 88, 106, 118, 123, 144, 169], "3100": 175, "31308": 38, "31536000": 129, "3166": 60, "31d4a230559d4f3e2c471d3ea094": 137, "32": [15, 22, 26, 29, 31, 48, 50, 60, 88, 112, 113, 134, 169, 179], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 52, 88, 112, 147, 152, 153, 169, 179], "3306": [20, 63, 128], "34": [147, 178], "34262": 132, "35": 28, "36": [22, 67], "3600": [26, 60, 81, 116, 124, 155], "365": [53, 60, 73, 107, 110], "37": [60, 67, 118], "38": 155, "389": [81, 82], "39": 63, "399": 178, "3a": 82, "3mb": 116, "3rd": [60, 63, 138, 142, 148, 157, 165, 167], "3rdparti": [88, 123, 129, 131], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 116, 118, 123, 126, 129, 130, 132, 134, 140, 142, 148, 150, 155, 157, 162, 170, 173, 174, 175, 177, 178], "40": 55, "400": [11, 119], "4000": 5, "40000": 8, "404": 129, "4086": 126, "4096": [5, 60, 178], "41": 96, "41395": 172, "42": [14, 60, 153, 155, 156, 178], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 137, "43200": 126, "437": 178, "438": 178, "4389": 67, "44": 156, "441": 155, "4418": 63, "443": [48, 60, 124, 126, 129, 158], "444": 124, "45": 60, "450": 6, "456": 76, "46": 156, "465": 63, "46cfa6e729ff329e6ede076853154113": 118, "47": [56, 156], "48": [58, 93], "483": 118, "49": [60, 118], "4966612345678": 81, "497": 118, "4a87e94522a3cf26dba8977ae901094d": 118, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 129, "5": [0, 1, 2, 3, 15, 16, 48, 57, 59, 60, 67, 85, 96, 101, 107, 112, 113, 116, 118, 124, 126, 132, 133, 134, 138, 147, 148, 149, 150, 153, 155, 156, 173, 176, 178], "50": [41, 44, 60, 83, 85, 93, 112, 113, 116, 128, 132, 153, 155], "500": [28, 60, 82, 85, 132, 138, 155, 156], "5000": [60, 112, 113, 175], "50000000": 93, "500mb": 3, "501": 118, "502": [88, 132], "504": [26, 129, 132], "50m": 60, "51": [60, 83, 178], "511": 60, "512": [38, 118, 124, 147, 153], "512k": 129, "512m": 129, "512mb": [46, 88, 129, 130, 134], "512x512": 9, "513": 118, "513m": 124, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 93, "52428800": 63, "524288000": [48, 60], "5242880000": 48, "53": 26, "537": 67, "537919488": 124, "5432": 128, "55": [63, 67, 153], "5545": 151, "56": [22, 60, 63, 67], "5646": 60, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 118], "599": 178, "5e": 55, "5f": 55, "5gb": [6, 153], "5min": 57, "5pm": 101, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 112, 116, 118, 124, 130, 134, 143, 150, 155, 162, 174], "60": [15, 22, 47, 60, 73, 106, 107, 119, 129, 132, 178], "600": [81, 82], "6000": 93, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 118, "62x34": 72, "63072000": 73, "631": 63, "6321": 151, "636": 81, "6379": [45, 59, 60, 123, 124], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 129, 134], "640": 142, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 155, "68": 67, "6f": 55, "7": [3, 15, 29, 43, 53, 56, 60, 67, 72, 107, 114, 116, 123, 129, 130, 134, 143, 144, 153, 155, 170, 177, 178], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "70b": 5, "71d5": 154, "72": 126, "7200": 116, "7265": 151, "73": 55, "750": 142, "767": 60, "77": 11, "770": 59, "78": 175, "789": 76, "7b": [5, 11, 55], "7d": 129, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 95, 116, 118, 126, 127, 129, 130, 132, 133, 134, 138, 144, 155, 170, 171, 172, 173, 174, 175, 176], "80": [6, 47, 55, 63, 123, 126, 129, 132, 133], "8000": 5, "800mb": 10, "8080": [60, 96, 133], "8081": 60, "8088": 60, "8096": 29, "8147": 29, "8192": 29, "8283": 28, "83": 118, "83379f9bc36915d5024de878386060b5": 118, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 156, "8601": 60, "86400": [81, 126], "8651a9ac37674907606c936ced1333d7": 118, "8780": [96, 97], "8781": 96, "8782": [96, 97], "8802": 129, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 137, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2, 5], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 118, "8e9f60369dce3d8b2b27430bd50ec46d": 118, "8gb": [3, 5, 9], "8m": 132, "9": [15, 17, 22, 28, 41, 60, 81, 85, 101, 116, 134, 150, 173, 178], "90": [1, 22, 53, 107, 132], "9000": [129, 132], "9031": 8, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 137, "94": 118, "95": [11, 55, 60], "95a8": 154, "95af": 154, "9651": 178, "97": [55, 118], "98": 156, "9825679": 2, "9839": 118, "98543234": 2, "9876": 81, "99": 60, "993": [63, 118], "995": 63, "9980": [158, 163], "9999": [48, 81], "9_": 81, "9am": 101, "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 95, 96, 106, 107, 111, 112, 114, 116, 118, 119, 124, 126, 128, 129, 132, 133, 134, 137, 138, 142, 143, 146, 150, 153, 155, 158, 161, 166, 170, 177], "AND": [67, 111, 138], "And": [31, 38, 48, 57, 59, 63, 124, 142, 147, 154, 177], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 77, 83, 93, 95, 101, 111, 112, 118, 123, 124, 126, 143, 144, 172, 177, 179], "At": [0, 1, 2, 3, 5, 6, 9, 11, 63, 67, 70, 80, 81, 112, 113, 143], "BY": [22, 125], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 95, 96, 112, 129, 138, 164], "But": [47, 50, 58, 60, 96, 174], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 77, 80, 81, 85, 94, 98, 112, 116, 126, 129, 133, 137, 145, 146, 149, 151, 155, 156, 157, 159, 177, 178], "For": [1, 6, 7, 8, 12, 14, 15, 16, 22, 23, 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, 99, 107, 108, 111, 112, 113, 114, 118, 119, 120, 123, 126, 128, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 161, 162, 172, 175, 176, 177, 178, 179], "IF": [22, 125], "IT": 133, "If": [3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 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, 95, 96, 97, 101, 107, 111, 112, 113, 114, 116, 117, 118, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 172, 173, 174, 175, 176, 177, 178, 179], "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, 93, 95, 96, 97, 99, 101, 102, 112, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 142, 144, 146, 147, 149, 150, 157, 161, 164, 166, 172, 178, 179], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 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, 101, 102, 108, 109, 112, 114, 117, 118, 119, 121, 124, 126, 128, 129, 130, 131, 132, 133, 135, 137, 138, 142, 143, 146, 147, 148, 149, 152, 155, 157, 164, 170, 172, 174, 175, 177, 178, 179], "Its": [58, 107, 132], "NO": 143, "NOT": [22, 59, 60, 96, 125], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 95, 102, 106, 108, 132, 138, 147, 151, 152, 153, 155, 156, 164], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 93, 118, 132, 156], "ON": [22, 23, 60, 125], "OR": 67, "Of": [106, 128, 138, 179], "On": [3, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 93, 96, 106, 123, 125, 133, 138, 143, 145, 151, 155, 158, 177], "One": [3, 8, 12, 43, 48, 93, 95, 133, 161], "Or": [1, 94, 133], "TO": [22, 60, 125], "That": [22, 27, 56, 60, 62, 63, 81, 112, 113, 116, 142, 158], "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, 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, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 162, 163, 164, 165, 166, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179], "Their": [151, 156], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 124, 125, 126, 132, 133, 142, 143, 147, 148, 151, 154, 177], "There": [3, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 93, 96, 97, 98, 105, 107, 121, 126, 133, 135, 137, 138, 143, 148, 152, 155, 161, 166], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 60, 70, 77, 80, 81, 83, 92, 93, 96, 110, 111, 116, 123, 126, 130, 132, 133, 136, 142, 147, 148, 149, 153, 154, 155, 157, 169, 177, 179], "To": [3, 4, 13, 16, 22, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 98, 107, 108, 111, 112, 113, 116, 117, 118, 119, 120, 124, 125, 126, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 167, 172, 177, 178, 179], "WITH": 22, "Will": [43, 154], "With": [0, 29, 43, 60, 63, 77, 96, 119, 129, 138, 148, 155, 166, 174], "_": [81, 85, 153], "__host": [65, 88, 106], "_arm64": 129, "_bin": 60, "_complet": 150, "_groupsr": 126, "_ping": 96, "_postgresql": 124, "_static": 60, "a2enmod": [133, 158], "a2ensit": 133, "a3b30430b1ccb41089170eecbe315d3a": 118, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 140, "aax": 146, "abbrevi": 85, "abc123": [153, 155], "abc123def456": 178, "abil": [6, 14, 58, 103, 128, 133, 157], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 93, 95, 97, 99, 101, 102, 112, 116, 126, 130, 133, 145, 160, 163, 164], "abort": [60, 80], "about": [1, 2, 3, 6, 7, 8, 11, 16, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 93, 96, 112, 116, 117, 118, 123, 126, 129, 132, 133, 136, 137, 138, 143, 148, 149, 152, 153, 154, 155, 156, 164, 172, 174, 175, 176, 179], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 72, 77, 81, 87, 88, 93, 96, 97, 112, 118, 121, 123, 126, 128, 129, 133, 137, 138, 142, 147, 149, 150, 172, 178], "absenc": [81, 88], "absent": [151, 178], "absolut": [16, 60, 69, 81, 98, 138, 149], "absorb": 132, "abstract": [132, 135], "abund": 138, "abus": 88, "abuse_detect": 116, "abuse_number_of_messages_per_15m": 116, "abuse_number_of_messages_per_1d": 116, "abuse_number_of_messages_per_1h": 116, "abuse_number_of_recipients_per_message_threshold": 116, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 31, 32, 40, 41, 48, 60, 63, 66, 67, 70, 84, 93, 96, 97, 111, 116, 117, 150, 153, 155, 164, 178, 179], "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, 92, 93, 95, 96, 97, 99, 102, 104, 105, 106, 107, 108, 110, 113, 114, 118, 119, 123, 127, 128, 132, 133, 138, 143, 146, 147, 152, 153, 155, 156, 160, 164, 167, 177, 178], "access_log": [93, 129], "accessible_featur": 88, "accident": [98, 107, 147], "acclaim": 5, "accommod": [93, 142, 148], "accomplish": 112, "accord": [12, 44, 60, 81, 89, 107, 110, 144, 153, 157, 161], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 96, 138], "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, 93, 107, 111, 114, 115, 128, 130, 133, 150, 153, 154, 155, 160, 178, 179], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 118, "accountmanag": [60, 77], "accumul": 93, "accur": [138, 148, 172], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 117, 126], "acl": [53, 59, 60, 69, 116], "acm": [72, 96, 129, 155], "acquir": [59, 118], "across": [1, 7, 10, 32, 53, 59, 60, 77, 95, 106, 107, 114, 116, 130, 151, 153], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 108, 112, 178], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 81, 88, 95, 96, 104, 108, 110, 116, 127, 138, 147, 155, 156, 179], "actionjob": 3, "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 111, 112, 113, 124, 126, 130, 132, 133, 134, 138, 143, 147, 149, 152, 153, 154, 155, 156, 157, 177, 178], "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, 107, 110], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 126], "actor_id": 111, "actor_typ": 111, "actual": [1, 4, 22, 26, 29, 53, 58, 67, 70, 92, 96, 130, 138, 147, 155, 175, 178], "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, 108, 112, 113, 115, 117, 118, 124, 126, 132, 133, 134, 147, 156, 157, 160, 170, 173, 174, 175, 178, 179], "ad2dab17b2f9": 154, "adapt": [59, 96, 126, 129, 138, 143, 162, 177, 179], "add": [0, 2, 6, 12, 18, 22, 23, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 95, 96, 97, 108, 110, 112, 113, 116, 118, 119, 123, 124, 126, 129, 132, 133, 138, 140, 143, 144, 148, 149, 150, 153, 157, 158, 164, 165, 171, 172, 173, 176, 178, 179], "add_head": [26, 129], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 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, 93, 94, 95, 96, 98, 99, 100, 110, 112, 123, 125, 126, 128, 130, 131, 132, 134, 135, 137, 138, 142, 150, 153, 155, 156, 160, 177, 178, 179], "addition": [12, 41, 59, 81, 83, 112, 113, 138, 175, 179], "additional_opt": 96, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 95, 96, 97, 99, 101, 107, 108, 110, 115, 116, 127, 128, 133, 143, 145, 148, 151, 153, 155, 156, 157, 177], "address_of_remote_machin": 96, "addressbook": [41, 60, 88, 113, 114, 126, 138], "addressbookchang": 113, "addressbookid": 138, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 112, 113, 134], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 93, 96, 107, 124, 129, 130, 131, 132, 133, 134, 138, 142, 144, 162, 173, 174, 175, 177, 178], "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, 93, 95, 96, 99, 111, 112, 113, 116, 117, 118, 120, 121, 123, 127, 132, 133, 137, 138, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 156, 157, 158, 159, 172, 177, 178, 179], "admin_": 178, "admin_audit": [53, 88, 107, 110, 111], "admin_manu": 60, "administ": [119, 155], "administr": [0, 1, 2, 6, 14, 16, 22, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 96, 101, 103, 105, 107, 108, 109, 110, 111, 112, 116, 119, 126, 128, 133, 138, 145, 148, 153, 155, 156, 164, 165, 172, 175, 177, 178], "adminlogin": 120, "adminpass": 120, "adminw": [158, 163], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 97, 100, 120, 133, 161, 179], "advantag": [29, 32, 57, 88, 120], "advertis": [57, 60], "advic": [60, 109], "advis": [8, 157, 174, 179], "ae": [3, 29, 60, 132], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 93, 101, 118, 132, 134, 151, 153, 162], "after": [1, 4, 8, 14, 15, 16, 18, 20, 22, 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, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 113, 114, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 141, 142, 143, 144, 145, 147, 148, 150, 151, 152, 153, 155, 156, 157, 158, 159, 164, 172, 177, 178, 179], "afterward": [58, 80, 81, 116, 133, 144, 146, 147, 152, 158], "ag": [7, 46, 60, 85, 88, 104, 107, 124, 126, 129, 153, 155], "again": [16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 93, 101, 112, 114, 117, 118, 123, 124, 142, 144, 147, 148, 149, 152, 164], "against": [0, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 102, 132, 147, 151, 153, 177, 178, 179], "agenda": 116, "agent": [5, 12, 13, 60, 64, 67, 88, 101], "aggreg": 60, "aggress": 177, "agpl": 17, "agplv3": 16, "agre": 126, "agreement": 12, "ahead": 177, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 95, 116, 155, 179], "ai_provid": 8, "aim": [126, 162], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 95, 100, 130, 132, 133, 178], "air": 147, "ajax": [53, 88, 116, 129, 149, 155, 157], "aka": 133, "akiaiosfodnn7exampl": 153, "alarm": [88, 115], "albert": 156, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 96, 97, 118, 126, 146], "alia": [81, 116, 133, 156], "alias": 88, "aliasgroup1": 158, "aliasgroup2": 158, "alic": [18, 40, 77, 81, 178], "alice_1337": 81, "align": [63, 107], "aliv": [60, 132], "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, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 95, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 128, 129, 131, 132, 133, 135, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 160, 161, 162, 165, 172, 175, 177, 178, 179], "allenai": [5, 11], "alloc": [47, 60, 132], "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, 94, 95, 96, 98, 101, 102, 105, 106, 108, 113, 114, 116, 117, 126, 127, 128, 129, 130, 132, 133, 134, 147, 149, 150, 153, 155, 156, 157, 161, 164, 165, 173, 178, 179], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 116], "allow_persist": 22, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 126], "allowed_user_ag": 88, "allowencodedslash": 158, "allowlist": 176, "allowoverrid": [123, 133, 138], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 96, "almost": [60, 81, 133], "alon": [77, 179], "along": [3, 5, 20, 44, 60, 119, 126, 128], "alongsid": [60, 151], "alpin": 134, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 93, 96, 99, 113, 114, 116, 120, 124, 126, 128, 130, 131, 132, 133, 138, 144, 147, 149, 151, 152, 153, 155, 162, 172, 177, 179], "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, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 162, 164, 165, 172, 173, 174, 175, 176, 177, 178, 179], "alter": [12, 22, 23, 44, 49, 81, 174], "altern": [2, 26, 50, 57, 65, 88, 93, 130, 133, 136, 140, 149, 150, 155], "although": [43, 132, 150], "altitud": 126, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 16, 29, 39, 40, 43, 44, 53, 56, 58, 60, 66, 67, 71, 72, 77, 80, 81, 91, 92, 96, 97, 119, 124, 126, 128, 129, 130, 132, 137, 138, 142, 147, 148, 152, 153, 155, 158, 172, 177, 178], "am": 151, "amazon": [40, 48, 60, 88, 175], "amazonaw": 48, "amazons3": 153, "amd": 99, "american": 10, "among": [0, 3, 84, 119, 130, 177], "amongst": 95, "amount": [8, 28, 47, 59, 60, 81, 83, 93, 126, 133, 153, 175], "amp": 82, "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, 95, 96, 98, 101, 103, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 164, 166, 170, 172, 174, 175, 177, 178, 179], "analysi": 12, "analyt": 15, "analyz": [60, 116], "andrew": 2, "android": [60, 64, 65, 72, 88, 101, 119, 134], "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, 93, 94, 95, 96, 97, 98, 99, 101, 105, 107, 110, 111, 112, 113, 114, 116, 120, 126, 132, 133, 134, 137, 138, 143, 147, 148, 150, 151, 152, 153, 155, 156, 164, 165, 170, 172, 176, 177, 178, 179], "anim": [6, 60], "anna": 2, "anniversari": 177, "announc": [12, 63, 81, 126], "annual": 178, "anon": 60, "anonym": [81, 111, 126, 160], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 111, 114, 116, 126, 128, 129, 131, 135, 137, 138, 148, 151, 153, 158, 172, 173, 177], "ansi": 150, "answer": [1, 2, 60, 81, 176, 179], "anti": [56, 60, 88], "anticip": 177, "antiviru": [65, 88, 150], "anymor": [76, 81, 88, 154, 175], "anyon": [12, 43, 67, 77], "anyth": [14, 22, 31, 56, 58, 60, 112, 113, 142, 143], "anytim": [49, 60], "anywai": [92, 151], "anywher": [32, 124, 128, 155], "apach": [19, 41, 59, 60, 68, 70, 88, 93, 96, 110, 125, 126, 127, 128, 129, 132, 134, 138, 145, 150, 172], "apache2": [59, 88, 93, 125, 126, 130, 133, 138, 158], "apache2ctl": 133, "apart": 123, "apc": [59, 60, 150, 174], "apcu": [60, 65, 70, 88, 123, 130, 132, 150, 174], "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, 93, 95, 96, 99, 116, 126, 129, 132, 155, 157, 166, 172, 178, 179], "apirequest": [17, 75, 76, 77, 82, 87, 179], "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, 93, 94, 98, 99, 100, 101, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 129, 130, 131, 133, 140, 142, 144, 145, 147, 148, 150, 151, 152, 154, 155, 156, 160, 161, 164, 165, 166, 167, 172, 175, 177, 179], "app1": 149, "app2": 149, "app3": 149, "app_": 18, "app_api": [2, 3, 4, 8, 88, 96, 97, 98], "app_api_haproxy_us": 96, "app_container_nam": 96, "app_display_nam": 8, "app_host": 8, "app_id": [8, 97, 99], "app_port": 8, "app_python_skeleton": 98, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 94, 96, 97, 98, 99, 100], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 149], "appdata": [93, 153], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 93, 95, 108, 114, 120, 125, 128, 129, 132, 137, 153, 154, 155, 165, 178], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 128, 136, 147, 150], "appframework": 99, "appid": [14, 17, 96, 98, 136, 137, 155], "appimag": 134, "appinfo": [17, 137], "appl": [60, 72, 93, 134], "applewebkit": 67, "appli": [8, 12, 23, 25, 26, 27, 29, 41, 43, 44, 53, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 96, 102, 106, 107, 118, 119, 120, 126, 133, 139, 146, 147, 148, 149, 150, 153, 155, 156, 178], "applianc": [133, 143], "applic": [0, 2, 8, 12, 16, 17, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 95, 96, 101, 107, 110, 112, 116, 127, 129, 132, 133, 135, 137, 138, 142, 143, 146, 148, 150, 152, 155, 157, 177], "appnam": 149, "appoint": [61, 112], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 107, 141, 142, 177], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 96, 107, 111, 112, 116, 121, 125, 129, 132, 133, 136, 142, 143, 150, 155, 177], "approv": 88, "approve_link": 179, "approxim": [60, 81, 93, 152, 177], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 178], "apt": [56, 125, 126, 158, 159], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 22, 23, 24, 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, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 165, 166, 172, 173, 175, 177, 178, 179], "arab": 4, "arbitrari": [1, 40, 60, 129], "arch": 150, "architectur": [26, 60, 88, 99, 133, 145], "archiv": [56, 60, 88, 107, 111, 118, 123, 125, 133, 142, 147, 148, 153, 155], "area": [54, 69, 133, 167], "arg": 129, "arg_v": 129, "argon2": [60, 130], "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 129, 138, 150, 152, 153, 155, 156], "aris": [60, 143, 177], "ark": 132, "arm32v7": 150, "around": [10, 15, 16, 88, 101, 102, 177], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 96, 112, 120, 123, 124, 128, 137, 178, 179], "arrang": 177, "arraycach": 60, "arriv": [40, 69, 108, 132], "art": 126, "articl": [63, 88, 107, 108, 110, 138], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 95], "asc": [123, 125], "ascii": [60, 71, 81, 130, 137], "asdf": 67, "asid": 175, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 108, 116, 138, 146, 147, 148, 150, 152, 153, 155, 160, 166, 172], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 126, 129, 173], "asset_immut": 129, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 101, 104, 105, 132, 153, 154, 179], "assignable\u00b2": 156, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 93, 102, 116, 147], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 93, 111, 138, 143, 155, 156, 177, 178], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 96, 112, 113, 124, 126, 129, 133, 138, 143, 145, 146, 147], "assumpt": 129, "asterisk": 154, "astroc": 151, "astronomi": 151, "async": 179, "asynchron": [3, 179], "atom": [60, 129], "attach": [1, 15, 18, 38, 81, 88, 97, 178], "attack": [29, 58, 106, 126, 175], "attempt": [25, 28, 58, 78, 81, 88, 92, 93, 99, 101, 110, 126, 128, 138, 151, 152], "attend": 2, "attende": [110, 112], "attr": 82, "attr_persist": 60, "attribut": [40, 75, 76, 77, 82, 87, 88, 111, 154], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88], "audio": [1, 2, 4, 6, 12, 15, 51, 60, 171, 172], "audit": [12, 53, 60, 65, 88, 107, 111, 126, 131, 155], "auth": [58, 63, 80, 87, 88, 96, 107, 129, 153], "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, 96, 106, 107, 110, 111, 115, 126, 130, 133, 138, 143, 150, 153, 155, 170, 178], "authmiddlewar": 179, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 112, 116, 119, 130, 133, 137, 179], "authorit": [77, 146], "authorized_kei": [32, 37], "authtyp": 133, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 107, 123, 126, 153, 154], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 113, 114], "autoconfig": [60, 88, 120], "autoconfigur": [60, 118], "autocr": [48, 60], "autofil": 95, "autom": [3, 59, 60, 67, 81, 88, 92, 101, 104, 105, 118, 133, 147, 155, 156, 178, 179], "automat": [2, 3, 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, 93, 95, 96, 97, 105, 107, 108, 110, 111, 112, 113, 114, 116, 126, 127, 130, 133, 138, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 170, 172, 174, 178, 179], "autotest": 129, "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, 93, 94, 96, 97, 98, 99, 104, 105, 107, 108, 111, 112, 114, 118, 119, 123, 124, 126, 128, 130, 132, 133, 136, 138, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 160, 161, 162, 165, 166, 172, 173, 177, 178, 179], "available_ram_for_php": 132, "avatar": [63, 74, 77, 82, 88, 110, 151, 153], "avatarscop": 77, "avconv": 130, "averag": [26, 112, 113, 132, 155], "average_worker_rss": 132, "avoid": [3, 19, 22, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 93, 98, 102, 107, 128, 130, 147, 155, 178], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 123, 131, 175], "awai": [18, 88, 112, 132, 138, 143], "await": 179, "awar": [8, 77, 81, 93, 108, 126], "awk": 132, "ax": 59, "axi": 47, "azur": [88, 115], "b": [40, 60, 96, 153], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 137, "b4af8db0ae269d73432e9a01e63a": 137, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 137, "back": [3, 25, 26, 28, 38, 56, 58, 60, 63, 96, 101, 113, 114, 128, 129, 135, 138, 140, 142, 143, 147, 148, 152], "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, 111, 113, 119, 126, 128, 129, 132, 133, 143, 154, 155, 156, 175], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 81, 83, 88, 111, 114, 127, 144, 148, 150, 151, 153, 178, 179], "background_color": [72, 155], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "backgroundcolor": 72, "backgroundjob": [3, 155, 178], "backport": [136, 177], "backportbot": 136, "backslash": 178, "backtrac": [67, 88, 132], "backup": [23, 46, 47, 60, 80, 88, 111, 116, 133, 135, 138, 141, 142, 143, 144, 147, 148, 149, 153, 155, 156, 162, 177], "backup_cod": 156, "backward": [22, 82], "bad": [5, 88, 126, 132], "badger": 64, "bak": [140, 146], "balanc": [26, 40, 59, 69, 81, 88, 128, 132], "ban": 126, "bandwidth": [26, 129], "banner": [81, 148], "bantim": 126, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 135], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 96, 99, 101, 102, 107, 123, 124, 126, 127, 129, 130, 133, 134, 141, 142, 143, 148, 150, 153, 155, 160, 162, 177, 178, 179], "base64": [29, 31, 48, 60, 147, 152], "base64_signature_her": 147, "basenam": [60, 173], "baseurl": 179, "bash": [34, 123, 133, 150], "bash_profil": 150, "basi": [57, 106], "basic": [17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 96, 123, 126, 132, 133, 138, 147, 170, 179], "batch": [11, 81, 88, 141, 154, 156], "bc95cbaff3abbed716e1d40bbdaa58a0": 118, "bcrypt": [126, 130], "bearer": [2, 68, 74, 88], "beauti": 179, "becaus": [19, 20, 22, 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, 106, 112, 116, 118, 120, 123, 126, 128, 131, 132, 133, 134, 138, 142, 147, 149, 152, 153, 156, 178], "becom": [40, 43, 60, 69, 88, 132, 133, 138, 151, 152, 153, 175], "been": [3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 93, 101, 105, 106, 114, 120, 137, 144, 149, 150, 155, 156, 162, 168, 170, 175, 177], "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, 95, 96, 105, 108, 111, 112, 116, 117, 118, 124, 128, 129, 130, 132, 133, 134, 135, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 158, 173, 177, 178], "beforehand": [135, 177], "beforenodecopiedev": 178, "beforenodecreatedev": 178, "beforenodedeletedev": 178, "beforenodereadev": 178, "beforenoderenamedev": 178, "beforenoderestoredev": 178, "beforenodetouchedev": 178, "beforenodewrittenev": 178, "begin": [2, 3, 5, 7, 81, 106, 131, 138, 142, 143, 154, 172], "begin_of_text": 5, "behalf": [1, 12, 77, 153], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 93, 132, 138], "behaviour": [52, 81, 85, 126, 129, 151, 153], "behind": [15, 26, 58, 60, 70, 88, 93, 133, 137, 153], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 95, 99, 101, 102, 112, 116, 123, 126, 129, 132, 136, 143, 149, 153, 154, 155, 173, 177], "believ": 138, "belong": [2, 81, 85, 110, 118, 153, 157], "below": [1, 3, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 95, 96, 101, 106, 107, 118, 128, 129, 130, 138, 142, 144, 148, 154, 156, 158, 178], "benchmark": [4, 12, 60, 118], "bender": 154, "benefici": 132, "benefit": [48, 60, 95, 96, 119, 126, 132, 133, 138, 177], "berlin": [2, 14, 60, 67, 117, 149, 156], "besid": [58, 60, 81, 95, 129], "best": [14, 15, 47, 58, 59, 63, 92, 101, 116, 126, 128, 130, 133, 134, 138, 142, 143, 148, 159, 178], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 138, 177], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 93, 95, 96, 97, 101, 132, 142, 144, 146, 148, 152, 153, 157, 177], "bewar": [18, 40, 57], "beyond": [22, 48, 55, 88, 107], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 93, 129, 130, 138, 174, 177], "big_temp_fil": 26, "bigger": [57, 60, 148], "bigint": [21, 25, 88, 144], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 96, 110, 115, 124, 133, 150, 178], "binari": [29, 38, 47, 60, 63, 96, 134, 137, 152, 153], "binary_search_path": 88, "bind": [81, 96, 97, 130, 133, 154], "bind_address": 96, "bing": 166, "binlog_format": [22, 134], "bio": 132, "biographi": [77, 81, 110], "biographyscop": 77, "birth": 81, "birthdai": [88, 115], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 124, 134, 161], "bitmap": 60, "black": 2, "blacklisted_fil": 173, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 99, 124, 126, 129, 132, 164, 173], "blocker": 64, "blog": [6, 8, 11, 28, 60, 119, 123, 129], "blue": 89, "blueski": [77, 110], "blueskyscop": 77, "blurri": 47, "bmp": [60, 129], "board": [2, 166, 167], "bob": [77, 156, 178], "bock": 173, "bodi": [60, 124, 178, 179], "bodyparamet": 179, "bold": 177, "book": [11, 43, 60, 77, 85, 88, 112, 115, 151, 153, 155], "bookmark": [15, 88], "bookworm": 134, "bool": [112, 118], "boolean": [16, 20, 23, 41, 60, 149, 151], "boolval": 96, "boot": [57, 59, 123, 132], "bootstrap": [59, 60], "border": 40, "borrow": 129, "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, 96, 99, 102, 108, 114, 116, 118, 119, 126, 129, 130, 132, 133, 143, 148, 150, 152, 153, 156, 157, 164, 165, 178, 179], "bottleneck": 132, "bottom": [111, 142], "bound": [3, 93, 96], "bounti": 12, "box": [28, 54, 58, 63, 81, 93, 95, 118, 161, 170, 179], "bpxrficyexamplekei": 153, "bracket": [81, 82], "branch": 137, "brand": [64, 65, 88, 119, 159], "brazilian": 4, "breach": [86, 126], "break": [15, 60, 129, 134, 138, 149, 177], "breakdown": [88, 155], "breton": 4, "bridg": [96, 97, 108], "brief": [151, 170], "briefli": 96, "bring": [15, 165], "british": 10, "broadcast": [88, 150], "broaden": 154, "broken": [23, 28, 70, 129, 138, 152, 153, 172], "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 93, 101, 106, 107, 123, 124, 126, 127, 128, 129, 132, 133, 138, 143, 145, 147, 155, 158, 162, 163, 164, 172, 175], "brute": [60, 65, 88, 107, 110, 126, 155], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 124, "bt": 11, "btoa": 179, "bucket": [31, 36, 46, 60, 88, 143, 153], "bucketnam": 48, "buffer": [26, 93, 129, 132], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 93, 118, 119, 132, 134, 139, 148, 149, 151], "bugtrack": 138, "build": [6, 8, 12, 56, 88, 92, 118, 129, 136], "built": [1, 2, 5, 7, 9, 10, 11, 28, 32, 54, 58, 60, 67, 70, 88, 93, 107, 108, 109, 111, 112, 129, 130, 133, 134, 138, 141, 142, 144, 148, 155, 158, 161, 164], "builtin": 153, "bulk": [6, 60, 77], "bulkupload": 88, "bun": 179, "bundl": [3, 16, 40, 59, 60, 130, 155, 178], "burst": 132, "busi": [60, 132, 133, 138, 164], "bust": 129, "button": [1, 16, 32, 40, 41, 60, 63, 72, 81, 85, 88, 93, 94, 95, 108, 113, 116, 138, 147, 179], "byedvluwkxkmflpbgvxc": 67, "bypass": [3, 48, 54, 56, 60, 81, 93, 126, 147, 153], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 93, 116, 118, 124, 134, 138, 140, 155], "bytecod": 132, "bz2": [123, 125, 142], "bzip2": 123, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 96, 118, 123, 125, 126, 130, 132, 133, 138, 146, 147, 155], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 137, "c478e6c156c5955ed53c40d06585": 137, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 137, "ca": [22, 59, 60, 96, 155], "ca_cert": 60, "cach": [8, 38, 45, 58, 65, 69, 82, 88, 112, 127, 129, 135, 138, 143, 149, 150, 152, 153, 154, 155, 172], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [93, 138], "caddi": 88, "cadenc": 177, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 132], "caldav": [60, 65, 69, 88, 113, 115, 118, 124, 129, 133, 138, 170, 178], "caldav_external_attendees_dis": 112, "calendar": [12, 16, 23, 61, 63, 88, 108, 110, 111, 114, 115, 117, 137, 139, 144, 150], "calendarchang": [112, 151], "calendardata": 178, "calendarid": 178, "calendarobjectcreatedev": 178, "calendarobjectdeletedev": 178, "calendarobjectmovedev": 178, "calendarobjectmovedtotrashev": 178, "calendarobjectrestoredev": 178, "calendarobjectupdatedev": 178, "calendarretentionoblig": 112, "calendarserv": 178, "calendarsubscriptionrefreshr": 112, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 93, 95, 114, 116, 120, 129, 131, 133, 134, 138, 146, 147, 151, 153, 156, 157, 165, 178, 179], "callback": 179, "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, 101, 102, 103, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 172, 173, 174, 175, 176, 177, 178], "can_instal": 124, "cancel": [138, 155], "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, 107, 111, 114, 118, 126, 130, 134, 136, 137, 142, 146, 147, 148, 150, 152, 153, 155, 156, 170, 177], "canon": [60, 88], "cantonbeck": 151, "cap": [132, 153, 158], "cap_add": 132, "capabl": [2, 4, 12, 15, 60, 81, 88, 96, 109, 112, 132, 153, 156, 158, 163, 164, 165], "capac": [5, 7, 9, 10, 48, 132], "captur": 178, "carbonara": 2, "card": [2, 15, 69, 77, 85, 95, 113, 166, 167], "carddav": [43, 65, 69, 88, 112, 114, 115, 124, 129, 133, 138, 170], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 96, 97, 124, 129], "carefulli": [138, 149], "carol": 178, "carri": [2, 60, 106, 153, 155], "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, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 95, 96, 97, 99, 101, 102, 116, 118, 123, 126, 128, 130, 132, 133, 134, 138, 142, 143, 144, 146, 147, 149, 150, 152, 156, 157, 164, 170, 172, 177, 178, 179], "cast": 60, "cat": [2, 31, 151, 153], "catalan": 4, "catch": [56, 138], "categori": [2, 16, 95, 107, 110, 114], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 93, 129, 131, 132, 133, 137, 138, 143, 146, 147, 150, 151, 153, 155, 172, 174, 175], "causal": 24, "caution": [8, 118, 129], "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, "cd": [8, 15, 23, 28, 34, 121, 124, 159, 178], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 137, "ce6cd914": 154, "ce8b61c2": 154, "ce9e248333c44a5a64ccad26f2550f95": 118, "ceas": 177, "ceil": 132, "center": 63, "cento": [56, 59, 88, 127, 129, 133, 134, 150], "central": [28, 29, 59, 153], "ceph": 48, "cert": [22, 59, 60, 94, 96, 124, 158], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 93, 105, 112, 113, 126, 129, 133, 147, 154, 164], "certfil": 96, "certif": [32, 33, 46, 60, 64, 82, 88, 90, 93, 96, 116, 124, 126, 129, 133, 134, 137, 153, 158, 159, 170], "certifi": 89, "cfb": 60, "cfg": 93, "cgi": 129, "challeng": [126, 129, 132], "chanc": [118, 138, 177], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 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, 95, 96, 101, 107, 112, 113, 116, 118, 121, 123, 125, 126, 129, 130, 132, 133, 137, 140, 142, 143, 146, 148, 149, 153, 155, 156, 162, 164, 170, 171, 172, 173, 174, 177, 178, 179], "changelog": [16, 88, 142, 147], "channel": [16, 88, 108, 119, 138, 147], "chapter": [92, 109, 130, 133, 138, 177], "char": [81, 153], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 93, 125, 126, 130, 140, 146, 153], "character_set_serv": 22, "characterist": 60, "charg": [84, 111, 179], "charli": 77, "charset": [25, 60, 88], "chart": [85, 133], "chat": [2, 5, 13, 14, 61, 88, 101, 111, 151], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 175, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 95, 96, 98, 100, 101, 114, 116, 118, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 150, 164, 173, 174, 177, 178, 179], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 85, 92, 96, 112, 113], "checker": [60, 70], "checkout": 3, "checksum": [81, 123, 125, 147, 151, 175], "children": 155, "chines": 4, "chmod": [28, 34, 96, 142], "choic": [8, 22, 56, 60, 80, 81, 88, 126, 127, 130, 143, 148], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 95, 96, 112, 113, 124, 128, 129, 130, 133, 138, 142, 158, 165, 177, 179], "chooser": 60, "chose": [116, 148], "chosen": [1, 20, 22, 40, 59, 60, 128], "chown": [28, 34, 121, 123, 125, 129, 133, 142], "christoph": 118, "chrome": [67, 134], "chromium": [134, 175], "chroot": [88, 127], "chunk": [3, 43, 46, 60, 88, 93, 118, 129], "chunked_upload": [26, 88], "chunksiz": 93, "ci": [60, 156], "cidr": [60, 69], "cif": [40, 88, 127, 130], "cipher": [29, 88, 93, 126], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": 60, "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 137, 155, 178], "classic": 133, "classif": [155, 178], "classifi": [6, 93, 118], "clean": [1, 49, 53, 57, 60, 80, 88, 99, 108, 111, 112, 133, 153, 154, 155, 156, 170], "cleanli": 155, "cleanup": [1, 44, 47, 74, 80, 81, 88, 107, 108, 114, 154, 172], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 106, 118, 132, 155], "clear_env": 133, "cli": [57, 63, 65, 67, 69, 88, 94, 98, 100, 112, 123, 126, 127, 132, 133, 143, 148, 150, 155, 172], "click": [16, 40, 41, 54, 60, 63, 64, 78, 81, 85, 93, 95, 116, 128, 137, 138, 147, 179], "clickjack": [64, 126], "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, 96, 97, 101, 110, 111, 112, 113, 114, 116, 118, 119, 126, 127, 128, 129, 131, 132, 133, 137, 138, 141, 143, 147, 151, 155, 157, 158, 163, 179], "client_body_buffer_s": 129, "client_body_temp_path": 26, "client_body_timeout": 129, "client_max_body_s": [26, 129], "clientreqid": 67, "clone": [7, 8], "close": [7, 8, 10, 43, 60, 63, 69, 88, 106, 107, 138, 147], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 96, 114, 119, 126, 129, 133, 153, 155, 156, 158, 164, 179], "cloud2": 158, "cloud_id": 156, "cloudfil": [36, 60], "cloudflar": [60, 93, 129, 138], "clue": 88, "cluster": [0, 3, 6, 88, 143], "cmd": [92, 96, 123], "cn": [60, 81, 82, 154], "cname": 143, "cnf": [22, 60, 124], "co": [5, 11], "co2": [6, 11], "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, 93, 119, 121, 126, 129, 132, 135, 138, 139, 147, 148, 151, 153, 158, 159, 160, 161, 162, 164, 178], "code_docker_imag": 161, "codebas": [60, 144], "cold": 132, "collabor": [32, 88, 101, 102, 119], "collabora": [32, 88, 133, 159, 160, 161, 163, 164, 167, 172], "collaboraoffic": [159, 161, 162], "collaboraonlin": [157, 158, 159, 161, 162, 163], "collaps": 128, "collat": [22, 23, 88, 125, 146], "collation_serv": 22, "colleagu": 151, "collect": [15, 57, 60, 118, 126, 132, 166, 167], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 151, 156], "column": [19, 25, 85, 88, 116, 144, 148], "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, 96, 110, 112, 116, 119, 121, 123, 125, 126, 128, 129, 130, 132, 133, 134, 136, 137, 138, 142, 147, 149, 151, 154, 155, 157, 158, 159, 161, 162, 163, 164, 172, 175, 176, 178], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 93, 130, 133, 145, 147, 153, 154, 156, 179], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 95, 96, 123, 133, 134, 138, 150, 155, 161, 178, 179], "comma": [60, 61, 81, 156], "command": [1, 4, 6, 13, 14, 15, 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, 96, 97, 98, 99, 103, 111, 112, 116, 117, 118, 123, 125, 127, 130, 131, 132, 133, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 148, 174, 175, 178], "comment": [23, 26, 40, 43, 56, 65, 88, 108, 111, 133, 136, 142, 147, 160, 166, 167], "commentsmanag": 60, "commerci": [119, 133, 138], "commit": [60, 65, 88, 134], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 95, 104, 111, 116, 123, 126, 129, 132, 133, 147, 150, 155, 163, 179], "commonli": [28, 48, 58, 59, 130, 138], "commonnam": [60, 133, 178], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 95, 97, 100, 118, 119, 121, 125, 130, 133, 138, 147, 150, 155, 160, 163, 165, 174, 177], "compani": [2, 12, 64, 72, 81, 147], "compar": [20, 57, 81, 120, 142, 151], "comparison": [46, 60, 81, 88, 178], "comparison_of_file_system": 60, "compat": [0, 3, 5, 16, 22, 28, 31, 38, 40, 46, 48, 59, 60, 80, 82, 88, 130, 132, 144, 148, 152, 158, 177, 178], "compens": 38, "compil": [22, 59, 132], "complain": 149, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 101, 110, 121, 123, 124, 126, 130, 131, 132, 133, 135, 144, 146, 147, 148, 150, 153, 155, 166, 169, 178], "completionexpectedat": 14, "complex": [28, 60, 96, 107, 111], "compli": [60, 111, 153], "complianc": [13, 53, 60, 88, 107, 138], "compliant": [80, 126, 134], "compon": [12, 60, 88, 129, 132, 133, 138, 165, 170, 178], "compos": [56, 132], "composit": [114, 167], "compound": 88, "comprehens": 138, "compress": [56, 60, 85, 88, 93, 101, 107, 126, 127, 130, 174], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 95, 96, 97, 99], "compute_devic": 97, "computedevic": 97, "concaten": [29, 38], "concept": [25, 124, 149], "concern": [8, 26, 28, 29, 47, 60, 129, 177], "concert": 2, "concurr": [3, 4, 48, 60, 132, 172], "condit": [14, 15, 65, 70, 81, 88, 102, 138, 177, 178, 179], "condition": 60, "conf": [22, 56, 59, 81, 96, 123, 124, 126, 129, 133, 138], "confdir": 92, "confer": [2, 119], "confidenti": [68, 101, 156, 157], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 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, 95, 96, 97, 98, 103, 106, 107, 112, 113, 116, 117, 118, 120, 123, 124, 128, 129, 131, 132, 133, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 156, 158, 164, 172, 173, 174, 175, 176], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 154], "configur": [2, 4, 12, 13, 16, 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, 97, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 114, 115, 117, 118, 123, 125, 128, 134, 135, 138, 142, 143, 144, 146, 147, 150, 152, 153, 154, 155, 156, 160, 163, 167, 169, 176, 178, 179], "configuration_serv": 60, "confin": [43, 133], "confirm": [4, 19, 22, 41, 48, 65, 68, 70, 77, 78, 81, 88, 108, 109, 123, 125, 130, 132, 133, 142, 143, 152, 153, 155, 156], "conflict": [16, 38, 60, 81, 118, 146, 151], "confus": [28, 38], "congratul": [116, 158], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 22, 24, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 95, 96, 97, 111, 112, 113, 116, 124, 127, 128, 129, 131, 132, 133, 134, 138, 143, 153, 154, 155, 157, 163, 164, 172, 176, 178], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 127, 128, 151], "consecut": 34, "consent": [106, 116], "consequ": [46, 88, 126, 129, 152], "conserv": 132, "consid": [1, 8, 16, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 93, 107, 108, 110, 112, 113, 118, 126, 133, 134, 138, 146, 164, 177], "consider": [46, 60, 65, 85, 88, 177], "consist": [20, 29, 40, 44, 60, 101, 116, 129, 138, 142, 150], "consol": [19, 53, 64, 98, 129, 133, 138, 142, 150, 158], "const": 179, "constant": [60, 77], "constitut": 109, "constrain": 92, "constraint": [77, 133, 147, 153], "consult": [16, 26, 28, 56, 59, 60, 109, 111, 126, 130, 134, 178], "consum": [8, 26, 58, 60, 77, 148], "consumpt": [5, 6, 7, 11, 26, 88, 90, 132], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 108, 110, 111, 112, 115, 121, 133, 137, 139, 144, 149, 153, 160, 176], "contactinteractedwithev": 114, "contactsinteract": 114, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 97, 98, 101, 106, 107, 110, 111, 113, 114, 116, 118, 126, 129, 132, 133, 135, 136, 138, 147, 150, 152, 155, 157, 158, 161, 164, 172, 178, 179], "container": 133, "container_id": 158, "container_nam": 56, "content": [2, 3, 11, 12, 15, 20, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 93, 96, 102, 110, 112, 113, 119, 123, 124, 125, 126, 129, 137, 138, 142, 146, 149, 152, 153, 155, 166, 178], "context": [5, 8, 13, 28, 38, 58, 60, 67, 77, 88, 92, 101, 130, 150, 167, 175], "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, 96, 98, 106, 126, 134, 144, 147, 151, 152, 155, 164], "contract": 106, "contrast": 18, "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 138], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 95, 102, 104, 105, 107, 109, 110, 113, 126, 129, 132, 133, 145, 149, 150, 151, 153, 155, 156, 172], "convei": [11, 152], "conveni": [77, 121], "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 110, 111, 118, 157, 166, 167], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 102, 132, 138, 144, 152, 158], "cookbook": 88, "cooki": [60, 65, 88, 107, 109, 110], "cookie_domain": 88, "cool": [158, 162, 163], "coolconfig": [157, 159], "coolwsd": [157, 158, 159, 161, 162, 163], "cooper": 119, "coordin": [2, 130], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 81, 85, 88, 96, 107, 108, 114, 116, 123, 125, 129, 140, 142, 143, 146, 155, 178], "copied_sample_config": 88, "copyright": 112, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 107, 124, 125, 129, 130, 132, 133, 137, 142, 145, 152, 155, 156, 172, 177, 178], "coreinfo": 132, "corpor": [72, 133], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 93, 95, 111, 118, 126, 128, 129, 130, 133, 136, 137, 138, 142, 144, 150, 153, 154, 177, 179], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 93, 94, 99, 114, 117, 123, 129, 133, 138, 151, 153, 155, 173], "correspond": [26, 45, 47, 48, 77, 81, 83, 123, 125, 129, 130, 135, 138, 142, 152, 153, 156, 167, 178], "corrupt": [45, 59, 60, 143, 147, 148, 153], "cost": [60, 129], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 93, 101, 118, 124, 126, 129, 134, 137, 138, 140, 146, 149, 154, 155, 164], "couldn": 99, "counsel": 109, "count": [2, 60, 85, 88, 105, 126, 132, 138, 155, 156], "counter": 152, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 101, 128, 138, 147, 158, 179], "court": 81, "cover": [22, 96, 101, 116, 128, 129, 137, 148, 153, 155, 169, 174, 175, 176], "coverag": [5, 9, 11], "cp": [3, 4, 123, 124, 125, 153], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 95, 96, 97, 126, 132], "cpuinfo": [3, 132], "cr": 81, "cram": 63, "crammd5": 63, "crash": 93, "crawler": 176, "crc32": 175, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 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, 95, 96, 97, 99, 101, 102, 105, 110, 112, 113, 114, 116, 118, 119, 120, 123, 124, 125, 126, 128, 133, 135, 138, 142, 143, 144, 145, 146, 147, 149, 152, 155, 156, 157, 172, 178], "create_example_ev": 151, "createcli": 179, "createdb": 22, "createrol": 128, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 96, 105, 110, 112, 113, 133, 155, 156, 176], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 116, 120, 126, 128, 143, 151, 152, 153, 157, 179], "crew": 154, "criteria": [7, 25, 67, 101, 178], "critic": [3, 5, 7, 8, 12, 60, 88, 126, 134, 138, 142, 148, 177], "crl": 60, "crlf": 81, "cromwel": 130, "cron": [3, 6, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 107, 112, 114, 116, 126, 127, 129, 130, 138, 142, 144, 148, 149, 151, 153, 178], "cronjob": [43, 57, 58, 124], "crontab": [53, 57, 112, 138, 142, 144], "crop": 81, "cross": [60, 106, 110, 119, 129, 132], "crt": [59, 60, 96, 129, 153, 155], "crucial": [60, 157], "crypto": 96, "cryptograph": 126, "cryptographi": 3, "csrf": [70, 88, 106], "css": [69, 88, 132, 153], "csync": 88, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [93, 130], "ctype": 130, "cuda": [3, 4, 5, 6, 7, 9, 11, 95, 97], "cudnn": 6, "culprit": 132, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 96, 123, 125, 130, 164, 172], "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, 95, 96, 97, 101, 107, 112, 116, 121, 123, 124, 126, 132, 133, 134, 137, 142, 144, 148, 149, 150, 151, 152, 153, 155, 164, 176, 177, 178], "currentvers": 147, "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, 95, 96, 102, 110, 113, 116, 119, 122, 129, 130, 131, 132, 133, 137, 140, 141, 143, 153, 155, 166, 173, 174, 178, 179], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 155], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 107], "cycl": [40, 119], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 96, 107, 123, 124, 126, 129, 131, 132, 133, 140, 142, 146, 147, 158, 159], "d1": [44, 49, 60, 107], "d2": [44, 49, 60, 107], "d5685c3b45aee373b09be54742ea": 137, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 98, 100, 163], "daemon_config_nam": 8, "daemonconfig": [96, 97], "dai": [1, 2, 3, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 93, 105, 106, 107, 110, 112, 114, 116, 119, 123, 151, 153, 177, 178], "daili": [12, 53, 58, 60, 107, 119, 153], "daisi": 156, "dall": 167, "danger": 64, "dark": 60, "dash": [67, 85, 153], "dashboard": [60, 65, 88, 116], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 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, 93, 94, 96, 98, 106, 109, 115, 116, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 154, 157, 165, 167, 172, 175, 177, 178, 179], "data_request": 108, "databas": [12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 65, 67, 81, 83, 88, 93, 112, 113, 114, 121, 125, 126, 127, 133, 135, 138, 141, 142, 143, 144, 147, 148, 150, 153, 155, 156, 166, 167, 178], "databaseid": 118, "datacent": [31, 48], "datadir": [28, 60, 131], "datadirectori": [29, 67, 88, 120, 135, 143, 147], "dataintegr": [60, 175], "dataloss": 146, "dataset": 11, "date": [2, 14, 19, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 110, 112, 116, 122, 123, 130, 132, 134, 138, 140, 146, 153, 155, 156, 169, 177], "dateinterv": 112, "datepattern": 126, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 93, 108, 111, 112, 113, 114, 117, 118, 123, 124, 129, 133, 138, 150, 155], "davclnt": 129, "david": 178, "davstorag": [26, 41, 88], "davx5": 114, "davx\u2075": 118, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 93, 124, 128, 138, 140, 144, 146, 148, 156], "db8": 60, "db_": 129, "db_name": [140, 146], "dbal": 60, "dbdriveropt": [22, 25, 88], "dbhost": [22, 25, 88, 120, 135, 143], "dbindex": [59, 60, 149], "dbname": [22, 24, 25, 88, 120, 143], "dbpass": 120, "dbpassword": [22, 25, 88, 120, 128, 143], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbtableprefix": [22, 88, 120], "dbtype": [20, 22, 88, 120, 135], "dbuser": [22, 25, 88, 120, 128, 143], "dc": [81, 82, 83, 154], "dd": [81, 151], "ddl": 174, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 112, 116, 173, 174, 175], "deal": [118, 133], "deb": [125, 159], "debian": [22, 56, 59, 72, 121, 130, 132, 133, 134, 138, 150, 158], "debug": [12, 13, 70, 81, 88, 118, 127, 129, 137, 143, 147, 151, 153, 155], "decemb": 123, "decid": [12, 22, 28, 92, 95, 105, 129, 148, 177], "decim": 48, "decis": [28, 135], "deck": [15, 28, 88, 153, 155, 166, 167], "declar": [81, 88], "decod": 155, "decompress": 130, "decreas": [60, 88, 93], "decrement": 152, "decrypt": [46, 48, 60, 88, 96, 106, 126, 132, 138, 150], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 112, 119, 127, 128, 129, 132, 135, 147, 151, 153, 155, 161], "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, 97, 98, 106, 107, 110, 112, 113, 114, 115, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 138, 140, 145, 146, 148, 149, 150, 151, 153, 155, 156, 159, 161, 163, 166, 175, 177, 178, 179], "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, 117], "default_us": 22, "defaultapp": 88, "defaultmodul": 152, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 107, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 96, 101, 102, 103, 112, 126, 129, 137, 150, 151, 153, 157, 172, 177, 178, 179], "definit": [20, 46, 88, 126, 177], "defunct": 81, "degrad": [60, 132, 151], "degre": 135, "delai": [0, 15, 40, 41, 53, 57, 58, 60, 88, 112, 155], "deleg": [65, 88, 115, 150, 178], "delegate_permiss": 55, "delet": [1, 2, 3, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 98, 101, 105, 107, 108, 110, 111, 112, 113, 115, 117, 118, 135, 137, 138, 142, 146, 147, 150, 152, 178], "delete_timestamp": 29, "deliber": [107, 177], "delimit": [31, 81], "deliv": [12, 53, 108, 129, 177], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 107, 126, 153], "demo": [60, 155], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 104, 129, 131, 156], "denial": [58, 126, 131], "denot": 29, "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, 95, 114, 116, 123, 124, 126, 128, 133, 134, 135, 138, 142, 143, 145, 148, 150, 152, 158, 167, 173, 174, 175, 178], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 100, 119, 123, 124, 129, 132, 138, 161, 177], "deploy": [3, 28, 60, 65, 77, 88, 91, 95, 97, 99, 100, 109, 119, 123, 127, 130, 132, 133, 134, 135, 138, 148, 160, 161, 177], "deployconfig": [88, 96], "deploydaemon": 96, "deprec": [60, 76, 134, 156, 171, 173, 174, 175, 176, 179], "deprovis": 135, "deriv": [72, 77, 88, 126, 133, 152, 153, 155], "describ": [12, 26, 29, 41, 43, 53, 57, 60, 63, 67, 70, 77, 80, 81, 92, 95, 96, 97, 101, 102, 105, 107, 108, 109, 111, 120, 138, 144, 158], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 94, 110, 112, 116, 123, 130, 132, 133, 155, 166, 178], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 109, 119, 133, 145, 148, 164], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 102, 128, 129, 133, 143], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 93, 101, 119, 127, 132], "desktopshortcut": 92, "despit": [43, 129, 152, 153], "destin": [2, 32, 37, 39, 60, 111, 125, 151, 153], "destruct": 151, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 95, 99, 108, 110, 118, 123, 125, 126, 128, 129, 130, 132, 133, 138, 142, 143, 150, 151, 153, 155, 156, 161, 162, 164, 173, 174, 175, 176, 177, 179], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 96, 106, 128, 129, 130, 153, 154, 155], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 93, 96, 118, 133, 152, 153], "dev": [60, 65, 67, 88, 124, 134, 150, 179], "develop": [12, 15, 16, 54, 60, 80, 91, 93, 94, 95, 118, 126, 128, 133, 134, 136, 137, 138, 145, 148, 153, 160, 177, 178], "developer_manu": 60, "deviat": 126, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 93, 95, 96, 97, 99, 126, 132, 133, 145], "diagnos": [67, 81, 132, 150, 155, 156, 172], "diagnost": [3, 88], "diagram": [15, 96, 179], "dialect": [7, 60], "dialog": [41, 43, 77, 81, 114, 153], "dialogu": [81, 146], "dictat": 96, "did": [20, 28, 30, 88, 99, 138, 149], "diff": 136, "differ": [2, 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, 93, 95, 96, 98, 99, 112, 113, 120, 126, 128, 129, 133, 135, 137, 138, 141, 146, 150, 151, 152, 153, 155, 156, 157, 172, 178], "differenti": [15, 112, 113], "difficult": [60, 128, 137], "difficulti": [2, 146], "diffus": [15, 167], "digestmail": 155, "digit": 134, "dimens": 60, "diminish": 60, "dir": [23, 28, 93, 133, 138, 147, 155], "dirbkp": 146, "dirbkp_": 140, "direct": [26, 40, 59, 60, 77, 79, 81, 101, 129, 132, 133, 138, 174, 177], "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, 93, 96, 101, 106, 108, 111, 128, 129, 133, 135, 138, 147, 148, 149, 153, 155, 166, 179], "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, 93, 101, 102, 111, 118, 121, 123, 124, 125, 127, 129, 132, 133, 135, 136, 139, 140, 142, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156], "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, 95, 96, 97, 100, 101, 103, 107, 110, 111, 112, 113, 114, 117, 118, 129, 130, 131, 132, 133, 134, 142, 144, 147, 148, 149, 150, 153, 154, 155, 159, 173, 174, 175, 176], "disable_act": 85, "disable_email": 85, "disable_funct": 130, "disablefreebusi": 112, "disadvantag": [29, 57], "disallow": [3, 60, 88, 127], "disappear": [43, 45, 58, 59, 123], "disapprov": 179, "discard": 116, "disclaim": 43, "disclos": 107, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 128, 143, 150], "discov": [60, 178], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 110, 133, 139, 158, 163, 164], "discret": [58, 177], "discuss": [12, 22, 43, 93, 119, 175, 177], "disk": [3, 28, 39, 44, 60, 85, 88, 93, 129, 132, 138, 152, 153, 174], "dispar": 7, "dispatch": [88, 114], "displai": [15, 28, 43, 46, 47, 51, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 94, 95, 96, 97, 98, 110, 111, 112, 114, 116, 118, 128, 129, 137, 150, 151, 153, 155, 156], "display_nam": 156, "displaynam": [75, 76, 81, 82, 111, 112, 151, 154, 156, 178], "displaynamescop": 77, "disregard": 138, "disrupt": 148, "dist": [51, 101], "distinct": [48, 77, 88, 107, 111, 178], "distinguish": [46, 60, 88], "distribut": [26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 93, 95, 96, 119, 123, 126, 129, 130, 131, 133, 134, 137, 138, 143, 148, 150, 153, 160, 161], "distro": [38, 60, 96, 131, 133, 138, 145], "dive": 28, "diverg": 151, "divid": 60, "dmz": [88, 127], "dn": [59, 81, 82, 83, 96, 143, 164, 172], "dnextcloud": 22, "dnf": 123, "do": [0, 2, 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, 95, 96, 98, 101, 102, 107, 117, 118, 120, 123, 124, 126, 128, 129, 131, 132, 133, 134, 138, 141, 142, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 165, 172, 173, 174, 175, 177, 178, 179], "do_not_schedule_reboot": 92, "doc": [1, 15, 60, 93, 99, 119, 124, 134, 152, 157, 158, 159, 160, 161, 162, 163, 175], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 97, 99, 100, 130, 132, 133, 148, 150, 152, 160, 161, 164, 172, 178], "docker_aio": 96, "docker_instal": [95, 97], "docker_local_sock": [97, 98], "docker_socket_port": 97, "dockerfil": 8, "dockersocketproxi": 96, "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, 102, 109, 117, 118, 119, 123, 125, 126, 128, 129, 130, 132, 133, 134, 137, 138, 144, 145, 150, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 174, 175, 178, 179], "document_root": 129, "documentation_url": 88, "documentroot": [123, 133, 138], "docx": 160, "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 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, 95, 96, 97, 98, 101, 108, 109, 113, 116, 117, 118, 120, 124, 126, 128, 129, 131, 132, 133, 137, 138, 141, 142, 144, 146, 148, 149, 150, 152, 153, 155, 156, 165, 172, 175, 177, 179], "doesn": [18, 22, 28, 76, 81, 118, 123, 129, 147, 164, 179], "doesnotexist": 149, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 130], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 95, 124, 127, 129, 133, 149, 158, 164, 176], "don": [6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 95, 112, 118, 129, 131, 133, 137, 140, 142, 149], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 96, 98, 123, 124, 133, 143, 144, 147, 151, 152, 157, 158, 172, 176, 178], "dora": 156, "dot": [8, 38, 40, 50, 95, 96, 129, 138, 173, 178], "doubl": [12, 60, 138], "dow": 56, "down": [3, 40, 59, 88, 93, 112, 113, 116, 118, 132, 179], "downgrad": [88, 147, 148], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 85, 88, 89, 93, 96, 100, 101, 106, 108, 110, 111, 121, 123, 125, 126, 133, 136, 138, 141, 142, 143, 144, 148, 149, 152, 153, 155, 157, 158, 159], "downsid": [48, 172], "downstream": [5, 12, 15], "downtim": 81, "dozen": 160, "draft": [2, 3, 5, 7, 118, 138, 153], "draw": [2, 58], "drawback": [32, 133], "drawn": 60, "drive": [26, 60, 132], "driven": [40, 133], "driver": [6, 22, 60, 99, 128], "droid": 60, "drop": [22, 46, 58, 63, 88, 124, 126, 138, 146, 151, 179], "drop_account": 108, "dropbox": 93, "dropdown": [40, 43, 85], "dry": [148, 151, 152, 153], "dsheurist": 81, "dsnap": 124, "dsp": [95, 96, 97], "dst_path": 98, "duckduckgo": [2, 166], "due": [2, 4, 12, 26, 38, 47, 49, 55, 60, 64, 71, 81, 88, 93, 99, 101, 110, 126, 129, 132, 138, 142, 151, 153, 155, 156, 162], "dummi": 147, "dump": [88, 140, 143], "duplic": [3, 11, 88, 114, 129, 138, 155], "durat": [60, 93], "dure": [3, 4, 16, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 96, 99, 123, 129, 132, 133, 141, 143, 147, 152, 155, 174, 175], "dutch": 4, "dynam": [23, 60, 82, 93, 132, 174], "e": [1, 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, 72, 73, 77, 78, 80, 81, 82, 83, 93, 95, 96, 97, 98, 99, 101, 106, 107, 108, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 162, 167, 177, 178, 179], "e2e": 28, "eacceler": 138, "each": [1, 2, 3, 6, 9, 14, 15, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 60, 64, 67, 77, 81, 85, 93, 95, 96, 99, 101, 108, 110, 114, 116, 120, 130, 132, 133, 138, 148, 150, 152, 153, 155, 156, 172, 177, 178, 179], "ear": 1, "earli": [12, 81], "earlier": [57, 60, 81, 123, 138, 177], "eas": [60, 177], "easi": [56, 59, 60, 63, 83, 85, 133, 144, 145, 161, 178], "easier": [55, 60, 93, 118, 132, 133, 144], "easiest": [22, 58, 60, 63, 101, 126, 133, 138, 146, 148], "easili": [15, 41, 60, 63, 64, 133, 144, 145, 163, 179], "east": [48, 60], "easycron": 57, "echo": [15, 155, 159, 178], "ecosystem": [12, 54, 58, 95, 119], "ed": 55, "edg": [15, 43, 116, 134], "edit": [11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 110, 112, 121, 129, 132, 133, 137, 138, 140, 148, 150, 155, 159, 160, 161, 177, 179], "editor": [60, 85, 112, 160], "edri": [60, 126], "edu": 60, "eff": [60, 126], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 93, 106, 131, 132, 147, 153, 172, 178], "effici": [8, 60, 132, 134], "effort": [12, 177], "efss": 135, "eg": [52, 150], "egress": 124, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 95, 96, 101, 123, 125, 129, 133, 135, 137, 142, 147, 148, 153, 155, 177, 179], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 143, "elect": 81, "element": [17, 75, 76, 151], "elig": 77, "elimin": [81, 120], "els": [14, 81, 96, 111, 132, 133, 137], "elseif": 96, "elsewher": [58, 60, 129], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 108, 110, 111, 112, 114, 116, 119, 153, 155, 156, 167], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 157], "embed": [3, 65, 88, 126, 155, 174, 175, 176], "embrac": [133, 145], "emf": [60, 172], "emit": 150, "emoji": [23, 134, 140, 146, 151], "emot": 11, "emploi": [3, 8, 72, 81, 86, 119, 177], "employe": [12, 178], "empti": [22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 96, 107, 110, 133, 138, 142, 143, 153, 178, 179], "en": [2, 7, 8, 60, 66, 123, 134, 155, 156], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 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, 100, 101, 106, 110, 111, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129, 130, 134, 137, 138, 140, 142, 144, 147, 148, 149, 153, 154, 158, 159, 161, 162, 164, 167, 170, 172, 173, 174, 176, 178, 179], "enable_cli": 150, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 155, "enable_preview": [47, 88, 126], "enable_shar": 153, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 112, "enabledpreviewprovid": [47, 88, 126, 132, 172, 173], "encapsul": 129, "encf": 131, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 129, 147, 152], "encount": [2, 3, 41, 50, 60, 118, 130, 137, 138, 142], "encourag": [86, 126, 133, 177], "encrypt": [31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 107, 110, 126, 127, 129, 139, 143, 150, 153, 155, 156, 164, 170], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 112, 120, 123, 129, 132, 143, 144, 148, 150, 151, 156, 172], "end_header_id": 5, "endeavor": 119, "endedat": 14, "endedbefor": [14, 155], "endpoint": [2, 15, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 96, 113, 138, 143, 147, 155, 158, 172, 178, 179], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 95, 110, 112, 123, 126, 129, 137, 153, 155, 157, 170, 178], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 96, 99, 101, 132, 134, 140, 146, 155, 177, 179], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 119, 132], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 93, 99, 112, 126, 132, 138, 158, 162, 174], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 70, 81, 88, 92, 93, 95, 107, 108, 112, 114, 116, 124, 127, 130, 132, 133, 134, 137, 138, 142, 143, 150, 151, 152, 153, 156, 157, 164], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 93, 116, 124, 125, 126, 128, 133, 145, 147, 152, 156], "enterpris": [12, 22, 56, 72, 119, 121, 122, 123, 126, 133, 134, 138, 155, 160, 177], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 117, 121, 138, 140, 147, 160, 177], "entri": [1, 22, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 107, 111, 112, 113, 114, 124, 129, 132, 133, 135, 137, 138, 142, 143, 144, 147, 149, 151, 153, 155, 167, 172], "entrypoint": [58, 163], "entryuuid": 154, "enumer": [77, 113, 171], "env": [4, 96, 97, 98, 126, 133, 156], "env_nam": 98, "env_valu": 98, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 96, 98, 100, 118, 119, 126, 129, 130, 132, 134, 138, 140, 142, 143, 145, 146, 147, 148, 155, 156, 161, 176, 177], "eof": 63, "eot_id": 5, "epel": [56, 123], "epoch": 134, "equal": [8, 29, 47, 60, 81, 96], "equival": [40, 49, 59, 60, 81, 132, 155], "eras": 93, "erasur": [88, 107], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 98, 99, 110, 118, 121, 123, 126, 128, 130, 131, 132, 133, 136, 139, 142, 143, 147, 149, 150, 151, 153, 155, 164, 175, 179], "error_log": [60, 67, 93, 138], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 155], "escal": 54, "escap": [63, 92, 178], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 96, 102, 133, 136, 138, 142, 143, 144, 148, 172, 178], "esperanto": 4, "essenti": [8, 60, 68, 81, 132, 138, 179], "establish": [41, 43, 55, 63, 77, 88, 93, 130, 134, 153, 154], "estim": [4, 132], "esx": 133, "etag": [40, 129, 155, 178], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 111, 123, 124, 126, 128, 129, 130, 131, 133, 138, 143, 144, 152, 153, 156, 158, 159, 162, 164, 166, 170, 172, 178, 179], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 153], "euc": 71, "europ": [60, 67, 117, 149], "eval": 150, "evalu": [67, 77, 177, 178], "even": [1, 3, 16, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 88, 96, 98, 101, 107, 112, 114, 126, 131, 133, 138, 142, 146, 148, 177], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 93, 107, 110, 111, 114, 115, 116, 126, 128, 150, 153, 155, 179], "eventfilt": 178, "eventu": 107, "everi": [3, 5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 80, 81, 85, 93, 108, 110, 112, 113, 114, 119, 123, 132, 134, 143, 144, 147, 148, 150, 152, 153, 155, 166, 167, 176, 177, 178, 179], "everybodi": 138, "everyon": [18, 52, 77, 80, 119, 154, 177], "everyth": [59, 60, 63, 65, 81, 88, 92, 133, 138, 177, 179], "everywher": [81, 167], "evict": 60, "ex": [2, 92, 93, 144, 150], "ex_app_port": 96, "exact": [38, 57, 60, 70, 77, 81, 147, 178], "exactli": [48, 123, 132, 148], "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, 98, 104, 115, 116, 118, 121, 126, 127, 128, 129, 131, 133, 135, 136, 137, 138, 140, 142, 147, 148, 149, 150, 153, 154, 155, 156, 160, 161, 163, 164, 170, 177, 178], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 94, 97, 99, 173, 174, 175], "exapp_direct": 97, "exapphost": 96, "exce": [4, 44, 49, 60, 85, 132, 153, 175], "exceed": [26, 44, 49, 60, 151, 153], "excel": 59, "except": [59, 60, 67, 76, 80, 81, 92, 129, 132, 137, 142, 143, 147, 150, 155], "excerpt": 93, "excess": [111, 132], "exchang": [0, 5, 7, 41, 63, 170], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 93, 102, 155, 156], "exclus": [36, 40, 48, 58, 60, 70, 93, 96, 138, 153], "exec": [4, 15, 40, 142, 152, 178], "execcondit": 57, "execstart": [15, 57, 178], "execut": [1, 3, 4, 6, 8, 15, 19, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 96, 104, 116, 126, 129, 131, 137, 142, 147, 148, 150, 151, 154, 178], "exempt": [58, 60], "exhibit": [7, 8, 129], "exif": [130, 153], "exim": 63, "exim4": 63, "exist": [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, 95, 96, 107, 112, 114, 116, 118, 125, 128, 129, 130, 133, 137, 138, 142, 143, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 162, 169, 172, 177, 178, 179], "exit": [92, 124, 152, 153, 155], "expand": [88, 119, 128], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 116, 136, 137, 147, 155, 157, 172, 173, 174, 175, 177], "expedit": 8, "expens": [40, 81, 112], "experi": [4, 16, 57, 65, 88, 113, 116, 119, 126, 132, 134, 138, 164], "experienc": 93, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 116], "expertis": [138, 177], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 93, 106, 107, 112, 116, 129, 178], "expiri": [44, 81, 107], "explain": [38, 56, 65, 88, 108, 111, 119, 123, 130], "explan": 40, "explicit": 114, "explicitli": [5, 14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 106, 128, 129, 138, 150, 153, 156, 170], "explod": [60, 96], "explor": [12, 92], "exponenti": 126, "export": [52, 60, 88, 93, 108, 111, 116, 126, 149, 150, 156, 179], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 95, 96, 97, 126, 128, 130, 138], "exposur": [77, 107, 126, 138], "express": [60, 69, 101, 178, 179], "ext4": 38, "extapp": 157, "extend": [2, 8, 43, 60, 63, 107, 111, 119, 134, 165, 177], "extendedsupport": 155, "extens": [3, 22, 51, 59, 60, 63, 65, 67, 70, 88, 90, 92, 111, 118, 119, 123, 126, 129, 130, 132, 133, 138, 143, 145, 153, 171, 172, 173, 177], "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, 100, 102, 108, 110, 112, 126, 130, 131, 132, 134, 135, 142, 143, 149, 150, 152, 155, 156, 172, 178, 179], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 152, "extra": [12, 16, 56, 60, 72, 81, 99, 123, 124, 137, 142, 152], "extra_fil": 137, "extract": [1, 3, 29, 60, 96, 123, 125, 147, 155], "extrem": [58, 70, 128, 132], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 99, 112, 140, 142, 146, 148, 151, 153, 155, 178], "f12": [93, 138], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 137, "f6": 55, "fa829794448eaffbc9a04a29d216": 137, "face": [7, 9, 12, 14, 15, 77, 88, 92, 129], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 132, 177], "fact": 126, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 118, 126, 132, 150], "factori": 60, "fail": [3, 14, 16, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 93, 99, 107, 110, 112, 121, 126, 130, 137, 138, 145, 147, 150, 151, 152, 153, 155, 156, 172], "fail2ban": [65, 88, 127], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 126, "failur": [60, 75, 76, 88, 93, 99, 138, 143, 150], "fair": [88, 139], "fairli": 93, "fall": [25, 26, 38, 60, 114, 128, 129], "fallback": [51, 67, 129, 166], "fallen": 155, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 96, 97, 112, 116, 118, 126, 128, 132, 138, 140, 148, 149, 151, 152, 155, 159, 172, 178], "familiar": [60, 133], "faq": [70, 88, 100, 133, 138, 139, 145], "far": [2, 15, 85, 116, 177], "farsi": 4, "fast": [5, 63, 116, 149], "fastcgi": [124, 129, 133], "fastcgi_buff": 129, "fastcgi_connect_timeout": 129, "fastcgi_hide_head": 129, "fastcgi_intercept_error": 129, "fastcgi_max_temp_file_s": 129, "fastcgi_param": [126, 129], "fastcgi_pass": 129, "fastcgi_path_info": 129, "fastcgi_read_timeout": [26, 129, 132], "fastcgi_request_buff": 129, "fastcgi_script_nam": 129, "fastcgi_send_timeout": 129, "fastcgi_split_path_info": 129, "faster": [0, 3, 7, 11, 15, 59, 88, 127, 133, 177], "fastest": 132, "fat": 38, "fatal": [60, 67, 121, 155], "fault": 26, "faulti": 63, "favicon": [72, 155], "favor": 60, "favorit": 177, "fb": 55, "fcgid": 133, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [123, 131], "fd00": 126, "fd9e": 60, "fe80": [60, 128], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 108, 110, 112, 113, 115, 116, 118, 120, 123, 126, 130, 132, 133, 134, 138, 150, 153, 155, 158, 160, 161, 165, 169, 175, 177, 178], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 110, 111, 113, 114, 115, 126, 150, 155], "fedivers": [77, 81, 110], "fediversescop": 77, "fedora": [59, 132, 133, 150], "fee": 111, "feedback": [5, 7, 9, 10, 15, 147, 177, 178], "feel": [72, 96], "fell": 155, "fetch": [2, 16, 60, 81, 82, 124, 146, 148, 154, 157, 179], "few": [32, 41, 58, 60, 81, 85, 97, 116, 132, 133, 142, 147, 148], "fewer": 107, "ff5733": 151, "ffmpeg": [47, 60, 130], "ffprobe": 60, "ffri": 69, "fidel": 160, "field": [1, 14, 16, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 95, 96, 108, 110, 111, 126, 128, 133, 138, 154, 155, 177, 178, 179], "figur": 148, "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, 96, 98, 99, 104, 106, 108, 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 133, 135, 136, 137, 139, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 159, 160, 162, 166, 167, 171, 174, 175, 176], "filecach": [19, 25, 40, 51, 60, 88, 144, 155], "fileformat": 178, "fileid": [60, 155, 157, 178], "fileinfo": [130, 138], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 93, 110, 146, 149, 155, 173], "filepart": 60, "filepath": [34, 131, 133, 149], "files_accesscontrol": 3, "files_antiviru": [56, 88, 93], "files_encrypt": [28, 29, 152], "files_extern": [3, 38, 40, 60, 88, 149], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 153], "files_pdfview": 147, "files_shar": [41, 60, 85, 149, 155], "files_texteditor": 17, "files_trashbin": [29, 49, 153, 178], "files_vers": [18, 29, 44, 153], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 133, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 131, 153, 156, 178], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 153], "filetyp": [47, 60, 126], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 95, 108, 112, 116, 128, 179], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 130, 132, 151, 153, 154, 155, 156, 164, 175, 179], "final": [3, 5, 7, 26, 38, 60, 63, 88, 96, 116, 123, 125, 126, 127, 133, 147, 177], "financ": 156, "financi": 138, "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, 93, 108, 111, 116, 122, 130, 132, 133, 136, 138, 142, 148, 154, 174, 177, 179], "finder": [60, 138], "findtim": 126, "fine": [5, 11, 60, 102, 126, 131, 133, 179], "fingerprint": [88, 143, 146], "finish": [3, 4, 8, 14, 56, 57, 96, 98, 99, 120, 128, 138, 140, 142, 147, 148, 155], "firefox": [134, 156], "firewal": [16, 58, 96, 99, 123, 126, 164, 172], "firm": 107, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 93, 96, 98, 99, 101, 111, 112, 113, 114, 118, 120, 123, 125, 126, 129, 132, 133, 135, 136, 137, 138, 142, 143, 144, 145, 148, 150, 151, 152, 154, 155, 173, 177], "first_seen": 156, "fit": [1, 6, 38, 59, 95, 133, 145, 170], "five": [132, 140], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 96, 114, 130, 132, 134, 136, 138, 139, 155, 177], "fix_pathinfo": 129, "flac": [129, 171, 172], "flag": [53, 60, 83, 84, 97, 132, 149, 150, 152, 155, 156], "flash": 56, "flat": 60, "flexibl": [133, 135, 177], "flite": 60, "float": [12, 60, 149], "flood": 67, "floor": 132, "flow": [60, 67, 68, 84, 88, 92, 101, 105, 179], "flow_input": 179, "flowchart": 15, "flush": 125, "fn": 114, "focu": [0, 1], "focus": [28, 119, 148, 177], "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, 93, 94, 96, 102, 104, 123, 124, 129, 131, 133, 137, 138, 141, 142, 147, 153, 155, 160], "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, 95, 96, 97, 101, 103, 110, 112, 113, 114, 115, 117, 118, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 149, 150, 152, 153, 154, 158, 163, 164, 166, 172, 177, 178, 179], "followsymlink": [123, 133], "font": [60, 88, 129], "fontobject": 129, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 132], "footer": 108, "footprint": 107, "forbid": [50, 86, 112], "forbidden": 60, "forbidden_char": 173, "forbidden_filenam": [88, 173], "forbidden_filename_basenam": [50, 88, 173], "forbidden_filename_charact": [50, 88, 173], "forbidden_filename_extens": [50, 88, 173], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 98, 107, 110, 113, 118, 126, 149, 150, 151, 153, 154, 155], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 112, "foreign": 63, "forest": 2, "forev": [49, 60, 155], "forgeri": 126, "forget": [28, 29, 60, 63, 132, 133, 140, 145], "forgot": 80, "form": [56, 60, 81, 87, 88, 95, 99, 111, 123, 128, 138, 179], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 65, 66, 67, 71, 81, 82, 83, 88, 118, 132, 134, 150, 151, 153, 157, 160, 174, 178, 179], "formid": 178, "formsubmittedev": 178, "forum": [70, 119, 138, 147, 148, 177], "forward": [15, 60, 69, 70, 96, 128, 133, 138, 142, 150, 163], "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, 93, 95, 96, 99, 114, 123, 126, 128, 129, 130, 132, 133, 136, 137, 138, 145, 148, 151, 152, 155, 157, 158, 159, 161, 162, 163, 164, 172, 175, 177], "foundat": 0, "four": [15, 56, 81, 146, 155, 177, 178], "fourth": 177, "fpm": [26, 60, 70, 88, 124, 126, 127, 129, 130, 134], "fr": [60, 66], "frame": [64, 112, 126, 129], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [151, 153, 155, 156], "freda": 41, "free": [2, 15, 20, 44, 80, 96, 118, 119, 126, 133, 138, 151, 156, 160], "free_prompt_picker_en": 1, "freebsd": 130, "freebusi": [88, 115], "freed": 153, "freedom": 166, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 132], "frequent": [13, 56, 59, 60, 81, 88, 107, 138, 160, 177], "fresh": [3, 40, 81, 129, 142, 148, 151, 152], "freshclam": 56, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 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, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 164, 166, 167, 172, 173, 174, 175, 176, 177, 178, 179], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 118, 129, 161], "front_controller_act": [129, 133], "frontend": [26, 60, 67, 69, 88, 95, 165, 166], "frontend1": 69, "frp": [95, 96, 97], "frp_address": 97, "frpc": [96, 97], "fry": 154, "fss": 96, "ftp": [40, 88, 124, 130, 137], "fulfil": [2, 107, 111, 128, 138], "full": [28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 101, 107, 108, 110, 111, 113, 126, 132, 133, 134, 143, 145, 149, 150, 151, 152, 153, 155, 156, 158, 159, 163, 177, 178], "fulli": [0, 1, 12, 13, 28, 41, 60, 63, 88, 109, 133, 147, 148, 153, 155, 162, 177, 178], "fullscreen": 158, "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, 95, 96, 102, 106, 116, 119, 126, 130, 131, 133, 134, 135, 138, 142, 143, 148, 157, 162, 164, 177, 179], "fund": 119, "fundament": [60, 70, 81], "further": [22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 93, 108, 111, 123, 127, 133, 142, 144, 145, 161, 177], "furthermor": [29, 59, 60], "fuse": 131, "fusef": [88, 127], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 112, 126, 155, 173, 174, 175, 178], "g": [5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 72, 77, 81, 82, 83, 88, 95, 96, 97, 98, 99, 101, 106, 107, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 138, 142, 143, 146, 147, 148, 149, 150, 151, 153, 156, 157, 158, 162, 177, 178, 179], "gain": [3, 14, 126], "galleri": [47, 60, 147, 155], "gap": 147, "garbag": [57, 60], "garbl": 5, "garm": [16, 126], "gatewai": [48, 88, 132, 133], "gather": [81, 138, 172], "gb": [3, 4, 11, 26, 60, 81, 85, 95, 132, 155], "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 123, 125, 130], "gdpr": [88, 106, 107, 108, 110, 111], "gear": 85, "gecko": 67, "gemma": 2, "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, 93, 96, 106, 109, 112, 114, 116, 123, 127, 128, 129, 131, 132, 133, 135, 139, 143, 148, 149, 150, 153, 155, 156, 157, 165, 166, 167, 172, 173, 174, 175, 177], "generalizedtim": 81, "genr": [15, 88], "geo": 129, "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, 105, 123, 124, 126, 129, 131, 133, 134, 136, 137, 138, 142, 147, 150, 152, 156, 158, 161, 164, 167, 172, 179], "get_lin": 63, "getctag": 178, "getenv": [60, 65, 88, 133], "getpath": [136, 149], "gguf": [5, 12], "ghcr": [96, 132], "gib": 26, "gid": 156, "gidnumb": [82, 154], "gif": [60, 98, 129, 166, 167], "giphi": [166, 167], "git": [7, 8, 136], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 93, 119, 126, 129, 132, 133, 136, 145, 166, 167, 172, 175, 177], "githubusercont": 126, "gitlab": [166, 167], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 103, 107, 108, 110, 124, 131, 133, 137, 147, 155, 177], "given": [2, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 96, 101, 105, 118, 126, 133, 138, 152, 153, 155, 156, 157, 172], "givennam": [82, 154], "glanc": 132, "global": [32, 53, 60, 65, 67, 81, 88, 112, 116, 117, 119, 129, 150, 153, 156, 167], "gmail": 116, "gmbh": [12, 16, 72, 102, 119, 126, 133, 138, 177], "gmp": [125, 130], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 95, 96, 97, 108, 112, 123, 125, 132, 136, 142, 143, 147, 158, 177, 179], "goal": [28, 77, 92, 133], "goe": [14, 85, 96, 144], "gold": [7, 10], "gone": [85, 88, 138], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 126, 132, 133, 142, 148, 177], "googl": [2, 15, 60, 72, 80, 88, 134, 166], "got": [18, 102, 177], "govern": 77, "gpg": [88, 123, 125, 127, 159], "gpt": [1, 167], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 95, 96, 97, 99], "grab": 123, "grace": 81, "gracefulli": 128, "gradual": 48, "grain": [131, 179], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 111, 118, 123, 125, 133, 155], "graph": [15, 60], "graphic": [1, 15, 47, 92, 95, 121, 133], "great": 123, "greater": [60, 88], "greatli": [3, 133, 134], "green": [5, 15, 40, 41, 81, 88, 89], "grep": [3, 15, 20, 56, 59, 99, 130, 132, 133, 178], "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, 110, 111, 113, 118, 133, 149, 150, 151, 153, 155, 164, 178], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 102, 153], "groupid": [75, 76, 81, 156], "groupofnam": 154, "groupwar": [111, 112, 113, 116, 138], "grow": [88, 119, 132], "growth": [53, 132], "gt": 178, "gte": 178, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 45, 49, 59, 60, 77, 107, 178], "guard": 132, "guess": 58, "guest": [16, 88], "gui": [3, 32, 66, 92, 132], "guid": [23, 28, 60, 63, 92, 95, 116, 119, 123, 125, 126, 130, 132, 133, 146, 152, 155, 161, 162, 169, 170, 175], "guidanc": [28, 88, 109, 110, 111, 119, 127, 128, 130, 132, 133], "guidelin": 129, "guooq": 156, "guzzl": 60, "gz": [60, 118], "gzip": [118, 129], "gzip_comp_level": 129, "gzip_min_length": 129, "gzip_proxi": 129, "gzip_typ": 129, "gzip_vari": 129, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 96, 126, 133, 140, 146, 150], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 16, 19, 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, 95, 96, 97, 101, 106, 110, 111, 112, 114, 116, 117, 118, 120, 123, 126, 128, 131, 132, 133, 135, 137, 138, 143, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 162, 170, 175, 177, 178, 179], "hackeron": [12, 28], "had": [29, 53, 60, 92, 170, 172, 175], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [102, 177], "handl": [1, 8, 20, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 93, 94, 108, 110, 112, 116, 126, 129, 130, 132, 138, 151, 153, 163, 164, 178], "handle_all_url": 55, "handler": [63, 88], "hanson": 154, "hansson": 133, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 101, 112, 116, 129, 137, 138, 143, 147, 158, 178, 179], "happi": [14, 31, 48], "haproxi": [88, 95, 96], "haproxy_host": 96, "haproxy_password": [96, 97], "haproxypass": 96, "hard": [26, 43, 64, 126], "hardcod": [126, 129], "harden": [60, 88, 127, 128, 130], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 95, 99, 132, 133, 143], "harp": [88, 97, 99, 100], "harp_docker_socket_port": 97, "harp_exapp_direct": 97, "harp_frp_address": 97, "harp_proxy_dock": 97, "harp_proxy_host": 97, "harp_shared_kei": 97, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 110, 130, 137, 178, 179], "hash_equ": 29, "hash_hmac": 29, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 167, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 133, 134], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 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, 77, 78, 80, 81, 83, 85, 88, 91, 92, 93, 95, 96, 97, 99, 101, 103, 105, 107, 108, 112, 113, 114, 116, 118, 123, 124, 126, 128, 129, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 162, 163, 164, 166, 168, 172, 174, 177, 178, 179], "haveibeenpwnd": 86, "hbegin": 29, "hdr": 60, "head": [58, 68, 70, 123], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 96, 127, 128, 129, 132, 133, 138, 155, 172, 175, 179], "headless": 121, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 132, "health": 99, "healthi": [99, 138], "heartbeat": [60, 88], "heartbeat_count": 99, "heavi": [0, 1, 19, 45, 59, 96, 130, 160], "heavili": [58, 60], "heic": [60, 132, 133], "heif": [60, 133], "height": 60, "held": [88, 111], "hello": [1, 63], "helm": 133, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 93, 101, 102, 106, 109, 110, 112, 113, 118, 119, 123, 131, 132, 133, 136, 138, 142, 146, 147, 148, 150, 152, 155, 177], "helper": [15, 106, 128], "henc": [80, 150], "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, 95, 96, 116, 118, 126, 128, 129, 132, 133, 148, 150, 166, 179], "hetzner": 12, "heurist": [56, 70], "hex": 151, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 93, 112, 118, 126, 129, 138], "hide": [38, 60, 77, 88, 106, 117, 118, 129], "hide_absence_set": 117, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 112, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 111, 116, 126, 132, 133, 134, 135, 160, 174, 177], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 110, 113, 144, 177], "highest": [2, 81, 132, 148, 177], "highli": [58, 60, 70, 81, 118, 119, 126, 128, 130, 132, 137, 157, 161, 177], "highlight": [15, 133, 142, 148, 177], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 128, 129, 148], "hintexcept": 150, "histor": 28, "histori": [14, 15, 40, 58, 86, 111, 153], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 95, 101, 107, 110, 129, 178], "holidai": [112, 151], "home": [28, 40, 63, 81, 83, 88, 92, 93, 133, 138, 153, 155, 164], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 177], "hook": 150, "hope": 25, "hopefulli": 147, "hord": 118, "horde_": 118, "horde_imap": 118, "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, 94, 95, 97, 112, 116, 118, 123, 124, 126, 128, 129, 133, 138, 142, 143, 147, 149, 155, 157, 158, 159, 163, 164, 172, 178], "host2": 96, "host3": 96, "hoster": [22, 60, 116], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 95, 116, 128, 129, 133, 143, 145, 155, 164], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 93, 107, 108, 110, 112, 113, 114, 116, 142, 143, 148, 179], "hourli": 53, "hous": [31, 142], "housekeep": [57, 142], "hover": [81, 85, 166], "how": [2, 6, 7, 10, 12, 15, 18, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 95, 107, 111, 112, 113, 115, 116, 118, 119, 123, 126, 128, 129, 130, 132, 133, 137, 138, 141, 143, 147, 155, 156, 158, 165, 169, 170, 174, 175, 176, 177], "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, 96, 112, 117, 126, 132, 133, 134, 144, 145, 148, 161, 163, 172], "hp_frp_address": 96, "hp_shared_kei": [95, 96], "hp_trusted_proxy_ip": 96, "href": 178, "hst": [70, 124, 126, 129], "hstspreload": 129, "htaccess": [26, 88, 123, 126, 128, 129, 131, 138, 172, 173, 175], "htaccesstest": 129, "htdoc": 120, "html": [60, 63, 67, 93, 123, 129, 130, 131, 134, 138, 147, 150, 157, 158, 159, 161, 162, 163, 175], "htop": 132, "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, 92, 93, 94, 95, 96, 97, 99, 106, 111, 112, 116, 118, 121, 123, 124, 125, 127, 128, 129, 130, 131, 134, 136, 137, 138, 140, 142, 144, 145, 147, 148, 150, 155, 157, 158, 159, 161, 162, 163, 164, 165, 172, 175, 178, 179], "http2": 129, "http_author": 133, "http_client_add_user_agent_url": 88, "http_forwarded_for": 60, "http_proxi": 60, "http_user_ag": 129, "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 93, 101, 102, 123, 127, 133], "httpd_can_connect_ldap": 131, "httpd_can_network_connect": [123, 131], "httpd_can_network_connect_db": 131, "httpd_can_network_memcach": 131, "httpd_can_sendmail": 131, "httpd_sys_rw_content_t": [123, 131], "httpd_unifi": 131, "httpd_use_cif": 131, "httpd_use_fusef": 131, "httpd_use_gpg": 131, "httpd_use_nf": 131, "httpdavmodul": 138, "https_proxi": 60, "hub": [0, 2, 15, 162, 179], "hug": 7, "huge": [19, 60, 132], "huggingfac": [5, 11], "human": [6, 11, 81, 153, 179], "hundr": 138, "hurri": 63, "hy000": 138, "hybrid": 119, "hyperlink": 43, "hypervisor": 133, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 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, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 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, 170, 171, 172, 175, 176, 177, 178], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 117], "ibm": [1, 8, 12, 13, 15, 88], "ic": [111, 112, 151, 178], "ical": 151, "icalendar": 151, "icap": [65, 88], "icmp_req": [22, 63], "ico": [129, 155], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 129, 155], "id": [2, 3, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 96, 97, 106, 114, 116, 126, 150, 151, 153, 154, 156, 158, 164, 178, 179], "id1125420102": [60, 72], "idea": [2, 56, 119, 142, 148], "ideal": [1, 133, 138, 145, 178], "idelegatedset": 155, "ident": [36, 48, 60, 72, 74, 81, 88, 133, 143], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 99, 106, 110, 114, 117, 118, 125, 126, 132, 137, 138, 143, 151, 153, 155, 156, 157, 179], "idl": 132, "ie": [1, 3, 123], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 178, "ifmodul": [123, 126, 133, 138], "ifram": [60, 64, 126], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 93, 114, 130, 136, 154, 157], "ignore_notic": 22, "ignorefrontcontrol": [88, 133], "illustr": [47, 60, 133], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 129, 130, 132, 133, 153, 155, 156, 158, 160, 161, 164, 166, 167, 173, 174, 175, 176], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 125, 130, 132], "imagin": 43, "imaginari": [60, 88, 132, 133], "imaginarypdf": [60, 173], "imap": [63, 88, 130], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 106, 107, 151, 153, 155, 156], "immut": [81, 129], "impact": [28, 40, 48, 58, 60, 63, 96, 103, 132, 177], "imperson": 126, "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, 96, 112, 118, 133, 134, 143, 150, 155, 166], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 112, 113, 116, 123, 125, 128, 129, 130, 132, 133, 135, 138, 143, 149, 160, 169, 178, 179], "importantli": [119, 133], "impos": 15, "impract": 107, "imprint": 88, "imprinturl": [72, 155], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 95, 119, 123, 129, 130, 132, 134, 148, 160, 161], "in_arrai": 96, "inaccess": [23, 28, 48, 152], "inaccur": 8, "inact": 60, "inadvert": [58, 132], "inbox": [2, 15, 118], "inc": 72, "incid": 67, "inclin": 177, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 97, 99, 108, 110, 114, 116, 117, 118, 119, 126, 128, 129, 130, 132, 133, 135, 136, 138, 140, 147, 148, 151, 153, 155, 156, 157, 160, 161, 173, 174, 175, 176, 177, 178, 179], "includedir": 22, "includesubdomain": [126, 129], "inclus": 151, "incom": [12, 60, 61, 69, 108, 153], "incoming_server2server_share_en": 149, "incompat": [60, 132, 144], "incomplet": [151, 153], "inconsist": [38, 140, 151, 153, 155], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 93], "incorrectli": [60, 69, 118], "increas": [18, 26, 32, 38, 41, 59, 60, 63, 67, 99, 116, 124, 126, 129, 132, 133, 134, 138, 150, 174], "increment": [19, 152], "indefinit": [58, 107, 110, 155], "independ": [3, 29, 67, 77, 88, 93, 101, 110, 119, 147], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 96, 101, 124, 126, 129, 133, 137, 138, 147, 149, 161], "indexerjob": 3, "indi": 129, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 99, 106, 116, 128, 131, 138, 144, 148, 177, 178], "indirectli": 102, "individu": [26, 28, 32, 40, 54, 58, 60, 92, 93, 111, 118, 119, 126, 132, 150, 152, 153, 155], "industri": [12, 143], "inetorgperson": [81, 82, 154], "inevit": [126, 134], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 112, 113], "info": [8, 43, 60, 67, 70, 77, 81, 88, 93, 98, 108, 111, 129, 138, 150], "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, 93, 98, 101, 106, 108, 111, 112, 113, 116, 117, 118, 119, 120, 121, 124, 126, 129, 130, 132, 133, 134, 137, 142, 145, 147, 148, 150, 153, 154, 155, 156, 166, 170, 172, 174, 175, 176, 179], "infrastructur": [12, 60, 96, 138, 155], "inher": [57, 106], "ini": [22, 26, 33, 59, 60, 71, 88, 123, 124, 126, 127, 129, 131, 132, 133, 138, 150, 174], "init": [56, 88], "initdb": 124, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 96, 98, 99, 102, 110, 120, 153, 177, 179], "initialcontentimportjob": 3, "initialis": [124, 133, 145, 153], "inject": 60, "inlin": 15, "innodb": [23, 60, 134], "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": 153, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 149, 151, 153, 155, 167, 179], "insecur": [63, 88, 134], "insensit": [38, 50, 60, 101], "insert": [15, 60, 88, 129, 151, 160, 167], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 93, 96, 102, 112, 124, 132, 147, 152, 153, 155, 178], "insight": [1, 12, 13, 88], "inspect": [4, 56, 88, 153, 155], "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, 96, 97, 98, 99, 100, 101, 102, 105, 108, 112, 113, 116, 119, 120, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 157, 160, 162, 163, 165, 167, 169, 170, 172], "installdir": 92, "installed_vers": 149, "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, 93, 95, 96, 107, 110, 111, 112, 113, 114, 116, 118, 119, 120, 123, 127, 128, 129, 132, 133, 134, 138, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 155, 156, 157, 161, 164, 174, 176, 177, 178, 179], "instance_id": [18, 106], "instanceid": [29, 88, 143, 147], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 18, 23, 26, 31, 32, 38, 47, 48, 51, 53, 57, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 116, 118, 123, 126, 129, 133, 137, 138, 144, 145, 147, 148, 149, 151, 152, 153, 155, 158, 170, 176], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 118, 125, 126, 130, 132, 133, 135, 142, 144, 148, 179], "insuffici": [76, 93], "int": [26, 60, 73, 75, 76, 82, 96, 118], "int8_float32": 11, "intact": 111, "integ": [1, 19, 48, 57, 60, 96, 112, 113, 149, 151, 178], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 114, 116, 117, 119, 130, 133, 138, 139, 147, 150, 158, 166, 167, 173, 174, 176, 178, 179], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 116], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 137, "intel": [7, 10, 132], "intellig": [0, 1, 12, 15, 88, 95], "intend": [60, 77, 80, 81, 92, 126, 152, 155], "intens": [18, 28, 57, 132], "intention": [60, 77, 92, 110, 118], "interact": [1, 2, 3, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 115, 147, 150, 152, 156, 179], "intercept": 126, "interchang": [28, 63, 130], "interest": [106, 177], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 93, 95, 96, 108, 112, 114, 115, 117, 118, 125, 126, 127, 133, 134, 138, 148, 150, 153, 155, 156, 175, 179], "intermedi": 148, "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 70, 74, 82, 85, 88, 96, 97, 101, 116, 129, 132, 133, 147, 152, 157, 167, 178], "internal_defaultexpdai": 43, "interned_strings_buff": 124, "internet": [57, 60, 63, 126, 128, 133, 155, 176], "interoper": [13, 88], "interpret": [92, 95, 126], "interrupt": [28, 45, 57, 130], "interv": [38, 40, 56, 57, 60, 83, 88, 110, 112, 114, 132, 155, 177, 178], "intervent": [6, 56, 126, 178], "intl": [123, 125, 130], "introduc": [15, 50, 81, 95, 129, 176, 177], "introduct": [65, 88, 96, 123], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 107, 126, 129, 132, 139, 153, 156, 172], "invalid_hash": 137, "invalidsignatur": 137, "invalidsignatureexcept": 137, "invert": 101, "investig": [60, 153, 155], "invis": [40, 88, 101, 104, 105, 156], "invit": [63, 88, 110, 114, 115, 160, 170], "invite": 112, "invoc": [60, 126, 155, 172], "invok": [60, 92, 108, 147, 150, 172], "involv": [26, 106, 132, 134, 172], "io": [45, 60, 64, 72, 96, 101, 119, 129, 132, 133, 134, 138, 145], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [133, 145], "iotop": 132, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 95, 96, 97, 99, 101, 107, 110, 116, 127, 128, 133, 143, 145, 155, 157, 164], "ip_host2_dock": 96, "ipad": 69, "iphon": 69, "iptabl": [58, 126, 164], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 129, "isanonym": 178, "isn": [23, 28, 60, 77, 81, 118, 133], "iso": [60, 66], "iso_639": 60, "isol": [59, 60, 65, 88, 107, 132, 133, 134, 147], "isset": 96, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 99, 112, 113, 125, 126, 128, 129, 132, 134, 136, 137, 145, 147, 148, 150, 155, 156, 158, 164, 166, 167, 174, 175], "isvfsen": 92, "italian": [4, 5, 10], "item": [3, 43, 46, 65, 83, 88, 102, 112, 115, 132, 142, 153, 155], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 8, 12, 14, 15, 20, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 111, 114, 116, 123, 125, 131, 132, 133, 137, 138, 142, 147, 151, 153, 155, 156, 165, 172, 175], "itself": [5, 22, 32, 38, 40, 58, 60, 84, 92, 95, 96, 101, 117, 125, 133, 137, 138, 145, 147, 149, 150, 152, 164, 172], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 154, 158, 172], "jail": [88, 124], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 126, 132, 138, 171, 172, 179], "jcal": 151, "jeffmatson": 69, "jeroboam": 154, "ji": 71, "jit": 88, "jit_buffer_s": 132, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [3, 6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 107, 111, 114, 116, 127, 130, 138, 142, 144, 148, 150, 151, 153, 178, 179], "joe": 178, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 156, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 99, 178], "journald": 99, "jp": 71, "jpeg": [60, 88, 132], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [129, 155], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 98, 99, 101, 112, 118, 123, 126, 129, 137, 149, 150, 151, 152, 153, 155, 156, 178, 179], "json_pretti": [14, 150, 151, 152, 153, 155, 156], "jump": [92, 142], "just": [22, 27, 53, 57, 63, 64, 81, 85, 92, 101, 112, 118, 124, 126, 128, 129, 132, 133, 138, 142, 143, 147, 158, 177, 178], "jwfcftvztglwtje": 41, "k": 76, "k7mdeng": 153, "karlsruh": 14, "kazakh": 4, "kb": [60, 153], "keep": [3, 15, 18, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 99, 101, 107, 109, 112, 113, 116, 118, 120, 123, 124, 125, 132, 133, 134, 138, 142, 143, 147, 148, 149, 156, 169, 177, 178], "keepal": [60, 138], "keepalive_timeout": 129, "keepalivetimeout": 138, "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, 95, 96, 97, 107, 116, 124, 125, 126, 129, 133, 135, 138, 144, 148, 149, 150, 153, 155, 167, 178], "kept": [49, 59, 60, 107, 132, 147], "keyboard": 88, "keydb": 59, "keyfil": 96, "keyformat": 29, "keypair": 32, "keyr": 159, "keyston": [36, 48, 60], "keyvalu": 48, "kfrh9": 156, "khtml": 67, "kib": 60, "kick": [58, 60], "kill": 132, "killmod": 57, "kind": [1, 14, 69, 96, 126, 179], "kink": 56, "kitchen": 2, "know": [29, 31, 40, 60, 67, 81, 84, 112, 118, 138, 154, 155, 158], "knowledg": [11, 138], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 101, 114, 118, 124, 129, 134, 138, 149, 154, 156, 165], "kokoro": 10, "korean": 4, "kovh8": 156, "krita": [60, 132], "kubectl": 3, "kubernet": 88, "kunz": 83, "kvm": 133, "l": [22, 57, 59, 69, 93, 124, 138, 155], "lab": 126, "label": [2, 15, 41, 69, 81, 97, 131, 138, 156], "labeleduri": 81, "lack": 128, "lamp": 133, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 156], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 95, 116, 119, 130, 134, 179], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 88, 93, 112, 116, 118, 119, 129, 132, 133, 138, 148, 151, 155, 156], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 132, 156], "largest": [95, 155], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 99, 105, 110, 111, 114, 128, 144, 145, 147, 151, 153, 154, 155, 156, 177], "last_run": 155, "last_seen": 156, "lastact": 156, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 156, "lastmodifi": 178, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 178], "latenc": 132, "later": [17, 20, 43, 60, 83, 92, 102, 116, 118, 133, 134, 138, 144, 157, 164], "latest": [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], "latitud": 126, "latter": 59, "launch": [2, 55, 56, 59, 88, 93, 95, 97, 120, 142, 178], "law": 107, "lawyer": 12, "lax": 106, "layer": [28, 58, 60, 77, 80, 132, 137], "layla": [151, 152, 153, 155, 156], "layout": [60, 61, 148, 155, 160], "lazi": [60, 149], "ld": [81, 129], "ldap": [40, 46, 65, 74, 79, 85, 88, 111, 123, 127, 130, 132, 133, 143, 150, 155, 156], "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, 154], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 154], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 154], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 154], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 154], "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, 154], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 154], "lead": [33, 38, 52, 53, 57, 58, 59, 60, 70, 93, 112, 113, 126, 129, 132, 133, 138], "leak": [53, 60, 129, 132, 138, 178], "leakag": 126, "leaki": 132, "leap": 134, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 126, 137, 148, 149], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 107, 114, 128, 130, 132, 134, 144, 148, 154, 156, 157, 172, 177, 178], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 116, 132, 143, 151, 155], "lectur": 155, "leela": 154, "left": [40, 48, 57, 60, 63, 81, 85, 111, 132, 137, 147, 149, 153], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 150, 153, 155], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 106, 107, 109, 111], "legibl": 9, "legitim": [28, 58, 106, 107, 110], "length": [8, 32, 48, 56, 60, 86, 88, 129], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 126, 130, 132, 134, 177], "let": [15, 20, 40, 58, 63, 72, 85, 92, 96, 108, 129, 133, 143, 147, 153, 155, 158], "letsencrypt": 129, "letter": [38, 85, 179], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 93, 110, 126, 127, 134, 138, 147, 150, 153, 155, 156, 178], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 129], "libapache2": [125, 133], "libargon2": 130, "liber": 93, "libmagickcor": 72, "librari": [11, 47, 60, 63, 87, 93, 126, 132, 170], "libreoffic": [47, 60, 88, 130], "libsmbclient": 38, "libxml": 130, "libxml2": 130, "licenc": 17, "licens": [15, 16, 126], "life": [88, 123, 144, 148], "lifetim": [60, 81, 88, 106, 110], "lift": 96, "light": [41, 60, 81], "lighter": 177, "lighttpd": 138, "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, 93, 95, 96, 102, 112, 113, 116, 117, 118, 121, 123, 126, 128, 129, 132, 133, 138, 140, 142, 144, 145, 147, 148, 149, 150, 154, 155, 164, 165, 166, 167, 172, 179], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 93, 95, 96, 107, 108, 115, 118, 123, 124, 128, 132, 133, 134, 138, 143, 147, 151, 152, 153, 154, 155, 156, 172, 175, 177], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 96, 111, 116, 118, 125, 127, 129, 130, 132, 133, 138, 141, 142, 148, 150, 153, 175, 178], "liner": 151, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 101, 108, 116, 126, 128, 133, 136, 137, 138, 147, 153, 155, 156, 160, 165, 167, 179], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 140, 142, 148, 150, 156, 161], "list": [1, 2, 3, 4, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 71, 75, 86, 87, 88, 92, 94, 95, 100, 101, 106, 108, 110, 112, 118, 123, 126, 128, 129, 130, 133, 134, 137, 138, 142, 148, 149, 150, 154, 157, 158, 159, 164, 169, 171, 172, 177, 179], "listen": [38, 40, 45, 56, 59, 88, 96, 99, 114, 124, 129, 150, 153, 158, 163, 179], "listexapp": 98, "literaci": 12, "littl": [4, 15, 70, 85, 96], "live": [0, 2, 7, 13, 60, 81, 88, 106, 107, 110, 119, 132, 155], "live_transcript": [13, 15, 88], "ll": [16, 22, 28, 38, 43, 60, 63, 81, 85, 112, 116, 129, 133, 142, 154, 158, 177], "llama": [1, 5, 12, 15], "llama3": 5, "llm": [2, 5, 8, 12, 14, 15, 88, 115], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 124], "load": [5, 7, 13, 22, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 106, 126, 127, 128, 130, 138, 149, 150], "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, 72, 73, 74, 81, 85, 88, 92, 93, 95, 97, 98, 101, 110, 113, 114, 119, 123, 124, 126, 129, 132, 133, 136, 138, 143, 145, 147, 149, 150, 153, 158, 172], "local_cert": [59, 60], "local_dock": 97, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [133, 145], "localhost": [22, 45, 52, 59, 60, 63, 69, 96, 97, 99, 116, 120, 123, 124, 125, 128, 133, 138, 145, 149, 155, 158, 176], "localitynam": 81, "localrootmountprovid": 153, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 95, 96, 101, 102, 110, 124, 126, 127, 129, 133, 135, 138, 140, 142, 143, 147, 148, 151, 153, 162, 166, 167], "lock": [32, 46, 59, 65, 67, 88, 101, 123, 127, 130, 138, 140, 143, 148, 155], "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, 96, 100, 101, 106, 108, 111, 112, 113, 116, 123, 126, 127, 128, 130, 131, 133, 134, 135, 140, 143, 145, 147, 148, 150, 153, 154, 156, 164, 175, 178], "log_error": 138, "log_not_found": 129, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 93, "logdir": 93, "logexpir": 93, "logfil": [3, 26, 67, 88, 93, 124, 129, 135, 143, 155], "logfile_audit": [67, 88, 135], "logfilemod": [67, 88, 126], "logic": [53, 67, 80, 98, 99, 146, 178], "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, 106, 107, 108, 110, 111, 125, 126, 138, 140, 141, 142, 148, 151, 152, 155, 156], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 96, "logist": 119, "loglevel": [58, 63, 67, 81, 88, 118, 126, 132], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 155], "logo_url": 88, "logohead": [72, 155], "logon": 38, "logout": 60, "logpath": 126, "logread": 67, "logrot": 107, "logtimezon": [67, 88, 149], "logwindow": 93, "loleaflet": 162, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 93, 105, 107, 110, 112, 113, 128, 129, 132, 133, 142, 147, 152, 153, 174, 177], "long_query_tim": 22, "longer": [26, 44, 48, 58, 60, 63, 66, 67, 85, 112, 123, 129, 132, 152, 153, 170, 172, 173, 176, 178], "longest": 26, "longitud": 126, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 96, 101, 116, 118, 128, 129, 133, 136, 137, 142, 147, 149, 150, 152, 157, 159, 160, 166, 179], "lookup": [38, 60, 69, 77, 110, 126], "lookup_serv": [88, 110], "lool": [158, 162], "loolwsd": 162, "loop": [88, 96], "loopback": [60, 128], "lose": [28, 45, 60, 152, 156], "loss": [22, 28, 40, 60, 85, 93, 134, 138, 152], "lost": [28, 29, 74, 80, 88, 107, 138, 151, 152, 153, 156], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 118, 132, 138, 142, 148, 179], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 107, 132, 133, 134], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 107, 132, 133], "lowest": [132, 134, 177], "lsof": 99, "lt": [4, 88, 127, 133, 134, 178], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 126], "lte": 178, "luk": 28, "m": [14, 22, 56, 59, 83, 124, 126, 129, 130, 132, 133, 140], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 60, 63, 88, 95, 96, 126, 127, 135, 143, 151, 152, 153, 155, 156], "macintosh": 81, "maco": [88, 91, 92, 114, 119, 134, 138], "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 93, 111, 118, 132, 133, 135, 143, 177, 179], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 130, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 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, 93, 95, 99, 107, 108, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 162, 164, 172, 174, 177, 178, 179], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 114, 115, 117, 131, 143, 154, 155, 167, 170], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 143], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 143], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 115, 118], "mailcow": 116, "mailer": [60, 63, 170], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 178, "main": [1, 4, 11, 15, 22, 60, 67, 81, 82, 95, 96, 99, 102, 129, 138, 140, 146, 147, 158, 162, 179], "mainli": [4, 16, 28, 62, 148], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 93, 113, 119, 126, 133, 138, 145, 147, 148, 150, 177], "mainten": [3, 19, 23, 25, 28, 51, 65, 85, 121, 132, 133, 134, 142, 143, 146, 147, 149, 153, 161, 174], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 126, 129, 133, 138, 142, 144, 147, 148, 161], "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, 93, 96, 101, 105, 108, 112, 114, 116, 118, 123, 124, 126, 129, 130, 132, 133, 134, 135, 137, 138, 142, 143, 144, 145, 146, 147, 148, 150, 152, 153, 155, 157, 158, 164, 165, 170, 171, 172, 173, 177, 178, 179], "malform": 153, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 126], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 60, 65, 69, 81, 84, 87, 88, 92, 94, 95, 101, 102, 105, 107, 112, 119, 123, 126, 127, 147, 148, 150, 152, 153, 156, 161, 173, 174, 175, 178], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 156], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 93, 112, 113, 118, 129, 132, 133, 138, 147, 150, 155, 156, 160, 172, 177], "manifest": [55, 129], "manifestli": 111, "manipul": [153, 154, 155], "manner": [1, 173, 174, 175], "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, 93, 95, 96, 97, 102, 107, 108, 111, 116, 119, 123, 125, 126, 127, 132, 135, 136, 137, 138, 141, 144, 145, 147, 151, 153, 155, 157, 161, 173, 177, 178, 179], "manual_instal": [8, 95, 97], "manual_install_harp": 97, "map": [2, 48, 60, 83, 88, 129, 132, 144, 154, 166], "march": 26, "marco": 2, "margin": 132, "mariadb": [20, 23, 25, 60, 88, 121, 123, 125, 128, 130, 132, 133, 151, 155, 173, 174], "mark": [2, 40, 60, 63, 77, 83, 88, 152, 153, 154, 179], "markdown": [18, 60, 71, 132], "market": [2, 11, 144], "martin": 2, "mask": 118, "master": [28, 46, 60, 63, 88, 150], "master_": 29, "mastodon": [166, 167], "match": [3, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 96, 101, 107, 113, 114, 118, 124, 129, 132, 133, 138, 143, 150, 153, 154, 156, 162, 164, 178], "math": 5, "matrix": 88, "matter": [43, 151, 172], "max": [1, 26, 46, 56, 88, 124, 126, 129, 155], "max_accelerated_fil": 124, "max_allowed_packet": 22, "max_children": [132, 133], "max_execution_tim": [26, 60, 130], "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": 132, "max_siz": [26, 88], "max_spare_serv": 132, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 93, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 58, 77, 85, 88, 93, 107, 112, 113, 129, 132, 153, 155], "maximumadressbook": 113, "maximumcalendarssubscript": 112, "maxkeepaliverequest": 138, "maxretri": 126, "mayb": 93, "mb": [38, 47, 60, 67, 82, 85, 93, 132], "mb4": 60, "mbstring": [71, 123, 125, 130], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 123, 124, 125], "md5sum": [123, 125], "mdm": 92, "me": [2, 14, 60, 88, 110], "mean": [11, 14, 15, 41, 50, 58, 60, 68, 70, 77, 80, 81, 85, 92, 96, 107, 116, 123, 126, 128, 129, 132, 134, 137, 148, 152, 172, 177, 178, 179], "meaningless": 129, "meant": [58, 60, 177], "measur": [7, 10, 12, 60, 70, 132], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 170], "media": [1, 2, 6, 7, 88, 101, 107, 127], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 108, 109, 142, 177, 178], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 101, 119, 151, 154, 156, 157, 166, 167], "memberof": [82, 88, 154], "membership": [43, 81, 82, 85, 101, 110, 118, 154, 156], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 123, 124, 127, 130, 135, 143, 150], "memcache_customprefix": [59, 88, 123], "memcached_opt": 88, "memcached_serv": [59, 88, 143], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 99, 118, 129, 130, 132, 133, 174, 178], "memory_consumpt": [124, 132], "memory_limit": [18, 26, 56, 130], "mention": [1, 3, 14, 77, 93, 95, 101, 123, 124, 126, 137, 147], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 95, 96, 138, 153, 155, 167, 173, 174, 175], "mere": [20, 177], "merg": [12, 65, 67, 88, 116, 166, 167], "mermaid": 15, "messag": [1, 2, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 110, 111, 116, 117, 118, 121, 126, 136, 139, 142, 143, 150, 151, 153, 164, 165, 166, 167, 179], "met": [2, 15, 49, 60, 67, 81, 126, 133], "meta": [15, 17, 75, 76, 81, 82, 130], "metadata": [12, 40, 43, 48, 60, 77, 85, 88, 96, 111, 118, 135, 138, 153, 155], "metadata_max_files": 88, "metal": [88, 135], "method": [17, 22, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 95, 96, 97, 118, 130, 133, 138, 143, 148, 150, 153, 155, 179], "metric": [52, 60, 89, 176], "mg": 124, "mib": [4, 26, 60, 88, 132], "micro": 133, "microservic": 132, "microsoft": [50, 56, 60, 63, 88, 93, 115, 129, 134, 170], "mid": [12, 132], "middl": 126, "middlewar": [69, 179], "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, 93, 95, 96, 99, 103, 113, 116, 118, 125, 126, 129, 131, 132, 134, 136, 138, 143, 144, 150, 157, 164, 165, 171, 175], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 95, 115, 118, 130, 141, 147, 150, 151, 153, 155, 156, 160, 174], "milli": 156, "million": 119, "millisecond": [48, 60, 93, 155], "milliwai": [153, 155, 156], "mime": [101, 110, 116, 129, 133, 153, 172], "mimetyp": [47, 60, 88, 101, 126, 129, 153], "mimetypealias": [51, 101], "mimetypelist": 155, "mimetypemap": [51, 155], "min_spare_serv": 132, "minchunks": 93, "mind": [3, 18, 59, 60, 95, 101, 120, 124, 125, 133, 147, 179], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 107, 114, 123, 124, 128, 132, 134, 138, 177], "minimis": 107, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 95, 98, 107, 116, 134, 143, 177], "minio": 48, "miniredir": 60, "minor": [3, 132, 142], "minsearchstringlength": 88, "mint": [56, 59, 133], "minut": [0, 3, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 93, 112, 113, 116, 142, 143, 148, 153, 156, 178], "mirror": [126, 129, 147], "misbehav": 58, "misbehavior": 70, "misbehaviour": 155, "miscellan": 88, "misconfigur": [58, 60, 88, 93, 99, 104, 118, 126, 129], "misformat": 81, "mismatch": [132, 153, 156, 175], "miss": [25, 43, 80, 81, 88, 92, 99, 126, 130, 133, 144, 146, 148, 153, 178], "missing_fil": 137, "missingok": 107, "mission": [138, 177], "mistak": [60, 81, 138], "mistakenli": 118, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 126], "mitm": 126, "mix": [41, 48], "mixer": 126, "mixtur": 60, "mj": [129, 171, 172], "mkdir": [28, 34, 96, 123, 124], "mknod": 158, "mkv": 47, "mlocat": 123, "mm": [81, 151], "mnt": [81, 133], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 101, 119, 126, 127, 132], "mod": [125, 133, 178], "mod_dav": [123, 133, 138], "mod_defl": 138, "mod_dir": 133, "mod_env": [60, 68, 126, 133], "mod_evas": 138, "mod_fastcgi": 138, "mod_fcgi": 133, "mod_fcgid": [88, 138], "mod_head": [68, 126, 133], "mod_mim": 133, "mod_pagespe": 138, "mod_php": [132, 133, 134, 138], "mod_proxy_fcgi": [88, 138], "mod_reqtimeout": [26, 138], "mod_rewrit": [41, 60, 68, 133, 138], "mod_secur": 138, "mod_spdi": 138, "mod_webdav": 133, "mod_xsendfil": 138, "modal": 94, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 97, 98, 112, 118, 123, 125, 127, 137, 141, 142, 143, 146, 149, 151, 152], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 95, 116, 126, 130, 135], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 129, "modif": [12, 22, 43, 63, 93, 105, 110, 112, 113, 133, 142], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 101, 102, 105, 107, 110, 112, 113, 114, 118, 126, 132, 133, 137, 138, 153, 154, 155, 156], "modul": [22, 26, 28, 29, 38, 45, 59, 60, 72, 81, 88, 124, 125, 127, 128, 129, 133, 134, 150, 158, 171, 172], "modular": [1, 15], "module_nam": 130, "molli": 81, "moment": [8, 164], "momentj": 66, "mon": [53, 56], "mondai": 53, "monitor": [16, 58, 59, 88, 126, 132, 155, 176, 178], "monterei": 134, "month": [1, 2, 14, 111, 126, 129, 133, 155], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 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, 99, 101, 107, 112, 113, 116, 117, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 146, 148, 149, 150, 153, 155, 156, 158, 160, 161, 163, 164, 170, 172, 174, 175, 176, 177, 178, 179], "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, 95, 96, 110, 111, 118, 119, 126, 129, 130, 131, 132, 133, 134, 138, 144, 145, 148, 150, 155, 156, 161, 162, 163, 169, 170, 177, 179], "mostli": [133, 179], "mount": [28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 96, 98, 100, 101, 110, 133, 152], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 107, 126, 128, 142, 143, 147, 148, 152, 174, 177], "movi": [47, 60, 166, 167], "mozilla": [67, 118, 126, 129, 134], "mp3": [51, 60, 174, 175, 176], "mp4": [129, 155], "mpeg": 51, "mrtumnu": 69, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 153], "much": [26, 61, 93, 96, 128, 131, 132, 138, 146, 155], "multi": [15, 46, 58, 59, 81, 88, 143, 178], "multibucket": [46, 88], "multibyt": [130, 146], "multilingu": [7, 12, 13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 5, 6, 9, 12, 15, 20, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 95, 96, 98, 116, 120, 126, 130, 132, 133, 144, 146, 149, 151, 153, 156, 157, 160, 161, 177, 178], "multiview": [123, 133], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 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, 95, 96, 98, 107, 108, 111, 112, 116, 120, 121, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 155, 156, 178], "mutual": [58, 153], "mx": [116, 118], "my": [2, 16, 48, 51, 72, 75, 81, 88, 95, 97, 112, 151, 153, 155, 164], "myapp": [63, 153], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 178, "mygroup": [75, 154], "myisam": 134, "mylogfil": 131, "mylogo": 72, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 155], "mysql": [20, 21, 25, 88, 121, 123, 125, 128, 130, 132, 133, 138, 145, 155, 174], "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": 123, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 140], "mysqlnd": 123, "n": [1, 5, 15, 19, 20, 29, 81, 99, 150, 152, 153, 155, 178], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 16, 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, 93, 95, 96, 97, 98, 101, 106, 110, 111, 112, 114, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 137, 149, 151, 153, 154, 155, 156, 162, 178], "namespac": [14, 55, 60, 63, 155], "nation": 107, "nativ": [24, 38, 179], "natur": [12, 15, 84, 157], "navig": [1, 55, 60, 93, 95, 101, 102, 105, 106, 112, 113, 116, 124, 136], "nc": [60, 63, 88, 100, 129], "nc_app_": 99, "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": 150, "nc_domain": 96, "nc_instance_url": [95, 96], "nc_loglevel": 150, "nc_pass": 156, "nc_samesitecookielax": [70, 106], "nc_samesitecookiestrict": [70, 106], "nc_serverid": [60, 143], "nc_session_id": 106, "nc_token": 106, "nc_usernam": 106, "ncdata": 138, "ncp": 130, "ncvm": 133, "ne": 178, "nearli": [123, 172], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 96, 106, 107, 116, 118, 123, 128, 129, 130, 133, 138, 157, 174, 179], "necessarili": [58, 77, 95, 96, 138], "need": [0, 1, 3, 4, 6, 8, 11, 12, 15, 16, 18, 22, 23, 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, 93, 95, 96, 97, 99, 101, 102, 108, 111, 112, 113, 116, 118, 120, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 164, 165, 170, 173, 174, 176, 177, 178, 179], "needsdbupgrad": 155, "neg": [6, 126], "neither": 78, "nest": [82, 88, 153, 155, 178], "net": [60, 96, 97, 123, 144, 155, 157], "netdata": 132, "netstat": [56, 63], "network": [15, 22, 40, 58, 60, 88, 92, 93, 95, 96, 97, 99, 101, 126, 127, 133, 134, 145, 155, 172, 178], "never": [28, 40, 44, 53, 60, 77, 81, 107, 110, 126, 132, 152, 153, 156], "nevertheless": 148, "new": [2, 3, 5, 6, 11, 12, 20, 23, 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, 95, 96, 98, 108, 111, 112, 114, 116, 118, 119, 124, 126, 128, 130, 131, 132, 133, 134, 138, 140, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 162, 170, 172, 173, 174, 177, 178, 179], "newer": [23, 38, 70, 95, 113, 116, 118, 132, 134, 146, 152, 177], "newest": [44, 144, 177], "newgroup": [75, 76], "newli": [20, 28, 40, 48, 53, 56, 57, 60, 77, 81, 105, 133, 177, 179], "newnam": 178, "newpassword": 156, "newus": 156, "next": [1, 2, 16, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 94, 95, 112, 113, 123, 127, 138, 147, 148, 151, 152, 153, 155, 161, 166, 177, 179], "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, 45, 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, 95, 98, 99, 100, 101, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 120, 121, 125, 127, 128, 130, 131, 132, 133, 134, 135, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 177], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 123, "nextcloud_config_dir": [60, 126], "nextcloud_docker_network_nam": 96, "nextcloud_host": 69, "nextcloud_imaginari": 132, "nextcloud_install_product": 133, "nextcloud_log": 93, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 96, 97], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 133, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 127], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 96, 110, 126, 127, 128, 132, 133, 134, 138, 170, 171, 172], "ngo": 138, "ngx_pagespe": [129, 138], "ni": 132, "nice": 51, "night": 3, "nin": 178, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 129, "no_last_modifi": 129, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobodi": 137, "nocanon": 158, "node": [6, 60, 88], "nodecod": 158, "nodecopiedev": 178, "nodecreatedev": 178, "nodedeletedev": 178, "nodeinfo": 138, "noderenamedev": 178, "noderestoredev": 178, "nodetouchedev": 178, "nodewrittenev": 178, "nofollow": [126, 129], "noindex": [126, 129], "nologon": 150, "nomatim": 2, "nominatim": 126, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 95, 97, 128, 130, 143, 147, 149, 151, 153, 155, 156, 157, 178], "none": [15, 32, 58, 60, 63, 81, 82, 85, 129, 142, 151, 152, 153, 155, 156, 158, 170], "nonexist": [81, 129], "nonexistingfil": 178, "nonexistingfold": 178, "noon": 2, "nor": [38, 57, 88, 95, 147, 178], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 120, 135, 138, 143, 147, 148, 150, 153, 155], "nosniff": [126, 129], "notabl": 38, "notat": [60, 67, 69, 178], "note": [0, 1, 2, 3, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 96, 102, 108, 112, 113, 121, 126, 127, 129, 133, 134, 138, 139, 142, 148, 149, 150, 152, 156, 164, 166, 177, 178], "noth": [3, 19, 153], "notic": [45, 47, 58, 72, 110, 128, 143, 156], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 105, 108, 110, 115, 126, 131, 133, 138, 141, 147, 149, 151, 155, 170, 178, 179], "notifempti": 107, "notifi": [16, 28, 38, 40, 53, 63, 88, 105, 108, 149, 178], "notify_guest": 16, "notion": [166, 167], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 95, 96, 112, 113, 116, 118, 121, 123, 124, 125, 128, 130, 133, 138, 142, 147, 158, 170, 171, 172, 175, 176, 178, 179], "nowadai": [60, 175], "nsign": 159, "nss": [65, 88], "nsuit": 159, "ntf": 38, "ntlm": [63, 170], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 97, 124, 149, 175, 178, 179], "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, 93, 107, 110, 112, 113, 116, 120, 123, 125, 126, 128, 132, 134, 138, 142, 147, 151, 152, 155, 156, 162, 172, 177, 178], "numer": [47, 60, 86, 128, 153, 155], "numeric_id": 29, "nuri": 159, "nvidia": [3, 4, 5, 6, 7, 9, 11, 95, 97, 99], "o": [26, 28, 58, 60, 81, 88, 124, 129, 130, 132, 133, 138, 143, 155], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 179], "oauth2": [65, 88, 150], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 112, 126, 130, 132, 143, 150, 151, 166, 175, 176, 179], "object_typ": 111, "objectclass": [81, 82, 154], "objectdata": 178, "objectid": 178, "objectprefix": 60, "objectstor": [48, 88, 135, 143], "objecttyp": 178, "oblig": [107, 108, 109], "obscur": 138, "observ": 12, "obsolet": 47, "obtain": [63, 68, 88, 139, 153], "obviou": [58, 172], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 123, 124, 129, 132, 137, 147, 150, 153, 155, 172, 173, 178, 179], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 138, "oc_admin": 128, "oc_admin1": 128, "oc_admin2": 128, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 138, "oc_carla": 60, "oc_com": 111, "oc_comments_read_mark": 111, "oc_databas": 151, "oc_dav_shar": 118, "oc_dbus": 151, "oc_default_modul": [29, 152], "oc_filecach": [29, 138, 151], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 118, "oc_mail_recipi": 118, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 155, "oc_pass": 156, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 106, "oc_shar": 20, "oc_storag": [29, 83, 138], "oca": [3, 60, 63, 155, 172, 178], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 23, 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, 98, 100, 103, 107, 108, 111, 112, 113, 116, 117, 118, 121, 126, 129, 132, 133, 136, 137, 138, 140, 142, 144, 147, 148, 149, 151, 152, 153, 154, 155, 156, 173, 174, 175, 178, 179], "occ6f7365735": 60, "occ_command": 67, "occas": 81, "occasion": [8, 142, 158], "occur": [2, 26, 59, 63, 96, 98, 132, 138, 143, 147, 155, 175, 178], "occurr": 26, "ocdownloadstart": 106, "oci": [20, 60, 121, 155], "ocp": [60, 77, 150, 178], "ocsp": 129, "octal": [60, 67], "odd": 132, "odf": [157, 160], "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 96, 116, 118, 123, 129, 131, 133, 142, 147, 150, 154, 155, 156, 158], "offend": 58, "offer": [0, 1, 12, 15, 16, 28, 56, 60, 64, 72, 114, 116, 118, 126, 133, 135, 138, 147, 177], "offic": [2, 15, 42, 47, 51, 58, 109, 115, 133, 158, 161, 162, 163, 164, 166, 167], "offici": [2, 56, 58, 60, 72, 81, 96, 119, 123, 124, 126, 129, 130, 132, 133, 134, 137, 138, 147, 169, 177], "offlin": [81, 93, 112, 113, 143, 147], "offload": [0, 1, 96, 132, 155], "offset": [75, 76, 154, 155, 156], "often": [1, 26, 57, 58, 60, 93, 107, 112, 113, 116, 126, 130, 133, 172, 174, 177], "ogg": [129, 171, 172], "oid": [60, 153], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 152, 153], "okai": 142, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 137, 138, 142, 147, 152, 153, 155, 170, 175], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 93, 107, 130, 132, 136, 138, 144, 147, 148, 153, 155], "oldest": [44, 85], "oldfil": 178, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 60, 69, 70, 81, 92, 106, 149, 151, 152, 153], "onbootsec": 57, "onc": [2, 14, 18, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 93, 108, 112, 118, 123, 125, 126, 129, 142, 143, 147, 149, 151, 152, 153, 154, 155, 156, 158, 169, 172, 177, 178, 179], "ondemand": 132, "one": [1, 2, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 95, 97, 101, 102, 108, 110, 111, 112, 114, 116, 118, 123, 128, 129, 130, 133, 134, 135, 136, 138, 142, 143, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 161, 166, 172, 177, 178, 179], "ones": [20, 44, 53, 54, 59, 60, 107, 132, 133, 142, 144, 147, 152, 166, 172, 177], "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, 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, 101, 102, 106, 108, 112, 113, 114, 116, 117, 118, 121, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 164, 166, 172, 175, 176, 177, 178, 179], "onlin": [32, 60, 88, 118, 119, 123, 133, 143, 148, 159, 160, 161, 163, 164], "onlyoffic": [32, 133], "onrequest": 179, "ons": [119, 132], "onunitactivesec": 57, "ooxml": 88, "opaqu": 178, "opcach": [59, 60, 88, 123, 124, 127, 129, 130], "opcod": [59, 132], "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, 93, 96, 116, 119, 126, 130, 133, 138, 147, 157, 164, 179], "open_basedir": [26, 126, 130], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 167], "openapi": [12, 60, 179], "openbsd": [88, 127], "opendocu": [47, 60, 132, 157], "opendyslex": 60, "opengraph": 166, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 130], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 118, 124, 130, 132], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [126, 166, 167], "opensus": [134, 150], "opentopodata": 126, "opentyp": 129, "openweathermap": 14, "oper": [3, 6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 101, 108, 109, 121, 127, 132, 133, 134, 135, 138, 142, 147, 148, 150, 152, 156, 157, 158, 177, 178], "opinion": [133, 145], "opportunist": 63, "opt": [15, 29, 40, 60, 116, 123, 128, 135, 150, 155, 175, 178], "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, 119, 126, 129, 130, 132, 133, 177], "optimis": [6, 11, 138], "option": [0, 1, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 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, 93, 95, 96, 99, 100, 101, 105, 108, 110, 112, 113, 114, 116, 117, 118, 119, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 154, 155, 156, 159, 160, 161, 166, 172, 173, 177, 178, 179], "optout": 88, "oracl": [20, 22, 25, 60, 121, 128, 134, 155, 176], "orang": 15, "orchestr": 96, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 63, 71, 77, 80, 81, 95, 96, 116, 126, 133, 134, 140, 149, 155, 157, 177, 179], "org": [56, 60, 68, 76, 79, 93, 126, 129, 133, 155, 178], "organ": [60, 72, 85, 88, 119, 134, 155], "organis": [77, 81, 109, 134, 138], "organisationscop": 77, "organiz": [81, 85, 116], "organizationnam": 81, "orient": 130, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 106, 110, 118, 126, 138, 142, 143, 150, 153, 178], "orphan": [44, 88, 138, 155], "otf": 129, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 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, 96, 97, 98, 106, 107, 110, 111, 112, 113, 114, 116, 117, 119, 124, 125, 126, 127, 128, 129, 130, 132, 137, 139, 142, 145, 147, 149, 150, 151, 152, 155, 156, 157, 160, 161, 171, 172, 173, 174, 175, 176, 177, 178, 179], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 95, 101, 105, 108, 112, 116, 129, 132, 133, 138, 143, 153, 178], "ou": [81, 82, 83, 154], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 95, 96, 101, 102, 122, 123, 124, 126, 130, 132, 133, 134, 137, 138, 144, 160, 172, 177, 179], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 93, 95, 101, 106, 107, 115, 129, 131, 133, 134, 137, 138, 142, 143, 147, 148, 155, 156, 161, 170, 172, 177, 179], "outbound": [63, 172], "outdat": [44, 60, 65, 88, 112, 113, 123, 146, 155], "outdoor": 2, "outgo": [63, 88, 116, 118], "outlin": [2, 56], "outlook": [63, 88, 116], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 93, 111, 118, 130, 132, 133, 137, 148, 149, 150, 151, 152, 153, 155, 156, 178], "output_buff": 26, "outright": [58, 134], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 96, 101, 110, 112, 125, 128, 129, 132, 133, 135, 138, 140, 142], "outstand": [2, 7, 155], "ova": 133, "over": [22, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 93, 96, 106, 111, 119, 123, 126, 132, 133, 134, 142, 155, 166, 171], "overal": 132, "overcom": 60, "overflow": 40, "overhead": [60, 81, 93, 132], "overlai": 81, "overlap": [38, 177], "overload": 138, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 96, 97, 107, 143, 147, 151, 155], "overridden": 69, "override_app_host": [96, 97, 99], "overridelocaldir": 92, "overriden": 60, "overrideserverurl": 92, "overseen": 119, "overview": [0, 1, 3, 13, 16, 46, 59, 61, 88, 110, 119, 137, 138, 141, 144, 151, 170, 172, 179], "overwrit": [27, 63, 65, 88, 112, 133, 143, 153, 172], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 143], "overwriteprotocol": [69, 70, 88, 143], "overwritewebroot": [69, 88, 143], "overwritten": [27, 60, 67, 73, 77, 81, 112], "owasp": 175, "own": [0, 1, 3, 4, 12, 15, 16, 26, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 101, 103, 107, 108, 111, 112, 113, 114, 124, 128, 133, 138, 148, 153, 158, 172, 178, 179], "owncloud": [30, 70, 88, 93, 138, 140, 141, 146, 150, 153, 155, 178], "owncloud_core_dump": 93, "owner": [22, 43, 77, 88, 101, 102, 105, 108, 110, 118, 123, 151, 179], "ownerid": 178, "ownership": [3, 34, 43, 60, 88, 108, 111, 121, 125, 133, 142, 150, 155], "p": [8, 22, 59, 96, 99, 123, 124, 131, 132, 136, 140, 146, 152, 158], "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 119, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 141, 148, 153, 155, 157, 160, 161, 179], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 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, 93, 94, 95, 99, 107, 108, 110, 111, 112, 116, 123, 125, 126, 129, 130, 132, 133, 137, 138, 142, 144, 147, 148, 149, 152, 153, 155, 156, 166, 167, 169, 179], "pagespe": 129, "paid": [147, 148], "pain": 95, "pair": [28, 37, 46, 60, 88, 97, 106, 116, 153], "pandoc": 42, "pane": [15, 85, 178], "panel": [56, 60, 66, 81, 85, 111, 132, 133, 155, 179], "pant": 63, "paper": 7, "paragraph": [126, 166], "parallel": [15, 22, 26, 60, 70, 95, 138, 178], "param": [178, 179], "paramet": [3, 5, 14, 16, 20, 21, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 93, 96, 107, 112, 126, 127, 129, 130, 133, 143, 150, 155, 172, 176, 177, 178, 179], "parameter_nam": 130, "paramount": [15, 81], "parent": [40, 45, 101, 133, 138, 153, 155], "pars": [3, 29, 60, 130], "parser": 132, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 93, 111, 121, 123, 126, 133, 134, 137, 149, 158, 163, 177, 179], "part_file_in_storag": 88, "parti": [6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 106, 134, 138, 142, 148, 157, 165, 167], "partial": [63, 118, 178], "particip": [110, 112, 119], "particular": [1, 7, 22, 38, 48, 54, 81, 129, 132, 177], "particularli": [58, 177], "partit": [26, 60], "partner": [110, 119], "partnership": 160, "pass": [2, 5, 22, 32, 38, 56, 60, 65, 67, 81, 88, 92, 96, 97, 98, 121, 124, 129, 137, 138, 147, 150, 151, 153, 155, 156, 157, 177, 178], "passiv": 92, "passphras": [29, 110], "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, 93, 95, 96, 97, 106, 108, 110, 111, 116, 118, 120, 121, 123, 124, 125, 127, 128, 130, 133, 138, 140, 145, 146, 149, 150, 152, 153, 155, 156, 159, 170, 179], "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, "passwordsalt": 88, "past": [56, 60, 70, 137, 151], "pasta": 2, "patch": [63, 70, 88, 118, 139, 147, 177], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 65, 67, 69, 77, 81, 88, 92, 93, 96, 97, 98, 110, 118, 124, 126, 128, 129, 131, 133, 136, 143, 144, 149, 150, 151, 152, 153, 155, 156, 162, 178, 179], "path_info": 129, "path_redirect": 69, "pathparamet": 179, "pattern": [44, 49, 58, 60, 128, 132], "pauvo": 69, "payload": [88, 110, 179], "payment": 0, "pbkdf2": 29, "pc": [22, 142], "pcntl": 130, "pcntl_signal": 130, "pcntl_signal_dispatch": 130, "pdf": [2, 3, 47, 56, 60, 88, 102, 130, 133, 152, 153, 155, 156, 178], "pdo": [22, 60], "pdo_mysql": [22, 130], "pdo_pgsql": [22, 124, 130], "pdo_sqlit": 130, "pecl": [38, 59, 60, 123], "pecl82": 124, "peer": [22, 63, 116, 119], "peertub": [166, 167], "pem": [22, 29, 60, 124], "pencil": 85, "pend": [126, 151, 155], "peopl": [6, 9, 43, 53, 58, 83, 102, 114, 138, 154, 166, 167], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 60, 77, 82, 88, 107, 108, 110, 112, 113, 134, 143, 152, 153, 156, 166, 168, 172, 178], "perbucket": 48, "percentag": 177, "perfect": [4, 9, 133, 145], "perfectli": 177, "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, 93, 95, 96, 99, 103, 106, 108, 118, 119, 126, 127, 128, 129, 130, 133, 134, 143, 144, 147, 148, 150, 151, 152, 153, 155, 161, 174, 175, 176, 177, 179], "period": [40, 44, 57, 58, 60, 85, 86, 105, 107, 111, 112, 113, 114, 116, 117, 134, 142, 148, 151, 153, 155, 177], "peripher": 133, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 96, 106, 111, 123, 126, 152, 153, 155, 156], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 101, 107, 118, 124, 129, 131, 133, 138, 142, 143, 147, 150, 155], "permit": [54, 60, 126, 129, 153, 177], "persian": 4, "persist": [22, 46, 60, 85, 88, 93, 98, 106, 118, 135, 155, 164], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 106, 107, 108, 109, 111, 112, 114, 116, 133, 137, 151, 152, 153, 161, 167], "personnel": 93, "perspect": 15, "pertain": [26, 93], "pg_ctl": [3, 124], "pg_dump": 140, "pg_hba": 22, "pg_user": 22, "pgp": [123, 125, 131], "pgpassword": [140, 146], "pgsql": [3, 20, 22, 60, 120, 121, 155], "pgsql_ssl": 88, "pgvector": 3, "phar": [130, 147, 155], "phase": [147, 155], "philip": 154, "phone": [43, 60, 76, 77, 80, 81, 110, 113, 119, 156], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 110, 153], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 45, 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, 95, 96, 106, 107, 108, 110, 111, 112, 113, 114, 117, 118, 120, 121, 125, 127, 128, 131, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 164, 170, 171, 172, 173, 175, 176, 178, 179], "php7": 22, "php70": 150, "php74": 123, "php8": [129, 132], "php82_fpm": 124, "php_valu": 26, "phpdoc": 178, "phpinfo": [130, 138], "phpredi": [59, 60, 130], "physic": [13, 28, 56, 88, 96, 110, 128, 143], "pi": [60, 119, 133], "pick": [15, 22, 40, 66, 93, 143, 153, 167], "picker": [1, 2, 15, 88, 165], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 110, 130], "pin": 147, "ping": [22, 63], "pipe": [60, 118, 149], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 124, "pkg_add": 124, "pki": 129, "place": [1, 26, 27, 45, 56, 60, 63, 88, 114, 116, 118, 121, 124, 128, 129, 131, 132, 136, 137, 138, 142, 147, 163, 165, 166, 178], "placehold": [29, 32, 60, 81], "plai": [60, 72, 132], "plain": [14, 60, 63, 70, 71, 101, 106, 129, 133, 138, 150], "plaintext": [81, 110], "plan": [2, 8, 25, 81, 125, 130, 133, 134, 148, 177], "planetexpress": 154, "platform": [31, 48, 92, 93, 119, 123, 132, 134, 135, 178], "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, 93, 96, 101, 102, 113, 117, 118, 123, 126, 128, 132, 133, 134, 137, 138, 142, 144, 147, 148, 150, 151, 152, 164, 172, 177, 179], "plu": [67, 178, 179], "plug": 132, "pluggabl": 80, "plugin": [96, 178], "plusserv": [0, 15], "pm": [132, 133], "png": [31, 60, 72, 129, 155], "pod": 3, "pod_nam": 3, "podman": [3, 133], "point": [6, 12, 15, 16, 22, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 95, 101, 107, 112, 113, 128, 129, 132, 133, 134, 138, 143, 147, 148, 153], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 106, 107, 108, 110, 126, 129, 130, 131, 139, 153], "policycoreutil": 123, "polish": 4, "polit": [1, 14], "poll": [40, 132, 155, 178], "pomerium": 88, "pool": [59, 126, 129, 132, 133], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 110, 133, 142], "popular": [45, 95, 96], "popup": 116, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 95, 96, 97, 99, 123, 124, 126, 128, 132, 149, 151, 155, 157, 163], "portabl": 88, "portal": [48, 63, 102, 116, 122], "portion": 138, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 172, 177], "posix": [50, 130], "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, 93, 95, 96, 97, 99, 101, 102, 112, 113, 116, 118, 121, 126, 129, 130, 131, 132, 133, 134, 137, 138, 142, 143, 144, 146, 147, 149, 152, 157, 158, 164, 177, 179], "possibli": [60, 118, 126, 138], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 118, 128, 129, 136, 149, 157, 178, 179], "post_allow": 157, "post_max_s": [26, 124, 133], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 124], "postgresql": [3, 20, 60, 88, 121, 124, 128, 130, 132, 134, 151, 155, 173, 176], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 132], "power": [3, 5, 6, 7, 9, 10, 14, 60, 101, 129, 133, 143], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 160, "pptx": [2, 160], "pr": 136, "practic": [47, 60, 77, 107, 118, 126, 143], "pre": [50, 60, 65, 72, 88, 95, 99, 126, 128, 130, 138, 148, 152, 177], "preced": [51, 60, 80, 88, 153], "precis": [48, 81, 94], "precompil": 132, "preconfigur": [88, 101], "predefin": [50, 92, 93], "predict": [107, 132, 177], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 115, 117, 118, 121, 129, 130, 133, 138, 155, 178], "prefil": 92, "prefix": [25, 31, 60, 65, 67, 88, 106, 114, 129, 133, 154, 155], "preinstal": 161, "preliminari": 155, "preload": [124, 126, 129], "prem": 15, "prematur": [112, 113], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 109, 119], "premium": 134, "prepar": [15, 88, 95, 110, 127, 133], "prepend": [1, 60, 129, 138, 150], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 125, 127, 128, 141, 143], "preseed": 60, "presenc": 178, "present": [2, 51, 54, 60, 63, 64, 67, 81, 96, 110, 119, 132, 133, 136, 147, 153, 158, 159, 178], "preserv": [0, 1, 4, 40, 43, 44, 85, 123, 132, 142, 146, 156, 160], "preset": 85, "press": [2, 41, 63, 93, 112, 113, 138, 167], "pretrain": 5, "pretti": [68, 88, 125, 127, 129, 179], "prettier": 133, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 104, 106, 112, 116, 126, 128, 129, 132, 134, 137, 138, 140, 146, 148, 154, 172, 175], "preview": [28, 40, 46, 65, 88, 127, 130, 133, 150, 151, 165], "preview_concurrency_al": [88, 172], "preview_concurrency_new": [88, 172], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 132, "preview_imaginary_kei": [88, 132], "preview_imaginary_url": [88, 132], "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": 172, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 96, 107, 110, 118, 137, 141, 146, 147, 148, 151, 162, 179], "previous": [53, 67, 95, 130, 138, 162, 172, 174], "previousnam": 178, "previousvalu": 178, "primari": [1, 25, 26, 31, 46, 58, 72, 81, 82, 88, 144, 148, 153, 154], "primarili": [77, 119], "primary_color": [72, 155], "princip": [138, 151, 178], "principaluri": 138, "principl": 107, "print": [98, 132, 178], "printenv": 133, "prior": [12, 26, 58, 93, 144, 178], "priorit": 12, "prioriti": [2, 16, 71, 132], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 106, 107, 108, 110], "privacyurl": [72, 155], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 110, 113, 116, 119, 124, 126, 129, 149, 153, 156], "privatedata": 20, "privatekei": [29, 153], "privileg": [22, 65, 74, 76, 81, 88, 125, 128, 155, 179], "proactiv": 43, "probabl": [48, 81, 129, 159], "probe": 126, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 112, 113, 129, 131, 132, 133, 137, 139, 143, 147, 155, 177], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 147], "proc": [3, 132], "proce": [29, 108, 116, 123, 147, 151], "procedur": [12, 28, 77, 93, 107, 147, 155], "proceed": [28, 142, 148, 153], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 93, 95, 97, 99, 110, 115, 123, 126, 129, 130, 134, 137, 138, 142, 147, 148, 150, 152, 153, 156, 178], "process_idle_timeout": 132, "processor": 132, "produc": [5, 8, 11, 67, 107, 111, 132, 153], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 107, 123, 126, 128, 131, 132, 133, 138, 151, 155], "productnam": 155, "profession": [11, 15, 28, 134, 138], "profil": [40, 43, 74, 84, 88, 93, 111, 113, 114, 126, 131, 150, 172], "profile_en": 156, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 138, "program": [12, 57, 63, 92, 93, 95, 143, 150], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 150], "project": [2, 48, 84, 88, 119, 125, 137, 153, 155, 177, 178], "prometheu": 176, "promin": [174, 179], "promot": [81, 88], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 93, 116, 125, 133, 145, 150, 151, 152, 153, 179], "pronoun": [77, 156], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 132, 137, 138, 147, 151, 153, 172], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 93, 99, 126, 130, 137, 138, 142, 152, 155, 158], "properti": [60, 74, 81, 85, 88, 92, 93, 156, 178, 179], "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, 132], "propget": 93, "propos": 12, "proprietari": [8, 15], "prospect": 177, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 102, 107, 109, 110, 133, 147, 155], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 60, 69, 82, 88, 93, 95, 96, 97, 99, 118, 126, 157, 164], "prototyp": 96, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 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, 93, 94, 97, 106, 109, 112, 113, 114, 116, 119, 120, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 143, 145, 147, 153, 155, 156, 157, 160, 161, 165, 170, 172, 173, 174, 175, 176, 177, 178, 179], "provider_id": [80, 156], "providerfactori": 60, "provis": [48, 74, 77, 84, 88, 116], "provisioning_api": [17, 149], "proxi": [2, 16, 48, 65, 70, 88, 97, 99, 100, 110, 128, 129, 133, 143, 147, 159, 160, 161], "proxy_buff": 26, "proxy_connect_timeout": [96, 129], "proxy_fcgi": 133, "proxy_hide_head": 69, "proxy_http": 158, "proxy_max_temp_file_s": 26, "proxy_pass": 96, "proxy_protocol": 96, "proxy_read_timeout": 129, "proxy_send_timeout": 129, "proxy_set": [158, 159, 162, 163], "proxy_timeout": 96, "proxy_wstunnel": 158, "proxyexclud": 88, "proxyfcgibackendtyp": 133, "proxypass": [96, 158], "proxypassmatch": 158, "proxypassrevers": [96, 158], "proxypreservehost": 158, "proxytimeout": [26, 132], "proxyuserpwd": 88, "prune": [44, 99, 107, 118], "pseudo": 126, "psql": [22, 146], "pt6h": 112, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 96, 99, 101, 108, 110, 119, 123, 124, 126, 129, 133, 156, 160, 166, 167], "public_html": 33, "publiccalendar": 112, "publickei": 29, "publicli": [5, 12, 18, 29, 118, 133, 149], "publish": [2, 12, 60, 77, 96, 110, 160, 177], "pubshare_": 29, "pull": [81, 88, 129, 136, 158, 162, 166, 167, 172], "punctuat": 4, "pure": 3, "purg": [107, 112], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 106, 107], "push": [40, 53, 110, 112, 126, 137, 153, 155], "pushfe": 126, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 118, 124, 128, 133, 138, 140, 142, 143, 148, 179], "putsizelimit": 48, "pwa": 60, "pwd": 96, "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 128, "py": 18, "python": [3, 123], "q": [22, 63, 150], "q16": 72, "qmail": [60, 65, 88], "quali": 126, "qualifi": [12, 41, 63, 155, 178], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 132, 153, 177], "quantiz": [5, 7], "queri": [1, 3, 15, 24, 25, 43, 60, 67, 76, 81, 87, 111, 112, 114, 128, 132, 138, 148, 150, 178, 179], "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, 118, 147, 150, 160], "queu": [53, 132, 155], "queue": [3, 53, 88, 132], "quick": [2, 56, 64, 88, 116, 127, 133], "quickli": [16, 50, 85, 93, 154], "quickstart": [88, 141], "quiet": [44, 49, 56, 92, 150, 153], "quit": [19, 22, 56, 63, 125, 144, 148, 152], "quot": [60, 82, 96], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 107, 111, 139, 156], "quota_include_external_storag": [85, 88], "qwen": 2, "r": [7, 10, 28, 34, 69, 82, 121, 123, 125, 130, 133, 136, 138, 142], "race": [7, 70], "rackspac": 36, "rainloop": [88, 127], "rais": [12, 22, 26, 132, 138], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 132, 134], "ramdisk": 60, "ran": [6, 70, 172], "rand": 48, "random": [29, 40, 48, 81, 106, 110, 118, 126, 128], "random_byt": 29, "randomli": [60, 106], "rang": [48, 58, 60, 67, 69, 88, 95, 96, 101, 127, 132, 148], "rank": 155, "rapid": 177, "rapidli": 177, "rar": 56, "rare": [28, 31, 48, 60, 146], "raspberri": [60, 119], "rate": [0, 5, 7, 13, 88, 108, 115, 128], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 113, "ratelimitcalendarcr": 112, "ratelimitperiodaddressbookcr": 113, "ratelimitperiodcalendarcr": 112, "rather": [16, 32, 35, 41, 45, 60, 63, 81, 92, 111, 114, 129, 132, 138, 147, 153, 155, 172], "ration": 60, "raw": [15, 29, 71, 81, 96, 137, 138], "rc4": 152, "rcctl": 124, "re": [4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 94, 101, 107, 111, 116, 118, 128, 129, 133, 134, 138, 142, 143, 147, 148, 152, 153, 156, 174, 175, 177], "reach": [40, 43, 58, 60, 67, 70, 81, 95, 99, 123, 126, 133, 134, 138, 143, 144, 145, 147, 148, 151, 164, 172, 177], "reachabl": [8, 58, 60, 69, 77, 88, 95, 96, 99, 129, 133, 138, 143, 155, 172, 179], "react": [150, 179], "reaction": 110, "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 101, 107, 112, 113, 114, 118, 123, 124, 129, 133, 134, 135, 137, 151, 152, 153, 155, 156, 157, 174, 175, 176], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 129, 151, 152, 153, 155, 156], "reader": [20, 155], "readi": [40, 60, 81, 99, 133, 164, 177], "readili": 28, "readm": [3, 18, 84, 95, 96, 99, 124, 133], "readonli": 178, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 118, 128, 129, 132, 155, 160, 177, 178], "realiz": 15, "realli": [126, 152, 155], "reallysuppress": 92, "realtim": 58, "reappear": 107, "reason": [5, 15, 48, 52, 58, 60, 63, 64, 70, 81, 92, 107, 110, 118, 120, 126, 128, 130, 131, 132, 133, 134, 138, 143, 158, 172, 174, 175, 176], "reassign": 101, "reboot": 88, "rebuild": 155, "receiv": [15, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 108, 111, 116, 123, 134, 137, 148, 150, 153, 177, 178, 179], "recent": [26, 43, 44, 58, 81, 88, 107, 110, 115, 132, 143, 155, 156, 158, 162], "recid": 126, "recip": 2, "recipi": [29, 41, 60, 111, 114, 116, 118, 153, 155], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88], "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, 93, 95, 96, 101, 107, 118, 124, 125, 126, 127, 128, 129, 132, 133, 134, 137, 138, 140, 144, 145, 146, 148, 149, 151, 152, 155, 157, 158, 161, 165, 170, 171, 172, 174, 175, 177, 178, 179], "recommended": 177, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 107, 110, 111, 114, 118, 132, 143, 151, 153, 155], "recov": [28, 29, 78, 85, 88, 146, 153], "recoveri": [46, 80, 88, 107, 141, 152, 153], "recoverykey_": 29, "recreat": 146, "rectif": 88, "recurs": [153, 155], "recv": 63, "recycl": 132, "red": [15, 40, 41, 59, 93, 133, 134], "redact": [93, 118], "reddit": [166, 167], "redeploi": 3, "redhat": 56, "redi": [26, 45, 65, 70, 88, 127, 130, 135, 143, 149], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 95, 96, 99, 116, 129, 133, 138], "redirectregex": 69, "redis_log_fil": 88, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 107, 118, 127, 129, 138, 177], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 99, 107, 117, 118, 123, 127, 128, 136, 138, 148, 166, 172, 178, 179], "referenc": [14, 18, 29, 138], "reference_opengraph": 88, "referr": [126, 129], "refil": 59, "reflect": [60, 129, 143, 155], "refman": [60, 134], "reformat": 81, "reformul": 1, "refresh": [59, 60, 81, 88, 145, 155], "refus": 153, "regard": [84, 118, 130, 135, 177], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 107, 128, 149, 155, 177], "regener": [32, 143, 153, 155], "regex": [69, 126, 129], "region": [31, 36, 48, 60, 153], "regionon": [48, 60], "regist": [3, 4, 8, 15, 57, 60, 88, 95, 96, 100, 112, 116, 143, 153, 155, 156, 165, 166], "registr": [57, 116], "registrar": 133, "regress": 134, "regul": 109, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 101, 114, 147, 148, 161, 178], "regularli": [12, 15, 53, 57, 81, 107, 133, 148, 151, 177], "regulatori": 109, "reinforc": 5, "reinstal": [3, 92, 138, 144], "reject": [38, 88], "rel": [18, 29, 133, 156], "relai": 143, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 93, 95, 96, 113, 118, 127, 130, 132, 133, 135, 136, 143, 151, 154, 173, 174, 175, 177], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 93, 96, 123, 125, 126, 130, 132, 133, 134, 136, 137, 141, 144, 145, 147, 148, 149, 150, 158, 159, 162, 176], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 93, 116, 124, 126, 129, 143, 177], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 117, 134, 165, 167, 177], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 130, 134, 138, 142, 143, 160, 164], "reliev": 45, "reload": [40, 64, 96, 123, 132, 133], "remain": [3, 28, 40, 43, 60, 77, 81, 85, 96, 108, 111, 116, 124, 129, 143, 152, 153], "remedi": [60, 113, 138], "rememb": [60, 81, 85, 88, 92, 110, 123, 124, 131, 179], "remember_login_cookie_lifetim": [88, 106, 107, 110], "remi": 123, "remind": [88, 115], "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, 93, 95, 97, 101, 110, 111, 112, 114, 116, 118, 124, 127, 129, 133, 134, 138, 147, 149, 155, 176], "remote_addr": 60, "remoteaddr": [67, 126], "remotedirpath": 92, "remoteport": [96, 97], "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, 98, 99, 101, 102, 105, 107, 108, 111, 112, 113, 114, 116, 118, 120, 126, 129, 131, 133, 135, 137, 147, 149, 152, 153, 156, 158, 162, 164, 171, 172, 175], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 142, 153, 156, 162, 178], "render": [9, 60, 71, 160, 165, 166], "renew": 133, "rep": 153, "repair": [2, 23, 28, 51, 60, 88, 142, 148, 150], "repeat": [31, 58, 99, 143, 155], "repeatedli": [6, 126, 129, 132], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 96, 111, 112, 123, 125, 126, 127, 130, 133, 137, 138, 143, 147, 148, 149, 151, 153, 155, 158, 170, 173, 178], "repli": [63, 116, 160], "replic": [0, 1, 15, 21, 25, 88, 153, 167], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 159, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 93, 119, 131, 132, 138, 149, 152, 153, 155, 164, 173, 174, 175], "repositori": [13, 29, 56, 58, 88, 119, 123, 162, 166, 167, 177], "repres": [29, 44, 47, 118, 178, 179], "represent": 155, "reproduc": 70, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 22, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 93, 95, 96, 97, 99, 101, 106, 107, 109, 110, 118, 120, 124, 126, 129, 130, 132, 134, 136, 137, 138, 157, 163, 166, 167, 172, 178, 179], "request_checksum_calcul": [60, 175], "request_slowlog_timeout": 132, "request_terminate_timeout": 132, "request_timeout": [26, 41, 88], "request_uri": 129, "requestreadtimeout": 26, "requir": [1, 13, 15, 16, 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, 95, 96, 97, 99, 106, 107, 108, 110, 116, 120, 125, 126, 127, 128, 129, 131, 132, 133, 137, 138, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 161, 162, 164, 177, 178], "rerun": 28, "rescan": [40, 88, 139, 142, 153, 155], "resembl": 12, "resend": 88, "reserv": [50, 114, 174], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 110, 112, 113, 118, 123, 129, 132, 138, 147, 152, 153, 156, 170], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 96, 131], "resist": 58, "resiz": 81, "resolut": [9, 164, 172], "resolv": [28, 40, 58, 60, 65, 88, 93, 96, 114, 124, 126, 147, 148, 166, 172], "resolveexappurl": 96, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 95, 113, 115, 118, 126, 127, 132, 133, 138, 142, 145, 179], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 95, 96, 112, 116, 178], "respond": [52, 60, 88, 99, 101, 108, 109, 132], "respons": [2, 12, 14, 29, 65, 67, 88, 92, 96, 110, 119, 126, 129, 138, 147, 166, 175, 179], "response_checksum_valid": [60, 175], "rest": [28, 118, 123, 132, 138, 155], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 93, 96, 123, 126, 129, 130, 132, 133, 138, 142, 158, 159, 178], "restor": [23, 29, 44, 60, 88, 107, 138, 140, 141, 142, 143, 147, 148, 151, 155, 177, 178], "restorecon": [123, 131], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 101, 104, 105, 110, 112, 113, 118, 127, 138, 149, 155, 156, 171, 176], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 95, 96, 116, 118, 128, 129, 132, 133, 137, 151, 153, 155, 172, 178, 179], "resum": [60, 179], "resync": 113, "retain": [12, 14, 40, 43, 44, 53, 77, 106, 107, 110, 111, 140], "retent": [44, 49, 60, 88, 102, 104, 109, 110, 111, 115, 153, 156], "rethink": 107, "retrain": 177, "retreat": 2, "retri": [60, 147, 158], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 111, 155, 179], "retroact": [53, 60], "return": [17, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 96, 112, 123, 124, 129, 132, 133, 138, 149, 156, 166, 179], "reus": 118, "revalid": 88, "revalidate_freq": [124, 132], "reveal": 164, "revers": [28, 60, 65, 70, 88, 95, 99, 128, 133, 136, 143, 152, 159, 160, 161], "reverse_proxi": 69, "revert": [88, 93, 112, 139, 145, 147, 148, 152], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 126, 138, 142, 143, 148, 156, 172, 174, 177], "revis": [142, 148], "revisit": [132, 142, 148], "revok": [54, 107], "rewrit": [113, 129, 133, 138, 155, 172], "rewritebas": [88, 133], "rewriteengin": [69, 138], "rewriterul": [69, 138], "rewritten": 129, "rf": 131, "rfc": [60, 80, 126, 151], "rfc6749": 68, "rh": [123, 150], "rhel": [132, 133], "rich": [65, 88, 166], "rich_editing_en": 71, "richdocu": 172, "richdocumentscod": 129, "rid": [47, 152], "right": [1, 25, 33, 59, 60, 76, 81, 85, 88, 107, 108, 112, 129, 133, 142, 147, 172, 178], "rim": 129, "risk": [12, 28, 34, 60, 63, 126, 129, 132, 138, 147, 148, 177], "riski": 12, "rm": [98, 146, 158], "rmm": 92, "ro": 8, "roadmap": 12, "roam": 93, "rob": 154, "robbi": 154, "robert": 154, "roberta": 154, "robin": [17, 154], "robot": [126, 129], "robust": [13, 88, 133, 145], "rocm": [95, 97, 99], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 177, "rollout": 92, "roman": 2, "room": [8, 88, 115, 153, 155], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 102, 118, 120, 121, 123, 124, 125, 128, 129, 131, 132, 133, 136, 137, 138, 147, 150, 153], "rootcert": 60, "ropa": 110, "rotat": [4, 67, 88, 107, 110, 130, 155], "rough": [5, 7, 9, 10, 15], "round": 29, "rout": [2, 60, 96, 110, 129], "router": [60, 69], "routin": [150, 153, 177], "row": [22, 23, 40, 118, 134, 151, 174, 178], "row_format": [23, 60], "rowaddedev": 178, "rowdeletedev": 178, "rowid": 178, "rowupdatedev": 178, "rpm": 123, "rsa": [29, 32, 40], "rss": [129, 132], "rsync": [93, 140, 143, 146], "rt": 179, "rtrim": 96, "rtx": 95, "rule": [13, 44, 60, 81, 82, 86, 88, 96, 103, 104, 105, 123, 126, 129, 133, 147, 155, 157, 163], "ruleset": 131, "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, 93, 95, 96, 97, 107, 111, 112, 113, 114, 117, 118, 119, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 146, 147, 149, 151, 152, 153, 154, 155, 158, 159, 161, 164, 172, 177, 178], "runner": [15, 156], "runtim": [82, 88, 92, 134, 155], "runus": 150, "russian": 4, "rv": 131, "rw": 82, "s01": [81, 82, 154], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 143, 153], "s_time": 118, "sabr": 138, "sabredav": [133, 138, 178], "safari": [67, 134], "safe": [15, 19, 20, 28, 44, 59, 60, 63, 68, 95, 123, 125, 129, 130, 138, 143, 147, 152, 153, 155], "safest": 101, "safeti": 64, "sai": [63, 147], "said": [12, 15], "sake": 123, "sale": [16, 149, 160], "salt": [29, 60], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 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, 95, 97, 98, 101, 106, 110, 112, 113, 114, 118, 123, 124, 126, 129, 133, 135, 136, 138, 143, 145, 147, 148, 149, 150, 151, 153, 155, 156, 157, 158, 164, 172, 173, 174, 175, 178, 179], "sameorigin": [126, 129], "samesit": [60, 106], "saml": [29, 32, 85, 111, 132, 156], "sampl": [26, 45, 88, 120, 124, 149], "sandbox": 133, "sanit": [46, 88], "sapi": 130, "satisfi": [56, 67, 77, 128, 133], "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 93, 95, 108, 114, 116, 118, 129, 152, 179], "save_com": [124, 132], "sbin": [60, 63, 133], "scalabl": [48, 119, 132, 133, 145, 160, 161, 164], "scale": [13, 20, 25, 48, 60, 88, 107, 119, 134, 138], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 93, 137, 138, 142, 146, 150], "scanfil": 155, "scanner": [40, 60, 63, 65, 88, 155], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 126, 135, 146, 161, 178], "scene": 15, "schedul": [2, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 107, 112, 115, 117, 148, 149, 151, 155, 178], "scheduledaft": [14, 155], "scheduledat": 14, "schema": [20, 22, 25, 88, 135, 144, 147, 153, 155], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 96], "school": 138, "scl": 150, "scope": [8, 22, 48, 60, 68, 74, 81, 88, 98, 110, 137, 153, 155, 156], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 133, 147], "screen": [41, 63, 78, 79, 88, 108, 120, 133, 147, 155, 179], "screenshar": 134, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 121, 127, 129, 132, 150, 155, 156, 157, 178], "script_filenam": 129, "scriptnam": 67, "scroll": [41, 85, 111, 112, 113, 116, 147], "sdk": [6, 123, 131, 157, 158, 159, 161, 162, 163, 175], "sdkref": [60, 175], "seal": 88, "sealert": 131, "seamless": [81, 178], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 95, 112, 126, 130, 132, 133, 138, 143, 156, 165], "sec": [22, 23, 82, 118], "second": [1, 15, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 101, 106, 112, 116, 118, 126, 132, 133, 137, 138, 149, 155, 156, 158, 178], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 116, 126, 132, 143, 149, 152, 153, 155, 157], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 93, 96, 99, 101, 102, 111, 112, 113, 116, 117, 118, 119, 120, 128, 129, 132, 133, 138, 144, 147, 148, 149, 153, 155, 158, 164, 177], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 97, 107, 108, 110, 111, 112, 118, 123, 127, 128, 129, 130, 131, 133, 134, 137, 138, 144, 145, 148, 150, 156, 158, 176, 177], "see": [0, 1, 2, 3, 4, 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, 95, 96, 99, 101, 102, 107, 108, 110, 111, 112, 113, 114, 116, 118, 119, 121, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 161, 164, 169, 170, 171, 173, 174, 175, 176, 178, 179], "seed": [59, 60], "seem": [3, 60, 63, 70, 147], "seen": [60, 93, 95, 102, 113, 137, 154], "segment": 26, "segreg": 126, "select": [1, 2, 3, 4, 5, 7, 8, 12, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 80, 81, 85, 92, 106, 107, 110, 111, 116, 128, 132, 138, 147, 149, 151, 153, 179], "selector": [88, 150], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 93, 96, 108, 114, 116, 133, 155, 170], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 127], "semanag": [123, 131], "semant": 3, "semaphor": 130, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 17, 18, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 96, 108, 112, 114, 115, 126, 128, 131, 133, 147, 153, 155, 156, 165, 170, 178, 179], "send_timeout": 129, "sendemail": 156, "sender": [63, 116], "sendeventremindersmod": [112, 151], "sendfil": 138, "sendmail": [60, 65, 88, 127], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 93, 118, 126, 133, 138, 149], "sent": [12, 40, 60, 63, 67, 81, 88, 96, 110, 112, 116, 118, 151, 155, 156, 179], "sentri": 118, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 99, 111, 120, 148, 149, 155, 156, 179], "septemb": 4, "sequenc": [155, 176], "seri": [166, 167, 175], "serial": 60, "serializer_igbinari": 60, "seriou": 138, "serious": 70, "serv": [3, 5, 7, 26, 60, 63, 69, 70, 81, 88, 101, 119, 127, 133, 143, 147, 157, 158, 172, 173, 175], "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, 95, 96, 97, 99, 105, 106, 111, 115, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 135, 137, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 161, 163, 164, 166, 169, 176, 177, 178], "server0": 59, "server1": [48, 59, 128], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 96, 124, 129], "server_token": 129, "serveraddr": 96, "serverid": [88, 143], "serverinfo": [59, 138, 172], "servernam": [96, 123, 126, 133], "servernotavailableexcept": 155, "serverport": 96, "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, 93, 99, 106, 108, 123, 124, 126, 132, 133, 139, 143, 153, 155, 156, 157, 159, 161, 162, 165, 167, 177], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 93, 106, 118, 129, 130, 140, 143, 148, 150, 153, 155, 156], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 153, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 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, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 113, 114, 115, 116, 117, 118, 120, 124, 125, 126, 127, 128, 129, 131, 134, 137, 138, 140, 142, 143, 144, 146, 147, 148, 150, 153, 159, 160, 164, 170, 171, 172, 174, 177, 178], "setenv": [126, 133], "setenvif": 133, "setroubleshoot": 131, "setsebool": [123, 131], "settingclass": 155, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 16, 22, 28, 32, 40, 44, 48, 49, 57, 58, 60, 62, 63, 69, 80, 81, 88, 91, 93, 96, 97, 100, 123, 127, 128, 129, 132, 133, 134, 138, 143, 144, 148, 149, 150, 151, 152, 158, 159, 161, 162, 163, 170, 173, 174], "setup_create_db_us": 128, "setupcheck": 155, "sever": [3, 12, 26, 28, 58, 60, 63, 77, 92, 96, 98, 107, 108, 111, 116, 126, 129, 130, 132, 133, 138, 143, 148, 153, 155, 161, 177], "sf": [16, 124], "sftp": [32, 40, 60, 88, 130, 153], "sgi": 60, "sh": [15, 133, 178], "sha": 147, "sha256": [29, 123, 125], "sha256_cert_fingerprint": 55, "sha256sum": [123, 125], "sha512": [29, 147], "sha512sum": 147, "shall": [60, 66, 81], "shallow": [40, 153], "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 93, 95, 96, 97, 101, 102, 107, 108, 110, 111, 114, 115, 119, 124, 126, 131, 133, 135, 139, 142, 146, 147, 150, 156, 157, 159, 160, 167, 178], "share20": [60, 155], "share_fold": 88, "shareabl": 114, "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": [110, 153], "shares_extern": 153, "sharescount": 60, "sharesreminderjob": 155, "sheet": 175, "shell": [15, 23, 57, 60, 150, 178], "shellextens": 92, "shibbol": 157, "ship": [4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 113, 114, 123, 126, 129, 132, 147, 149, 153, 154, 155, 165, 173, 176], "shm_size": [59, 174], "shop": 2, "short": [60, 77, 81, 83, 95, 106, 112, 113, 116, 138, 151], "shortcut": [88, 92], "shorten": 106, "shorter": [29, 133], "shortli": 105, "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, 95, 96, 97, 99, 101, 105, 112, 113, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 143, 144, 147, 148, 150, 151, 157, 158, 160, 163, 170, 171, 174, 176, 177, 178, 179], "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, 93, 98, 99, 111, 112, 113, 118, 128, 132, 137, 138, 142, 147, 148, 149, 150, 151, 153, 156, 160, 172, 178, 179], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 179], "showexpir": 178, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 110, 126, 128, 129, 130, 137, 138, 142, 147, 148, 151, 152, 153, 155, 156], "showonli": 149, "showpassword": 82, "shred": 107, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 107, 110, 112, 126, 128, 129, 132, 138, 147, 152, 153, 154, 155, 172, 174], "sidebar": [85, 94], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 93, 116, 123, 129, 133, 134, 138, 139, 155, 170], "signal": [4, 106], "signatur": [56, 88, 116, 123, 125, 137, 153], "signific": [8, 12, 34, 45, 53, 137, 177], "significantli": [8, 12, 26, 59, 60, 67, 134, 148], "signup": [2, 60], "silent": [92, 98, 108, 131, 152, 153], "similar": [0, 6, 19, 26, 36, 60, 81, 93, 102, 105, 118, 123, 126, 131, 132, 133, 135, 137, 149], "similarli": [143, 149, 157, 175], "simpl": [15, 20, 51, 60, 88, 102, 119, 133, 145, 179], "simplesignuplink": 88, "simplest": [96, 138], "simplexml": 130, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 95, 101, 102, 142, 146, 147, 178], "simplifi": [96, 152], "simul": 153, "simultan": [45, 132, 133, 149, 177], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 93, 101, 103, 105, 114, 124, 129, 134, 144, 147, 153, 156, 162, 172, 174, 177, 179], "singl": [3, 20, 26, 28, 41, 57, 58, 60, 67, 81, 85, 88, 116, 118, 123, 125, 129, 131, 132, 133, 140, 151, 152, 154, 155, 156, 178], "sink": 2, "site": [26, 65, 88, 106, 126, 133, 138], "situat": [3, 5, 7, 48, 58, 60, 69, 93, 123, 126, 138], "sixteen": 177, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 85, 88, 93, 95, 101, 110, 119, 124, 126, 129, 139, 142, 143, 152, 155, 170, 178], "sji": 71, "skeleton": [18, 27, 60, 179], "skeletondirectori": [27, 88], "skill": [133, 145], "skip": [3, 40, 53, 57, 60, 65, 81, 88, 92, 97, 118, 120, 147, 148, 150, 151, 153, 155], "skip_name_resolv": 22, "skipapp": 172, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 93, "sl": 59, "sla": 12, "slash": [33, 40, 51, 93, 138, 178], "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 98], "slogan": [72, 155], "slot": 2, "slow": [3, 6, 22, 28, 56, 58, 59, 60, 88, 93], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 152, 161], "slowlog": 132, "sluggish": 132, "small": [2, 12, 43, 47, 57, 60, 88, 112, 113, 129, 138, 161, 177], "smaller": [4, 5, 7, 12, 26, 60, 147], "smallest": 11, "smart": [1, 2, 15, 88, 116, 165], "smb": [40, 60, 88, 127, 130, 153], "smbclient": [38, 130], "sme": 133, "smili": 23, "smith": [151, 156], "smtp": [60, 65, 88, 127, 143], "sn": [82, 154], "snap": [88, 127, 130, 141, 148], "snapcraft": [133, 145], "snapd": [133, 145], "snapshot": [81, 96, 107], "sni": 70, "sniff": 126, "snip": 57, "snooz": [88, 115], "snowflak": [88, 150], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 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, 101, 102, 105, 107, 111, 112, 116, 117, 118, 123, 124, 126, 129, 130, 131, 132, 133, 137, 138, 142, 143, 144, 146, 147, 148, 149, 150, 153, 154, 159, 162, 165, 172, 177, 178, 179], "sock": [22, 45, 59, 60, 96, 97, 124, 129, 149], "socket": [22, 45, 56, 60, 88, 97, 99, 100, 124, 128, 129, 132, 163], "sodium": 130, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 93, 134, 170], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 93, 116, 133, 137, 138, 143, 160, 162, 164], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 131, 136, 147, 175], "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, 93, 94, 95, 96, 98, 101, 110, 112, 113, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 161, 165, 166, 169, 172, 174, 178, 179], "some_secure_password": 97, "some_very_secure_password": [96, 97], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 95, 96, 129, 132, 137, 144, 164, 178], "sometim": [2, 5, 15, 43, 48, 57, 85, 132, 138, 142, 147, 177], "somewher": [81, 96, 129, 133, 179], "soon": [4, 15, 62, 112, 132, 177], "sooner": [107, 177, 178], "sophist": [58, 93], "sorri": 164, "sort": [44, 60, 114, 130, 161], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 142, "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, 112, 119, 123, 126, 130, 132, 133, 135, 138, 146, 147, 150, 153, 157, 159, 178], "sourcecalendardata": 178, "sourcecalendarid": 178, "sourcecod": 29, "sourceshar": 178, "sovereignti": [0, 1, 4], "sp6": 134, "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 93, 127, 138, 149, 152, 153, 174], "spaghetti": 2, "spam": [60, 63, 116], "span": [73, 101], "spanish": [4, 5, 10, 11], "spawn": [38, 132], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 112, 133, 138, 178], "specialis": 51, "specif": [1, 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, 93, 96, 104, 107, 108, 109, 112, 113, 118, 119, 127, 133, 143, 147, 149, 150, 151, 152, 153, 155, 156, 166, 172, 173, 177, 178, 179], "specifi": [1, 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, 93, 96, 112, 120, 126, 128, 129, 132, 133, 137, 149, 150, 151, 153, 156, 157, 158, 178, 179], "speech": [4, 13, 88, 155, 167], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 93, 95, 129, 132], "speedscop": 60, "split": [21, 24, 88, 129, 168], "spoof": [60, 69], "sporad": 93, "spread": 133, "spreadsheet": [2, 51], "spreed": [4, 8], "sprintf": 96, "sql": [60, 88, 111, 138, 148, 151], "sqlbkp": 146, "sqlbkp_": 140, "sqlite": [20, 25, 88, 121, 127, 128, 134, 135, 138, 151, 155], "sqlite3": [20, 60, 121, 140, 146], "sqlstate": 138, "squeez": 22, "src": [123, 131], "src_path": 98, "sse": [28, 31, 46, 88, 155], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 94, 118, 124, 127, 129, 155, 158, 159, 163], "ssl_certif": 129, "ssl_certificate_kei": 129, "ssl_context": [59, 60], "ssl_stapl": 129, "ssl_stapling_verifi": 129, "sslproxycheckpeercn": 158, "sslproxycheckpeernam": 158, "sslproxyengin": 158, "sslproxyverifi": 158, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 126, "stabil": [12, 70, 134, 174, 175, 176], "stabilityai": 15, "stabl": [15, 60, 124, 133, 134, 137, 145, 160, 167, 177], "stable_bas": 56, "stablediffus": 15, "stack": [58, 133, 161], "stage": [60, 121, 147, 177], "stai": [133, 148, 150, 177], "stale": [40, 60, 143, 151, 153, 156], "stall": [60, 132], "stand": 179, "standalon": [4, 17, 161], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 89, 92, 112, 120, 123, 126, 130, 133, 134, 142, 143, 150, 151, 153, 173, 174, 175, 178], "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 93, 96, 106, 112, 118, 123, 124, 125, 127, 130, 132, 133, 138, 142, 143, 145, 147, 148, 151, 152, 154, 158, 162, 164, 172, 173, 174, 175, 176, 178, 179], "start_header_id": 5, "start_serv": 132, "startedat": 14, "startlimitburst": [15, 178], "startlimitinterv": [15, 178], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 170], "startup": [59, 99, 143], "stat": [1, 3, 88], "state": [28, 44, 63, 77, 80, 85, 88, 118, 126, 146, 150, 151, 153, 155, 178], "statement": 151, "static": [12, 29, 60, 69, 126, 129, 132, 158, 171, 172, 173, 179], "statist": [1, 3, 118, 126, 153, 155], "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 98, 100, 110, 117, 126, 129, 136, 148, 150, 151, 153, 159, 164, 177, 178], "status": 149, "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, 150], "stdout": [4, 153, 155], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 93, 95, 96, 98, 99, 108, 116, 118, 123, 127, 128, 132, 133, 136, 138, 141, 143, 147, 155, 158, 161, 162], "stephani": 156, "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, 95, 118, 126, 129, 130, 138, 143, 147, 152, 153, 154, 172, 173, 174, 175, 176, 177, 178], "stolen": [80, 107], "stop": [5, 6, 26, 53, 56, 60, 67, 93, 96, 102, 138, 142, 143, 147, 155, 158, 162], "stop_aft": 155, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 93, 98, 102, 110, 128, 130, 131, 132, 133, 134, 135, 138, 143, 149, 150, 156, 159], "storage43": 81, "storageclass": 48, "storagecrawljob": 3, "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, 95, 107, 108, 109, 111, 113, 116, 126, 128, 129, 131, 132, 135, 138, 149, 150, 151, 152, 156, 173, 174, 175], "storecryptedpassword": 88, "str_ends_with": 96, "straight": [18, 92], "straightforward": 55, "strain": 118, "strategi": [23, 48, 107], "stream": [26, 40, 53, 56, 60, 96, 123, 134], "streamable_http": 2, "street": 2, "strength": 128, "strengthen": 70, "strict": [14, 58, 65, 88, 106, 129], "strictest": 77, "strictli": [96, 132, 133], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 96, 98, 110, 129, 149, 151, 156, 177, 178], "strip": [68, 77, 133, 156], "strive": 15, "strong": [86, 128], "stronger": 131, "strongli": [38, 60, 64, 70, 93, 132, 133, 134, 143, 177], "strtotim": 153, "structur": [28, 29, 48, 60, 67, 81, 96, 151, 153, 178], "stt_whisper2": [1, 13, 15, 88], "stuck": 142, "studio": 60, "stuff": 99, "stuttgart": 156, "style": [11, 31, 60, 72, 166, 178], "su": [124, 150], "sub": [6, 76, 81, 169, 179], "subadmin": 88, "subdir": [88, 127], "subdirectori": [36, 40, 88, 129, 133, 153], "subdomain": [60, 69, 124, 126, 133, 158], "subfold": [33, 37, 38, 39, 92, 133, 138], "subgroup": 81, "subject": [28, 77, 88, 107, 108, 109, 112, 118], "submiss": [63, 178, 179], "submissionmessag": 178, "submit": 126, "submitcontentjob": 3, "submitmultipl": 178, "subnet": [60, 96], "subpag": 168, "subpath": 96, "subreddit": [166, 167], "subscrib": 112, "subscript": [12, 88, 115, 121, 126, 134, 160, 164, 177], "subsecond": 48, "subsequ": [92, 118, 133, 145, 154], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 96], "subsystem": 155, "subtitl": 15, "succe": [67, 92, 96], "succeed": [15, 147], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 95, 107, 110, 123, 124, 126, 128, 138, 142, 147, 153, 155], "successfulli": [14, 41, 60, 78, 99, 134, 147, 152, 155, 156, 179], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 107, 108, 111, 112, 113, 118, 121, 125, 130, 132, 133, 136, 138, 140, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 178], "suexec": 60, "suffer": 11, "suffici": [77, 123, 128, 132, 133, 138, 144, 155], "suffix": 128, "suggest": [14, 43, 60, 70, 96, 114, 119, 123, 131, 132, 133, 177], "suit": [12, 28, 96, 126], "suitabl": [45, 57, 59, 60, 95, 126, 132, 151, 155, 177], "sum": [123, 125, 132], "summar": [1, 5, 13, 15, 53, 88, 116, 155], "summari": [13, 15, 88, 111, 115, 132], "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 151], "superus": 124, "supervisor": 153, "supplement": 60, "supplementari": 133, "suppli": [59, 81, 88, 112, 116, 133, 147], "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, 99, 101, 112, 116, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 151, 153, 155, 156, 160, 164, 165, 166, 170, 171, 172, 173, 174, 175, 176, 178], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 153], "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, 93, 96, 101, 105, 108, 112, 114, 118, 123, 124, 126, 129, 132, 133, 134, 137, 138, 142, 143, 144, 146, 148, 150, 156, 158, 164, 170, 171, 172, 173, 174, 177, 178], "surfac": 77, "surfer": 64, "surnam": [81, 96], "surround": 60, "surveyserv": 126, "surviv": 85, "suse": 134, "suspect": 177, "suspend": [88, 111], "suspici": [15, 57, 58, 60], "sustain": [8, 138], "sv1b7krauqmf8qq": 133, "svg": [47, 60, 72, 129, 132, 133], "swap": [26, 29, 132], "swift": [36, 60, 88, 143, 153], "switch": [13, 16, 60, 81, 88, 113, 118, 126, 132, 150, 151, 152, 155, 161, 179], "symbol": 16, "symfoni": 150, "symlink": [60, 138], "symmetr": 29, "sync": [3, 18, 19, 22, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 114, 118, 128, 132, 143, 146, 150, 155, 178], "sync_xxxxxxx": 93, "synchron": [50, 60, 65, 88, 91, 93, 101, 112, 113, 119, 151, 153, 155], "synchronis": [88, 141], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 134, 150, 154, 156], "sys_nic": 132, "sysadmin": 121, "syslog": [60, 88, 155], "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, 99, 103, 107, 110, 111, 112, 114, 115, 118, 123, 124, 125, 127, 130, 131, 138, 142, 143, 144, 149, 150, 153, 157, 165, 166, 177], "system_addressbook_expos": 113, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 123, 132, 158, 159, 178], "systemd": [53, 56, 60, 88, 99, 153, 155, 159], "systempl": 157, "systemtag": [88, 178], "systemtagsmanag": 60, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [130, 172], "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, 95, 99, 112, 118, 123, 126, 129, 131, 133, 137, 138, 140, 142, 143, 147, 149, 153, 158, 164, 178, 179], "tab": [88, 150, 179], "tabl": [15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 108, 112, 113, 118, 125, 127, 138, 144, 146, 151, 153, 154, 155, 156, 166, 167, 174], "tableid": 178, "tablespac": 128, "tag": [2, 6, 12, 16, 40, 43, 60, 88, 101, 104, 126, 129, 137, 150, 153, 157], "tagassignedev": 178, "tagid": 178, "tagunassignedev": 178, "tail": [4, 129, 155], "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, 93, 96, 97, 120, 121, 124, 126, 129, 132, 133, 137, 142, 143, 145, 147, 148, 151, 152, 153, 174, 178, 179], "taken": [3, 43, 57, 63, 70, 81, 96, 113, 151], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 111, 133, 138, 165, 166, 167, 172, 179], "talk_bot": 8, "talo": 56, "tamper": [28, 147], "tape": 107, "tar": [60, 123, 125, 133, 142], "tarbal": [121, 133, 142, 155], "target": [15, 16, 28, 29, 55, 57, 60, 77, 81, 88, 92, 93, 126, 142, 150, 151, 152, 153, 155, 164, 178], "targetcalendardata": 178, "targetcalendarid": 178, "targetchunkuploaddur": 93, "targetshar": 178, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 110, 112, 119, 124, 133, 150], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 178], "tasktyp": 155, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [88, 96, 126, 129, 132], "te": 154, "team": [16, 18, 46, 48, 60, 65, 88, 111, 133, 145, 161], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 107, 137, 152, 179], "techniqu": 138, "technologi": [15, 70, 133, 145], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 96, 138, 142], "telnet": 63, "temp": [26, 60, 93, 133], "tempdirectori": [26, 88, 143], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 96, 129, 157, 167], "template0": 22, "template1": [22, 146], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 105, 156, 179], "temporarili": [58, 63, 67, 81, 83, 110, 153, 155], "tempt": 1, "ten": [40, 56, 80, 81, 119, 151], "tenant": [36, 116], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 125, 129, 133, 152, 153, 159, 163], "terri": 154, "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, 95, 96, 98, 100, 101, 118, 119, 126, 129, 131, 134, 136, 137, 138, 151, 153, 155, 172, 176, 177, 178], "tester": 101, "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, 101, 110, 116, 126, 129, 133, 137, 138, 143, 150, 151, 155, 158, 165, 166, 167, 172], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 155], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 129, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 16, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 93, 107, 111, 112, 114, 116, 119, 123, 126, 128, 130, 132, 133, 134, 137, 138, 142, 146, 147, 150, 153, 155, 158, 161, 172, 174, 175, 177, 179], "thank": [69, 177], "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, 71, 80, 81, 84, 85, 87, 88, 91, 92, 93, 95, 101, 102, 103, 106, 107, 108, 110, 111, 112, 116, 118, 119, 125, 126, 128, 129, 132, 133, 134, 136, 138, 142, 143, 149, 151, 153, 155, 156, 157, 165, 174, 177], "them": [6, 7, 14, 15, 16, 22, 23, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 60, 63, 64, 67, 70, 71, 72, 81, 83, 85, 86, 92, 93, 95, 101, 102, 107, 108, 110, 111, 112, 114, 118, 123, 125, 126, 129, 132, 133, 137, 138, 142, 143, 146, 148, 149, 151, 152, 153, 155, 156, 157, 172, 179], "theme": [64, 65, 88, 140, 142, 146, 147, 150, 151], "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 101, 114], "theori": [5, 9], "therefor": [8, 12, 22, 26, 29, 32, 43, 47, 60, 67, 77, 81, 101, 102, 112, 113, 133, 135, 146, 148, 150, 166], "therein": 12, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 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, 95, 96, 97, 98, 99, 101, 102, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 162, 164, 166, 170, 172, 173, 174, 175, 176, 177, 178, 179], "thing": [15, 60, 80, 126, 133, 140, 146, 147, 177], "think": [36, 138], "third": [12, 15, 16, 22, 28, 57, 78, 88, 106, 134, 142, 148], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 60, 64, 68, 69, 70, 81, 85, 93, 102, 108, 111, 112, 123, 126, 128, 129, 130, 134, 137, 138, 147, 148, 151, 152, 153, 155, 156, 165, 176, 177, 178], "though": [38, 39, 43, 56, 59, 88, 126, 129, 133, 137, 172], "thought": 18, "thousand": [119, 138], "thread": [4, 7, 10, 15, 60, 88, 115, 138], "threat": [28, 126], "three": [8, 40, 56, 57, 63, 67, 80, 95, 96, 116, 118, 121, 128, 146, 156], "threshold": [58, 88, 116], "throttl": [58, 155], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 95, 96, 103, 108, 110, 112, 116, 118, 123, 133, 138, 147, 150, 153, 155, 156, 160, 161, 163, 164, 177], "throughout": [29, 58, 177], "throughput": [7, 10, 60], "throw": 93, "thrown": 150, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 95, 126, 129, 133, 134, 148], "thumbnail": [28, 41, 47, 60, 85], "thumbnailphoto": 81, "thunderbird": [112, 113, 114, 118], "ti": [8, 43, 143], "ticket": [61, 147, 148, 166, 167], "tidewai": 138, "tiff": [47, 60, 133], "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, 73, 77, 81, 83, 85, 93, 95, 101, 105, 107, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 132, 133, 134, 142, 143, 145, 147, 148, 150, 151, 152, 153, 155, 160, 174, 176, 177, 178], "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 99, 124, 129, 132, 133, 142, 147, 149, 155, 178], "timer": 57, "timestamp": [14, 29, 67, 110, 114, 143, 155, 178], "timezon": [8, 57, 60, 67, 101, 130, 155], "tip": [46, 70, 74, 88, 127, 141, 174], "titl": [1, 2, 81, 110, 166, 178], "tl": [28, 60, 63, 69, 70, 82, 88, 95, 96, 118, 124, 126, 127, 129, 133], "tld": [60, 70, 82, 96, 118, 124, 126, 149, 156], "tld_fullchain": 124, "tld_privat": 124, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 93, 118, 133, 147, 151, 153], "tmp_table_s": 22, "tmpdir": [60, 133], "tmux": 88, "to_gif_exampl": 98, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 134, 138], "toggl": [53, 60, 72, 77, 81, 113, 132, 138, 153], "token": [1, 2, 32, 58, 60, 65, 74, 88, 96, 106, 110, 111, 157, 178, 179], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "tom": 75, "toml": [69, 96], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 93, 112, 113, 126, 128, 132, 133, 138, 142, 145, 172], "took": 118, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 93, 95, 98, 111, 116, 126, 131, 132, 138, 148, 178], "toolkit": 6, "tooltip": 81, "toot": [166, 167], "top": [1, 12, 16, 60, 64, 67, 70, 85, 138, 147, 148, 167, 178], "topic": [1, 28, 45, 60, 119, 133, 138], "total": [6, 29, 36, 60, 67, 85, 87, 155, 156], "totalnumberofsynctokenstokeep": [112, 113], "totalsizelimit": 60, "totp": [80, 156], "touch": [124, 142], "toward": 60, "town": 76, "trace": [67, 132, 150], "trace_mod": 22, "track": [53, 88, 92, 93, 112, 113, 115, 118, 153], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 133, 158], "trail": [40, 50, 53, 154], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 127, 130, 134, 138, 140], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 167], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 107, 108, 111, 129, 132, 137, 142, 147], "transferincomingshar": [88, 153], "transient": 132, "transifex": 66, "transit": [60, 133, 138], "translat": [13, 27, 88, 115, 119, 130, 167], "translate2": [1, 4, 13, 15, 88], "transmit": [106, 110, 126, 179], "transp": 178, "transpar": [13, 15, 29, 58, 88], "transport": [2, 65, 81, 88, 93, 96, 116, 129, 134], "trash": [28, 29, 41, 46, 65, 85, 88, 110, 115, 118, 150, 151], "trashbin": [43, 49, 60, 88, 107, 138, 150, 151], "trashbin_retention_oblig": [49, 88, 107, 153], "trashcan": 40, "travers": 178, "treat": [38, 60, 69, 70, 81, 128, 138], "tree": [1, 2, 40, 81, 88, 132, 155], "tremend": 93, "tri": [18, 126, 128, 151, 152], "triag": 119, "trick": [74, 88, 127, 174], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 67, 76, 81, 85, 88, 113, 118, 132, 137, 138, 147, 153, 155, 172, 178, 179], "triplecheck": 164, "trixi": 134, "trojan": 56, "troubl": [81, 138, 172], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 115, 126, 127, 133, 141, 143, 148, 160], "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, 93, 101, 116, 118, 126, 129, 133, 138, 140, 148, 149, 150, 153, 155, 156, 159, 178, 179], "truena": [88, 127], "truncat": [29, 53, 60], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 96, 110, 116, 126, 127, 147, 149, 155], "trusted_domain": [41, 88, 128, 143, 149, 172], "trusted_proxi": [58, 69, 88], "trustedcafil": 96, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 93, 95, 96, 101, 118, 129, 131, 134, 137, 138, 142, 146, 147, 151, 164, 170, 177], "try_fil": 129, "trystack": 60, "ttf": 129, "ttl": [22, 63, 88], "tty": 152, "tue": 63, "tune": [5, 88, 126, 127, 129, 130, 133], "tunisian": 4, "tunnel": [95, 96, 97], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 116, 133, 147, 155, 177, 179], "turnkei": [130, 133], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [119, 123, 124], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 26, 28, 36, 40, 41, 44, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 95, 96, 108, 111, 112, 118, 119, 120, 126, 133, 147, 148, 149, 150, 153, 177, 178, 179], "twofactor_totp": 149, "twofactorauth": [80, 88], "txk4": 156, "txt": [28, 38, 50, 60, 71, 129, 131, 132, 178], "ty": 132, "type": [1, 2, 3, 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, 96, 97, 101, 106, 110, 111, 113, 115, 116, 118, 125, 126, 129, 130, 132, 138, 142, 148, 149, 153, 156, 159, 166, 170, 172, 175, 178, 179], "typescript": 179, "typic": [3, 28, 40, 57, 59, 60, 77, 81, 89, 92, 93, 106, 112, 118, 125, 128, 130, 132, 138, 143, 156, 177, 178], "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, 99, 107, 108, 111, 112, 113, 118, 121, 124, 130, 133, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 172, 178], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 121, 127, 130, 132, 133, 134, 138, 140, 142, 145, 148, 150, 158, 160, 161], "uc": 133, "udp": 63, "ui": [12, 15, 40, 58, 60, 77, 82, 85, 92, 95, 97, 98, 114, 116, 138, 147, 148, 151, 155], "uid": [29, 80, 81, 82, 83, 107, 108, 111, 118, 151, 154, 156, 178], "uid1": 156, "uid2": 156, "uidn": 156, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 153], "unaffect": 60, "unansw": 116, "unauthent": [43, 77], "unauthor": [28, 164], "unavail": [3, 40, 51, 60, 80, 96, 130, 150, 155], "unavoid": 40, "unban": 126, "unchang": 3, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 129, 133], "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, 93, 95, 106, 107, 109, 110, 123, 128, 129, 130, 132, 133, 136, 137, 138, 148, 153, 160, 164, 172, 177], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 130, 132, 133, 153], "underscor": [31, 48, 85, 153], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 120, 135, 138], "undertak": 6, "underutil": 133, "undesir": 60, "undetect": 138, "undo": 85, "unencrypt": [28, 63, 85, 88], "unencrypted_s": 138, "unevenli": [7, 10], "unexpect": [59, 60, 138, 164, 177], "unexpectedli": [60, 92], "unexplain": 133, "unfavor": 172, "unforeseen": 143, "unfortun": 57, "unfound": 111, "unhandl": 150, "unicod": [40, 60, 151], "unicodepwd": 81, "unifi": [1, 60, 163], "unified_search": 88, "uninstal": [4, 88, 92, 127, 131, 156], "uniqu": [48, 59, 60, 61, 64, 81, 85, 95, 96, 97, 98, 110, 126, 138, 155, 156, 178], "uniquememb": [81, 82], "unison": 93, "unit": [15, 57, 116, 155, 178], "univent": 133, "unix": [14, 45, 56, 60, 81, 88, 101, 102, 128, 129, 132, 134, 178], "unix_domain_socket": 96, "unixpath": 96, "unixsocketperm": 59, "unknown": [75, 76, 88, 111, 153, 155], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 96, 107, 111, 116, 130, 133, 138, 150, 153], "unlik": [59, 93, 153], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 126], "unnecessarili": 57, "unoffici": 145, "unpack": [121, 125, 133, 142, 155], "unpredict": [12, 28], "unreach": 81, "unrecover": 28, "unregist": [8, 88, 100], "unreli": [40, 60, 93, 116], "unrequir": 137, "unscan": [38, 60, 88, 153, 155], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81], "unshar": [88, 118, 153], "unsign": 153, "unspecifi": [60, 120], "unstabl": 149, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 148, 164, 166], "unsur": [3, 26, 129], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 98, 106, 111, 125, 126, 128, 132, 146, 148, 151, 152, 153, 155, 172, 175, 177], "untouch": 149, "untrust": 126, "unus": [60, 73, 99, 173], "unusu": [1, 132], "unwant": [118, 132, 138], "unzip": [123, 125, 142], "up": [0, 1, 2, 3, 5, 14, 15, 19, 20, 22, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 93, 95, 99, 108, 111, 112, 115, 118, 120, 122, 126, 127, 128, 132, 134, 135, 138, 142, 143, 146, 147, 153, 154, 155, 156, 159, 169, 170, 172, 174, 177], "upcom": [12, 61, 112, 177], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 82, 88, 100, 111, 112, 113, 114, 116, 119, 123, 125, 126, 127, 129, 130, 133, 134, 137, 141, 142, 143, 144, 145, 146, 149, 151, 152, 153, 154, 156, 157, 159, 160, 172, 174, 177, 178], "updateattributesinterv": 81, "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "upfront": 152, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 124, 125, 130, 132, 137, 138, 141, 144, 150, 151, 152, 158, 160, 169], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 93, 102, 104, 105, 110, 116, 124, 130, 132, 137, 138, 143, 145, 153, 158, 172, 174, 175, 178], "upload_max_files": [26, 124, 133], "upload_tmp_dir": [26, 130], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 107, 110, 126, 133, 138, 145], "upostgr": 22, "upper": 86, "upscal": [47, 48, 98], "upscaler_exampl": 98, "upstream": [111, 129, 132, 134], "upward": 132, "urandom": [65, 88], "urg": [12, 144], "urgent": [2, 61, 151], "uri": [60, 69, 81, 116, 118, 129, 138, 151, 155, 178], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 69, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 95, 96, 97, 98, 101, 108, 110, 112, 123, 124, 125, 127, 128, 129, 132, 136, 138, 141, 143, 151, 155, 157, 158, 162, 164, 172, 176, 179], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 153, 178], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 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, 101, 102, 105, 106, 108, 110, 111, 112, 113, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 158, 161, 162, 163, 164, 165, 166, 170, 173, 174, 175, 176, 177, 178, 179], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 107, 110, 126, 130, 132, 146, 150, 154, 155, 156, 164, 177], "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, 72, 73, 75, 78, 80, 82, 91, 92, 93, 96, 97, 98, 102, 103, 105, 106, 107, 108, 110, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 134, 135, 137, 140, 143, 145, 146, 147, 148, 149, 150, 151, 153, 155, 157, 160, 164, 165, 171, 172, 177, 178, 179], "user1": 43, "user123": 118, "user2": 43, "user_directori": 156, "user_id": [3, 111, 153, 156], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 154], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 103, "userag": 67, "userdeletedev": 150, "userdirectori": 40, "userid": [2, 14, 18, 28, 76, 81, 92, 111, 114, 118, 138, 178, 179], "useridfilt": [14, 155], "usermod": [59, 133], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 93, 106, 110, 111, 113, 120, 123, 125, 128, 133, 138, 140, 145, 146, 150, 153, 156], "userpassword": [81, 156], "usr": [56, 57, 59, 60, 63, 96, 124, 133, 150, 159], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 95, 126, 130, 133, 135, 136, 137, 138, 142, 148, 172, 177, 178], "utc": [57, 60, 67, 117, 153, 155], "utf": 71, "utf8": [22, 60, 124, 134, 146], "utf8mb4": [20, 22, 23, 25, 88, 125, 140, 146, 151], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 125, 146], "util": [6, 8, 54, 60, 67, 118, 123, 150, 177], "uuid": [81, 82, 154], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 96, 100, 129, 130, 132, 150, 153, 155, 178], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 96, 118, 129, 132, 147], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 129, 179], "v27": [142, 148], "v28": [15, 142, 148], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 101], "v6": 101, "v9": 28, "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 108, 128, 129, 130, 137, 143, 151, 153, 154, 155, 158, 172, 179], "valkei": 59, "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, 95, 96, 97, 98, 103, 107, 112, 113, 116, 117, 118, 125, 126, 128, 132, 133, 135, 138, 143, 151, 153, 154, 155, 172, 174, 175, 178], "value1": 60, "value2": 60, "vanish": 118, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 93, 96, 97, 107, 112, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 135, 138, 142, 147, 148, 149, 150, 153, 155, 156], "vari": [3, 4, 59, 77, 130, 133], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 98, 100, 126, 132, 134, 143, 156, 176, 178, 179], "variable_nam": [22, 23], "variant": 56, "varieti": [1, 71, 179], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 93, 132, 138, 150, 157, 160, 162, 165], "vboxsf": 133, "vcard": [110, 113, 114, 129], "vcf": [111, 113], "ve": [118, 132, 133, 169, 177], "vector": [3, 29, 51, 126, 175], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 177, "vendor": 132, "verbatim": 143, "verbos": [56, 67, 93, 132, 150, 153, 155], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 93, 138, 147, 154, 179], "verif": [58, 63, 65, 88, 118, 137], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 93, 95, 99, 116, 123, 125, 126, 130, 131, 132, 133, 136, 137, 142, 143, 144, 147, 152, 155, 164, 172, 177], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "versatil": 119, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 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, 95, 98, 110, 112, 113, 116, 117, 118, 123, 124, 125, 126, 129, 130, 132, 133, 136, 137, 142, 143, 144, 145, 147, 148, 149, 150, 151, 155, 158, 160, 162, 167, 175, 176, 178], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 107, 153], "versionstr": [150, 155], "vevent": 178, "vhd": 133, "vhdx": 133, "vhost": 138, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 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, 93, 94, 96, 101, 106, 107, 108, 110, 111, 112, 114, 116, 118, 121, 126, 127, 128, 129, 130, 132, 135, 136, 138, 141, 143, 148, 151, 153, 156, 157, 159, 166, 172, 173, 174, 175, 177, 178, 179], "video": [2, 15, 47, 60, 88, 119, 130, 134, 155, 166, 167], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 93, 111, 138, 154, 155, 160], "viewer": [18, 60, 67, 179], "virtual": [2, 48, 60, 88, 92, 96, 126, 127, 132, 135, 143], "virtualbox": 133, "virtualhost": [123, 124, 126, 133, 158], "viru": [56, 93], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 99, 110, 114, 117, 138, 146, 172, 173, 174, 175, 177, 178], "visible\u00b9": 156, "visio": 160, "visit": [57, 101, 116, 123, 133, 145, 147, 148], "visitor": [77, 126], "visual": 12, "vm": [132, 133, 148], "vmdk": 133, "vmp": 133, "vmware": 133, "vnd": 129, "vo": 124, "voic": 88, "volum": [56, 60, 98, 111, 134], "volunt": 177, "vosk": 4, "vp": [88, 127], "vpn": 96, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 95], "vtodo": 178, "vtt": 129, "vulner": [126, 177], "vv": [150, 153], "vvv": [118, 138, 150, 153], "w": [28, 124, 126, 158, 163], "wa": [7, 8, 10, 12, 14, 15, 18, 20, 28, 40, 43, 50, 53, 57, 58, 60, 67, 74, 76, 81, 88, 95, 105, 110, 113, 116, 117, 118, 130, 133, 137, 138, 143, 144, 145, 146, 147, 148, 149, 152, 155, 156, 172, 173, 174, 175, 176, 178], "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 93, 95, 96, 101, 108, 110, 112, 126, 129, 132, 133, 138, 142, 146, 147, 148, 152, 161, 173, 174, 175], "wait": [4, 8, 53, 60, 98, 132, 143, 148, 153, 177, 179], "wait_timeout": [22, 60], "wal": 60, "walk": [123, 133], "walkthrough": 151, "want": [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, 93, 95, 96, 99, 103, 108, 111, 113, 116, 119, 120, 123, 124, 126, 128, 131, 133, 134, 135, 136, 137, 138, 147, 148, 149, 150, 152, 153, 155, 156, 158, 164, 165, 169, 175, 177, 178, 179], "wantedbi": [15, 57, 178], "warm": 132, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 93, 110, 123, 126, 128, 129, 132, 133, 137, 138, 144, 145, 150, 152, 153, 155, 164, 174], "wasm": 129, "watch": [58, 155], "watermark": 157, "watsonx": [1, 8, 12, 13, 15, 88], "watt": 2, "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, 93, 96, 118, 123, 124, 126, 128, 129, 130, 132, 133, 138, 144, 148, 150, 158, 160, 164, 172, 174, 177, 179], "weak": 128, "weaken": 64, "weather": [2, 14, 126], "web": [2, 5, 7, 9, 10, 11, 16, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 95, 96, 99, 108, 114, 116, 118, 119, 123, 124, 125, 127, 128, 129, 130, 132, 139, 141, 142, 143, 148, 150, 152, 153, 155, 156, 163], "webauthn": 88, "webcal": [60, 151], "webcalallowlocalaccess": 112, "webcron": [53, 88, 149, 155], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 108, 111, 118, 126, 129, 133, 139, 155], "webdavf": 60, "webfing": [124, 138], "webhook": [88, 150, 179], "webhook_listen": [155, 178, 179], "webhookcal": 178, "webhooklisten": 178, "webinterfac": 129, "webm": 129, "webmail": 131, "webp": [60, 129, 132, 133, 173], "webp_qual": 132, "webpag": 129, "webroot": [8, 60, 69, 88, 127], "webserv": [26, 27, 57, 59, 60, 69, 88, 123, 126, 129, 133, 134, 161, 175], "websit": [14, 55, 64, 70, 76, 77, 81, 110, 126, 138], "websitescop": 77, "websocket": [95, 158], "webspac": 133, "week": [2, 44, 56, 177], "weekend": 3, "weekli": 53, "weight": [12, 15, 60], "welcom": [12, 88, 119], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 118, 123, 124, 129, 131, 132, 133, 135, 138, 142, 143, 145, 147, 164, 169, 177, 178, 179], "went": [142, 143], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 112, 117, 130, 137, 138, 147, 148, 152, 153, 155, 172], "west": [31, 48], "wget": [123, 125, 136, 159, 172], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 93, 95, 96, 108, 110, 111, 120, 126, 132, 138, 141, 153, 155, 179], "whatev": [20, 43, 60, 129, 147], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 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, 94, 95, 96, 101, 102, 105, 106, 107, 108, 110, 112, 113, 114, 116, 118, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 166, 172, 175, 177, 178, 179], "when_requir": [60, 175], "when_support": 60, "whenev": [40, 43, 44, 132, 138, 177, 178], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 95, 96, 111, 112, 114, 116, 123, 125, 126, 133, 135, 136, 138, 142, 144, 147, 150, 151, 152, 153, 155, 164, 165, 176, 177, 178, 179], "wherev": [91, 143], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 95, 101, 106, 114, 116, 126, 129, 132, 135, 149, 152, 153, 154, 155, 156, 177], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 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, 93, 95, 96, 97, 99, 101, 108, 110, 114, 116, 118, 123, 124, 126, 129, 130, 131, 132, 133, 134, 137, 138, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 161, 165, 166, 174, 175, 176, 177, 178, 179], "whichev": [60, 153], "while": [1, 4, 11, 15, 19, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 77, 81, 101, 118, 126, 132, 133, 143, 145, 147, 148, 149, 150, 151, 177, 178], "whisper": [13, 15, 88, 167], "whiteboard": 15, "whitelist": [16, 58, 92, 128], "whitespac": [92, 154], "who": [3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 77, 81, 85, 110, 113, 114, 121, 138, 151, 155, 156, 178], "whole": [39, 88, 95, 96, 112, 118, 123, 127, 146], "whom": [12, 110], "whose": [44, 53, 67, 153, 178], "why": [38, 64, 88, 111, 118, 153], "wide": [28, 60, 80, 110, 126, 132, 155], "widenetworkaddress": 96, "wider": 95, "widespread": 177, "widget": [61, 165, 166], "width": 60, "wiki": [60, 133, 145], "wikipedia": 60, "wildcard": [60, 128, 154], "win": 56, "windmil": 88, "window": [3, 15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 93, 107, 119, 127, 134, 174, 178], "wipe": 73, "wise": 118, "wish": [22, 28, 37, 54, 59, 60, 85, 93, 112, 128], "within": [12, 22, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 93, 97, 111, 112, 113, 114, 119, 126, 129, 130, 132, 134, 135, 137, 138, 142, 150, 151, 153, 156, 177], "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, 94, 95, 96, 97, 102, 106, 107, 108, 111, 112, 113, 116, 126, 128, 130, 132, 133, 138, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 160, 161, 166, 170, 172, 173, 178], "wizard": [22, 41, 60, 63, 82, 88, 121, 123, 124, 127], "wjalrxutnfemi": 153, "woff2": 129, "won": [15, 43, 60, 81, 112], "wopi": [88, 158, 159, 164], "word": [7, 51, 77, 92, 130], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 93, 95, 98, 101, 102, 112, 119, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 144, 145, 147, 148, 149, 150, 151, 154, 155, 156, 161, 164, 165, 170, 178], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 132, 178, 179], "workflow": [65, 88, 92, 102, 150, 156, 178], "workflowengin": [67, 103, 155], "workload": [45, 95], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 96, 177], "worm": 56, "worri": 3, "wors": [60, 132], "worst": [15, 93], "worthi": 58, "would": [3, 5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 95, 96, 99, 112, 113, 118, 129, 138, 143, 144, 146, 147, 149, 153, 162, 172], "wrap": [152, 155], "wrapper": [63, 150], "writabl": [16, 34, 50, 60, 133, 143, 147, 151, 152, 153], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 93, 112, 116, 119, 123, 127, 133, 137, 147, 149, 152, 153, 179], "writeabl": [16, 126], "written": [3, 29, 30, 60, 67, 92, 95, 110, 113, 118, 126, 128, 143, 151, 153, 179], "wrong": [14, 28, 43, 60, 79, 137, 138, 142, 144, 153, 164], "wsdlcach": 129, "wss": [4, 158], "wurst": 118, "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, 107, 108, 111, 112, 113, 118, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 135, 136, 138, 140, 142, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 161, 176, 178], "wwwhomepag": 81, "wwwrun": [57, 150], "wysiwyg": 160, "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 96, 101, 123, 125, 126, 128, 129, 138, 144, 150, 175, 176, 177, 178], "x11": 67, "x64": 92, "x86": [4, 6, 11, 132], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 151, "xeon": [7, 10], "xeu": [15, 178], "xhtml": 129, "xjf": 142, "xjvf": 125, "xl": [15, 160], "xlii": 82, "xloc": 129, "xlsx": 160, "xml": [60, 88, 98, 118, 125, 129, 130, 132, 151, 157, 159, 162, 178], "xmlreader": 130, "xmlwriter": 130, "xoauth2": [63, 88, 115], "xss": 175, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 123, 125, 126, 140, 142, 147, 148, 152, 153, 155, 176], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 103, 106, 112, 117, 138, 144, 149, 153, 156, 164], "year": [73, 134, 177], "yellow": [15, 40, 41, 81, 88], "yet": [1, 3, 4, 15, 54, 60, 65, 68, 81, 88, 92, 137, 143, 152, 153, 155, 167], "yield": 60, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 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, 93, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 110, 111, 112, 113, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 164, 169, 172, 173, 174, 175, 176, 177, 178, 179], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 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, 93, 94, 95, 96, 99, 101, 106, 107, 108, 109, 110, 111, 112, 114, 116, 117, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [118, 164], "yourself": [5, 56, 92, 126, 147], "yourserv": 93, "yourswifthost": 60, "youtub": [2, 119], "yum": [56, 123], "yyyi": [81, 151], "yyyymmdd": 81, "z": [85, 92, 114, 123, 125, 126, 142, 148, 176], "z0": 81, "za": 81, "zammad": [166, 167], "zend": 59, "zero": [29, 156], "zip": [56, 85, 93, 101, 111, 123, 125, 130, 142, 147], "zlib": 130, "zone": [96, 117, 123], "zsh": 150, "zshrc": 150, "\u00b2": 156, "\u00b9": 156}, "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", "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", "Automatic setup", "Installing from 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", "System & maintenance commands", "User & group commands", "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", "Upgrade to Nextcloud 33", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "04": [125, 159], "1": 69, "10": 129, "11": 55, "12": 55, "15": 111, "16": 111, "17": 111, "18": 111, "1st": [133, 145], "2": [11, 69, 123, 132], "20": 111, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [125, 159], "26": 170, "27": 171, "28": 172, "3": 96, "30": 173, "31": 174, "32": 175, "33": 176, "3rdparti": 138, "4": 23, "502": 129, "512mb": 26, "64bit": 19, "8": [123, 124], "No": 92, "Not": [28, 137], "The": [58, 68, 70, 82, 114, 167], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 151, "abus": 116, "access": [3, 22, 68, 69, 70, 101, 111, 126, 129, 131, 157], "accessible_featur": 60, "account": [92, 108, 110, 116, 118, 156], "account_manag": 60, "act": 12, "action": [6, 102, 126], "activ": [53, 58, 60, 81, 107, 110, 173, 174, 175], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 116, "add": [68, 76, 137, 151, 155, 156, 159], "addendum": 5, "addit": [12, 59, 67, 81, 97, 133, 157], "address": [58, 63, 85, 113, 114, 126, 171, 175], "addressbook": [151, 153], "addus": 156, "adjust": 26, "admin": [53, 67, 70, 78, 126, 155], "admin_audit": 67, "administr": [54, 81, 85, 113], "advanc": [43, 67, 81, 92, 94, 98], "advantag": 134, "after": [53, 92, 138, 146], "ag": [44, 105], "agent": [1, 2, 15, 176], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [96, 97], "ajax": 57, "alarm": 112, "alert": 116, "alias": 51, "all": [28, 60, 63, 96, 120, 126, 152], "allow": [18, 40, 70, 112, 131], "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_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 149], "android": 55, "ani": 129, "anoth": 43, "anti": 116, "antiviru": [56, 155], "anymor": 137, "apach": [26, 123, 133, 158], "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, 95, 108, 132, 134, 136, 137, 138, 149, 153, 157, 158, 173, 174, 178], "app_api": [173, 174, 175], "appapi": [95, 173, 174, 175], "appcodecheck": 60, "appear": [72, 166], "appli": 136, "applic": [68, 130, 153], "approach": [92, 148], "approv": 179, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [40, 53, 70, 114], "architectur": 134, "archiv": 93, "argument": [97, 98], "around": 22, "arrai": 149, "articl": 111, "artifici": [2, 13], "ask": [15, 164], "assetlink": 55, "assign": [102, 156], "assist": 1, "attach": 116, "attempt": [60, 155], "attribut": 81, "audienc": 119, "audit": [67, 110], "auth": [60, 156], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 116, 156, 179], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 150, "autoconfig": [118, 128], "autom": [73, 102, 173], "automat": [92, 120, 128], "avail": [40, 101, 102], "avatar": [81, 156], "avoid": 129, "awai": 22, "azur": [48, 116], "backend": [15, 28, 40, 60, 112, 153], "background": [44, 49, 56, 57, 112, 116, 132, 133, 149, 155], "backtrac": 60, "backup": [28, 48, 81, 107, 140, 146], "bad": [28, 129], "balanc": 58, "bare": 96, "base": [32, 59, 67, 132, 147], "basic": [67, 93], "batch": 147, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 177, "better": 53, "between": [43, 179], "beyond": 63, "big": 26, "bigint": [19, 151], "bin": [49, 60, 107, 112, 153], "binary_search_path": 60, "birthdai": [112, 151], "blob": 48, "block": [29, 101, 179], "book": [113, 114, 171, 175], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 155, "browser": 134, "brute": 58, "bruteforc": [60, 155], "bucket": 48, "bug": [138, 177], "build": 179, "built": 147, "bulkupload": 60, "button": 112, "byte": 23, "c": 48, "cach": [59, 60, 70, 81, 130, 132, 151, 156], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": 69, "caldav": [70, 112, 151], "calendar": [2, 112, 118, 138, 151, 178], "call": 110, "can": [22, 63, 77, 167, 179], "candid": 177, "cannot": 28, "canon": 157, "capabl": 63, "carddav": [70, 113], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 123, "certif": [40, 63, 81, 89, 155], "chang": [40, 41, 62, 85, 92, 138, 151, 152, 169, 176], "changelog": 169, "channel": [60, 177], "charset": 151, "chat": [1, 3, 8, 15, 110], "check": [29, 30, 40, 70, 99, 153, 154, 155, 172, 175], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 128, "choos": 92, "chroot": 124, "chunk": [26, 174], "chunked_upload": 60, "cif": [38, 131], "cipher": 60, "circl": 2, "citrix": 93, "clamav": 56, "clean": [73, 151, 152, 173], "cleanup": [83, 153, 155, 156], "clear": [151, 156], "cli": [60, 72, 97, 130], "client": [40, 72, 91, 92, 93, 134, 146], "close": 93, "cloud": [26, 60, 138], "clue": 129, "cluster": [59, 60], "code": [60, 137, 155], "collabor": 105, "collabora": [157, 158, 162], "collat": 60, "collect": [18, 88], "column": 151, "com": 118, "combin": 2, "command": [3, 16, 22, 28, 50, 58, 93, 113, 121, 147, 149, 150, 151, 152, 153, 154, 155, 156], "comment": [60, 132], "commit": [22, 70], "common": [92, 101, 105, 138], "commun": 96, "comparison": 28, "compat": [50, 153], "complet": 128, "complianc": [12, 109], "compon": 119, "compound": 67, "compress": 132, "condit": [60, 67, 69], "config": [59, 63, 77, 93, 126, 149, 153, 154, 155], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 18, 21, 22, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 96, 103, 116, 120, 126, 127, 129, 130, 131, 132, 133, 149, 157, 158, 159, 162, 170, 171, 172, 173, 174, 175], "confirm": 56, "connect": [59, 81, 84, 93, 118, 126, 179], "connectivity_check_domain": 60, "connector": 130, "consequ": 50, "consider": [32, 68], "consumpt": 89, "contact": [2, 113, 114, 118, 138, 151], "contain": [96, 99], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "control": [3, 44, 101, 152], "convers": [20, 42, 151], "convert": [20, 151], "cookbook": 2, "cooki": [70, 106], "cookie_domain": 60, "copi": 153, "copied_sample_config": 60, "core": [60, 93, 119, 153], "count": [173, 174, 175], "cpu": 134, "creat": [22, 41, 43, 55, 75, 82, 85, 93, 151, 153, 154, 179], "creation": [44, 128, 151], "critic": 169, "cron": [57, 124, 132, 155], "csrf": 60, "css": 129, "csync": 93, "current": 2, "custom": [2, 16, 72, 112, 147, 157], "customclient_desktop": 60, "cybersecur": 12, "daemon": [95, 96, 97, 99], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 107, 108, 110, 111, 112, 113, 114, 118, 120, 126, 128, 138, 146, 151, 152, 153, 155, 156], "databas": [20, 21, 22, 25, 53, 60, 70, 118, 120, 123, 124, 128, 130, 131, 132, 134, 140, 146, 151, 174], "datadirectori": [60, 138], "date": 43, "dav": [151, 170], "davstorag": 60, "db": [60, 151, 155], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debug": [14, 60, 63, 67, 93, 126, 132, 138, 150], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 152], "dedic": [67, 126], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 96, 116, 152, 157, 173, 174, 176], "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, 116, 155], "delet": [49, 60, 75, 76, 82, 83, 85, 114, 149, 151, 153, 154, 155, 156], "demand": 67, "demot": 76, "deni": 101, "depend": [18, 153], "deploi": [94, 95, 96, 97, 98, 99], "deploy": [59, 92, 96, 122, 126], "deployconfig": 97, "deriv": 29, "desktop": [40, 60, 91, 92, 134], "detail": 29, "detect": [6, 40, 56], "determin": 63, "dev": [70, 126], "develop": 119, "diagnost": 60, "did": 137, "differ": [48, 63, 143], "directori": [16, 59, 81, 120, 126, 128, 131, 138], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 98, 116, 126, 138, 151, 152, 156], "disallow": 131, "discoveri": [69, 138], "disk": 6, "dispatch": 178, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 162], "dmz": 126, "do": [137, 147, 166], "docker": [95, 96, 158, 162], "document": 15, "documentation_url": 60, "doe": [70, 147, 166], "dokuwiki": 18, "domain": [62, 63, 69, 118, 126, 128, 138], "don": 28, "down": [77, 137], "downgrad": 177, "download": [99, 147], "drop": [43, 108, 134, 152], "due": 53, "dump": 93, "duplic": 81, "dure": [44, 148], "edit": [71, 75, 76, 119, 156, 157], "email": [53, 63, 76, 85, 170], "embed": [60, 64], "empti": [70, 154], "enabl": [16, 17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 98, 99, 126, 131, 132, 133, 150, 152, 155, 156, 157, 175], "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, 132, 133, 138, 152], "end": [6, 177], "endpoint": 176, "energi": 89, "enforc": [80, 156], "enforce_them": 60, "ensur": 126, "entri": 67, "envelop": [29, 178], "environ": [60, 94, 133, 150], "erasur": 111, "error": [22, 28, 93, 129, 137, 138], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [112, 118, 151, 178], "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 97, 101, 102, 105, 112, 113, 120, 123, 124, 125, 132, 151, 158, 159, 179], "exapp": [95, 96, 98, 100], "exclud": [53, 58], "execut": [102, 155], "exist": [18, 77], "expand": 175, "expect": 151, "experi": 60, "expert": 81, "expir": [43, 53, 153], "explain": 67, "export": [112, 118, 151, 153, 155], "expos": 171, "extens": [71, 89], "extern": [28, 32, 40, 48, 53, 64, 95, 101, 133, 153, 157], "external_storag": 60, "face": 6, "factor": [47, 80, 156], "fail": [118, 129], "fail2ban": [58, 126], "failur": [38, 92], "fair": 138, "faq": [77, 95, 137, 179], "faster": 132, "featur": [15, 92, 117], "feder": [26, 41, 60, 112, 138, 153], "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, 93, 101, 102, 105, 107, 110, 129, 132, 134, 138, 153, 155, 156, 157, 172, 173, 178], "filecach": 151, "filekei": 152, "filelock": 60, "filenam": [50, 153], "files_antiviru": 155, "files_extern": 153, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 126, 178], "final": 124, "find": [22, 63], "fingerprint": [60, 155], "fix": [137, 151, 152, 153], "flow": [103, 104], "folder": [28, 40, 53, 92, 101, 140, 146, 178], "follow": 116, "font": 157, "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, 178], "format": [29, 30, 60, 152], "forwarded_for_head": 60, "found": 28, "fpm": [132, 133], "freebusi": 112, "frequenc": 40, "frequent": [15, 164], "from": [18, 48, 53, 58, 63, 76, 92, 121, 144, 162], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 93, "further": [28, 119, 130], "fusef": 131, "g": 60, "gatewai": 129, "gdpr": 109, "gener": [9, 15, 22, 29, 47, 126, 130, 138], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 118, 119, 149, 151, 153, 155], "getenv": 70, "give": 126, "global": [71, 77, 118], "gone": 22, "googl": 116, "gpg": 131, "grant": 85, "greater": 129, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 101, 154, 156, 157], "group_everyon": 18, "groupwar": [88, 110, 115], "grow": 53, "guest": 18, "guidanc": 126, "ha": 22, "handl": [55, 81], "handler": [59, 129], "haproxi": 69, "harden": 126, "hardwar": 12, "harp": [95, 96], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 126], "heartbeat": 99, "held": 110, "help": 108, "hidden": 38, "hide": 112, "hide_login_form": 60, "hierarch": 149, "home": 59, "host": [16, 96], "how": [22, 40, 58, 63, 77, 114, 148, 166], "htaccess": [60, 133, 155], "http": [70, 126, 132, 133], "http_client_add_user_agent_url": 60, "httpd": 124, "i": [15, 22, 28, 56, 63, 70, 126, 137, 173, 174, 179], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 118, 138, 155, 176], "ident": 84, "identifi": [19, 93], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 99, 126, 162], "imagick": 123, "imaginari": 173, "imap": [116, 118], "implement": [2, 12], "implic": 48, "import": [18, 92, 151, 153, 155, 159], "imprint": 108, "improv": [0, 1, 15], "inconvert": 20, "independ": 96, "index": 3, "indic": 151, "info": [17, 56, 153, 155, 156], "inform": 138, "ini": 130, "init": 99, "initi": [3, 18, 25, 89], "insecur": 93, "insert": 118, "insight": 14, "inspect": 151, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 95, 121, 123, 124, 125, 126, 127, 128, 130, 133, 145, 155, 158, 159, 161, 177, 178, 179], "instanc": [48, 126], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 137, 153, 175], "intellig": [2, 13], "interact": [67, 92, 114], "interfac": [50, 67, 113, 116, 131], "intern": [81, 138], "interoper": 12, "interv": [81, 116], "introduct": [54, 58, 60, 119, 126, 178], "invalid": [28, 50, 63, 137, 151], "invis": 102, "invit": 112, "ip": [58, 126], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 93], "issu": [93, 118, 138, 139], "item": [49, 60, 113], "j": [129, 155], "jail": 126, "javascript": 129, "jit": 132, "job": [44, 49, 57, 112, 124, 132, 133, 149, 155], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 132, 151, 152, 156, 159], "keyboard": 93, "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 93, 112, 166, 167], "kubernet": 3, "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 156, "launch": 92, "ldap": [28, 60, 81, 82, 83, 131, 154], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 152], "legal": 12, "length": [126, 177], "level": [22, 67, 70, 132], "libreoffic": 172, "life": 177, "lifetim": 107, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 112, 113, 116, 126, 150], "line": [93, 113, 121, 147, 155], "link": [41, 43, 55, 60, 64, 166], "linux": 133, "list": [14, 17, 76, 81, 97, 98, 151, 152, 153, 155, 156, 178], "listen": [63, 155, 178], "live": [4, 15], "live_transcript": 4, "llm": 116, "llm2": 5, "load": [3, 58, 60, 81, 132], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 96, 112, 116], "localstorag": 60, "locat": [29, 59, 60, 67, 128, 152], "lock": [45, 60, 70, 77, 132, 137], "log": [3, 4, 60, 67, 81, 93, 99, 107, 110, 118, 129, 132, 138, 155], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 138], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 129, 133, 145], "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": [134, 148], "look": 63, "lookup_serv": 60, "loop": 129, "lost": 78, "lost_password_link": 60, "lt": 125, "machin": [1, 11, 15, 133], "maco": 93, "made": 40, "mai": 175, "mail": [2, 60, 63, 116, 118], "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": 116, "mainten": [60, 88, 140, 141, 148, 150, 151, 152, 155, 177], "maintenance_window_start": [57, 60], "major": 177, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 74, 85, 97, 98, 100, 130, 132, 133, 151, 155, 165], "managerfactori": 60, "mandatori": 137, "manual": [8, 56, 118, 133, 142, 148], "map": [51, 81], "mariadb": [22, 134, 140, 146], "mark": [56, 155], "master": [29, 152], "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, 133, 174], "mcp": 2, "me": [106, 107], "mechan": 32, "media": [130, 133], "member": 75, "memberof": 81, "memcach": [59, 60, 131], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 134], "merg": 60, "messag": [93, 129, 137, 138], "metadata": 110, "metadata_max_files": 60, "metal": 96, "method": 28, "mib": 129, "microsoft": [48, 81, 116], "migrat": [25, 30, 116, 143, 144, 148, 152, 162], "mimetyp": [51, 155], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [101, 105], "miss": [40, 53, 118, 151], "mobil": 134, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 126, 132, 140, 147, 148, 150, 155], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [123, 126, 130, 138, 152], "monitor": [52, 172, 173, 174, 175], "mount": [40, 94, 153], "mountpoint": 28, "move": [138, 151, 153], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 118, 120, 134, 140, 146, 151], "name": [40, 70, 138], "nc": 96, "need": 175, "nest": 81, "network": [112, 131], "new": [18, 41, 76, 77, 85, 157], "next": 125, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 93, 96, 97, 106, 119, 123, 124, 126, 129, 136, 137, 138, 142, 157, 158, 170, 171, 172, 173, 174, 175, 176, 178, 179], "nf": 131, "nginx": [26, 69, 129], "no_unsupported_browser_warn": 60, "node": 178, "non": [92, 138], "nor": 129, "note": [59, 81, 88, 124, 130, 136, 168, 169], "notif": [16, 38, 43, 53, 112, 148, 153], "notifi": 153, "now": [173, 174], "nss": 70, "o": 134, "oauth": 116, "oauth2": [68, 155], "object": [6, 26, 36, 48, 60, 153, 178], "objectstor": 60, "obtain": [93, 136], "occ": [3, 16, 28, 50, 58, 81, 97, 150], "off": 81, "offic": [88, 117, 151, 157, 160, 172], "old": [30, 134], "olmo": 5, "one": [63, 96], "onli": [63, 70], "onlin": [157, 158, 162], "ooxml": 157, "opcach": 132, "open": [5, 137], "openai": 0, "openbsd": 124, "openid": 84, "openmetr": [52, 176], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [126, 153, 155], "option": [3, 28, 40, 60, 67, 81, 92, 94, 97, 98, 123, 153, 157], "optout": 60, "organ": 59, "orphan": [152, 153], "other": [15, 60, 93, 118, 133, 138], "out": [22, 63, 117, 151], "outdat": 70, "outgo": 176, "outlook": 118, "output": [17, 75, 76, 82], "outsid": [40, 126], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 133, 142, 148, 177, 178], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 144, "owner": [153, 155], "ownership": 153, "packag": [133, 145, 159, 162], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 120, 132], "part_file_in_storag": 60, "parti": 110, "pass": [70, 179], "password": [32, 73, 78, 79, 85, 86, 126, 173], "passwordsalt": 60, "patch": 136, "path": [40, 60, 70, 138], "payload": 178, "pdf": 173, "per": [48, 81, 118], "perform": [0, 48, 132], "permiss": [40, 81], "persist": 43, "person": 110, "pgsql_ssl": 60, "photo": [6, 151], "php": [26, 59, 63, 70, 77, 116, 123, 124, 126, 129, 130, 132, 133, 134, 138, 174], "physic": 12, "picker": 167, "pickup": [1, 15], "place": 126, "point": 28, "polici": [86, 138], "pomerium": 69, "port": 63, "portabl": 111, "postgresql": [22, 120, 140, 146], "pre": 68, "preced": 77, "preconfigur": 92, "prefer": 116, "prefix": [59, 70], "prepar": 130, "prerequisit": [126, 133, 148], "pretti": 133, "prevent": [64, 101], "preview": [47, 60, 126, 132, 153, 157, 166, 172, 173, 174, 175, 176], "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": 142, "primari": [48, 151], "privaci": 113, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [93, 118, 138], "process": [1, 15, 111, 116, 132, 133, 155], "profil": [60, 77, 81, 110, 156], "project": 60, "promot": 76, "prompt": 15, "proper": 126, "properli": [70, 129], "properti": [77, 113], "protect": [58, 60, 175], "protocol": 63, "provid": [15, 27, 63, 80, 84, 166, 167], "provis": [87, 92], "proxi": [58, 60, 69, 95, 96, 158, 162, 163], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 105, 112], "pull": 99, "put": 153, "qmail": 63, "qualiti": 47, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 164], "queue": 56, "quick": [128, 130], "quickstart": 145, "quota": [85, 138], "quota_include_external_storag": 60, "rainloop": 131, "rang": 126, "rate": [6, 8, 11, 15, 60, 112, 113], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 126], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 114, "recogn": 6, "recognit": 6, "recommend": [59, 92, 122, 130], "recov": 152, "recoveri": [28, 29, 48, 146], "rectif": 111, "redi": [59, 60, 123, 124, 132], "redirect": 126, "redis_log_fil": 60, "reduc": 132, "reduce_to_languag": 60, "refer": [53, 77, 130, 150, 165], "reference_opengraph": 60, "refresh": [112, 153], "regist": [97, 98, 99, 178], "regular": 44, "reject": 63, "relat": [1, 126], "releas": [60, 88, 142, 168, 169, 177], "reliabl": [12, 40], "rememb": [106, 107], "remember_login_cookie_lifetim": 60, "remind": [112, 116, 151, 153], "remirepo": 123, "remnant": 154, "remot": [96, 126, 131, 153], "remov": [76, 80, 151, 155], "removeus": 156, "renam": [40, 85], "repair": [152, 153, 155], "replac": 132, "replic": 24, "report": [156, 177], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 159], "request": [60, 108, 111, 176], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 123, 130, 134, 170, 171, 172, 173, 174, 175, 176], "rescan": 137, "resend": 76, "reset": [78, 79, 85, 155], "resetpassword": 156, "resolv": 70, "resourc": [112, 119, 130], "respond": 111, "respons": 70, "restor": [146, 153], "restrict": [102, 111, 126, 157], "retent": [105, 107, 112, 113, 114, 151, 170], "retriev": 51, "return": [70, 155], "revalid": 132, "revers": [58, 69, 96, 158, 162, 163], "revert": 136, "rewritebas": 60, "rich": 71, "right": [92, 111], "robust": 12, "room": 112, "root": [126, 152], "rotat": 60, "rule": [3, 77, 101, 102], "run": [5, 20, 70, 148, 150], "runtim": 18, "s3": [31, 48, 175], "same": 96, "sampl": 60, "sanit": [50, 153], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 152, 153, 155], "scanner": 56, "schedul": [53, 116, 177], "schema": 151, "scope": [77, 113], "screen": [15, 178], "script": [133, 179], "seal": 29, "search": [2, 15, 75, 76, 154], "secret": [60, 67], "secur": [12, 60, 68, 70, 96, 126, 155, 157], "see": [28, 77], "selector": 149, "self": [16, 40, 63], "selinux": [123, 126, 131, 133], "send": [63, 116, 151], "sendmail": [63, 131], "sensit": 38, "sent": 53, "serv": [126, 129], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 107, 110, 112, 116, 126, 127, 131, 132, 133, 134, 136, 138, 143, 157, 158, 170, 171, 172, 173, 175], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 110, 138, 178], "session": [15, 59, 60, 107, 110, 178], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 112, 123, 130, 132, 133, 149, 151, 152, 154, 155, 156, 157, 179], "setup": [8, 59, 92, 95, 120, 126, 155, 172, 175], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 112, 113, 116, 118, 138, 151, 153, 155], "share_fold": 60, "ship": 138, "shortcut": 93, "show": [152, 154, 155], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [116, 118], "sign": [29, 40, 63, 137, 153, 159], "signatur": [28, 29, 147], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 149], "site": [64, 70], "size": [26, 47, 116, 132, 133, 138, 153, 174], "skeletondirectori": 60, "skip": 68, "slow": [15, 132], "small": 59, "smart": 167, "smb": [38, 131], "smtp": [63, 116, 118, 131], "snap": [133, 145], "snooz": 116, "snowflak": [155, 176], "socket": [59, 95, 96], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 137], "space": [3, 6, 8, 11, 133, 155], "special": [32, 81], "specif": [63, 81, 101, 126, 130, 157], "speech": [1, 7, 10, 15], "speed": [1, 15, 178], "split": [25, 29], "sql": 22, "sqlite": [60, 120, 132, 140, 146], "sse": 48, "ssl": [22, 60, 81, 126, 133], "standalone_window": 60, "start": [88, 99, 119, 128], "starttl": 63, "stat": 155, "state": 156, "statu": [99, 152, 155], "step": [28, 124, 125, 142, 148, 179], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 101, 126, 152, 153, 155], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 106, 110, 153], "storecryptedpassword": 60, "strict": [70, 126], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 129, "subdirectori": 69, "subject": 111, "subscript": [112, 151], "summar": 8, "summari": [8, 92, 107, 116], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 134, 177], "supporteddatabas": 60, "suppress": 129, "suspend": 179, "swift": 48, "switch": 11, "sync": [38, 93, 112, 113, 116, 138, 151, 153, 156, 170], "synchron": [3, 70, 118], "synchronis": 146, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 113, 126, 132, 133, 134, 151, 155, 156, 170, 171, 172, 173, 174, 175, 176, 178], "systemd": [15, 57, 67, 178], "systemtag": 60, "t": 28, "tab": 81, "tabl": [20, 88, 107, 130, 178], "tag": [102, 105, 156, 178], "talk": [2, 4, 8, 110, 134], "target": [20, 119], "task": [1, 2, 14, 15, 56, 155], "taskprocess": 155, "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63], "templatedirectori": 60, "temporari": 67, "term": 134, "test": [60, 63, 70, 81, 99, 154], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 129, "thei": 166, "theme": [60, 63, 72, 108, 155], "thi": 70, "third": 110, "though": 63, "thread": [116, 118], "threshold": 60, "through": 67, "timeout": [116, 118], "tip": [41, 81, 129, 133, 145], "tl": [59, 81, 116, 132], "tmux": [15, 178], "token": [68, 84, 107, 112, 113, 126, 156, 170], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "track": 114, "traefik": 69, "traffic": 126, "transact": [22, 45, 70, 132], "transcript": [4, 15], "transfer": [43, 153], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 116], "translate2": 11, "transpar": 12, "transport": [70, 126], "trash": [49, 60, 107, 112, 153], "trashbin": 153, "trashbin_retention_oblig": 60, "tree": 153, "trick": [81, 129], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 93, 118, 131, 132, 136, 138, 139, 142, 147, 164], "truena": 133, "trust": [41, 69, 128], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 132, "turn": 81, "two": [80, 156], "twofactorauth": 156, "type": [20, 29, 59, 60, 67, 112, 151, 155, 177], "ubuntu": [125, 159], "umask": 60, "unabl": 118, "unencrypt": 126, "unified_search": 60, "uninstal": 135, "unix": 59, "unknown": 93, "unlink_on_trunc": 60, "unregist": [97, 98], "unscan": 56, "unseal": 29, "unshar": 151, "up": [70, 73, 116, 123, 133, 151, 173, 178, 179], "updat": [16, 25, 38, 60, 81, 92, 98, 118, 131, 138, 147, 148, 155, 158, 162, 175], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 134, 142, 145, 147, 148, 155, 162, 170, 171, 172, 173, 174, 175, 176, 177], "upload": [26, 38, 101, 129, 133], "urandom": [70, 126], "url": [60, 133, 147], "us": [2, 12, 15, 16, 22, 40, 43, 50, 59, 60, 63, 67, 70, 81, 84, 116, 126, 132, 138, 147, 150, 157, 167, 172], "usag": [3, 6, 8, 11, 40, 54, 58, 97, 157], "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, 101, 113, 114, 116, 128, 138, 152, 154, 156, 173, 174, 175, 176], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 95], "valid": 84, "valu": [60, 77, 149, 179], "variabl": [40, 60, 94, 133, 150], "verif": [60, 81, 116, 147], "verifi": [77, 153, 156], "version": [44, 60, 70, 107, 134, 138, 152, 153, 177], "versions_retention_oblig": 60, "via": [8, 16, 28, 41, 69, 70, 72, 81, 131, 133, 145, 147], "video": 6, "view": 157, "virtual": 133, "visibl": 77, "voic": 1, "vp": 133, "wa": 85, "warn": [68, 70], "watsonx": 0, "we": [134, 137], "web": [26, 50, 60, 63, 67, 70, 107, 110, 126, 131, 133, 134, 138, 147, 170, 171, 172, 173, 175], "webauthn": 60, "webcron": 57, "webdav": [39, 138], "webhook": [155, 178], "webroot": [129, 157], "webserv": 93, "welcom": [76, 156], "well": 70, "what": [5, 63, 77, 147], "when": [12, 77, 93], "where": [166, 167], "whisper": 7, "who": 119, "whole": 131, "why": [15, 28, 40, 63, 134, 137], "windmil": [15, 179], "window": [50, 92, 133, 153], "without": 129, "wizard": [92, 128, 133], "wopi": 157, "work": [22, 40, 56, 58, 166], "worker": 155, "workflow": [15, 67, 155, 179], "workspac": [71, 93, 179], "write": 131, "xml": [17, 75, 76, 82], "xoauth2": 116, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 118, 126, 132]}}) \ No newline at end of file +Search.setIndex({"alltitles": {".htaccess": [[133, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[133, "st-login"], [145, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[110, "account-data"]], "Account delegation": [[116, "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": [[110, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[107, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[159, "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": [[133, "additional-apache-configurations"]], "Additional configuration options": [[157, "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": [[97, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[113, "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": [[155, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[113, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[94, null], [98, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[134, "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"]], "All parameters": [[120, "all-parameters"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[131, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[131, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[131, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[131, "allow-access-to-ldap-server"]], "Allow access to NFS": [[131, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[131, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[131, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[131, "allow-access-to-network-memcache"]], "Allow access to remote network": [[131, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[112, "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": [[116, "anti-abuse-alerts"]], "Antivirus": [[155, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [123, "apache"]], "Apache Web server configuration": [[133, "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": [[173, "appapi-app-api-is-now-a-default-app"], [174, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[175, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[95, null]], "Applying a patch": [[136, "applying-a-patch"]], "Approaching Upgrades": [[148, "approaching-upgrades"]], "Approval/Suspend steps": [[179, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[149, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[149, null]], "Arguments": [[97, "arguments"], [98, "arguments"], [98, "id1"], [98, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[102, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[156, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[116, "attachment-size-limit"]], "Attribute update interval": [[81, "attribute-update-interval"]], "Authentication": [[73, null], [179, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[128, "autoconfig"]], "Autoconfig for your mail domain fails": [[118, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[173, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[102, null]], "Automatic configurations examples": [[120, "automatic-configurations-examples"]], "Automatic database user creation": [[128, "automatic-database-user-creation"]], "Automatic setup": [[120, null]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[101, "available-rules"], [102, "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], [112, "background-jobs"], [155, "background-jobs"]], "Background jobs selector": [[149, "background-jobs-selector"]], "Background sync interval": [[116, "background-sync-interval"]], "Backup": [[140, null]], "Backup database": [[140, "backup-database"]], "Backup folders": [[140, "backup-folders"]], "Backups": [[28, "backups"], [107, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[147, "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": [[177, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[112, "birthday-calendar"]], "Blocking user groups": [[101, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[155, "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": [[177, "bug-reporting"]], "Bugs": [[138, "bugs"]], "Building a workflow": [[179, "building-a-workflow"]], "CPU Architecture and OS": [[134, "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"], [132, "id1"]], "Caddy": [[69, "caddy"]], "Calendar": [[118, "calendar"]], "Calendar / CalDAV": [[112, null]], "Calendar Object Events": [[178, "calendar-object-events"]], "Calendar server settings": [[112, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[179, "can-i-create-a-script"]], "Canonical webroot": [[157, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[169, "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"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[124, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[93, "citrix-workspace-known-issues"]], "Code signing": [[137, null]], "Collabora Online Server": [[157, "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": [[113, "command-line"]], "Command line": [[93, "command-line"]], "Command line installation": [[155, "command-line-installation"]], "Command line upgrade": [[155, "command-line-upgrade"]], "Command reference": [[150, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [132, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[101, "common-misconfigurations"], [105, "common-misconfigurations"]], "Common problems / error messages": [[138, "common-problems-error-messages"]], "Completing Installation": [[128, "completing-installation"]], "Compression": [[132, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[149, "config-commands"]], "Config file": [[93, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [116, "configuration"], [133, "configuration"], [157, null], [159, "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": [[158, "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 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 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 issues with the macOS client on \u201cinsecure\u201d connections": [[93, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[126, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[118, "contacts"]], "Contacts / CardDAV": [[113, null]], "Contacts Interaction": [[114, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[99, "container-started"]], "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": [[106, null]], "Cookies stored by Nextcloud": [[106, "cookies-stored-by-nextcloud"]], "Core Components": [[119, "core-components"]], "Core Dumps": [[93, "core-dumps"]], "Create Debug Archive": [[93, "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": [[169, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[124, "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": [[157, "custom-fonts"]], "Custom public calendars": [[112, "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": [[151, null]], "DAV commands": [[151, "dav-commands"]], "DAV sync tokens retention": [[170, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[120, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[108, "data-request-app"]], "Data conversions": [[151, "data-conversions"]], "Data directory location": [[128, "data-directory-location"]], "Data held by third-party services": [[110, "data-held-by-third-party-services"]], "Data retention": [[107, null], [112, "data-retention"], [113, "data-retention"], [114, "data-retention"]], "Database": [[123, "database"], [124, "database"]], "Database choice": [[128, "database-choice"]], "Database commands": [[151, "database-commands"]], "Database configuration": [[21, null], [22, null], [174, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[118, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[134, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[132, "debug-mode"]], "Debugging": [[150, "debugging"]], "Debugging sync issues": [[138, "debugging-sync-issues"]], "Deck tools": [[2, "deck-tools"]], "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)": [[96, "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": [[176, "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": [[149, "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": [[101, "denied-access"]], "Denying access to folders": [[101, "denying-access-to-folders"]], "DeployConfig": [[97, "deployconfig"]], "DeployConfig options": [[97, "deployconfig-options"]], "Deployment": [[126, "deployment"]], "Deployment configurations": [[96, null]], "Deployment recommendations": [[122, 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": [[134, "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": [[98, "disable"]], "Disable 3rdparty / non-shipped apps": [[138, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[126, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[116, "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": [[151, "disable-creation-of-example-events"]], "Disable preview image generation": [[126, "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": [[131, "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?": [[137, "do-we-lock-down-nextcloud"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[96, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[96, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[96, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[96, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[95, "docker-socket-proxy"]], "Docker Socket Proxy security": [[96, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[95, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[96, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[96, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Domain Change": [[62, null]], "Downgrading": [[177, "downgrading"]], "Download Logs": [[99, "download-logs"]], "Drop Account app": [[108, "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": [[119, "editions"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[98, "enable"]], "Enable HTTP Strict Transport Security": [[126, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[132, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[132, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[157, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[126, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[131, "enable-updates-via-the-web-interface"]], "Enabled": [[99, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[133, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[16, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[150, "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": [[152, "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"]], "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": [[152, 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": [[152, "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": [[177, "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": [[126, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [94, "environment-variables"]], "Environment variables": [[150, "environment-variables"]], "Errors": [[137, "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": [[112, "event-alarm-types"]], "Events": [[112, "events"]], "ExApps management": [[100, 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"], [102, "example"], [105, "example"]], "Example configuration": [[132, "example-configuration"]], "Example contact": [[113, "example-contact"]], "Example event": [[112, "example-event"]], "Example installation on CentOS 8": [[123, null]], "Example installation on OpenBSD": [[124, null]], "Example installation on Ubuntu 24.04 LTS": [[125, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[179, "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"], [101, "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": [[102, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[151, "export-and-import-calendars"]], "Export threading data": [[118, "export-threading-data"]], "Exposed system address book": [[171, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[133, "external-media"]], "External storage": [[101, "external-storage"]], "FAQ": [[95, "faq"], [137, "faq"], [179, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[126, "fail2ban-introduction"]], "Fair Use Policy": [[138, "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": [[112, "federated-calendar-shares"]], "Federation sync": [[153, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[105, "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": [[153, "file-operations"]], "File sharing": [[153, "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"], [107, "file-versions"], [153, "file-versions"]], "Files": [[88, null]], "Files App": [[134, "files-app"]], "Files access control": [[101, null]], "Files and metadata": [[110, "files-and-metadata"]], "Files commands": [[153, null]], "Files external": [[153, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[178, "filters"]], "Fixing invalid code integrity messages": [[137, "fixing-invalid-code-integrity-messages"]], "Flow": [[104, null]], "Flow configuration": [[103, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[116, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[178, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[112, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[164, "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": [[119, "further-resources"], [130, "further-resources"]], "GDPR compliance": [[109, null]], "General troubleshooting": [[138, null], [138, "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": [[118, "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], [119, "getting-started"]], "Getting a single configuration value": [[149, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[126, "give-php-read-access-to-dev-urandom"]], "Globally": [[118, "globally"]], "Google OAuth": [[116, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[156, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [115, null]], "Groupware data": [[110, "groupware-data"]], "HAProxy": [[69, "haproxy"]], "HTTPD(8)": [[124, "httpd-8"]], "HTTPS encryption": [[133, "https-encryption"]], "HaRP": [[95, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[126, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[99, "heartbeat"]], "Helpful apps": [[108, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[112, "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?": [[166, "how-does-it-work"]], "How interactions are tracked": [[114, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "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": [[148, 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": [[116, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identifying Basic Functionality Problems": [[93, "identifying-basic-functionality-problems"]], "Image Pull": [[99, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[159, "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)": [[108, "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": [[155, "info"]], "Init": [[99, "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 packages": [[159, "install-packages"]], "Install the Apache reverse proxy": [[158, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[158, "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"], [133, "installation"], [145, "installation"], [161, null], [178, "installation"], [179, "installation"]], "Installation and server configuration": [[127, null]], "Installation example on Ubuntu 24.04": [[159, null]], "Installation example with Docker": [[158, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[133, null]], "Installation on TrueNAS": [[133, "installation-on-truenas"]], "Installation version": [[177, "installation-version"]], "Installation via install script": [[133, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[133, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[128, null], [133, "installation-wizard"]], "Installing AppAPI": [[95, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[95, "installing-exapps"]], "Installing Nextcloud": [[123, "installing-nextcloud"]], "Installing PHP and the required modules": [[123, "installing-php-and-the-required-modules"]], "Installing from command line": [[121, null]], "Installing on Windows (virtual machine)": [[133, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[123, "installing-optional-modules-redis-imagick"]], "Installing via Snap packages": [[133, "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": [[153, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[138, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [119, null], [178, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[112, "invitations"]], "Is code signing mandatory for apps?": [[137, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[93, "isolating-other-issues"]], "Issues and troubleshooting": [[139, null]], "Issues connecting to Outlook.com": [[118, "issues-connecting-to-outlook-com"]], "JIT": [[132, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[129, "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": [[132, "key-parameters"]], "Key storage": [[152, "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"]], "Keyboard shortcut": [[93, "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": [[167, "known-smart-picker-providers"]], "Known backends": [[112, "known-backends"]], "Known link preview providers": [[166, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[154, null], [154, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[116, "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": [[152, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[177, "length-of-support-maintenance"]], "Limit on password length": [[126, "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": [[150, "limitations-in-maintenance-mode"]], "Link previews": [[166, null]], "Linking external sites": [[64, null]], "List ExApps": [[98, "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": [[97, "list-registered-daemons"]], "Listening to events": [[178, "listening-to-events"]], "Listing registered webhooks": [[178, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[116, "local-imap-and-smtp-servers"]], "Log Files": [[93, "log-files"]], "Log Levels": [[132, "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": [[138, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging commands": [[155, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[118, "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": [[129, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[148, "long-running-migration-steps"]], "Long term support": [[134, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[116, null], [118, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[116, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [141, null], [151, "maintenance"]], "Maintenance and release schedule": [[177, null]], "Maintenance and repair": [[152, "maintenance-and-repair"]], "Maintenance commands": [[155, "maintenance-commands"]], "Maintenance mode": [[140, "maintenance-mode"], [148, "maintenance-mode"]], "Maintenance releases": [[177, "maintenance-releases"]], "Major releases": [[177, "major-releases"]], "Major version upgrades": [[177, "major-version-upgrades"]], "Manage absences (out-of-office)": [[151, "manage-absences-out-of-office"]], "Manage addressbooks": [[151, "manage-addressbooks"]], "Manage calendar subscriptions": [[151, "manage-calendar-subscriptions"]], "Manage calendars": [[151, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[97, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[98, null]], "Managing apps": [[16, "managing-apps"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[118, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[148, "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": [[140, "mariadb"], [146, "mariadb"], [146, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[152, "master-key"]], "Maximum chunk size": [[174, "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": [[133, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[134, "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": [[144, null]], "Migrating to a different server": [[143, null]], "Migration from Collabora Online": [[162, 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": [[118, "missing-shared-calendars"]], "Mobile apps": [[134, "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], [172, "monitoring"]], "Monitoring: Counting of active users": [[173, "monitoring-counting-of-active-users"], [174, "monitoring-counting-of-active-users"], [175, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[94, "mounts"]], "Moving the data directory / changing the datadirectory path": [[138, "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"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[140, "mysql"], [146, "mysql"], [146, "id4"]], "MySQL database": [[120, "mysql-database"]], "NC & Docker on the Same-Host": [[96, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[96, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[96, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[129, null]], "NOTE": [[124, "note"]], "Next steps": [[125, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[97, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office App Settings": [[157, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[179, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[178, "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": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[96, "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], [173, "nextcloud-configuration"], [174, "nextcloud-configuration"]], "Nextcloud final steps": [[124, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[96, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[129, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[129, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[138, "nextcloud-log-files"]], "Nextcloud prerequisites": [[126, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[93, "nextcloud-server-log-file"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[178, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[137, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[136, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[130, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [155, "oauth2"]], "OCC CLI": [[97, "occ-cli"]], "Object store": [[153, "object-store"]], "Obtaining a patch": [[136, "obtaining-a-patch"]], "Obtaining the Client Log File": [[93, "obtaining-the-client-log-file"]], "Office": [[88, null], [160, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[176, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[126, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[97, "options"], [98, "options"], [98, "id2"], [98, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[133, "other-web-servers"]], "Other issues": [[138, "other-issues"]], "Out-of-office feature": [[117, 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"], [133, "overview"], [142, "overview"], [148, "overview"], [177, "overview"], [178, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[123, "php"], [124, "php"]], "PHP Installation": [[130, "php-installation"]], "PHP Module Quick Reference Table": [[130, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[130, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[130, "php-modules-for-specific-applications"]], "PHP configuration": [[174, "php-configuration"]], "PHP ini Settings": [[130, "php-ini-settings"]], "PHP version and information": [[138, "php-version-and-information"]], "PHP-FPM configuration": [[133, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[129, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [120, "parameters"]], "Passing values between blocks": [[179, "passing-values-between-blocks"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[126, "passwords"]], "Patching Nextcloud": [[136, null]], "Patching apps": [[136, "patching-apps"]], "Patching server": [[136, "patching-server"]], "Payload envelope": [[178, "payload-envelope"]], "Per mail account": [[118, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Personal data stored": [[110, null]], "Place config directory outside of the web root": [[126, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[126, "place-data-directory-outside-of-the-web-root"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[140, "postgresql"], [146, "postgresql"], [146, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [120, "postgresql-database"]], "Preparing PHP": [[130, null]], "Prerequisites": [[148, "prerequisites"]], "Prerequisites for manual installation": [[133, "prerequisites-for-manual-installation"]], "Pretty URLs": [[133, "pretty-urls"]], "Prevent uploading of specific files": [[101, "prevent-uploading-of-specific-files"]], "Preview": [[153, "preview"]], "Previews": [[60, "previews"], [132, "previews"], [157, "previews"], [174, "previews"], [175, "previews"], [176, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[172, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[173, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[142, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[113, "privacy-and-user-property-scopes"]], "Process manager": [[133, "process-manager"]], "Process manager modes": [[132, "process-manager-modes"]], "Profile data": [[110, "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": [[126, "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": [[105, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[128, "quick-start"]], "Rate limits": [[112, "rate-limits"], [113, "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": [[130, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[130, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[130, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[126, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[59, "redis"], [123, "redis"], [124, "redis"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[132, "reducing-system-load"]], "Reference management": [[165, null]], "Refresh rate": [[112, "refresh-rate"]], "Register": [[97, "register"], [98, "register"], [99, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[177, "release-channels"]], "Release notes": [[88, null], [168, null], [169, null]], "Release schedule": [[177, "release-schedule"]], "Release types": [[177, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[106, "remember-me-cookies"]], "Remember-me tokens": [[107, "remember-me-tokens"]], "Reminder notifications": [[112, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[132, "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": [[130, "required-php-database-connectors"]], "Required PHP Modules": [[130, "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": [[137, "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": [[112, "resources-and-rooms"]], "Responding to data subject requests": [[111, null]], "Restore database": [[146, "restore-database"]], "Restore folders": [[146, "restore-folders"]], "Restoring": [[146, "restoring"]], "Restoring backup": [[146, null]], "Restrict admin actions to a specific range of IP addresses": [[126, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[157, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[157, "restrict-usage-to-specific-groups"]], "Retention of files": [[105, null]], "Revalidation": [[132, "revalidation"]], "Reverse proxy": [[69, null], [163, null]], "Reverting a patch": [[136, "reverting-a-patch"]], "Right of access (Article 15)": [[111, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[111, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[111, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[111, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[111, "right-to-restriction-of-processing-article-18"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[150, "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": [[175, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[123, "selinux"]], "SELinux configuration": [[131, null]], "SELinux configuration tips": [[133, "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": [[116, "smtp-timeout"]], "SQLite": [[140, "sqlite"], [146, "sqlite"]], "SQLite database": [[120, "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"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[151, "schema-inspection"]], "Schema maintenance": [[151, "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"], [178, "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": [[157, "secure-view-settings"]], "Security": [[155, "security"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Serve security related headers by the Web server": [[126, "serve-security-related-headers-by-the-web-server"]], "Server": [[134, "server"]], "Server and web server logs": [[107, "server-and-web-server-logs"], [110, "server-and-web-server-logs"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[132, 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": [[138, "service-discovery"]], "Session data": [[110, "session-data"]], "Session lifetime": [[107, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[149, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[149, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[149, "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": [[133, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[123, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[179, "setting-up-the-workspace-connection"]], "Settings": [[132, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[172, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[126, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[155, "setup-checks"]], "Setup deploy daemon": [[95, "setup-deploy-daemon"]], "Setup fail2ban": [[126, "setup-fail2ban"]], "Share operations": [[155, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[113, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[116, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[147, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Sizing": [[132, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[132, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[116, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[155, "snowflake-ids"], [176, "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": [[178, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[155, "status"]], "Status Checks": [[99, "status-checks"]], "Status and control": [[152, "status-and-control"]], "Status return code": [[155, "status-return-code"]], "Step-by-Step Manual Upgrade": [[142, "step-by-step-manual-upgrade"]], "Storage of access tokens": [[126, "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": [[112, "subscriptions"]], "Summary": [[92, "summary"]], "Summary table": [[107, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[129, "suppressing-log-messages"]], "Sync": [[151, "sync"]], "Sync tokens": [[112, "sync-tokens"], [113, "sync-tokens"]], "Synchronising with clients after data recovery": [[146, "synchronising-with-clients-after-data-recovery"]], "Synchronous indexing": [[3, "synchronous-indexing"]], "System & maintenance commands": [[155, null]], "System Address Book": [[113, "system-address-book"]], "System Tag Events": [[178, "system-tag-events"]], "System Tags": [[156, "system-tags"]], "System address book": [[175, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[170, "system-email"]], "System environment variables": [[133, "system-environment-variables"]], "System requirements": [[134, null], [170, "system-requirements"], [171, "system-requirements"], [172, "system-requirements"], [173, "system-requirements"], [174, "system-requirements"], [175, "system-requirements"], [176, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [178, "systemd-service"]], "TLS / encryption app": [[132, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[178, "tables-app-events"]], "Talk (chat and calls)": [[110, "talk-chat-and-calls"]], "Talk App": [[134, "talk-app"]], "Talk tools": [[2, "talk-tools"]], "Target Audience": [[119, "target-audience"]], "Task processing": [[1, "task-processing"], [155, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[99, 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": [[167, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[114, "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], [155, "theming"]], "Thread Summary": [[116, "thread-summary"]], "Timeout and other connectivity issues": [[118, "timeout-and-other-connectivity-issues"]], "Timeouts": [[116, "timeouts"]], "Tips and tricks": [[129, "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": [[116, "translation"]], "Trash bin": [[107, "trash-bin"], [112, "trash-bin"], [153, "trash-bin"]], "Trashbin": [[153, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [93, null], [118, null], [131, "troubleshooting"], [132, "troubleshooting"], [142, "troubleshooting"], [147, "troubleshooting"], [164, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[138, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[138, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[138, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[138, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[138, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[138, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[138, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[128, "trusted-domains"]], "Trusted proxy not detected when using a Unix domain socket": [[129, "trusted-proxy-not-detected-when-using-a-unix-domain-socket"]], "Tune PHP-FPM": [[132, "tune-php-fpm"]], "Tuning your database": [[132, "tuning-your-database"]], "Two-factor authentication": [[80, null], [156, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[118, "unable-to-update-contacts-or-events"]], "Uninstallation": [[135, null]], "Unregister": [[97, "unregister"], [98, "unregister"]], "Update": [[98, "update"]], "Update notifications": [[16, "update-notifications"], [148, "update-notifications"]], "Update the reverse proxy configuration": [[162, "update-the-reverse-proxy-configuration"]], "Updating": [[158, "updating"]], "Upgrade distribution packages": [[162, "upgrade-distribution-packages"]], "Upgrade manually": [[142, null]], "Upgrade quickstart": [[145, "upgrade-quickstart"]], "Upgrade the docker image": [[162, "upgrade-the-docker-image"]], "Upgrade tips": [[145, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[170, null]], "Upgrade to Nextcloud 27": [[171, null]], "Upgrade to Nextcloud 28": [[172, null]], "Upgrade to Nextcloud 30": [[173, null]], "Upgrade to Nextcloud 31": [[174, null]], "Upgrade to Nextcloud 32": [[175, null]], "Upgrade to Nextcloud 33": [[176, null]], "Upgrade via built-in updater": [[147, null]], "Upgrade via snap packages": [[145, null]], "Upload of files greater than 10 MiB fails": [[129, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[97, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[126, "use-https"]], "Use OOXML by default for new files": [[157, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[126, "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": [[116, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[156, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[116, "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": [[156, "user-commands"]], "User deletion": [[114, "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": [[116, "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": [[138, "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": [[132, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[147, "using-a-custom-download-url"]], "Using a self hosted apps store": [[16, "using-a-self-hosted-apps-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[132, "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 Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[147, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [150, null]], "Using the web based updater": [[147, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Versions": [[153, "versions"]], "Voice Chat": [[1, "voice-chat"]], "Warnings on admin page": [[70, null]], "Web browser": [[134, "web-browser"]], "Web server and PHP modules": [[138, "web-server-and-php-modules"]], "Web server configuration": [[170, "web-server-configuration"], [171, "web-server-configuration"], [172, "web-server-configuration"], [173, "web-server-configuration"], [175, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[178, null]], "Webhook listeners": [[155, "webhook-listeners"]], "Webserver Log Files": [[93, "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?": [[147, "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?": [[167, "where-can-it-be-used"]], "Where do they appear?": [[166, "where-do-they-appear"]], "Who develops Nextcloud?": [[119, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[137, "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": [[134, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[179, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[157, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[155, "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": [[116, "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": [[155, "admin-delegation-add"]], "admin-delegation:remove": [[155, "admin-delegation-remove"]], "admin-delegation:show": [[155, "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"]], "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": [[155, "background-job-delete"]], "background-job:execute": [[155, "background-job-execute"]], "background-job:list": [[155, "background-job-list"]], "background-job:worker": [[155, "background-job-worker"]], "background:cron": [[155, "background-cron"]], "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": [[151, "calendar-export"]], "calendar:import": [[151, "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_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": [[151, "dav-absence-get"]], "dav:absence:set": [[151, "dav-absence-set"]], "dav:clear-calendar-unshares": [[151, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[151, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[151, "dav-create-addressbook"]], "dav:create-calendar": [[151, "dav-create-calendar"]], "dav:create-subscription": [[151, "dav-create-subscription"]], "dav:delete-calendar": [[151, "dav-delete-calendar"]], "dav:delete-subscription": [[151, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[151, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[151, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[151, "dav-list-calendar-shares"]], "dav:list-calendars": [[151, "dav-list-calendars"]], "dav:list-subscriptions": [[151, "dav-list-subscriptions"]], "dav:move-calendar": [[151, "dav-move-calendar"]], "dav:remove-invalid-shares": [[151, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[151, "dav-retention-clean-up"]], "dav:send-event-reminders": [[151, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[151, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[151, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[151, "db-add-missing-columns"]], "db:add-missing-indices": [[151, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[151, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[151, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[151, "db-convert-mysql-charset"]], "db:convert-type": [[151, "db-convert-type"]], "db:schema:expected": [[151, "db-schema-expected"]], "db:schema:export": [[151, "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": [[152, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[152, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[152, "encryption-decrypt-all"]], "encryption:disable": [[152, "encryption-disable"]], "encryption:disable-master-key": [[152, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[152, "encryption-drop-legacy-filekey"]], "encryption:enable": [[152, "encryption-enable"]], "encryption:enable-master-key": [[152, "encryption-enable-master-key"]], "encryption:encrypt-all": [[152, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[152, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[152, "encryption-fix-key-location"]], "encryption:list-modules": [[152, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[152, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[152, "encryption-recover-user"]], "encryption:scan:legacy-format": [[152, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[152, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[152, "encryption-show-key-storage-root"]], "encryption:status": [[152, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[153, "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": [[153, "files-cleanup"]], "files:copy": [[153, "files-copy"]], "files:delete": [[153, "files-delete"]], "files:get": [[153, "files-get"]], "files:mount:list": [[153, "files-mount-list"]], "files:mount:refresh": [[153, "files-mount-refresh"]], "files:move": [[153, "files-move"]], "files:object:delete": [[153, "files-object-delete"]], "files:object:get": [[153, "files-object-get"]], "files:object:info": [[153, "files-object-info"]], "files:object:list": [[153, "files-object-list"]], "files:object:orphans": [[153, "files-object-orphans"]], "files:object:put": [[153, "files-object-put"]], "files:put": [[153, "files-put"]], "files:reminders": [[153, "files-reminders"]], "files:repair-tree": [[153, "files-repair-tree"]], "files:sanitize-filenames": [[153, "files-sanitize-filenames"]], "files:scan": [[153, "files-scan"]], "files:scan-app-data": [[153, "files-scan-app-data"]], "files:transfer-ownership": [[153, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[153, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[155, "files-antivirus-background-scan"]], "files_antivirus:mark": [[155, "files-antivirus-mark"]], "files_antivirus:scan": [[155, "files-antivirus-scan"]], "files_antivirus:status": [[155, "files-antivirus-status"]], "files_external:applicable": [[153, "files-external-applicable"]], "files_external:backends": [[153, "files-external-backends"]], "files_external:config": [[153, "files-external-config"]], "files_external:create": [[153, "files-external-create"]], "files_external:delete": [[153, "files-external-delete"]], "files_external:dependencies": [[153, "files-external-dependencies"]], "files_external:export": [[153, "files-external-export"]], "files_external:import": [[153, "files-external-import"]], "files_external:list": [[153, "files-external-list"]], "files_external:notify": [[153, "files-external-notify"]], "files_external:option": [[153, "files-external-option"]], "files_external:scan": [[153, "files-external-scan"]], "files_external:verify": [[153, "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": [[156, "group-add"]], "group:adduser and group:removeuser": [[156, "group-adduser-and-group-removeuser"]], "group:delete": [[156, "group-delete"]], "group:info": [[156, "group-info"]], "group:list": [[156, "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": [[155, "info-file"]], "info:file:space": [[155, "info-file-space"]], "info:storage": [[155, "info-storage"]], "info:storages": [[155, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[153, "integrity-check-app"]], "integrity:check-core": [[153, "integrity-check-core"]], "integrity:sign-app": [[153, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[154, "ldap-check-group"]], "ldap:check-user": [[154, "ldap-check-user"]], "ldap:create-empty-config": [[154, "ldap-create-empty-config"]], "ldap:delete-config": [[154, "ldap-delete-config"]], "ldap:search": [[154, "ldap-search"]], "ldap:set-config": [[154, "ldap-set-config"]], "ldap:show-remnants": [[154, "ldap-show-remnants"]], "ldap:test-config": [[154, "ldap-test-config"]], "ldap:test-user-settings": [[154, "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": [[155, "log-file"]], "log:manage": [[155, "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": [[155, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[155, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[155, "maintenance-mode"]], "maintenance:repair": [[155, "maintenance-repair"]], "maintenance:repair-share-owner": [[155, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[155, "maintenance-theme-update"]], "maintenance:update:htaccess": [[155, "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.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"]], "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"]], "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": [[153, "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": [[155, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[155, "security-bruteforce-reset"]], "security:certificates": [[155, "security-certificates"]], "security:certificates:export": [[155, "security-certificates-export"]], "security:certificates:import": [[155, "security-certificates-import"]], "security:certificates:remove": [[155, "security-certificates-remove"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[153, "share-list"], [155, "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": [[153, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[153, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[153, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[153, "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"]], "systemtags.managerFactory": [[60, "systemtags-managerfactory"]], "tag:add": [[156, "tag-add"]], "tag:delete": [[156, "tag-delete"]], "tag:edit": [[156, "tag-edit"]], "tag:list": [[156, "tag-list"]], "taskprocessing:task-type:set-enabled": [[155, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[155, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[155, "taskprocessing-task-get"]], "taskprocessing:task:list": [[155, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[155, "taskprocessing-task-stats"]], "taskprocessing:worker": [[155, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[155, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[153, "trashbin-cleanup"], [153, "id1"]], "trashbin:expire": [[153, "trashbin-expire"], [153, "id2"]], "trashbin:restore": [[153, "trashbin-restore"]], "trashbin:size": [[153, "trashbin-size"], [153, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[156, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[156, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[156, "twofactorauth-enforce"]], "twofactorauth:state": [[156, "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:add": [[156, "user-add"]], "user:auth-tokens:add": [[156, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[156, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[156, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[156, "user-clear-avatar-cache"]], "user:delete": [[156, "user-delete"]], "user:disable and user:enable": [[156, "user-disable-and-user-enable"]], "user:info": [[156, "user-info"]], "user:keys:verify": [[156, "user-keys-verify"]], "user:lastseen": [[156, "user-lastseen"]], "user:list": [[156, "user-list"]], "user:profile": [[156, "user-profile"]], "user:report": [[156, "user-report"]], "user:resetpassword": [[156, "user-resetpassword"]], "user:setting": [[156, "user-setting"]], "user:sync-account-data": [[156, "user-sync-account-data"]], "user:welcome": [[156, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[153, "versions-cleanup"], [153, "id4"]], "versions:expire": [[153, "versions-expire"], [153, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[155, "workflows-list"]], "\u201cAccess through untrusted domain\u201d error with HTTP/3": [[129, "access-through-untrusted-domain-error-with-http-3"]], "\u201cCSync unknown error\u201d": [[93, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[93, "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/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_system", "occ_users", "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_notes/upgrade_to_33", "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/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_system.rst", "occ_users.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_notes/upgrade_to_33.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, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 124, 126, 129, 130, 131, 132, 133, 136, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 159, 164, 172, 175, 176, 177, 178], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 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, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 117, 118, 124, 126, 128, 129, 130, 132, 134, 138, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 164, 171, 172, 173, 174, 175, 177, 178], "00": [22, 23, 55, 59, 60, 67, 153, 155, 156], "000": [29, 112, 113, 119], "0000": 155, "001": 60, "0022": 60, "00679e": 155, "0082c9": [72, 155], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 134, 151, 153, 155, 156], "0100": 63, "0123": 76, "01t00": 153, "01t08": 156, "01t09": 153, "01t12": 153, "01t14": 155, "02": [6, 59, 67, 153], "03": [55, 67, 129, 156], "04": [22, 72, 88, 127, 133, 134, 153, 160, 161], "05": [57, 60, 129, 151, 153], "050": 155, "055": 22, "06": 155, "062": 22, "0640": [60, 67], "07": 60, "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 118, "08": [60, 153], "09": 67, "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 137, "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, 95, 96, 98, 99, 107, 112, 113, 116, 118, 124, 126, 128, 129, 130, 132, 133, 136, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 158, 164, 170, 171, 173, 174, 175, 176, 177, 178], "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, 93, 96, 112, 113, 116, 123, 132, 134, 144, 153, 155, 156, 157, 173, 174, 178], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 116, 119, 132, 155, 164, 172, 177], "1000": [5, 81, 93, 124, 132], "10000": [59, 124], "1000000": 93, "10000000": 93, "1002": 178, "100mb": [3, 8, 76, 93], "100mib": 174, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 116, 132], "103": [75, 76], "103f": 154, "104": 76, "1040": 138, "10485760": 56, "104857600": [26, 48, 60, 67], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 153], "10m": 155, "10mib": 174, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 118, 134, 148, 153, 155, 156, 162, 178], "110": [63, 76], "111": [60, 76], "1110": 156, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 176, "12": [60, 65, 76, 88, 106, 129, 134, 149, 150, 155, 156, 173], "120": 9, "123": [18, 60, 178], "1234": 4, "12345": [8, 76, 155], "1255": 132, "127": [59, 60, 63, 96, 99, 126, 128, 129, 151, 155, 158, 164], "128": [60, 81], "128m": [22, 59], "128mb": 134, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 108, 134, 144, 156, 176], "1319": 60, "1393": 118, "14": [22, 43, 67, 83, 105, 108, 134, 144, 153, 155], "143": 63, "1465910968": 156, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 106, 107, 110, 112, 113, 116, 134, 144, 151, 155, 156], "1524": 63, "155": 60, "15552000": [70, 126], "1575981518": 155, "15768000": 124, "15778463": 129, "15857": 56, "15m": 116, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 126, 132, 134, 144], "16000": 8, "162409623552": 156, "162409624662": 156, "164": 81, "168": [22, 41, 52, 60, 63, 67, 96, 126, 128, 155], "16g": 26, "17": [88, 134, 147, 156, 178], "1700001000": 178, "1700001200": 178, "1700001234": 178, "1700054321": 178, "1700099500": 178, "1700100000": 178, "1700100500": 178, "1702606600": 178, "1711971024": 178, "1736283": 178, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 134, 148, 155, 156], "180": [53, 107], "1800": [60, 112, 113], "19": [60, 148, 149, 150], "192": [22, 41, 52, 60, 63, 67, 96, 126, 128, 155], "1941": 81, "19417": 118, "19563": 59, "1970": 134, "198": 60, "19c": 134, "19fa45b394": 178, "19t08": 156, "1d": [70, 116], "1d4725ae1ac4e4798b541ca3f3cdce6": 118, "1gb": [2, 6, 26], "1h": [116, 155], "1st": [88, 141, 178], "1und1": 116, "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, 95, 96, 105, 116, 118, 121, 124, 126, 127, 128, 129, 130, 134, 144, 147, 148, 149, 150, 151, 152, 155, 156, 165, 170, 171, 172, 175, 176, 178, 179], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 106, 116, 118, 144, 148, 156], "200": [82, 83, 153], "2000": 22, "2001": 60, "2002": 138, "2005": 60, "2006": [88, 138], "20080704": 22, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 155], "2020": 118, "2021": [67, 123], "2024": [88, 90, 129, 156, 178], "2025": [4, 88, 90, 155, 178], "20251111t100000z": 178, "2026": [88, 90, 129, 151, 153, 155], "203": 60, "2038": 134, "2048": [5, 81], "204800": [153, 155], "20971520": 26, "20mb": 26, "20t17": 156, "21": [33, 60, 67, 129, 149, 162], "2100": 106, "215": 89, "21a7": 60, "21c": 134, "22": [37, 55, 63, 134, 153, 178], "220": [63, 178], "221": 63, "222": 60, "22203": 59, "2245": 63, "23000": 95, "2323": 60, "233": 60, "2375": [96, 97], "23999": 95, "23ai": 134, "23t07": 155, "23t08": 155, "23t09": 155, "23t10": 155, "24": [3, 43, 44, 58, 60, 72, 73, 88, 93, 96, 106, 107, 110, 114, 127, 133, 134, 148, 160, 161, 174], "24000": [96, 97], "24001": 96, "24099": 96, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 113, 129, 144, 148, 155], "250": 63, "2500": 60, "252": 60, "255": 60, "256": [29, 47, 60, 129], "256mb": 134, "2592000": [73, 112, 155], "26": [6, 63, 88, 112, 113, 116, 129, 134, 144, 148, 156, 169, 177], "261535": 118, "262086": 118, "262087": 118, "26396": 136, "2668": 155, "27": [88, 113, 142, 144, 148, 155, 169, 177], "28": [7, 18, 60, 88, 117, 142, 144, 147, 148, 169, 171, 177], "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 142, 144, 147, 148], "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 118, "2f": 82, "2fa": [80, 116, 156], "2fldap": 82, "2g": 18, "2gb": [3, 26, 153], "2h": 155, "2k": 22, "2m": 22, "2nd": 81, "2x": 174, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 95, 116, 121, 126, 128, 130, 132, 133, 134, 138, 144, 147, 148, 150, 153, 155, 156, 166, 172, 173, 174, 175, 177, 178], "30": [3, 8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 95, 107, 110, 112, 113, 116, 118, 132, 144, 147, 155, 156, 169, 174, 175], "300": [60, 83, 96, 116, 129], "30000": [112, 113], "301": [69, 124, 126, 129, 138], "3010": 92, "302": 129, "30566": 51, "3060": 95, "31": [10, 50, 55, 60, 88, 106, 118, 123, 144, 169], "3100": 175, "31308": 38, "31536000": 129, "3166": 60, "31d4a230559d4f3e2c471d3ea094": 137, "32": [15, 22, 26, 29, 31, 48, 50, 60, 88, 112, 113, 134, 169, 179], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 52, 88, 112, 147, 152, 153, 169, 179], "3306": [20, 63, 128], "34": [147, 178], "34262": 132, "35": 28, "36": [22, 67], "3600": [26, 60, 81, 116, 124, 155], "365": [53, 60, 73, 107, 110], "37": [60, 67, 118], "38": 155, "389": [81, 82], "39": 63, "399": 178, "3a": 82, "3mb": 116, "3rd": [60, 63, 138, 142, 148, 157, 165, 167], "3rdparti": [88, 123, 129, 131], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 116, 118, 123, 126, 129, 130, 132, 134, 140, 142, 148, 150, 155, 157, 162, 170, 173, 174, 175, 177, 178], "40": 55, "400": [11, 119], "4000": 5, "40000": 8, "404": 129, "4086": 126, "4096": [5, 60, 178], "41": 96, "41395": 172, "42": [14, 60, 153, 155, 156, 178], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 137, "43200": 126, "437": 178, "438": 178, "4389": 67, "44": 156, "441": 155, "4418": 63, "443": [48, 60, 124, 126, 129, 158], "444": 124, "45": 60, "450": 6, "456": 76, "46": 156, "465": 63, "46cfa6e729ff329e6ede076853154113": 118, "47": [56, 156], "48": [58, 93], "483": 118, "49": [60, 118], "4966612345678": 81, "497": 118, "4a87e94522a3cf26dba8977ae901094d": 118, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 129, "5": [0, 1, 2, 3, 15, 16, 48, 57, 59, 60, 67, 85, 96, 101, 107, 112, 113, 116, 118, 124, 126, 132, 133, 134, 138, 147, 148, 149, 150, 153, 155, 156, 173, 176, 178], "50": [41, 44, 60, 83, 85, 93, 112, 113, 116, 128, 132, 153, 155], "500": [28, 60, 82, 85, 132, 138, 155, 156], "5000": [60, 112, 113, 175], "50000000": 93, "500mb": 3, "501": 118, "502": [88, 132], "504": [26, 129, 132], "50m": 60, "51": [60, 83, 178], "511": 60, "512": [38, 118, 124, 147, 153], "512k": 129, "512m": 129, "512mb": [46, 88, 129, 130, 134], "512x512": 9, "513": 118, "513m": 124, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 93, "52428800": 63, "524288000": [48, 60], "5242880000": 48, "53": 26, "537": 67, "537919488": 124, "5432": 128, "55": [63, 67, 153], "5545": 151, "56": [22, 60, 63, 67], "5646": 60, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 118], "599": 178, "5e": 55, "5f": 55, "5gb": [6, 153], "5min": 57, "5pm": 101, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 112, 116, 118, 124, 130, 134, 143, 150, 155, 162, 174], "60": [15, 22, 47, 60, 73, 106, 107, 119, 129, 132, 178], "600": [81, 82], "6000": 93, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 118, "62x34": 72, "63072000": 73, "631": 63, "6321": 151, "636": 81, "6379": [45, 59, 60, 123, 124], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 129, 134], "640": 142, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 155, "68": 67, "6f": 55, "7": [3, 15, 29, 43, 53, 56, 60, 67, 72, 107, 114, 116, 123, 129, 130, 134, 143, 144, 153, 155, 170, 177, 178], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "70b": 5, "71d5": 154, "72": 126, "7200": 116, "7265": 151, "73": 55, "750": 142, "767": 60, "77": 11, "770": 59, "78": 175, "789": 76, "7b": [5, 11, 55], "7d": 129, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 95, 116, 118, 126, 127, 129, 130, 132, 133, 134, 138, 144, 155, 170, 171, 172, 173, 174, 175, 176], "80": [6, 47, 55, 63, 123, 126, 129, 132, 133], "8000": 5, "800mb": 10, "8080": [60, 96, 133], "8081": 60, "8088": 60, "8096": 29, "8147": 29, "8192": 29, "8283": 28, "83": 118, "83379f9bc36915d5024de878386060b5": 118, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 156, "8601": 60, "86400": [81, 126], "8651a9ac37674907606c936ced1333d7": 118, "8780": [96, 97], "8781": 96, "8782": [96, 97], "8802": 129, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 137, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2, 5], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 118, "8e9f60369dce3d8b2b27430bd50ec46d": 118, "8gb": [3, 5, 9], "8m": 132, "9": [15, 17, 22, 28, 41, 60, 81, 85, 101, 116, 134, 150, 173, 178], "90": [1, 22, 53, 107, 132], "9000": [129, 132], "9031": 8, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 137, "94": 118, "95": [11, 55, 60], "95a8": 154, "95af": 154, "9651": 178, "97": [55, 118], "98": 156, "9825679": 2, "9839": 118, "98543234": 2, "9876": 81, "99": 60, "993": [63, 118], "995": 63, "9980": [158, 163], "9999": [48, 81], "9_": 81, "9am": 101, "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 95, 96, 106, 107, 111, 112, 114, 116, 118, 119, 124, 126, 128, 129, 132, 133, 134, 137, 138, 142, 143, 146, 150, 153, 155, 158, 161, 166, 170, 177], "AND": [67, 111, 138], "And": [31, 38, 48, 57, 59, 63, 124, 142, 147, 154, 177], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 77, 83, 93, 95, 101, 111, 112, 118, 123, 124, 126, 143, 144, 172, 177, 179], "At": [0, 1, 2, 3, 5, 6, 9, 11, 63, 67, 70, 80, 81, 112, 113, 143], "BY": [22, 125], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 95, 96, 112, 129, 138, 164], "But": [47, 50, 58, 60, 96, 174], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 77, 80, 81, 85, 94, 98, 112, 116, 126, 129, 133, 137, 145, 146, 149, 151, 155, 156, 157, 159, 177, 178], "For": [1, 6, 7, 8, 12, 14, 15, 16, 22, 23, 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, 99, 107, 108, 111, 112, 113, 114, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 161, 162, 172, 175, 176, 177, 178, 179], "IF": [22, 125], "IT": 133, "If": [3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 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, 95, 96, 97, 101, 107, 111, 112, 113, 114, 116, 117, 118, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 172, 173, 174, 175, 176, 177, 178, 179], "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, 93, 95, 96, 97, 99, 101, 102, 112, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 142, 144, 146, 147, 149, 150, 157, 161, 164, 166, 172, 178, 179], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 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, 101, 102, 108, 109, 112, 114, 117, 118, 119, 121, 124, 126, 128, 129, 130, 131, 132, 133, 135, 137, 138, 142, 143, 146, 147, 148, 149, 152, 155, 157, 164, 170, 172, 174, 175, 177, 178, 179], "Its": [58, 107, 132], "NO": 143, "NOT": [22, 59, 60, 96, 125], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 95, 102, 106, 108, 132, 138, 147, 151, 152, 153, 155, 156, 164], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 93, 118, 132, 156], "ON": [22, 23, 60, 125], "OR": 67, "Of": [106, 128, 138, 179], "On": [3, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 93, 96, 106, 123, 125, 133, 138, 143, 145, 151, 155, 158, 177], "One": [3, 8, 12, 43, 48, 93, 95, 133, 161], "Or": [1, 94, 133], "TO": [22, 60, 125], "That": [22, 27, 56, 60, 62, 63, 81, 112, 113, 116, 142, 158], "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, 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, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 162, 163, 164, 165, 166, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179], "Their": [151, 156], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 124, 125, 126, 132, 133, 142, 143, 147, 148, 151, 154, 177], "There": [3, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 93, 96, 97, 98, 105, 107, 121, 126, 133, 135, 137, 138, 143, 148, 152, 155, 161, 166], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 60, 70, 77, 80, 81, 83, 92, 93, 96, 110, 111, 116, 123, 126, 130, 132, 133, 136, 142, 147, 148, 149, 153, 154, 155, 157, 169, 177, 179], "To": [3, 4, 13, 16, 22, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 98, 107, 108, 111, 112, 113, 116, 117, 118, 119, 120, 124, 125, 126, 129, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 167, 172, 177, 178, 179], "WITH": 22, "Will": [43, 154], "With": [0, 29, 43, 60, 63, 77, 96, 119, 129, 138, 148, 155, 166, 174], "_": [81, 85, 153], "__host": [65, 88, 106], "_arm64": 129, "_bin": 60, "_complet": 150, "_groupsr": 126, "_ping": 96, "_postgresql": 124, "_static": 60, "a2enmod": [133, 158], "a2ensit": 133, "a3b30430b1ccb41089170eecbe315d3a": 118, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 140, "aax": 146, "abbrevi": 85, "abc123": [153, 155], "abc123def456": 178, "abil": [6, 14, 58, 103, 128, 133, 157], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 93, 95, 97, 99, 101, 102, 112, 116, 126, 130, 133, 145, 160, 163, 164], "abort": [60, 80], "about": [1, 2, 3, 6, 7, 8, 11, 16, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 93, 96, 112, 116, 117, 118, 123, 126, 129, 132, 133, 136, 137, 138, 143, 148, 149, 152, 153, 154, 155, 156, 164, 172, 174, 175, 176, 179], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 72, 77, 81, 87, 88, 93, 96, 97, 112, 118, 121, 123, 126, 128, 129, 133, 137, 138, 142, 147, 149, 150, 172, 178], "absenc": [81, 88], "absent": [151, 178], "absolut": [16, 60, 69, 81, 98, 138, 149], "absorb": 132, "abstract": [132, 135], "abund": 138, "abus": 88, "abuse_detect": 116, "abuse_number_of_messages_per_15m": 116, "abuse_number_of_messages_per_1d": 116, "abuse_number_of_messages_per_1h": 116, "abuse_number_of_recipients_per_message_threshold": 116, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 31, 32, 40, 41, 48, 60, 63, 66, 67, 70, 84, 93, 96, 97, 111, 116, 117, 150, 153, 155, 164, 178, 179], "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, 92, 93, 95, 96, 97, 99, 102, 104, 105, 106, 107, 108, 110, 113, 114, 118, 119, 123, 127, 128, 132, 133, 138, 143, 146, 147, 152, 153, 155, 156, 160, 164, 167, 177, 178], "access_log": [93, 129], "accessible_featur": 88, "accident": [98, 107, 147], "acclaim": 5, "accommod": [93, 142, 148], "accomplish": 112, "accord": [12, 44, 60, 81, 89, 107, 110, 144, 153, 157, 161], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 96, 138], "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, 93, 107, 111, 114, 115, 128, 130, 133, 150, 153, 154, 155, 160, 178, 179], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 118, "accountmanag": [60, 77], "accumul": 93, "accur": [138, 148, 172], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 117, 126], "acl": [53, 59, 60, 69, 116], "acm": [72, 96, 129, 155], "acquir": [59, 118], "across": [1, 7, 10, 32, 53, 59, 60, 77, 95, 106, 107, 114, 116, 130, 151, 153], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 108, 112, 178], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 81, 88, 95, 96, 104, 108, 110, 116, 127, 138, 147, 155, 156, 179], "actionjob": 3, "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 111, 112, 113, 124, 126, 130, 132, 133, 134, 138, 143, 147, 149, 152, 153, 154, 155, 156, 157, 177, 178], "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, 107, 110], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 126], "actor_id": 111, "actor_typ": 111, "actual": [1, 4, 22, 26, 29, 53, 58, 67, 70, 92, 96, 130, 138, 147, 155, 175, 178], "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, 108, 112, 113, 115, 117, 118, 124, 126, 132, 133, 134, 147, 156, 157, 160, 170, 173, 174, 175, 178, 179], "ad2dab17b2f9": 154, "adapt": [59, 96, 126, 129, 138, 143, 162, 177, 179], "add": [0, 2, 6, 12, 18, 22, 23, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 95, 96, 97, 108, 110, 112, 113, 116, 118, 119, 123, 124, 126, 129, 132, 133, 138, 140, 143, 144, 148, 149, 150, 153, 157, 158, 164, 165, 171, 172, 173, 176, 178, 179], "add_head": [26, 129], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 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, 93, 94, 95, 96, 98, 99, 100, 110, 112, 123, 125, 126, 128, 130, 131, 132, 134, 135, 137, 138, 142, 150, 153, 155, 156, 160, 177, 178, 179], "addition": [12, 41, 59, 81, 83, 112, 113, 138, 175, 179], "additional_opt": 96, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 95, 96, 97, 99, 101, 107, 108, 110, 115, 116, 127, 128, 129, 133, 143, 145, 148, 151, 153, 155, 156, 157, 177], "address_of_remote_machin": 96, "addressbook": [41, 60, 88, 113, 114, 126, 138], "addressbookchang": 113, "addressbookid": 138, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 112, 113, 134], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 93, 96, 107, 124, 129, 130, 131, 132, 133, 134, 138, 142, 144, 162, 173, 174, 175, 177, 178], "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, 93, 95, 96, 99, 111, 112, 113, 116, 117, 118, 120, 121, 123, 127, 132, 133, 137, 138, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 156, 157, 158, 159, 172, 177, 178, 179], "admin_": 178, "admin_audit": [53, 88, 107, 110, 111], "admin_manu": 60, "administ": [119, 155], "administr": [0, 1, 2, 6, 14, 16, 22, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 96, 101, 103, 105, 107, 108, 109, 110, 111, 112, 116, 119, 126, 128, 133, 138, 145, 148, 153, 155, 156, 164, 165, 172, 175, 177, 178], "adminlogin": 120, "adminpass": 120, "adminw": [158, 163], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 97, 100, 120, 133, 161, 179], "advantag": [29, 32, 57, 88, 120], "advertis": [57, 60], "advic": [60, 109], "advis": [8, 157, 174, 179], "ae": [3, 29, 60, 132], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 93, 101, 118, 132, 134, 151, 153, 162], "after": [1, 4, 8, 14, 15, 16, 18, 20, 22, 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, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 113, 114, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 141, 142, 143, 144, 145, 147, 148, 150, 151, 152, 153, 155, 156, 157, 158, 159, 164, 172, 177, 178, 179], "afterward": [58, 80, 81, 116, 133, 144, 146, 147, 152, 158], "ag": [7, 46, 60, 85, 88, 104, 107, 124, 126, 129, 153, 155], "again": [16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 93, 101, 112, 114, 117, 118, 123, 124, 142, 144, 147, 148, 149, 152, 164], "against": [0, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 102, 132, 147, 151, 153, 177, 178, 179], "agenda": 116, "agent": [5, 12, 13, 60, 64, 67, 88, 101], "aggreg": 60, "aggress": 177, "agpl": 17, "agplv3": 16, "agre": 126, "agreement": 12, "ahead": 177, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 95, 116, 155, 179], "ai_provid": 8, "aim": [126, 162], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 95, 100, 130, 132, 133, 178], "air": 147, "ajax": [53, 88, 116, 129, 149, 155, 157], "aka": 133, "akiaiosfodnn7exampl": 153, "alarm": [88, 115], "albert": 156, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 96, 97, 118, 126, 146], "alia": [81, 116, 133, 156], "alias": 88, "aliasgroup1": 158, "aliasgroup2": 158, "alic": [18, 40, 77, 81, 178], "alice_1337": 81, "align": [63, 107], "aliv": [60, 132], "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, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 95, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 128, 129, 131, 132, 133, 135, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 160, 161, 162, 165, 172, 175, 177, 178, 179], "allenai": [5, 11], "alloc": [47, 60, 132], "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, 94, 95, 96, 98, 101, 102, 105, 106, 108, 113, 114, 116, 117, 126, 127, 128, 129, 130, 132, 133, 134, 147, 149, 150, 153, 155, 156, 157, 161, 164, 165, 173, 178, 179], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 116], "allow_persist": 22, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 126], "allowed_user_ag": 88, "allowencodedslash": 158, "allowlist": 176, "allowoverrid": [123, 133, 138], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 96, "almost": [60, 81, 133], "alon": [77, 179], "along": [3, 5, 20, 44, 60, 119, 126, 128], "alongsid": [60, 129, 151], "alpin": 134, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 93, 96, 99, 113, 114, 116, 120, 124, 126, 128, 130, 131, 132, 133, 138, 144, 147, 149, 151, 152, 153, 155, 162, 172, 177, 179], "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, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 162, 164, 165, 172, 173, 174, 175, 176, 177, 178, 179], "alter": [12, 22, 23, 44, 49, 81, 174], "altern": [2, 26, 50, 57, 65, 88, 93, 130, 133, 136, 140, 149, 150, 155], "although": [43, 132, 150], "altitud": 126, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 16, 29, 39, 40, 43, 44, 53, 56, 58, 60, 66, 67, 71, 72, 77, 80, 81, 91, 92, 96, 97, 119, 124, 126, 128, 129, 130, 132, 137, 138, 142, 147, 148, 152, 153, 155, 158, 172, 177, 178], "am": 151, "amazon": [40, 48, 60, 88, 175], "amazonaw": 48, "amazons3": 153, "amd": 99, "american": 10, "among": [0, 3, 84, 119, 130, 177], "amongst": 95, "amount": [8, 28, 47, 59, 60, 81, 83, 93, 126, 133, 153, 175], "amp": 82, "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, 95, 96, 98, 101, 103, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 164, 166, 170, 172, 174, 175, 177, 178, 179], "analysi": 12, "analyt": 15, "analyz": [60, 116], "andrew": 2, "android": [60, 64, 65, 72, 88, 101, 119, 134], "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, 93, 94, 95, 96, 97, 98, 99, 101, 105, 107, 110, 111, 112, 113, 114, 116, 120, 126, 132, 133, 134, 137, 138, 143, 147, 148, 150, 151, 152, 153, 155, 156, 164, 165, 170, 172, 176, 177, 178, 179], "anim": [6, 60], "anna": 2, "anniversari": 177, "announc": [12, 63, 81, 126], "annual": 178, "anon": 60, "anonym": [81, 111, 126, 160], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 111, 114, 116, 126, 128, 129, 131, 135, 137, 138, 148, 151, 153, 158, 172, 173, 177], "ansi": 150, "answer": [1, 2, 60, 81, 176, 179], "anti": [56, 60, 88], "anticip": 177, "antiviru": [65, 88, 150], "anymor": [76, 81, 88, 154, 175], "anyon": [12, 43, 67, 77], "anyth": [14, 22, 31, 56, 58, 60, 112, 113, 142, 143], "anytim": [49, 60], "anywai": [92, 151], "anywher": [32, 124, 128, 155], "apach": [19, 41, 59, 60, 68, 70, 88, 93, 96, 110, 125, 126, 127, 128, 129, 132, 134, 138, 145, 150, 172], "apache2": [59, 88, 93, 125, 126, 130, 133, 138, 158], "apache2ctl": 133, "apart": 123, "apc": [59, 60, 150, 174], "apcu": [60, 65, 70, 88, 123, 130, 132, 150, 174], "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, 93, 95, 96, 99, 116, 126, 129, 132, 155, 157, 166, 172, 178, 179], "apirequest": [17, 75, 76, 77, 82, 87, 179], "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, 93, 94, 98, 99, 100, 101, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 129, 130, 131, 133, 140, 142, 144, 145, 147, 148, 150, 151, 152, 154, 155, 156, 160, 161, 164, 165, 166, 167, 172, 175, 177, 179], "app1": 149, "app2": 149, "app3": 149, "app_": 18, "app_api": [2, 3, 4, 8, 88, 96, 97, 98], "app_api_haproxy_us": 96, "app_container_nam": 96, "app_display_nam": 8, "app_host": 8, "app_id": [8, 97, 99], "app_port": 8, "app_python_skeleton": 98, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 94, 96, 97, 98, 99, 100], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 149], "appdata": [93, 153], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 93, 95, 108, 114, 120, 125, 128, 129, 132, 137, 153, 154, 155, 165, 178], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 128, 136, 147, 150], "appframework": 99, "appid": [14, 17, 96, 98, 136, 137, 155], "appimag": 134, "appinfo": [17, 137], "appl": [60, 72, 93, 134], "applewebkit": 67, "appli": [8, 12, 23, 25, 26, 27, 29, 41, 43, 44, 53, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 96, 102, 106, 107, 118, 119, 120, 126, 133, 139, 146, 147, 148, 149, 150, 153, 155, 156, 178], "applianc": [133, 143], "applic": [0, 2, 8, 12, 16, 17, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 95, 96, 101, 107, 110, 112, 116, 127, 129, 132, 133, 135, 137, 138, 142, 143, 146, 148, 150, 152, 155, 157, 177], "appnam": 149, "appoint": [61, 112], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 107, 141, 142, 177], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 96, 107, 111, 112, 116, 121, 125, 129, 132, 133, 136, 142, 143, 150, 155, 177], "approv": 88, "approve_link": 179, "approxim": [60, 81, 93, 152, 177], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 178], "apt": [56, 125, 126, 158, 159], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 22, 23, 24, 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, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 165, 166, 172, 173, 175, 177, 178, 179], "arab": 4, "arbitrari": [1, 40, 60, 129], "arch": 150, "architectur": [26, 60, 88, 99, 133, 145], "archiv": [56, 60, 88, 107, 111, 118, 123, 125, 133, 142, 147, 148, 153, 155], "area": [54, 69, 133, 167], "arg": 129, "arg_v": 129, "argon2": [60, 130], "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 129, 138, 150, 152, 153, 155, 156], "aris": [60, 143, 177], "ark": 132, "arm32v7": 150, "around": [10, 15, 16, 88, 101, 102, 177], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 96, 112, 120, 123, 124, 128, 137, 178, 179], "arrang": 177, "arraycach": 60, "arriv": [40, 69, 108, 132], "art": 126, "articl": [63, 88, 107, 108, 110, 138], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 95], "asc": [123, 125], "ascii": [60, 71, 81, 130, 137], "asdf": 67, "asid": 175, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 108, 116, 138, 146, 147, 148, 150, 152, 153, 155, 160, 166, 172], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 126, 129, 173], "asset_immut": 129, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 101, 104, 105, 132, 153, 154, 179], "assignable\u00b2": 156, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 93, 102, 116, 147], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 93, 111, 138, 143, 155, 156, 177, 178], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 96, 112, 113, 124, 126, 129, 133, 138, 143, 145, 146, 147], "assumpt": 129, "asterisk": 154, "astroc": 151, "astronomi": 151, "async": 179, "asynchron": [3, 179], "atom": [60, 129], "attach": [1, 15, 18, 38, 81, 88, 97, 178], "attack": [29, 58, 106, 126, 175], "attempt": [25, 28, 58, 78, 81, 88, 92, 93, 99, 101, 110, 126, 128, 138, 151, 152], "attend": 2, "attende": [110, 112], "attr": 82, "attr_persist": 60, "attribut": [40, 75, 76, 77, 82, 87, 88, 111, 154], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88], "audio": [1, 2, 4, 6, 12, 15, 51, 60, 171, 172], "audit": [12, 53, 60, 65, 88, 107, 111, 126, 131, 155], "auth": [58, 63, 80, 87, 88, 96, 107, 129, 153], "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, 96, 106, 107, 110, 111, 115, 126, 130, 133, 138, 143, 150, 153, 155, 170, 178], "authmiddlewar": 179, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 112, 116, 119, 130, 133, 137, 179], "authorit": [77, 146], "authorized_kei": [32, 37], "authtyp": 133, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 107, 123, 126, 153, 154], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 113, 114], "autoconfig": [60, 88, 120], "autoconfigur": [60, 118], "autocr": [48, 60], "autofil": 95, "autom": [3, 59, 60, 67, 81, 88, 92, 101, 104, 105, 118, 133, 147, 155, 156, 178, 179], "automat": [2, 3, 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, 93, 95, 96, 97, 105, 107, 108, 110, 111, 112, 113, 114, 116, 126, 127, 130, 133, 138, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 170, 172, 174, 178, 179], "autotest": 129, "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, 93, 94, 96, 97, 98, 99, 104, 105, 107, 108, 111, 112, 114, 118, 119, 123, 124, 126, 128, 130, 132, 133, 136, 138, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 160, 161, 162, 165, 166, 172, 173, 177, 178, 179], "available_ram_for_php": 132, "avatar": [63, 74, 77, 82, 88, 110, 151, 153], "avatarscop": 77, "avconv": 130, "averag": [26, 112, 113, 132, 155], "average_worker_rss": 132, "avoid": [3, 19, 22, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 93, 98, 102, 107, 128, 130, 147, 155, 178], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 123, 131, 175], "awai": [18, 88, 112, 132, 138, 143], "await": 179, "awar": [8, 77, 81, 93, 108, 126], "awk": 132, "ax": 59, "axi": 47, "azur": [88, 115], "b": [40, 60, 96, 153], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 137, "b4af8db0ae269d73432e9a01e63a": 137, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 137, "back": [3, 25, 26, 28, 38, 56, 58, 60, 63, 96, 101, 113, 114, 128, 129, 135, 138, 140, 142, 143, 147, 148, 152], "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, 111, 113, 119, 126, 128, 129, 132, 133, 143, 154, 155, 156, 175], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 81, 83, 88, 111, 114, 127, 144, 148, 150, 151, 153, 178, 179], "background_color": [72, 155], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "backgroundcolor": 72, "backgroundjob": [3, 155, 178], "backport": [136, 177], "backportbot": 136, "backslash": 178, "backtrac": [67, 88, 132], "backup": [23, 46, 47, 60, 80, 88, 111, 116, 133, 135, 138, 141, 142, 143, 144, 147, 148, 149, 153, 155, 156, 162, 177], "backup_cod": 156, "backward": [22, 82], "bad": [5, 88, 126, 132], "badger": 64, "bak": [140, 146], "balanc": [26, 40, 59, 69, 81, 88, 128, 132], "ban": 126, "bandwidth": [26, 129], "banner": [81, 148], "bantim": 126, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 135], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 96, 99, 101, 102, 107, 123, 124, 126, 127, 129, 130, 133, 134, 141, 142, 143, 148, 150, 153, 155, 160, 162, 177, 178, 179], "base64": [29, 31, 48, 60, 147, 152], "base64_signature_her": 147, "basenam": [60, 173], "baseurl": 179, "bash": [34, 123, 133, 150], "bash_profil": 150, "basi": [57, 106], "basic": [17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 96, 123, 126, 132, 133, 138, 147, 170, 179], "batch": [11, 81, 88, 141, 154, 156], "bc95cbaff3abbed716e1d40bbdaa58a0": 118, "bcrypt": [126, 130], "bearer": [2, 68, 74, 88], "beauti": 179, "becaus": [19, 20, 22, 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, 106, 112, 116, 118, 120, 123, 126, 128, 131, 132, 133, 134, 138, 142, 147, 149, 152, 153, 156, 178], "becom": [40, 43, 60, 69, 88, 132, 133, 138, 151, 152, 153, 175], "been": [3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 93, 101, 105, 106, 114, 120, 137, 144, 149, 150, 155, 156, 162, 168, 170, 175, 177], "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, 95, 96, 105, 108, 111, 112, 116, 117, 118, 124, 128, 129, 130, 132, 133, 134, 135, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 158, 173, 177, 178], "beforehand": [135, 177], "beforenodecopiedev": 178, "beforenodecreatedev": 178, "beforenodedeletedev": 178, "beforenodereadev": 178, "beforenoderenamedev": 178, "beforenoderestoredev": 178, "beforenodetouchedev": 178, "beforenodewrittenev": 178, "begin": [2, 3, 5, 7, 81, 106, 131, 138, 142, 143, 154, 172], "begin_of_text": 5, "behalf": [1, 12, 77, 153], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 93, 132, 138], "behaviour": [52, 81, 85, 126, 129, 151, 153], "behind": [15, 26, 58, 60, 70, 88, 93, 133, 137, 153], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 95, 99, 101, 102, 112, 116, 123, 126, 129, 132, 136, 143, 149, 153, 154, 155, 173, 177], "believ": 138, "belong": [2, 81, 85, 110, 118, 153, 157], "below": [1, 3, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 95, 96, 101, 106, 107, 118, 128, 129, 130, 138, 142, 144, 148, 154, 156, 158, 178], "benchmark": [4, 12, 60, 118], "bender": 154, "benefici": 132, "benefit": [48, 60, 95, 96, 119, 126, 132, 133, 138, 177], "berlin": [2, 14, 60, 67, 117, 149, 156], "besid": [58, 60, 81, 95, 129], "best": [14, 15, 47, 58, 59, 63, 92, 101, 116, 126, 128, 130, 133, 134, 138, 142, 143, 148, 159, 178], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 138, 177], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 93, 95, 96, 97, 101, 132, 142, 144, 146, 148, 152, 153, 157, 177], "bewar": [18, 40, 57], "beyond": [22, 48, 55, 88, 107], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 93, 129, 130, 138, 174, 177], "big_temp_fil": 26, "bigger": [57, 60, 148], "bigint": [21, 25, 88, 144], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 96, 110, 115, 124, 133, 150, 178], "binari": [29, 38, 47, 60, 63, 96, 134, 137, 152, 153], "binary_search_path": 88, "bind": [81, 96, 97, 130, 133, 154], "bind_address": 96, "bing": 166, "binlog_format": [22, 134], "bio": 132, "biographi": [77, 81, 110], "biographyscop": 77, "birth": 81, "birthdai": [88, 115], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 124, 134, 161], "bitmap": 60, "black": 2, "blacklisted_fil": 173, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 99, 124, 126, 129, 132, 164, 173], "blocker": 64, "blog": [6, 8, 11, 28, 60, 119, 123, 129], "blue": 89, "blueski": [77, 110], "blueskyscop": 77, "blurri": 47, "bmp": [60, 129], "board": [2, 166, 167], "bob": [77, 156, 178], "bock": 173, "bodi": [60, 124, 178, 179], "bodyparamet": 179, "bold": 177, "book": [11, 43, 60, 77, 85, 88, 112, 115, 151, 153, 155], "bookmark": [15, 88], "bookworm": 134, "bool": [112, 118, 129], "boolean": [16, 20, 23, 41, 60, 149, 151], "boolval": 96, "boot": [57, 59, 123, 132], "bootstrap": [59, 60], "border": 40, "borrow": 129, "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, 96, 99, 102, 108, 114, 116, 118, 119, 126, 129, 130, 132, 133, 143, 148, 150, 152, 153, 156, 157, 164, 165, 178, 179], "bottleneck": 132, "bottom": [111, 142], "bound": [3, 93, 96], "bounti": 12, "box": [28, 54, 58, 63, 81, 93, 95, 118, 161, 170, 179], "bpxrficyexamplekei": 153, "bracket": [81, 82], "branch": 137, "brand": [64, 65, 88, 119, 159], "brazilian": 4, "breach": [86, 126], "break": [15, 60, 129, 134, 138, 149, 177], "breakdown": [88, 155], "breton": 4, "bridg": [96, 97, 108], "brief": [151, 170], "briefli": 96, "bring": [15, 165], "british": 10, "broadcast": [88, 150], "broaden": 154, "broken": [23, 28, 70, 129, 138, 152, 153, 172], "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 93, 101, 106, 107, 123, 124, 126, 127, 128, 129, 132, 133, 138, 143, 145, 147, 155, 158, 162, 163, 164, 172, 175], "brute": [60, 65, 88, 107, 110, 126, 155], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 124, "bt": 11, "btoa": 179, "bucket": [31, 36, 46, 60, 88, 143, 153], "bucketnam": 48, "buffer": [26, 93, 129, 132], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 93, 118, 119, 132, 134, 139, 148, 149, 151], "bugtrack": 138, "build": [6, 8, 12, 56, 88, 92, 118, 129, 136], "built": [1, 2, 5, 7, 9, 10, 11, 28, 32, 54, 58, 60, 67, 70, 88, 93, 107, 108, 109, 111, 112, 129, 130, 133, 134, 138, 141, 142, 144, 148, 155, 158, 161, 164], "builtin": 153, "bulk": [6, 60, 77], "bulkupload": 88, "bun": 179, "bundl": [3, 16, 40, 59, 60, 130, 155, 178], "burst": 132, "busi": [60, 132, 133, 138, 164], "bust": 129, "button": [1, 16, 32, 40, 41, 60, 63, 72, 81, 85, 88, 93, 94, 95, 108, 113, 116, 138, 147, 179], "byedvluwkxkmflpbgvxc": 67, "bypass": [3, 48, 54, 56, 60, 81, 93, 126, 147, 153], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 93, 116, 118, 124, 134, 138, 140, 155], "bytecod": 132, "bz2": [123, 125, 142], "bzip2": 123, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 96, 118, 123, 125, 126, 130, 132, 133, 138, 146, 147, 155], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 137, "c478e6c156c5955ed53c40d06585": 137, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 137, "ca": [22, 59, 60, 96, 155], "ca_cert": 60, "cach": [8, 38, 45, 58, 65, 69, 82, 88, 112, 127, 129, 135, 138, 143, 149, 150, 152, 153, 154, 155, 172], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [93, 138], "caddi": [88, 129], "cadenc": 177, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 132], "caldav": [60, 65, 69, 88, 113, 115, 118, 124, 129, 133, 138, 170, 178], "caldav_external_attendees_dis": 112, "calendar": [12, 16, 23, 61, 63, 88, 108, 110, 111, 114, 115, 117, 137, 139, 144, 150], "calendarchang": [112, 151], "calendardata": 178, "calendarid": 178, "calendarobjectcreatedev": 178, "calendarobjectdeletedev": 178, "calendarobjectmovedev": 178, "calendarobjectmovedtotrashev": 178, "calendarobjectrestoredev": 178, "calendarobjectupdatedev": 178, "calendarretentionoblig": 112, "calendarserv": 178, "calendarsubscriptionrefreshr": 112, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 93, 95, 114, 116, 120, 129, 131, 133, 134, 138, 146, 147, 151, 153, 156, 157, 165, 178, 179], "callback": 179, "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, 101, 102, 103, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 172, 173, 174, 175, 176, 177, 178], "can_instal": 124, "cancel": [138, 155], "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, 107, 111, 114, 118, 126, 129, 130, 134, 136, 137, 142, 146, 147, 148, 150, 152, 153, 155, 156, 170, 177], "canon": [60, 88], "cantonbeck": 151, "cap": [132, 153, 158], "cap_add": 132, "capabl": [2, 4, 12, 15, 60, 81, 88, 96, 109, 112, 132, 153, 156, 158, 163, 164, 165], "capac": [5, 7, 9, 10, 48, 132], "captur": 178, "carbonara": 2, "card": [2, 15, 69, 77, 85, 95, 113, 166, 167], "carddav": [43, 65, 69, 88, 112, 114, 115, 124, 129, 133, 138, 170], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 96, 97, 124, 129], "carefulli": [138, 149], "carol": 178, "carri": [2, 60, 106, 153, 155], "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, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 95, 96, 97, 99, 101, 102, 116, 118, 123, 126, 128, 130, 132, 133, 134, 138, 142, 143, 144, 146, 147, 149, 150, 152, 156, 157, 164, 170, 172, 177, 178, 179], "cast": 60, "cat": [2, 31, 151, 153], "catalan": 4, "catch": [56, 138], "categori": [2, 16, 95, 107, 110, 114], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 93, 129, 131, 132, 133, 137, 138, 143, 146, 147, 150, 151, 153, 155, 172, 174, 175], "causal": 24, "caution": [8, 118, 129], "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, "cd": [8, 15, 23, 28, 34, 121, 124, 159, 178], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 137, "ce6cd914": 154, "ce8b61c2": 154, "ce9e248333c44a5a64ccad26f2550f95": 118, "ceas": 177, "ceil": 132, "center": 63, "cento": [56, 59, 88, 127, 129, 133, 134, 150], "central": [28, 29, 59, 153], "ceph": 48, "cert": [22, 59, 60, 94, 96, 124, 158], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 93, 105, 112, 113, 126, 129, 133, 147, 154, 164], "certfil": 96, "certif": [32, 33, 46, 60, 64, 82, 88, 90, 93, 96, 116, 124, 126, 129, 133, 134, 137, 153, 158, 159, 170], "certifi": 89, "cfb": 60, "cfg": 93, "cgi": 129, "challeng": [126, 129, 132], "chanc": [118, 138, 177], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 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, 95, 96, 101, 107, 112, 113, 116, 118, 121, 123, 125, 126, 129, 130, 132, 133, 137, 140, 142, 143, 146, 148, 149, 153, 155, 156, 162, 164, 170, 171, 172, 173, 174, 177, 178, 179], "changelog": [16, 88, 142, 147], "channel": [16, 88, 108, 119, 138, 147], "chapter": [92, 109, 130, 133, 138, 177], "char": [81, 153], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 93, 125, 126, 130, 140, 146, 153], "character_set_serv": 22, "characterist": 60, "charg": [84, 111, 179], "charli": 77, "charset": [25, 60, 88], "chart": [85, 133], "chat": [2, 5, 13, 14, 61, 88, 101, 111, 151], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 175, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 95, 96, 98, 100, 101, 114, 116, 118, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 150, 164, 173, 174, 177, 178, 179], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 85, 92, 96, 112, 113], "checker": [60, 70], "checkout": 3, "checksum": [81, 123, 125, 147, 151, 175], "children": 155, "chines": 4, "chmod": [28, 34, 96, 142], "choic": [8, 22, 56, 60, 80, 81, 88, 126, 127, 130, 143, 148], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 95, 96, 112, 113, 124, 128, 129, 130, 133, 138, 142, 158, 165, 177, 179], "chooser": 60, "chose": [116, 148], "chosen": [1, 20, 22, 40, 59, 60, 128], "chown": [28, 34, 121, 123, 125, 129, 133, 142], "christoph": 118, "chrome": [67, 134], "chromium": [134, 175], "chroot": [88, 127], "chunk": [3, 43, 46, 60, 88, 93, 118, 129], "chunked_upload": [26, 88], "chunksiz": 93, "ci": [60, 156], "cidr": [60, 69], "cif": [40, 88, 127, 130], "cipher": [29, 88, 93, 126], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": 60, "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 137, 155, 178], "classic": 133, "classif": [155, 178], "classifi": [6, 93, 118], "clean": [1, 49, 53, 57, 60, 80, 88, 99, 108, 111, 112, 133, 153, 154, 155, 156, 170], "cleanli": 155, "cleanup": [1, 44, 47, 74, 80, 81, 88, 107, 108, 114, 154, 172], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 106, 118, 132, 155], "clear_env": 133, "cli": [57, 63, 65, 67, 69, 88, 94, 98, 100, 112, 123, 126, 127, 132, 133, 143, 148, 150, 155, 172], "click": [16, 40, 41, 54, 60, 63, 64, 78, 81, 85, 93, 95, 116, 128, 137, 138, 147, 179], "clickjack": [64, 126], "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, 96, 97, 101, 110, 111, 112, 113, 114, 116, 118, 119, 126, 127, 128, 129, 131, 132, 133, 137, 138, 141, 143, 147, 151, 155, 157, 158, 163, 179], "client_body_buffer_s": 129, "client_body_temp_path": 26, "client_body_timeout": 129, "client_max_body_s": [26, 129], "clientreqid": 67, "clone": [7, 8], "close": [7, 8, 10, 43, 60, 63, 69, 88, 106, 107, 138, 147], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 96, 114, 119, 126, 129, 133, 153, 155, 156, 158, 164, 179], "cloud2": 158, "cloud_id": 156, "cloudfil": [36, 60], "cloudflar": [60, 93, 129, 138], "clue": 88, "cluster": [0, 3, 6, 88, 143], "cmd": [92, 96, 123], "cn": [60, 81, 82, 154], "cname": 143, "cnf": [22, 60, 124], "co": [5, 11], "co2": [6, 11], "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, 93, 119, 121, 126, 129, 132, 135, 138, 139, 147, 148, 151, 153, 158, 159, 160, 161, 162, 164, 178], "code_docker_imag": 161, "codebas": [60, 144], "cold": 132, "collabor": [32, 88, 101, 102, 119], "collabora": [32, 88, 133, 159, 160, 161, 163, 164, 167, 172], "collaboraoffic": [159, 161, 162], "collaboraonlin": [157, 158, 159, 161, 162, 163], "collaps": 128, "collat": [22, 23, 88, 125, 146], "collation_serv": 22, "colleagu": 151, "collect": [15, 57, 60, 118, 126, 132, 166, 167], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 151, 156], "column": [19, 25, 85, 88, 116, 144, 148], "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, 96, 110, 112, 116, 119, 121, 123, 125, 126, 128, 129, 130, 132, 133, 134, 136, 137, 138, 142, 147, 149, 151, 154, 155, 157, 158, 159, 161, 162, 163, 164, 172, 175, 176, 178], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 93, 130, 133, 145, 147, 153, 154, 156, 179], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 95, 96, 123, 133, 134, 138, 150, 155, 161, 178, 179], "comma": [60, 61, 81, 156], "command": [1, 4, 6, 13, 14, 15, 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, 96, 97, 98, 99, 103, 111, 112, 116, 117, 118, 123, 125, 127, 130, 131, 132, 133, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 148, 174, 175, 178], "comment": [23, 26, 40, 43, 56, 65, 88, 108, 111, 133, 136, 142, 147, 160, 166, 167], "commentsmanag": 60, "commerci": [119, 133, 138], "commit": [60, 65, 88, 134], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 95, 104, 111, 116, 123, 126, 129, 132, 133, 147, 150, 155, 163, 179], "commonli": [28, 48, 58, 59, 130, 138], "commonnam": [60, 133, 178], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 95, 97, 100, 118, 119, 121, 125, 130, 133, 138, 147, 150, 155, 160, 163, 165, 174, 177], "compani": [2, 12, 64, 72, 81, 147], "compar": [20, 57, 81, 120, 142, 151], "comparison": [46, 60, 81, 88, 178], "comparison_of_file_system": 60, "compat": [0, 3, 5, 16, 22, 28, 31, 38, 40, 46, 48, 59, 60, 80, 82, 88, 130, 132, 144, 148, 152, 158, 177, 178], "compens": 38, "compil": [22, 59, 132], "complain": 149, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 101, 110, 121, 123, 124, 126, 130, 131, 132, 133, 135, 144, 146, 147, 148, 150, 153, 155, 166, 169, 178], "completionexpectedat": 14, "complex": [28, 60, 96, 107, 111], "compli": [60, 111, 153], "complianc": [13, 53, 60, 88, 107, 138], "compliant": [80, 126, 134], "compon": [12, 60, 88, 129, 132, 133, 138, 165, 170, 178], "compos": [56, 132], "composit": [114, 167], "compound": 88, "comprehens": 138, "compress": [56, 60, 85, 88, 93, 101, 107, 126, 127, 130, 174], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 95, 96, 97, 99], "compute_devic": 97, "computedevic": 97, "concaten": [29, 38], "concept": [25, 124, 149], "concern": [8, 26, 28, 29, 47, 60, 129, 177], "concert": 2, "concurr": [3, 4, 48, 60, 132, 172], "condit": [14, 15, 65, 70, 81, 88, 102, 138, 177, 178, 179], "condition": 60, "conf": [22, 56, 59, 81, 96, 123, 124, 126, 129, 133, 138], "confdir": 92, "confer": [2, 119], "confidenti": [68, 101, 156, 157], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 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, 95, 96, 97, 98, 103, 106, 107, 112, 113, 116, 117, 118, 120, 123, 124, 128, 129, 131, 132, 133, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 156, 158, 164, 172, 173, 174, 175, 176], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 154], "configur": [2, 4, 12, 13, 16, 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, 97, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 114, 115, 117, 118, 123, 125, 128, 134, 135, 138, 142, 143, 144, 146, 147, 150, 152, 153, 154, 155, 156, 160, 163, 167, 169, 176, 178, 179], "configuration_serv": 60, "confin": [43, 133], "confirm": [4, 19, 22, 41, 48, 65, 68, 70, 77, 78, 81, 88, 108, 109, 123, 125, 130, 132, 133, 142, 143, 152, 153, 155, 156], "conflict": [16, 38, 60, 81, 118, 146, 151], "confus": [28, 38], "congratul": [116, 158], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 22, 24, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 95, 96, 97, 111, 112, 113, 116, 124, 127, 128, 129, 131, 132, 133, 134, 138, 143, 153, 154, 155, 157, 163, 164, 172, 176, 178], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 127, 128, 151], "consecut": 34, "consent": [106, 116], "consequ": [46, 88, 126, 129, 152], "conserv": 132, "consid": [1, 8, 16, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 93, 107, 108, 110, 112, 113, 118, 126, 133, 134, 138, 146, 164, 177], "consider": [46, 60, 65, 85, 88, 177], "consist": [20, 29, 40, 44, 60, 101, 116, 129, 138, 142, 150], "consol": [19, 53, 64, 98, 129, 133, 138, 142, 150, 158], "const": 179, "constant": [60, 77], "constitut": 109, "constrain": 92, "constraint": [77, 133, 147, 153], "consult": [16, 26, 28, 56, 59, 60, 109, 111, 126, 130, 134, 178], "consum": [8, 26, 58, 60, 77, 148], "consumpt": [5, 6, 7, 11, 26, 88, 90, 132], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 108, 110, 111, 112, 115, 121, 133, 137, 139, 144, 149, 153, 160, 176], "contactinteractedwithev": 114, "contactsinteract": 114, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 97, 98, 101, 106, 107, 110, 111, 113, 114, 116, 118, 126, 129, 132, 133, 135, 136, 138, 147, 150, 152, 155, 157, 158, 161, 164, 172, 178, 179], "container": 133, "container_id": 158, "container_nam": 56, "content": [2, 3, 11, 12, 15, 20, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 93, 96, 102, 110, 112, 113, 119, 123, 124, 125, 126, 129, 137, 138, 142, 146, 149, 152, 153, 155, 166, 178], "context": [5, 8, 13, 28, 38, 58, 60, 67, 77, 88, 92, 101, 130, 150, 167, 175], "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, 96, 98, 106, 126, 134, 144, 147, 151, 152, 155, 164], "contract": 106, "contrast": 18, "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 138], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 95, 102, 104, 105, 107, 109, 110, 113, 126, 129, 132, 133, 145, 149, 150, 151, 153, 155, 156, 172], "convei": [11, 152], "conveni": [77, 121], "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 110, 111, 118, 157, 166, 167], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 102, 132, 138, 144, 152, 158], "cookbook": 88, "cooki": [60, 65, 88, 107, 109, 110], "cookie_domain": 88, "cool": [158, 162, 163], "coolconfig": [157, 159], "coolwsd": [157, 158, 159, 161, 162, 163], "cooper": 119, "coordin": [2, 130], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 81, 85, 88, 96, 107, 108, 114, 116, 123, 125, 129, 140, 142, 143, 146, 155, 178], "copied_sample_config": 88, "copyright": 112, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 107, 124, 125, 129, 130, 132, 133, 137, 142, 145, 152, 155, 156, 172, 177, 178], "coreinfo": 132, "corpor": [72, 133], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 93, 95, 111, 118, 126, 128, 129, 130, 133, 136, 137, 138, 142, 144, 150, 153, 154, 177, 179], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 93, 94, 99, 114, 117, 123, 129, 133, 138, 151, 153, 155, 173], "correspond": [26, 45, 47, 48, 77, 81, 83, 123, 125, 129, 130, 135, 138, 142, 152, 153, 156, 167, 178], "corrupt": [45, 59, 60, 143, 147, 148, 153], "cost": [60, 129], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 93, 101, 118, 124, 126, 129, 134, 137, 138, 140, 146, 149, 154, 155, 164], "couldn": 99, "counsel": 109, "count": [2, 60, 85, 88, 105, 126, 132, 138, 155, 156], "counter": 152, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 101, 128, 138, 147, 158, 179], "court": 81, "cover": [22, 96, 101, 116, 128, 129, 137, 148, 153, 155, 169, 174, 175, 176], "coverag": [5, 9, 11], "cp": [3, 4, 123, 124, 125, 153], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 95, 96, 97, 126, 132], "cpuinfo": [3, 132], "cr": 81, "cram": 63, "crammd5": 63, "crash": 93, "crawler": 176, "crc32": 175, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 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, 95, 96, 97, 99, 101, 102, 105, 110, 112, 113, 114, 116, 118, 119, 120, 123, 124, 125, 126, 128, 133, 135, 138, 142, 143, 144, 145, 146, 147, 149, 152, 155, 156, 157, 172, 178], "create_example_ev": 151, "createcli": 179, "createdb": 22, "createrol": 128, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 96, 105, 110, 112, 113, 133, 155, 156, 176], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 116, 120, 126, 128, 143, 151, 152, 153, 157, 179], "crew": 154, "criteria": [7, 25, 67, 101, 178], "critic": [3, 5, 7, 8, 12, 60, 88, 126, 134, 138, 142, 148, 177], "crl": 60, "crlf": 81, "cromwel": 130, "cron": [3, 6, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 107, 112, 114, 116, 126, 127, 129, 130, 138, 142, 144, 148, 149, 151, 153, 178], "cronjob": [43, 57, 58, 124], "crontab": [53, 57, 112, 138, 142, 144], "crop": 81, "cross": [60, 106, 110, 119, 129, 132], "crt": [59, 60, 96, 129, 153, 155], "crucial": [60, 157], "crypto": 96, "cryptograph": 126, "cryptographi": 3, "csrf": [70, 88, 106], "css": [69, 88, 132, 153], "csync": 88, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [93, 130], "ctype": 130, "cuda": [3, 4, 5, 6, 7, 9, 11, 95, 97], "cudnn": 6, "culprit": 132, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 96, 123, 125, 130, 164, 172], "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, 95, 96, 97, 101, 107, 112, 116, 121, 123, 124, 126, 132, 133, 134, 137, 142, 144, 148, 149, 150, 151, 152, 153, 155, 164, 176, 177, 178], "currentvers": 147, "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, 95, 96, 102, 110, 113, 116, 119, 122, 129, 130, 131, 132, 133, 137, 140, 141, 143, 153, 155, 166, 173, 174, 178, 179], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 155], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 107], "cycl": [40, 119], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 96, 107, 123, 124, 126, 129, 131, 132, 133, 140, 142, 146, 147, 158, 159], "d1": [44, 49, 60, 107], "d2": [44, 49, 60, 107], "d5685c3b45aee373b09be54742ea": 137, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 98, 100, 163], "daemon_config_nam": 8, "daemonconfig": [96, 97], "dai": [1, 2, 3, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 93, 105, 106, 107, 110, 112, 114, 116, 119, 123, 151, 153, 177, 178], "daili": [12, 53, 58, 60, 107, 119, 153], "daisi": 156, "dall": 167, "danger": 64, "dark": 60, "dash": [67, 85, 153], "dashboard": [60, 65, 88, 116], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 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, 93, 94, 96, 98, 106, 109, 115, 116, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 154, 157, 165, 167, 172, 175, 177, 178, 179], "data_request": 108, "databas": [12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 65, 67, 81, 83, 88, 93, 112, 113, 114, 121, 125, 126, 127, 133, 135, 138, 141, 142, 143, 144, 147, 148, 150, 153, 155, 156, 166, 167, 178], "databaseid": 118, "datacent": [31, 48], "datadir": [28, 60, 131], "datadirectori": [29, 67, 88, 120, 135, 143, 147], "dataintegr": [60, 175], "dataloss": 146, "dataset": 11, "date": [2, 14, 19, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 110, 112, 116, 122, 123, 130, 132, 134, 138, 140, 146, 153, 155, 156, 169, 177], "dateinterv": 112, "datepattern": 126, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 93, 108, 111, 112, 113, 114, 117, 118, 123, 124, 129, 133, 138, 150, 155], "davclnt": 129, "david": 178, "davstorag": [26, 41, 88], "davx5": 114, "davx\u2075": 118, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 93, 124, 128, 138, 140, 144, 146, 148, 156], "db8": 60, "db_": 129, "db_name": [140, 146], "dbal": 60, "dbdriveropt": [22, 25, 88], "dbhost": [22, 25, 88, 120, 135, 143], "dbindex": [59, 60, 149], "dbname": [22, 24, 25, 88, 120, 143], "dbpass": 120, "dbpassword": [22, 25, 88, 120, 128, 143], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbtableprefix": [22, 88, 120], "dbtype": [20, 22, 88, 120, 135], "dbuser": [22, 25, 88, 120, 128, 143], "dc": [81, 82, 83, 154], "dd": [81, 151], "ddl": 174, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 112, 116, 173, 174, 175], "deal": [118, 133], "deb": [125, 159], "debian": [22, 56, 59, 72, 121, 130, 132, 133, 134, 138, 150, 158], "debug": [12, 13, 70, 81, 88, 118, 127, 129, 137, 143, 147, 151, 153, 155], "decemb": 123, "decid": [12, 22, 28, 92, 95, 105, 129, 148, 177], "decim": 48, "decis": [28, 135], "deck": [15, 28, 88, 153, 155, 166, 167], "declar": [81, 88], "decod": 155, "decompress": 130, "decreas": [60, 88, 93], "decrement": 152, "decrypt": [46, 48, 60, 88, 96, 106, 126, 132, 138, 150], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 112, 119, 127, 128, 129, 132, 135, 147, 151, 153, 155, 161], "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, 97, 98, 106, 107, 110, 112, 113, 114, 115, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 138, 140, 145, 146, 148, 149, 150, 151, 153, 155, 156, 159, 161, 163, 166, 175, 177, 178, 179], "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, 117], "default_us": 22, "defaultapp": 88, "defaultmodul": 152, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 107, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 96, 101, 102, 103, 112, 126, 129, 137, 150, 151, 153, 157, 172, 177, 178, 179], "definit": [20, 46, 88, 126, 177], "defunct": 81, "degrad": [60, 132, 151], "degre": 135, "delai": [0, 15, 40, 41, 53, 57, 58, 60, 88, 112, 155], "deleg": [65, 88, 115, 150, 178], "delegate_permiss": 55, "delet": [1, 2, 3, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 98, 101, 105, 107, 108, 110, 111, 112, 113, 115, 117, 118, 135, 137, 138, 142, 146, 147, 150, 152, 178], "delete_timestamp": 29, "deliber": [107, 177], "delimit": [31, 81], "deliv": [12, 53, 108, 129, 177], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 107, 126, 153], "demo": [60, 155], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 104, 129, 131, 156], "denial": [58, 126, 131], "denot": 29, "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, 95, 114, 116, 123, 124, 126, 128, 133, 134, 135, 138, 142, 143, 145, 148, 150, 152, 158, 167, 173, 174, 175, 178], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 100, 119, 123, 124, 129, 132, 138, 161, 177], "deploy": [3, 28, 60, 65, 77, 88, 91, 95, 97, 99, 100, 109, 119, 123, 127, 130, 132, 133, 134, 135, 138, 148, 160, 161, 177], "deployconfig": [88, 96], "deploydaemon": 96, "deprec": [60, 76, 134, 156, 171, 173, 174, 175, 176, 179], "deprovis": 135, "deriv": [72, 77, 88, 126, 129, 133, 152, 153, 155], "describ": [12, 26, 29, 41, 43, 53, 57, 60, 63, 67, 70, 77, 80, 81, 92, 95, 96, 97, 101, 102, 105, 107, 108, 109, 111, 120, 138, 144, 158], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 94, 110, 112, 116, 123, 130, 132, 133, 155, 166, 178], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 109, 119, 133, 145, 148, 164], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 102, 128, 129, 133, 143], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 93, 101, 119, 127, 132], "desktopshortcut": 92, "despit": [43, 129, 152, 153], "destin": [2, 32, 37, 39, 60, 111, 125, 151, 153], "destruct": 151, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 95, 99, 108, 110, 118, 123, 125, 126, 128, 129, 130, 132, 133, 138, 142, 143, 150, 151, 153, 155, 156, 161, 162, 164, 173, 174, 175, 176, 177, 179], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 96, 106, 128, 130, 153, 154, 155], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 93, 96, 118, 133, 152, 153], "dev": [60, 65, 67, 88, 124, 134, 150, 179], "develop": [12, 15, 16, 54, 60, 80, 91, 93, 94, 95, 118, 126, 128, 133, 134, 136, 137, 138, 145, 148, 153, 160, 177, 178], "developer_manu": 60, "deviat": 126, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 93, 95, 96, 97, 99, 126, 132, 133, 145], "diagnos": [67, 81, 132, 150, 155, 156, 172], "diagnost": [3, 88], "diagram": [15, 96, 179], "dialect": [7, 60], "dialog": [41, 43, 77, 81, 114, 153], "dialogu": [81, 146], "dictat": 96, "did": [20, 28, 30, 88, 99, 138, 149], "diff": 136, "differ": [2, 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, 93, 95, 96, 98, 99, 112, 113, 120, 126, 128, 129, 133, 135, 137, 138, 141, 146, 150, 151, 152, 153, 155, 156, 157, 172, 178], "differenti": [15, 112, 113], "difficult": [60, 128, 137], "difficulti": [2, 146], "diffus": [15, 167], "digestmail": 155, "digit": 134, "dimens": 60, "diminish": 60, "dir": [23, 28, 93, 133, 138, 147, 155], "dirbkp": 146, "dirbkp_": 140, "direct": [26, 40, 59, 60, 77, 79, 81, 101, 129, 132, 133, 138, 174, 177], "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, 93, 96, 101, 106, 108, 111, 128, 129, 133, 135, 138, 147, 148, 149, 153, 155, 166, 179], "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, 93, 101, 102, 111, 118, 121, 123, 124, 125, 127, 129, 132, 133, 135, 136, 139, 140, 142, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156], "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, 95, 96, 97, 100, 101, 103, 107, 110, 111, 112, 113, 114, 117, 118, 129, 130, 131, 132, 133, 134, 142, 144, 147, 148, 149, 150, 153, 154, 155, 159, 173, 174, 175, 176], "disable_act": 85, "disable_email": 85, "disable_funct": 130, "disablefreebusi": 112, "disadvantag": [29, 57], "disallow": [3, 60, 88, 127], "disappear": [43, 45, 58, 59, 123], "disapprov": 179, "discard": 116, "disclaim": 43, "disclos": 107, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 128, 143, 150], "discov": [60, 178], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 110, 133, 139, 158, 163, 164], "discret": [58, 177], "discuss": [12, 22, 43, 93, 119, 175, 177], "disk": [3, 28, 39, 44, 60, 85, 88, 93, 129, 132, 138, 152, 153, 174], "dispar": 7, "dispatch": [88, 114], "displai": [15, 28, 43, 46, 47, 51, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 94, 95, 96, 97, 98, 110, 111, 112, 114, 116, 118, 128, 129, 137, 150, 151, 153, 155, 156], "display_nam": 156, "displaynam": [75, 76, 81, 82, 111, 112, 151, 154, 156, 178], "displaynamescop": 77, "disregard": 138, "disrupt": 148, "dist": [51, 101], "distinct": [48, 77, 88, 107, 111, 178], "distinguish": [46, 60, 88], "distribut": [26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 93, 95, 96, 119, 123, 126, 129, 130, 131, 133, 134, 137, 138, 143, 148, 150, 153, 160, 161], "distro": [38, 60, 96, 131, 133, 138, 145], "dive": 28, "diverg": 151, "divid": 60, "dmz": [88, 127], "dn": [59, 81, 82, 83, 96, 143, 164, 172], "dnextcloud": 22, "dnf": 123, "do": [0, 2, 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, 95, 96, 98, 101, 102, 107, 117, 118, 120, 123, 124, 126, 128, 129, 131, 132, 133, 134, 138, 141, 142, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 165, 172, 173, 174, 175, 177, 178, 179], "do_not_schedule_reboot": 92, "doc": [1, 15, 60, 93, 99, 119, 124, 134, 152, 157, 158, 159, 160, 161, 162, 163, 175], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 97, 99, 100, 130, 132, 133, 148, 150, 152, 160, 161, 164, 172, 178], "docker_aio": 96, "docker_instal": [95, 97], "docker_local_sock": [97, 98], "docker_socket_port": 97, "dockerfil": 8, "dockersocketproxi": 96, "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, 102, 109, 117, 118, 119, 123, 125, 126, 128, 129, 130, 132, 133, 134, 137, 138, 144, 145, 150, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 174, 175, 178, 179], "document_root": 129, "documentation_url": 88, "documentroot": [123, 133, 138], "docx": 160, "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 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, 95, 96, 97, 98, 101, 108, 109, 113, 116, 117, 118, 120, 124, 126, 128, 129, 131, 132, 133, 137, 138, 141, 142, 144, 146, 148, 149, 150, 152, 153, 155, 156, 165, 172, 175, 177, 179], "doesn": [18, 22, 28, 76, 81, 118, 123, 129, 147, 164, 179], "doesnotexist": 149, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 130], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 95, 124, 127, 133, 149, 158, 164, 176], "don": [6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 95, 112, 118, 129, 131, 133, 137, 140, 142, 149], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 96, 98, 123, 124, 133, 143, 144, 147, 151, 152, 157, 158, 172, 176, 178], "dora": 156, "dot": [8, 38, 40, 50, 95, 96, 129, 138, 173, 178], "doubl": [12, 60, 138], "dow": 56, "down": [3, 40, 59, 88, 93, 112, 113, 116, 118, 132, 179], "downgrad": [88, 147, 148], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 85, 88, 89, 93, 96, 100, 101, 106, 108, 110, 111, 121, 123, 125, 126, 133, 136, 138, 141, 142, 143, 144, 148, 149, 152, 153, 155, 157, 158, 159], "downsid": [48, 172], "downstream": [5, 12, 15], "downtim": 81, "dozen": 160, "draft": [2, 3, 5, 7, 118, 138, 153], "draw": [2, 58], "drawback": [32, 133], "drawn": 60, "drive": [26, 60, 132], "driven": [40, 133], "driver": [6, 22, 60, 99, 128], "droid": 60, "drop": [22, 46, 58, 63, 88, 124, 126, 138, 146, 151, 179], "drop_account": 108, "dropbox": 93, "dropdown": [40, 43, 85], "dry": [148, 151, 152, 153], "dsheurist": 81, "dsnap": 124, "dsp": [95, 96, 97], "dst_path": 98, "duckduckgo": [2, 166], "due": [2, 4, 12, 26, 38, 47, 49, 55, 60, 64, 71, 81, 88, 93, 99, 101, 110, 126, 129, 132, 138, 142, 151, 153, 155, 156, 162], "dummi": 147, "dump": [88, 140, 143], "duplic": [3, 11, 88, 114, 129, 138, 155], "durat": [60, 93], "dure": [3, 4, 16, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 96, 99, 123, 129, 132, 133, 141, 143, 147, 152, 155, 174, 175], "dutch": 4, "dynam": [23, 60, 82, 93, 132, 174], "e": [1, 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, 72, 73, 77, 78, 80, 81, 82, 83, 93, 95, 96, 97, 98, 99, 101, 106, 107, 108, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 162, 167, 177, 178, 179], "e2e": 28, "eacceler": 138, "each": [1, 2, 3, 6, 9, 14, 15, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 60, 64, 67, 77, 81, 85, 93, 95, 96, 99, 101, 108, 110, 114, 116, 120, 130, 132, 133, 138, 148, 150, 152, 153, 155, 156, 172, 177, 178, 179], "ear": 1, "earli": [12, 81], "earlier": [57, 60, 81, 123, 138, 177], "eas": [60, 177], "easi": [56, 59, 60, 63, 83, 85, 133, 144, 145, 161, 178], "easier": [55, 60, 93, 118, 132, 133, 144], "easiest": [22, 58, 60, 63, 101, 126, 133, 138, 146, 148], "easili": [15, 41, 60, 63, 64, 133, 144, 145, 163, 179], "east": [48, 60], "easycron": 57, "echo": [15, 155, 159, 178], "ecosystem": [12, 54, 58, 95, 119], "ed": 55, "edg": [15, 43, 116, 134], "edit": [11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 110, 112, 121, 129, 132, 133, 137, 138, 140, 148, 150, 155, 159, 160, 161, 177, 179], "editor": [60, 85, 112, 160], "edri": [60, 126], "edu": 60, "eff": [60, 126], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 93, 106, 131, 132, 147, 153, 172, 178], "effici": [8, 60, 132, 134], "effort": [12, 177], "efss": 135, "eg": [52, 150], "egress": 124, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 95, 96, 101, 123, 125, 129, 133, 135, 137, 142, 147, 148, 153, 155, 177, 179], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 143, "elect": 81, "element": [17, 75, 76, 151], "elig": 77, "elimin": [81, 120], "els": [14, 81, 96, 111, 132, 133, 137], "elseif": 96, "elsewher": [58, 60, 129], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 108, 110, 111, 112, 114, 116, 119, 153, 155, 156, 167], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 157], "embed": [3, 65, 88, 126, 155, 174, 175, 176], "embrac": [133, 145], "emf": [60, 172], "emit": 150, "emoji": [23, 134, 140, 146, 151], "emot": 11, "emploi": [3, 8, 72, 81, 86, 119, 177], "employe": [12, 178], "empti": [22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 96, 107, 110, 133, 138, 142, 143, 153, 178, 179], "en": [2, 7, 8, 60, 66, 123, 134, 155, 156], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 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, 100, 101, 106, 110, 111, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129, 130, 134, 137, 138, 140, 142, 144, 147, 148, 149, 153, 154, 158, 159, 161, 162, 164, 167, 170, 172, 173, 174, 176, 178, 179], "enable_cli": 150, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 155, "enable_preview": [47, 88, 126], "enable_shar": 153, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 112, "enabledpreviewprovid": [47, 88, 126, 132, 172, 173], "encapsul": 129, "encf": 131, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 129, 147, 152], "encount": [2, 3, 41, 50, 60, 118, 130, 137, 138, 142], "encourag": [86, 126, 133, 177], "encrypt": [31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 107, 110, 126, 127, 129, 139, 143, 150, 153, 155, 156, 164, 170], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 112, 120, 123, 129, 132, 143, 144, 148, 150, 151, 156, 172], "end_header_id": 5, "endeavor": 119, "endedat": 14, "endedbefor": [14, 155], "endpoint": [2, 15, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 96, 113, 138, 143, 147, 155, 158, 172, 178, 179], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 95, 110, 112, 123, 126, 129, 137, 153, 155, 157, 170, 178], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 96, 99, 101, 132, 134, 140, 146, 155, 177, 179], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 119, 132], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 93, 99, 112, 126, 132, 138, 158, 162, 174], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 70, 81, 88, 92, 93, 95, 107, 108, 112, 114, 116, 124, 127, 129, 130, 132, 133, 134, 137, 138, 142, 143, 150, 151, 152, 153, 156, 157, 164], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 93, 116, 124, 125, 126, 128, 133, 145, 147, 152, 156], "enterpris": [12, 22, 56, 72, 119, 121, 122, 123, 126, 133, 134, 138, 155, 160, 177], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 117, 121, 138, 140, 147, 160, 177], "entri": [1, 22, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 107, 111, 112, 113, 114, 124, 129, 132, 133, 135, 137, 138, 142, 143, 144, 147, 149, 151, 153, 155, 167, 172], "entrypoint": [58, 163], "entryuuid": 154, "enumer": [77, 113, 171], "env": [4, 96, 97, 98, 126, 133, 156], "env_nam": 98, "env_valu": 98, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 96, 98, 100, 118, 119, 126, 129, 130, 132, 134, 138, 140, 142, 143, 145, 146, 147, 148, 155, 156, 161, 176, 177], "eof": 63, "eot_id": 5, "epel": [56, 123], "epoch": 134, "equal": [8, 29, 47, 60, 81, 96], "equival": [40, 49, 59, 60, 81, 132, 155], "eras": 93, "erasur": [88, 107], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 98, 99, 110, 118, 121, 123, 126, 128, 130, 131, 132, 133, 136, 139, 142, 143, 147, 149, 150, 151, 153, 155, 164, 175, 179], "error_log": [60, 67, 93, 138], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 155], "escal": 54, "escap": [63, 92, 178], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 96, 102, 133, 136, 138, 142, 143, 144, 148, 172, 178], "esperanto": 4, "essenti": [8, 60, 68, 81, 132, 138, 179], "establish": [41, 43, 55, 63, 77, 88, 93, 130, 134, 153, 154], "estim": [4, 132], "esx": 133, "etag": [40, 129, 155, 178], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 111, 123, 124, 126, 128, 129, 130, 131, 133, 138, 143, 144, 152, 153, 156, 158, 159, 162, 164, 166, 170, 172, 178, 179], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 153], "euc": 71, "europ": [60, 67, 117, 149], "eval": 150, "evalu": [67, 77, 177, 178], "even": [1, 3, 16, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 88, 96, 98, 101, 107, 112, 114, 126, 129, 131, 133, 138, 142, 146, 148, 177], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 93, 107, 110, 111, 114, 115, 116, 126, 128, 150, 153, 155, 179], "eventfilt": 178, "eventu": 107, "everi": [3, 5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 80, 81, 85, 93, 108, 110, 112, 113, 114, 119, 123, 132, 134, 143, 144, 147, 148, 150, 152, 153, 155, 166, 167, 176, 177, 178, 179], "everybodi": 138, "everyon": [18, 52, 77, 80, 119, 154, 177], "everyth": [59, 60, 63, 65, 81, 88, 92, 133, 138, 177, 179], "everywher": [81, 167], "evict": 60, "ex": [2, 92, 93, 144, 150], "ex_app_port": 96, "exact": [38, 57, 60, 70, 77, 81, 147, 178], "exactli": [48, 123, 132, 148], "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, 98, 104, 115, 116, 118, 121, 126, 127, 128, 129, 131, 133, 135, 136, 137, 138, 140, 142, 147, 148, 149, 150, 153, 154, 155, 156, 160, 161, 163, 164, 170, 177, 178], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 94, 97, 99, 173, 174, 175], "exapp_direct": 97, "exapphost": 96, "exce": [4, 44, 49, 60, 85, 132, 153, 175], "exceed": [26, 44, 49, 60, 151, 153], "excel": 59, "except": [59, 60, 67, 76, 80, 81, 92, 129, 132, 137, 142, 143, 147, 150, 155], "excerpt": 93, "excess": [111, 132], "exchang": [0, 5, 7, 41, 63, 170], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 93, 102, 155, 156], "exclus": [36, 40, 48, 58, 60, 70, 93, 96, 138, 153], "exec": [4, 15, 40, 142, 152, 178], "execcondit": 57, "execstart": [15, 57, 178], "execut": [1, 3, 4, 6, 8, 15, 19, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 96, 104, 116, 126, 129, 131, 137, 142, 147, 148, 150, 151, 154, 178], "exempt": [58, 60], "exhibit": [7, 8, 129], "exif": [130, 153], "exim": 63, "exim4": 63, "exist": [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, 95, 96, 107, 112, 114, 116, 118, 125, 128, 129, 130, 133, 137, 138, 142, 143, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 162, 169, 172, 177, 178, 179], "exit": [92, 124, 152, 153, 155], "expand": [88, 119, 128], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 116, 136, 137, 147, 155, 157, 172, 173, 174, 175, 177], "expedit": 8, "expens": [40, 81, 112], "experi": [4, 16, 57, 65, 88, 113, 116, 119, 126, 132, 134, 138, 164], "experienc": 93, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 116], "expertis": [138, 177], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 93, 106, 107, 112, 116, 129, 178], "expiri": [44, 81, 107], "explain": [38, 56, 65, 88, 108, 111, 119, 123, 130], "explan": 40, "explicit": 114, "explicitli": [5, 14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 106, 128, 129, 138, 150, 153, 156, 170], "explod": [60, 96], "explor": [12, 92], "exponenti": 126, "export": [52, 60, 88, 93, 108, 111, 116, 126, 149, 150, 156, 179], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 95, 96, 97, 126, 128, 130, 138], "exposur": [77, 107, 126, 138], "express": [60, 69, 101, 178, 179], "ext4": 38, "extapp": 157, "extend": [2, 8, 43, 60, 63, 107, 111, 119, 134, 165, 177], "extendedsupport": 155, "extens": [3, 22, 51, 59, 60, 63, 65, 67, 70, 88, 90, 92, 111, 118, 119, 123, 126, 129, 130, 132, 133, 138, 143, 145, 153, 171, 172, 173, 177], "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, 100, 102, 108, 110, 112, 126, 130, 131, 132, 134, 135, 142, 143, 149, 150, 152, 155, 156, 172, 178, 179], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 152, "extra": [12, 16, 56, 60, 72, 81, 99, 123, 124, 137, 142, 152], "extra_fil": 137, "extract": [1, 3, 29, 60, 96, 123, 125, 129, 147, 155], "extrem": [58, 70, 128, 132], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 99, 112, 140, 142, 146, 148, 151, 153, 155, 178], "f12": [93, 138], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 137, "f6": 55, "fa829794448eaffbc9a04a29d216": 137, "face": [7, 9, 12, 14, 15, 77, 88, 92, 129], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 132, 177], "fact": 126, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 118, 126, 132, 150], "factori": 60, "fail": [3, 14, 16, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 93, 99, 107, 110, 112, 121, 126, 130, 137, 138, 145, 147, 150, 151, 152, 153, 155, 156, 172], "fail2ban": [65, 88, 127], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 126, "failur": [60, 75, 76, 88, 93, 99, 138, 143, 150], "fair": [88, 139], "fairli": 93, "fall": [25, 26, 38, 60, 114, 128, 129], "fallback": [51, 67, 129, 166], "fallen": 155, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 96, 97, 112, 116, 118, 126, 128, 132, 138, 140, 148, 149, 151, 152, 155, 159, 172, 178], "familiar": [60, 133], "faq": [70, 88, 100, 133, 138, 139, 145], "far": [2, 15, 85, 116, 177], "farsi": 4, "fast": [5, 63, 116, 149], "fastcgi": [124, 129, 133], "fastcgi_buff": 129, "fastcgi_connect_timeout": 129, "fastcgi_hide_head": 129, "fastcgi_intercept_error": 129, "fastcgi_max_temp_file_s": 129, "fastcgi_param": [126, 129], "fastcgi_pass": 129, "fastcgi_path_info": 129, "fastcgi_read_timeout": [26, 129, 132], "fastcgi_request_buff": 129, "fastcgi_script_nam": 129, "fastcgi_send_timeout": 129, "fastcgi_split_path_info": 129, "faster": [0, 3, 7, 11, 15, 59, 88, 127, 133, 177], "fastest": 132, "fat": 38, "fatal": [60, 67, 121, 155], "fault": 26, "faulti": 63, "favicon": [72, 155], "favor": 60, "favorit": 177, "fb": 55, "fcgid": 133, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [123, 131], "fd00": 126, "fd9e": 60, "fe80": [60, 128], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 108, 110, 112, 113, 115, 116, 118, 120, 123, 126, 130, 132, 133, 134, 138, 150, 153, 155, 158, 160, 161, 165, 169, 175, 177, 178], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 110, 111, 113, 114, 115, 126, 150, 155], "fedivers": [77, 81, 110], "fediversescop": 77, "fedora": [59, 132, 133, 150], "fee": 111, "feedback": [5, 7, 9, 10, 15, 147, 177, 178], "feel": [72, 96], "fell": 155, "fetch": [2, 16, 60, 81, 82, 124, 146, 148, 154, 157, 179], "few": [32, 41, 58, 60, 81, 85, 97, 116, 132, 133, 142, 147, 148], "fewer": 107, "ff5733": 151, "ffmpeg": [47, 60, 130], "ffprobe": 60, "ffri": 69, "fidel": 160, "field": [1, 14, 16, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 95, 96, 108, 110, 111, 126, 128, 133, 138, 154, 155, 177, 178, 179], "figur": 148, "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, 96, 98, 99, 104, 106, 108, 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 133, 135, 136, 137, 139, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 159, 160, 162, 166, 167, 171, 174, 175, 176], "filecach": [19, 25, 40, 51, 60, 88, 144, 155], "fileformat": 178, "fileid": [60, 155, 157, 178], "fileinfo": [130, 138], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 93, 110, 146, 149, 155, 173], "filepart": 60, "filepath": [34, 131, 133, 149], "files_accesscontrol": 3, "files_antiviru": [56, 88, 93], "files_encrypt": [28, 29, 152], "files_extern": [3, 38, 40, 60, 88, 149], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 153], "files_pdfview": 147, "files_shar": [41, 60, 85, 149, 155], "files_texteditor": 17, "files_trashbin": [29, 49, 153, 178], "files_vers": [18, 29, 44, 153], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 133, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 131, 153, 156, 178], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 153], "filetyp": [47, 60, 126], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 95, 108, 112, 116, 128, 179], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 130, 132, 151, 153, 154, 155, 156, 164, 175, 179], "final": [3, 5, 7, 26, 38, 60, 63, 88, 96, 116, 123, 125, 126, 127, 133, 147, 177], "financ": 156, "financi": 138, "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, 93, 108, 111, 116, 122, 130, 132, 133, 136, 138, 142, 148, 154, 174, 177, 179], "finder": [60, 138], "findtim": 126, "fine": [5, 11, 60, 102, 126, 131, 133, 179], "fingerprint": [88, 143, 146], "finish": [3, 4, 8, 14, 56, 57, 96, 98, 99, 120, 128, 138, 140, 142, 147, 148, 155], "firefox": [134, 156], "firewal": [16, 58, 96, 99, 123, 126, 164, 172], "firm": 107, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 93, 96, 98, 99, 101, 111, 112, 113, 114, 118, 120, 123, 125, 126, 129, 132, 133, 135, 136, 137, 138, 142, 143, 144, 145, 148, 150, 151, 152, 154, 155, 173, 177], "first_seen": 156, "fit": [1, 6, 38, 59, 95, 133, 145, 170], "five": [132, 140], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 96, 114, 129, 130, 132, 134, 136, 138, 139, 155, 177], "fix_pathinfo": 129, "flac": [129, 171, 172], "flag": [53, 60, 83, 84, 97, 132, 149, 150, 152, 155, 156], "flash": 56, "flat": 60, "flexibl": [133, 135, 177], "flite": 60, "float": [12, 60, 149], "flood": 67, "floor": 132, "flow": [60, 67, 68, 84, 88, 92, 101, 105, 179], "flow_input": 179, "flowchart": 15, "flush": 125, "fn": 114, "focu": [0, 1], "focus": [28, 119, 148, 177], "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, 93, 94, 96, 102, 104, 123, 124, 129, 131, 133, 137, 138, 141, 142, 147, 153, 155, 160], "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, 95, 96, 97, 101, 103, 110, 112, 113, 114, 115, 117, 118, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 149, 150, 152, 153, 154, 158, 163, 164, 166, 172, 177, 178, 179], "followsymlink": [123, 133], "font": [60, 88, 129], "fontobject": 129, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 132], "footer": 108, "footprint": 107, "forbid": [50, 86, 112], "forbidden": 60, "forbidden_char": 173, "forbidden_filenam": [88, 173], "forbidden_filename_basenam": [50, 88, 173], "forbidden_filename_charact": [50, 88, 173], "forbidden_filename_extens": [50, 88, 173], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 98, 107, 110, 113, 118, 126, 149, 150, 151, 153, 154, 155], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 112, "foreign": 63, "forest": 2, "forev": [49, 60, 155], "forgeri": 126, "forget": [28, 29, 60, 63, 132, 133, 140, 145], "forgot": 80, "form": [56, 60, 81, 87, 88, 95, 99, 111, 123, 128, 138, 179], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 65, 66, 67, 71, 81, 82, 83, 88, 118, 132, 134, 150, 151, 153, 157, 160, 174, 178, 179], "formid": 178, "formsubmittedev": 178, "forum": [70, 119, 138, 147, 148, 177], "forward": [15, 60, 69, 70, 96, 128, 129, 133, 138, 142, 150, 163], "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, 93, 95, 96, 99, 114, 123, 126, 128, 129, 130, 132, 133, 136, 137, 138, 145, 148, 151, 152, 155, 157, 158, 159, 161, 162, 163, 164, 172, 175, 177], "foundat": 0, "four": [15, 56, 81, 146, 155, 177, 178], "fourth": 177, "fpm": [26, 60, 70, 88, 124, 126, 127, 129, 130, 134], "fr": [60, 66], "frame": [64, 112, 126, 129], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [151, 153, 155, 156], "freda": 41, "free": [2, 15, 20, 44, 80, 96, 118, 119, 126, 133, 138, 151, 156, 160], "free_prompt_picker_en": 1, "freebsd": 130, "freebusi": [88, 115], "freed": 153, "freedom": 166, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 132], "frequent": [13, 56, 59, 60, 81, 88, 107, 138, 160, 177], "fresh": [3, 40, 81, 129, 142, 148, 151, 152], "freshclam": 56, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 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, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 164, 166, 167, 172, 173, 174, 175, 176, 177, 178, 179], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 118, 129, 161], "front_controller_act": [129, 133], "frontend": [26, 60, 67, 69, 88, 95, 165, 166], "frontend1": 69, "frp": [95, 96, 97], "frp_address": 97, "frpc": [96, 97], "fry": 154, "fss": 96, "ftp": [40, 88, 124, 130, 137], "fulfil": [2, 107, 111, 128, 138], "full": [28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 101, 107, 108, 110, 111, 113, 126, 132, 133, 134, 143, 145, 149, 150, 151, 152, 153, 155, 156, 158, 159, 163, 177, 178], "fulli": [0, 1, 12, 13, 28, 41, 60, 63, 88, 109, 133, 147, 148, 153, 155, 162, 177, 178], "fullscreen": 158, "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, 95, 96, 102, 106, 116, 119, 126, 130, 131, 133, 134, 135, 138, 142, 143, 148, 157, 162, 164, 177, 179], "fund": 119, "fundament": [60, 70, 81], "further": [22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 93, 108, 111, 123, 127, 133, 142, 144, 145, 161, 177], "furthermor": [29, 59, 60], "fuse": 131, "fusef": [88, 127], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 112, 126, 155, 173, 174, 175, 178], "g": [5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 72, 77, 81, 82, 83, 88, 95, 96, 97, 98, 99, 101, 106, 107, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 138, 142, 143, 146, 147, 148, 149, 150, 151, 153, 156, 157, 158, 162, 177, 178, 179], "gain": [3, 14, 126], "galleri": [47, 60, 147, 155], "gap": 147, "garbag": [57, 60], "garbl": 5, "garm": [16, 126], "gatewai": [48, 88, 132, 133], "gather": [81, 138, 172], "gb": [3, 4, 11, 26, 60, 81, 85, 95, 132, 155], "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 123, 125, 130], "gdpr": [88, 106, 107, 108, 110, 111], "gear": 85, "gecko": 67, "gemma": 2, "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, 93, 96, 106, 109, 112, 114, 116, 123, 127, 128, 129, 131, 132, 133, 135, 139, 143, 148, 149, 150, 153, 155, 156, 157, 165, 166, 167, 172, 173, 174, 175, 177], "generalizedtim": 81, "genr": [15, 88], "geo": 129, "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, 105, 123, 124, 126, 129, 131, 133, 134, 136, 137, 138, 142, 147, 150, 152, 156, 158, 161, 164, 167, 172, 179], "get_lin": 63, "getctag": 178, "getenv": [60, 65, 88, 133], "getpath": [136, 149], "gguf": [5, 12], "ghcr": [96, 132], "gib": 26, "gid": 156, "gidnumb": [82, 154], "gif": [60, 98, 129, 166, 167], "giphi": [166, 167], "git": [7, 8, 136], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 93, 119, 126, 129, 132, 133, 136, 145, 166, 167, 172, 175, 177], "githubusercont": 126, "gitlab": [166, 167], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 103, 107, 108, 110, 124, 131, 133, 137, 147, 155, 177], "given": [2, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 96, 101, 105, 118, 126, 133, 138, 152, 153, 155, 156, 157, 172], "givennam": [82, 154], "glanc": 132, "global": [32, 53, 60, 65, 67, 81, 88, 112, 116, 117, 119, 129, 150, 153, 156, 167], "gmail": 116, "gmbh": [12, 16, 72, 102, 119, 126, 133, 138, 177], "gmp": [125, 130], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 95, 96, 97, 108, 112, 123, 125, 132, 136, 142, 143, 147, 158, 177, 179], "goal": [28, 77, 92, 133], "goe": [14, 85, 96, 144], "gold": [7, 10], "gone": [85, 88, 138], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 126, 132, 133, 142, 148, 177], "googl": [2, 15, 60, 72, 80, 88, 134, 166], "got": [18, 102, 177], "govern": 77, "gpg": [88, 123, 125, 127, 159], "gpt": [1, 167], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 95, 96, 97, 99], "grab": 123, "grace": 81, "gracefulli": 128, "gradual": 48, "grain": [131, 179], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 111, 118, 123, 125, 133, 155], "graph": [15, 60], "graphic": [1, 15, 47, 92, 95, 121, 133], "great": 123, "greater": [60, 88], "greatli": [3, 133, 134], "green": [5, 15, 40, 41, 81, 88, 89], "grep": [3, 15, 20, 56, 59, 99, 130, 132, 133, 178], "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, 110, 111, 113, 118, 133, 149, 150, 151, 153, 155, 164, 178], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 102, 153], "groupid": [75, 76, 81, 156], "groupofnam": 154, "groupwar": [111, 112, 113, 116, 138], "grow": [88, 119, 132], "growth": [53, 132], "gt": 178, "gte": 178, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 45, 49, 59, 60, 77, 107, 178], "guard": 132, "guess": 58, "guest": [16, 88], "gui": [3, 32, 66, 92, 132], "guid": [23, 28, 60, 63, 92, 95, 116, 119, 123, 125, 126, 130, 132, 133, 146, 152, 155, 161, 162, 169, 170, 175], "guidanc": [28, 88, 109, 110, 111, 119, 127, 128, 130, 132, 133], "guidelin": 129, "guooq": 156, "guzzl": 60, "gz": [60, 118], "gzip": [118, 129], "gzip_comp_level": 129, "gzip_min_length": 129, "gzip_proxi": 129, "gzip_typ": 129, "gzip_vari": 129, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 96, 126, 133, 140, 146, 150], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 16, 19, 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, 95, 96, 97, 101, 106, 110, 111, 112, 114, 116, 117, 118, 120, 123, 126, 128, 131, 132, 133, 135, 137, 138, 143, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 162, 170, 175, 177, 178, 179], "hackeron": [12, 28], "had": [29, 53, 60, 92, 170, 172, 175], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [102, 177], "handl": [1, 8, 20, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 93, 94, 108, 110, 112, 116, 126, 129, 130, 132, 138, 151, 153, 163, 164, 178], "handle_all_url": 55, "handler": [63, 88], "hanson": 154, "hansson": 133, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 101, 112, 116, 129, 137, 138, 143, 147, 158, 178, 179], "happi": [14, 31, 48], "haproxi": [88, 95, 96, 129], "haproxy_host": 96, "haproxy_password": [96, 97], "haproxypass": 96, "hard": [26, 43, 64, 126], "hardcod": [126, 129], "harden": [60, 88, 127, 128, 130], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 95, 99, 132, 133, 143], "harp": [88, 97, 99, 100], "harp_docker_socket_port": 97, "harp_exapp_direct": 97, "harp_frp_address": 97, "harp_proxy_dock": 97, "harp_proxy_host": 97, "harp_shared_kei": 97, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 110, 130, 137, 178, 179], "hash_equ": 29, "hash_hmac": 29, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 167, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 133, 134], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 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, 77, 78, 80, 81, 83, 85, 88, 91, 92, 93, 95, 96, 97, 99, 101, 103, 105, 107, 108, 112, 113, 114, 116, 118, 123, 124, 126, 128, 129, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 162, 163, 164, 166, 168, 172, 174, 177, 178, 179], "haveibeenpwnd": 86, "hbegin": 29, "hdr": 60, "head": [58, 68, 70, 123], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 96, 127, 128, 129, 132, 133, 138, 155, 172, 175, 179], "headless": 121, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 132, "health": 99, "healthi": [99, 138], "heartbeat": [60, 88], "heartbeat_count": 99, "heavi": [0, 1, 19, 45, 59, 96, 130, 160], "heavili": [58, 60], "heic": [60, 132, 133], "heif": [60, 133], "height": 60, "held": [88, 111], "hello": [1, 63], "helm": 133, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 93, 101, 102, 106, 109, 110, 112, 113, 118, 119, 123, 131, 132, 133, 136, 138, 142, 146, 147, 148, 150, 152, 155, 177], "helper": [15, 106, 128], "henc": [80, 150], "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, 95, 96, 116, 118, 126, 128, 129, 132, 133, 148, 150, 166, 179], "hetzner": 12, "heurist": [56, 70], "hex": 151, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 93, 112, 118, 126, 129, 138], "hide": [38, 60, 77, 88, 106, 117, 118, 129], "hide_absence_set": 117, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 112, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 111, 116, 126, 132, 133, 134, 135, 160, 174, 177], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 110, 113, 144, 177], "highest": [2, 81, 132, 148, 177], "highli": [58, 60, 70, 81, 118, 119, 126, 128, 130, 132, 137, 157, 161, 177], "highlight": [15, 133, 142, 148, 177], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 128, 129, 148], "hintexcept": 150, "histor": 28, "histori": [14, 15, 40, 58, 86, 111, 153], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 95, 101, 107, 110, 129, 178], "holidai": [112, 151], "home": [28, 40, 63, 81, 83, 88, 92, 93, 133, 138, 153, 155, 164], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 177], "hook": 150, "hope": 25, "hopefulli": 147, "hord": 118, "horde_": 118, "horde_imap": 118, "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, 94, 95, 97, 112, 116, 118, 123, 124, 126, 128, 129, 133, 138, 142, 143, 147, 149, 155, 157, 158, 159, 163, 164, 172, 178], "host2": 96, "host3": 96, "hoster": [22, 60, 116], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 95, 116, 128, 129, 133, 143, 145, 155, 164], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 93, 107, 108, 110, 112, 113, 114, 116, 142, 143, 148, 179], "hourli": 53, "hous": [31, 142], "housekeep": [57, 142], "hover": [81, 85, 166], "how": [2, 6, 7, 10, 12, 15, 18, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 95, 107, 111, 112, 113, 115, 116, 118, 119, 123, 126, 128, 129, 130, 132, 133, 137, 138, 141, 143, 147, 155, 156, 158, 165, 169, 170, 174, 175, 176, 177], "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, 96, 112, 117, 126, 132, 133, 134, 144, 145, 148, 161, 163, 172], "hp_frp_address": 96, "hp_shared_kei": [95, 96], "hp_trusted_proxy_ip": 96, "href": 178, "hst": [70, 124, 126, 129], "hstspreload": 129, "htaccess": [26, 88, 123, 126, 128, 129, 131, 138, 172, 173, 175], "htaccesstest": 129, "htdoc": 120, "html": [60, 63, 67, 93, 123, 129, 130, 131, 134, 138, 147, 150, 157, 158, 159, 161, 162, 163, 175], "htop": 132, "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, 92, 93, 94, 95, 96, 97, 99, 106, 111, 112, 116, 118, 121, 123, 124, 125, 127, 128, 130, 131, 134, 136, 137, 138, 140, 142, 144, 145, 147, 148, 150, 155, 157, 158, 159, 161, 162, 163, 164, 165, 172, 175, 178, 179], "http2": 129, "http_author": 133, "http_client_add_user_agent_url": 88, "http_forwarded_for": 60, "http_host": 129, "http_proxi": 60, "http_user_ag": 129, "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 93, 101, 102, 123, 127, 133], "httpd_can_connect_ldap": 131, "httpd_can_network_connect": [123, 131], "httpd_can_network_connect_db": 131, "httpd_can_network_memcach": 131, "httpd_can_sendmail": 131, "httpd_sys_rw_content_t": [123, 131], "httpd_unifi": 131, "httpd_use_cif": 131, "httpd_use_fusef": 131, "httpd_use_gpg": 131, "httpd_use_nf": 131, "httpdavmodul": 138, "https_proxi": 60, "hub": [0, 2, 15, 162, 179], "hug": 7, "huge": [19, 60, 132], "huggingfac": [5, 11], "human": [6, 11, 81, 153, 179], "hundr": 138, "hurri": 63, "hy000": 138, "hybrid": 119, "hyperlink": 43, "hypervisor": 133, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 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, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 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, 170, 171, 172, 175, 176, 177, 178], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 117], "ibm": [1, 8, 12, 13, 15, 88], "ic": [111, 112, 151, 178], "ical": 151, "icalendar": 151, "icap": [65, 88], "icmp_req": [22, 63], "ico": [129, 155], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 129, 155], "id": [2, 3, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 96, 97, 106, 114, 116, 126, 150, 151, 153, 154, 156, 158, 164, 178, 179], "id1125420102": [60, 72], "idea": [2, 56, 119, 142, 148], "ideal": [1, 133, 138, 145, 178], "idelegatedset": 155, "ident": [36, 48, 60, 72, 74, 81, 88, 133, 143], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 99, 106, 110, 114, 117, 118, 125, 126, 132, 137, 138, 143, 151, 153, 155, 156, 157, 179], "idl": 132, "ie": [1, 3, 123], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 178, "ifmodul": [123, 126, 133, 138], "ifram": [60, 64, 126], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 93, 114, 130, 136, 154, 157], "ignore_notic": 22, "ignorefrontcontrol": [88, 133], "illustr": [47, 60, 133], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 129, 130, 132, 133, 153, 155, 156, 158, 160, 161, 164, 166, 167, 173, 174, 175, 176], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 125, 130, 132], "imagin": 43, "imaginari": [60, 88, 132, 133], "imaginarypdf": [60, 173], "imap": [63, 88, 130], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 106, 107, 151, 153, 155, 156], "immut": [81, 129], "impact": [28, 40, 48, 58, 60, 63, 96, 103, 132, 177], "imperson": 126, "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, 96, 112, 118, 133, 134, 143, 150, 155, 166], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 112, 113, 116, 123, 125, 128, 129, 130, 132, 133, 135, 138, 143, 149, 160, 169, 178, 179], "importantli": [119, 133], "impos": 15, "impract": 107, "imprint": 88, "imprinturl": [72, 155], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 95, 119, 123, 129, 130, 132, 134, 148, 160, 161], "in_arrai": 96, "inaccess": [23, 28, 48, 152], "inaccur": 8, "inact": 60, "inadvert": [58, 132], "inbox": [2, 15, 118], "inc": 72, "incid": 67, "inclin": 177, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 97, 99, 108, 110, 114, 116, 117, 118, 119, 126, 128, 129, 130, 132, 133, 135, 136, 138, 140, 147, 148, 151, 153, 155, 156, 157, 160, 161, 173, 174, 175, 176, 177, 178, 179], "includedir": 22, "includesubdomain": [126, 129], "inclus": 151, "incom": [12, 60, 61, 69, 108, 153], "incoming_server2server_share_en": 149, "incompat": [60, 132, 144], "incomplet": [151, 153], "inconsist": [38, 140, 151, 153, 155], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 93], "incorrectli": [60, 69, 118], "increas": [18, 26, 32, 38, 41, 59, 60, 63, 67, 99, 116, 124, 126, 129, 132, 133, 134, 138, 150, 174], "increment": [19, 152], "indefinit": [58, 107, 110, 155], "independ": [3, 29, 67, 77, 88, 93, 101, 110, 119, 147], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 96, 101, 124, 126, 129, 133, 137, 138, 147, 149, 161], "indexerjob": 3, "indi": 129, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 99, 106, 116, 128, 131, 138, 144, 148, 177, 178], "indirectli": 102, "individu": [26, 28, 32, 40, 54, 58, 60, 92, 93, 111, 118, 119, 126, 132, 150, 152, 153, 155], "industri": [12, 143], "inetorgperson": [81, 82, 154], "inevit": [126, 134], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 112, 113], "info": [8, 43, 60, 67, 70, 77, 81, 88, 93, 98, 108, 111, 129, 138, 150], "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, 93, 98, 101, 106, 108, 111, 112, 113, 116, 117, 118, 119, 120, 121, 124, 126, 129, 130, 132, 133, 134, 137, 142, 145, 147, 148, 150, 153, 154, 155, 156, 166, 170, 172, 174, 175, 176, 179], "infrastructur": [12, 60, 96, 138, 155], "inher": [57, 106], "ini": [22, 26, 33, 59, 60, 71, 88, 123, 124, 126, 127, 129, 131, 132, 133, 138, 150, 174], "init": [56, 88], "initdb": 124, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 96, 98, 99, 102, 110, 120, 153, 177, 179], "initialcontentimportjob": 3, "initialis": [124, 133, 145, 153], "inject": 60, "inlin": 15, "innodb": [23, 60, 134], "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": 153, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 149, 151, 153, 155, 167, 179], "insecur": [63, 88, 134], "insensit": [38, 50, 60, 101], "insert": [15, 60, 88, 129, 151, 160, 167], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 93, 96, 102, 112, 124, 132, 147, 152, 153, 155, 178], "insight": [1, 12, 13, 88], "inspect": [4, 56, 88, 153, 155], "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, 96, 97, 98, 99, 100, 101, 102, 105, 108, 112, 113, 116, 119, 120, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 157, 160, 162, 163, 165, 167, 169, 170, 172], "installdir": 92, "installed_vers": 149, "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, 93, 95, 96, 107, 110, 111, 112, 113, 114, 116, 118, 119, 120, 123, 127, 128, 129, 132, 133, 134, 138, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 155, 156, 157, 161, 164, 174, 176, 177, 178, 179], "instance_id": [18, 106], "instanceid": [29, 88, 143, 147], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 18, 23, 26, 31, 32, 38, 47, 48, 51, 53, 57, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 116, 118, 123, 126, 129, 133, 137, 138, 144, 145, 147, 148, 149, 151, 152, 153, 155, 158, 170, 176], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 118, 125, 126, 130, 132, 133, 135, 142, 144, 148, 179], "insuffici": [76, 93], "int": [26, 60, 73, 75, 76, 82, 96, 118], "int8_float32": 11, "intact": 111, "integ": [1, 19, 48, 57, 60, 96, 112, 113, 149, 151, 178], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 114, 116, 117, 119, 130, 133, 138, 139, 147, 150, 158, 166, 167, 173, 174, 176, 178, 179], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 116], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 137, "intel": [7, 10, 132], "intellig": [0, 1, 12, 15, 88, 95], "intend": [60, 77, 80, 81, 92, 126, 152, 155], "intens": [18, 28, 57, 132], "intention": [60, 77, 92, 110, 118], "interact": [1, 2, 3, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 115, 147, 150, 152, 156, 179], "intercept": 126, "interchang": [28, 63, 130], "interest": [106, 177], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 93, 95, 96, 108, 112, 114, 115, 117, 118, 125, 126, 127, 133, 134, 138, 148, 150, 153, 155, 156, 175, 179], "intermedi": 148, "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 70, 74, 82, 85, 88, 96, 97, 101, 116, 129, 132, 133, 147, 152, 157, 167, 178], "internal_defaultexpdai": 43, "interned_strings_buff": 124, "internet": [57, 60, 63, 126, 128, 133, 155, 176], "interoper": [13, 88], "interpret": [92, 95, 126], "interrupt": [28, 45, 57, 130], "interv": [38, 40, 56, 57, 60, 83, 88, 110, 112, 114, 132, 155, 177, 178], "intervent": [6, 56, 126, 178], "intl": [123, 125, 130], "introduc": [15, 50, 81, 95, 129, 176, 177], "introduct": [65, 88, 96, 123], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 107, 126, 129, 132, 139, 153, 156, 172], "invalid_hash": 137, "invalidsignatur": 137, "invalidsignatureexcept": 137, "invert": 101, "investig": [60, 153, 155], "invis": [40, 88, 101, 104, 105, 156], "invit": [63, 88, 110, 114, 115, 160, 170], "invite": 112, "invoc": [60, 126, 155, 172], "invok": [60, 92, 108, 147, 150, 172], "involv": [26, 106, 132, 134, 172], "io": [45, 60, 64, 72, 96, 101, 119, 129, 132, 133, 134, 138, 145], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [133, 145], "iotop": 132, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 95, 96, 97, 99, 101, 107, 110, 116, 127, 128, 129, 133, 143, 145, 155, 157, 164], "ip_host2_dock": 96, "ipad": 69, "ipaddress": 129, "iphon": 69, "iptabl": [58, 126, 164], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 129, "isanonym": 178, "isn": [23, 28, 60, 77, 81, 118, 133], "iso": [60, 66], "iso_639": 60, "isol": [59, 60, 65, 88, 107, 132, 133, 134, 147], "isset": 96, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 99, 112, 113, 125, 126, 128, 129, 132, 134, 136, 137, 145, 147, 148, 150, 155, 156, 158, 164, 166, 167, 174, 175], "isvfsen": 92, "italian": [4, 5, 10], "item": [3, 43, 46, 65, 83, 88, 102, 112, 115, 132, 142, 153, 155], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 8, 12, 14, 15, 20, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 111, 114, 116, 123, 125, 131, 132, 133, 137, 138, 142, 147, 151, 153, 155, 156, 165, 172, 175], "itself": [5, 22, 32, 38, 40, 58, 60, 84, 92, 95, 96, 101, 117, 125, 133, 137, 138, 145, 147, 149, 150, 152, 164, 172], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 154, 158, 172], "jail": [88, 124], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 126, 132, 138, 171, 172, 179], "jcal": 151, "jeffmatson": 69, "jeroboam": 154, "ji": 71, "jit": 88, "jit_buffer_s": 132, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [3, 6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 107, 111, 114, 116, 127, 130, 138, 142, 144, 148, 150, 151, 153, 178, 179], "joe": 178, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 156, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 99, 178], "journald": 99, "jp": 71, "jpeg": [60, 88, 132], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [129, 155], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 98, 99, 101, 112, 118, 123, 126, 129, 137, 149, 150, 151, 152, 153, 155, 156, 178, 179], "json_pretti": [14, 150, 151, 152, 153, 155, 156], "jump": [92, 142], "just": [22, 27, 53, 57, 63, 64, 81, 85, 92, 101, 112, 118, 124, 126, 128, 129, 132, 133, 138, 142, 143, 147, 158, 177, 178], "jwfcftvztglwtje": 41, "k": 76, "k7mdeng": 153, "karlsruh": 14, "kazakh": 4, "kb": [60, 153], "keep": [3, 15, 18, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 99, 101, 107, 109, 112, 113, 116, 118, 120, 123, 124, 125, 132, 133, 134, 138, 142, 143, 147, 148, 149, 156, 169, 177, 178], "keepal": [60, 138], "keepalive_timeout": 129, "keepalivetimeout": 138, "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, 95, 96, 97, 107, 116, 124, 125, 126, 129, 133, 135, 138, 144, 148, 149, 150, 153, 155, 167, 178], "kept": [49, 59, 60, 107, 132, 147], "keyboard": 88, "keydb": 59, "keyfil": 96, "keyformat": 29, "keypair": 32, "keyr": 159, "keyston": [36, 48, 60], "keyvalu": 48, "kfrh9": 156, "khtml": 67, "kib": 60, "kick": [58, 60], "kill": 132, "killmod": 57, "kind": [1, 14, 69, 96, 126, 179], "kink": 56, "kitchen": 2, "know": [29, 31, 40, 60, 67, 81, 84, 112, 118, 138, 154, 155, 158], "knowledg": [11, 138], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 101, 114, 118, 124, 129, 134, 138, 149, 154, 156, 165], "kokoro": 10, "korean": 4, "kovh8": 156, "krita": [60, 132], "kubectl": 3, "kubernet": 88, "kunz": 83, "kvm": 133, "l": [22, 57, 59, 69, 93, 124, 138, 155], "lab": 126, "label": [2, 15, 41, 69, 81, 97, 131, 138, 156], "labeleduri": 81, "lack": [128, 129], "lamp": 133, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 156], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 95, 116, 119, 130, 134, 179], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 88, 93, 112, 116, 118, 119, 129, 132, 133, 138, 148, 151, 155, 156], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 132, 156], "largest": [95, 155], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 99, 105, 110, 111, 114, 128, 144, 145, 147, 151, 153, 154, 155, 156, 177], "last_run": 155, "last_seen": 156, "lastact": 156, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 156, "lastmodifi": 178, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 178], "latenc": 132, "later": [17, 20, 43, 60, 83, 92, 102, 116, 118, 133, 134, 138, 144, 157, 164], "latest": [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], "latitud": 126, "latter": 59, "launch": [2, 55, 56, 59, 88, 93, 95, 97, 120, 142, 178], "law": 107, "lawyer": 12, "lax": 106, "layer": [28, 58, 60, 77, 80, 132, 137], "layla": [151, 152, 153, 155, 156], "layout": [60, 61, 148, 155, 160], "lazi": [60, 149], "ld": [81, 129], "ldap": [40, 46, 65, 74, 79, 85, 88, 111, 123, 127, 130, 132, 133, 143, 150, 155, 156], "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, 154], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 154], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 154], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 154], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 154], "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, 154], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 154], "lead": [33, 38, 52, 53, 57, 58, 59, 60, 70, 93, 112, 113, 126, 129, 132, 133, 138], "leak": [53, 60, 129, 132, 138, 178], "leakag": 126, "leaki": 132, "leap": 134, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 126, 137, 148, 149], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 107, 114, 128, 130, 132, 134, 144, 148, 154, 156, 157, 172, 177, 178], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 116, 132, 143, 151, 155], "lectur": 155, "leela": 154, "left": [40, 48, 57, 60, 63, 81, 85, 111, 132, 137, 147, 149, 153], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 150, 153, 155], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 106, 107, 109, 111], "legibl": 9, "legitim": [28, 58, 106, 107, 110], "length": [8, 32, 48, 56, 60, 86, 88, 129], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 126, 130, 132, 134, 177], "let": [15, 20, 40, 58, 63, 72, 85, 92, 96, 108, 129, 133, 143, 147, 153, 155, 158], "letsencrypt": 129, "letter": [38, 85, 179], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 93, 110, 126, 127, 134, 138, 147, 150, 153, 155, 156, 178], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 129], "libapache2": [125, 133], "libargon2": 130, "liber": 93, "libmagickcor": 72, "librari": [11, 47, 60, 63, 87, 93, 126, 132, 170], "libreoffic": [47, 60, 88, 130], "libsmbclient": 38, "libxml": 130, "libxml2": 130, "licenc": 17, "licens": [15, 16, 126], "life": [88, 123, 144, 148], "lifetim": [60, 81, 88, 106, 110], "lift": 96, "light": [41, 60, 81], "lighter": 177, "lighttpd": 138, "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, 93, 95, 96, 102, 112, 113, 116, 117, 118, 121, 123, 126, 128, 129, 132, 133, 138, 140, 142, 144, 145, 147, 148, 149, 150, 154, 155, 164, 165, 166, 167, 172, 179], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 93, 95, 96, 107, 108, 115, 118, 123, 124, 128, 132, 133, 134, 138, 143, 147, 151, 152, 153, 154, 155, 156, 172, 175, 177], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 96, 111, 116, 118, 125, 127, 129, 130, 132, 133, 138, 141, 142, 148, 150, 153, 175, 178], "liner": 151, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 101, 108, 116, 126, 128, 133, 136, 137, 138, 147, 153, 155, 156, 160, 165, 167, 179], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 140, 142, 148, 150, 156, 161], "list": [1, 2, 3, 4, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 71, 75, 86, 87, 88, 92, 94, 95, 100, 101, 106, 108, 110, 112, 118, 123, 126, 128, 129, 130, 133, 134, 137, 138, 142, 148, 149, 150, 154, 157, 158, 159, 164, 169, 171, 172, 177, 179], "listen": [38, 40, 45, 56, 59, 88, 96, 99, 114, 124, 129, 150, 153, 158, 163, 179], "listexapp": 98, "liter": 129, "literaci": 12, "littl": [4, 15, 70, 85, 96], "live": [0, 2, 7, 13, 60, 81, 88, 106, 107, 110, 119, 132, 155], "live_transcript": [13, 15, 88], "ll": [16, 22, 28, 38, 43, 60, 63, 81, 85, 112, 116, 129, 133, 142, 154, 158, 177], "llama": [1, 5, 12, 15], "llama3": 5, "llm": [2, 5, 8, 12, 14, 15, 88, 115], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 124], "load": [5, 7, 13, 22, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 106, 126, 127, 128, 130, 138, 149, 150], "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, 72, 73, 74, 81, 85, 88, 92, 93, 95, 97, 98, 101, 110, 113, 114, 119, 123, 124, 126, 129, 132, 133, 136, 138, 143, 145, 147, 149, 150, 153, 158, 172], "local_cert": [59, 60], "local_dock": 97, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [133, 145], "localhost": [22, 45, 52, 59, 60, 63, 69, 96, 97, 99, 116, 120, 123, 124, 125, 128, 133, 138, 145, 149, 155, 158, 176], "localitynam": 81, "localrootmountprovid": 153, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 95, 96, 101, 102, 110, 124, 126, 127, 129, 133, 135, 138, 140, 142, 143, 147, 148, 151, 153, 162, 166, 167], "lock": [32, 46, 59, 65, 67, 88, 101, 123, 127, 130, 138, 140, 143, 148, 155], "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, 96, 100, 101, 106, 108, 111, 112, 113, 116, 123, 126, 127, 128, 130, 131, 133, 134, 135, 140, 143, 145, 147, 148, 150, 153, 154, 156, 164, 175, 178], "log_error": 138, "log_not_found": 129, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 93, "logdir": 93, "logexpir": 93, "logfil": [3, 26, 67, 88, 93, 124, 129, 135, 143, 155], "logfile_audit": [67, 88, 135], "logfilemod": [67, 88, 126], "logic": [53, 67, 80, 98, 99, 146, 178], "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, 106, 107, 108, 110, 111, 125, 126, 138, 140, 141, 142, 148, 151, 152, 155, 156], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 96, "logist": 119, "loglevel": [58, 63, 67, 81, 88, 118, 126, 132], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 155], "logo_url": 88, "logohead": [72, 155], "logon": 38, "logout": 60, "logpath": 126, "logread": 67, "logrot": 107, "logtimezon": [67, 88, 149], "logwindow": 93, "loleaflet": 162, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 93, 105, 107, 110, 112, 113, 128, 129, 132, 133, 142, 147, 152, 153, 174, 177], "long_query_tim": 22, "longer": [26, 44, 48, 58, 60, 63, 66, 67, 85, 112, 123, 129, 132, 152, 153, 170, 172, 173, 176, 178], "longest": 26, "longitud": 126, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 96, 101, 116, 118, 128, 129, 133, 136, 137, 142, 147, 149, 150, 152, 157, 159, 160, 166, 179], "lookup": [38, 60, 69, 77, 110, 126], "lookup_serv": [88, 110], "lool": [158, 162], "loolwsd": 162, "loop": [88, 96], "loopback": [60, 128], "lose": [28, 45, 60, 152, 156], "loss": [22, 28, 40, 60, 85, 93, 134, 138, 152], "lost": [28, 29, 74, 80, 88, 107, 138, 151, 152, 153, 156], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 118, 132, 138, 142, 148, 179], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 107, 132, 133, 134], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 107, 132, 133], "lowest": [132, 134, 177], "lsof": 99, "lt": [4, 88, 127, 133, 134, 178], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 126], "lte": 178, "luk": 28, "m": [14, 22, 56, 59, 83, 124, 126, 129, 130, 132, 133, 140], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 60, 63, 88, 95, 96, 126, 127, 135, 143, 151, 152, 153, 155, 156], "macintosh": 81, "maco": [88, 91, 92, 114, 119, 134, 138], "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 93, 111, 118, 132, 133, 135, 143, 177, 179], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 130, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 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, 93, 95, 99, 107, 108, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 162, 164, 172, 174, 177, 178, 179], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 114, 115, 117, 131, 143, 154, 155, 167, 170], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 143], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 143], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 115, 118], "mailcow": 116, "mailer": [60, 63, 170], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 178, "main": [1, 4, 11, 15, 22, 60, 67, 81, 82, 95, 96, 99, 102, 129, 138, 140, 146, 147, 158, 162, 179], "mainli": [4, 16, 28, 62, 148], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 93, 113, 119, 126, 133, 138, 145, 147, 148, 150, 177], "mainten": [3, 19, 23, 25, 28, 51, 65, 85, 121, 132, 133, 134, 142, 143, 146, 147, 149, 153, 161, 174], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 126, 129, 133, 138, 142, 144, 147, 148, 161], "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, 93, 96, 101, 105, 108, 112, 114, 116, 118, 123, 124, 126, 129, 130, 132, 133, 134, 135, 137, 138, 142, 143, 144, 145, 146, 147, 148, 150, 152, 153, 155, 157, 158, 164, 165, 170, 171, 172, 173, 177, 178, 179], "malform": 153, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 126], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 60, 65, 69, 81, 84, 87, 88, 92, 94, 95, 101, 102, 105, 107, 112, 119, 123, 126, 127, 147, 148, 150, 152, 153, 156, 161, 173, 174, 175, 178], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 156], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 93, 112, 113, 118, 129, 132, 133, 138, 147, 150, 155, 156, 160, 172, 177], "manifest": [55, 129], "manifestli": 111, "manipul": [153, 154, 155], "manner": [1, 173, 174, 175], "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, 93, 95, 96, 97, 102, 107, 108, 111, 116, 119, 123, 125, 126, 127, 132, 135, 136, 137, 138, 141, 144, 145, 147, 151, 153, 155, 157, 161, 173, 177, 178, 179], "manual_instal": [8, 95, 97], "manual_install_harp": 97, "map": [2, 48, 60, 83, 88, 129, 132, 144, 154, 166], "march": 26, "marco": 2, "margin": 132, "mariadb": [20, 23, 25, 60, 88, 121, 123, 125, 128, 130, 132, 133, 151, 155, 173, 174], "mark": [2, 40, 60, 63, 77, 83, 88, 152, 153, 154, 179], "markdown": [18, 60, 71, 132], "market": [2, 11, 144], "martin": 2, "mask": 118, "master": [28, 46, 60, 63, 88, 150], "master_": 29, "mastodon": [166, 167], "match": [3, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 96, 101, 107, 113, 114, 118, 124, 129, 132, 133, 138, 143, 150, 153, 154, 156, 162, 164, 178], "math": 5, "matrix": 88, "matter": [43, 151, 172], "max": [1, 26, 46, 56, 88, 124, 126, 129, 155], "max_accelerated_fil": 124, "max_allowed_packet": 22, "max_children": [132, 133], "max_execution_tim": [26, 60, 130], "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": 132, "max_siz": [26, 88], "max_spare_serv": 132, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 93, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 58, 77, 85, 88, 93, 107, 112, 113, 129, 132, 153, 155], "maximumadressbook": 113, "maximumcalendarssubscript": 112, "maxkeepaliverequest": 138, "maxretri": 126, "mayb": 93, "mb": [38, 47, 60, 67, 82, 85, 93, 132], "mb4": 60, "mbstring": [71, 123, 125, 130], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 123, 124, 125], "md5sum": [123, 125], "mdm": 92, "me": [2, 14, 60, 88, 110], "mean": [11, 14, 15, 41, 50, 58, 60, 68, 70, 77, 80, 81, 85, 92, 96, 107, 116, 123, 126, 128, 129, 132, 134, 137, 148, 152, 172, 177, 178, 179], "meaningless": 129, "meant": [58, 60, 177], "measur": [7, 10, 12, 60, 70, 132], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 170], "media": [1, 2, 6, 7, 88, 101, 107, 127], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 108, 109, 142, 177, 178], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 101, 119, 151, 154, 156, 157, 166, 167], "memberof": [82, 88, 154], "membership": [43, 81, 82, 85, 101, 110, 118, 154, 156], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 123, 124, 127, 130, 135, 143, 150], "memcache_customprefix": [59, 88, 123], "memcached_opt": 88, "memcached_serv": [59, 88, 143], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 99, 118, 129, 130, 132, 133, 174, 178], "memory_consumpt": [124, 132], "memory_limit": [18, 26, 56, 130], "mention": [1, 3, 14, 77, 93, 95, 101, 123, 124, 126, 137, 147], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 95, 96, 138, 153, 155, 167, 173, 174, 175], "mere": [20, 177], "merg": [12, 65, 67, 88, 116, 166, 167], "mermaid": 15, "messag": [1, 2, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 110, 111, 116, 117, 118, 121, 126, 136, 139, 142, 143, 150, 151, 153, 164, 165, 166, 167, 179], "met": [2, 15, 49, 60, 67, 81, 126, 133], "meta": [15, 17, 75, 76, 81, 82, 130], "metadata": [12, 40, 43, 48, 60, 77, 85, 88, 96, 111, 118, 135, 138, 153, 155], "metadata_max_files": 88, "metal": [88, 135], "method": [17, 22, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 95, 96, 97, 118, 130, 133, 138, 143, 148, 150, 153, 155, 179], "metric": [52, 60, 89, 176], "mg": 124, "mib": [4, 26, 60, 88, 132], "micro": 133, "microservic": 132, "microsoft": [50, 56, 60, 63, 88, 93, 115, 129, 134, 170], "mid": [12, 132], "middl": 126, "middlewar": [69, 179], "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, 93, 95, 96, 99, 103, 113, 116, 118, 125, 126, 129, 131, 132, 134, 136, 138, 143, 144, 150, 157, 164, 165, 171, 175], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 95, 115, 118, 130, 141, 147, 150, 151, 153, 155, 156, 160, 174], "milli": 156, "million": 119, "millisecond": [48, 60, 93, 155], "milliwai": [153, 155, 156], "mime": [101, 110, 116, 129, 133, 153, 172], "mimetyp": [47, 60, 88, 101, 126, 129, 153], "mimetypealias": [51, 101], "mimetypelist": 155, "mimetypemap": [51, 155], "min_spare_serv": 132, "minchunks": 93, "mind": [3, 18, 59, 60, 95, 101, 120, 124, 125, 133, 147, 179], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 107, 114, 123, 124, 128, 132, 134, 138, 177], "minimis": 107, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 95, 98, 107, 116, 134, 143, 177], "minio": 48, "miniredir": 60, "minor": [3, 132, 142], "minsearchstringlength": 88, "mint": [56, 59, 133], "minut": [0, 3, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 93, 112, 113, 116, 142, 143, 148, 153, 156, 178], "mirror": [126, 129, 147], "misbehav": 58, "misbehavior": 70, "misbehaviour": 155, "miscellan": 88, "misconfigur": [58, 60, 88, 93, 99, 104, 118, 126, 129], "misformat": 81, "mismatch": [132, 153, 156, 175], "miss": [25, 43, 80, 81, 88, 92, 99, 126, 130, 133, 144, 146, 148, 153, 178], "missing_fil": 137, "missingok": 107, "mission": [138, 177], "mistak": [60, 81, 138], "mistakenli": 118, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 126], "mitm": 126, "mix": [41, 48], "mixer": 126, "mixtur": 60, "mj": [129, 171, 172], "mkdir": [28, 34, 96, 123, 124], "mknod": 158, "mkv": 47, "mlocat": 123, "mm": [81, 151], "mnt": [81, 133], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 101, 119, 126, 127, 132], "mod": [125, 133, 178], "mod_dav": [123, 133, 138], "mod_defl": 138, "mod_dir": 133, "mod_env": [60, 68, 126, 133], "mod_evas": 138, "mod_fastcgi": 138, "mod_fcgi": 133, "mod_fcgid": [88, 138], "mod_head": [68, 126, 133], "mod_mim": 133, "mod_pagespe": 138, "mod_php": [132, 133, 134, 138], "mod_proxy_fcgi": [88, 138], "mod_reqtimeout": [26, 138], "mod_rewrit": [41, 60, 68, 133, 138], "mod_secur": 138, "mod_spdi": 138, "mod_webdav": 133, "mod_xsendfil": 138, "modal": 94, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 97, 98, 112, 118, 123, 125, 127, 137, 141, 142, 143, 146, 149, 151, 152], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 95, 116, 126, 130, 135], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 129, "modif": [12, 22, 43, 63, 93, 105, 110, 112, 113, 133, 142], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 101, 102, 105, 107, 110, 112, 113, 114, 118, 126, 132, 133, 137, 138, 153, 154, 155, 156], "modul": [22, 26, 28, 29, 38, 45, 59, 60, 72, 81, 88, 124, 125, 127, 128, 129, 133, 134, 150, 158, 171, 172], "modular": [1, 15], "module_nam": 130, "molli": 81, "moment": [8, 164], "momentj": 66, "mon": [53, 56], "mondai": 53, "monitor": [16, 58, 59, 88, 126, 132, 155, 176, 178], "monterei": 134, "month": [1, 2, 14, 111, 126, 129, 133, 155], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 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, 99, 101, 107, 112, 113, 116, 117, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 146, 148, 149, 150, 153, 155, 156, 158, 160, 161, 163, 164, 170, 172, 174, 175, 176, 177, 178, 179], "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, 95, 96, 110, 111, 118, 119, 126, 129, 130, 131, 132, 133, 134, 138, 144, 145, 148, 150, 155, 156, 161, 162, 163, 169, 170, 177, 179], "mostli": [133, 179], "mount": [28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 96, 98, 100, 101, 110, 133, 152], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 107, 126, 128, 142, 143, 147, 148, 152, 174, 177], "movi": [47, 60, 166, 167], "mozilla": [67, 118, 126, 129, 134], "mp3": [51, 60, 174, 175, 176], "mp4": [129, 155], "mpeg": 51, "mrtumnu": 69, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 153], "much": [26, 61, 93, 96, 128, 131, 132, 138, 146, 155], "multi": [15, 46, 58, 59, 81, 88, 143, 178], "multibucket": [46, 88], "multibyt": [130, 146], "multilingu": [7, 12, 13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 5, 6, 9, 12, 15, 20, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 95, 96, 98, 116, 120, 126, 130, 132, 133, 144, 146, 149, 151, 153, 156, 157, 160, 161, 177, 178], "multiview": [123, 133], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 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, 95, 96, 98, 107, 108, 111, 112, 116, 120, 121, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 155, 156, 178], "mutual": [58, 153], "mx": [116, 118], "my": [2, 16, 48, 51, 72, 75, 81, 88, 95, 97, 112, 151, 153, 155, 164], "myapp": [63, 153], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 178, "mygroup": [75, 154], "myisam": 134, "mylogfil": 131, "mylogo": 72, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 155], "mysql": [20, 21, 25, 88, 121, 123, 125, 128, 130, 132, 133, 138, 145, 155, 174], "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": 123, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 140], "mysqlnd": 123, "n": [1, 5, 15, 19, 20, 29, 81, 99, 150, 152, 153, 155, 178], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 16, 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, 93, 95, 96, 97, 98, 101, 106, 110, 111, 112, 114, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 137, 149, 151, 153, 154, 155, 156, 162, 178], "namespac": [14, 55, 60, 63, 155], "nation": 107, "nativ": [24, 38, 179], "natur": [12, 15, 84, 157], "navig": [1, 55, 60, 93, 95, 101, 102, 105, 106, 112, 113, 116, 124, 136], "nc": [60, 63, 88, 100, 129], "nc_app_": 99, "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": 150, "nc_domain": 96, "nc_instance_url": [95, 96], "nc_loglevel": 150, "nc_pass": 156, "nc_samesitecookielax": [70, 106], "nc_samesitecookiestrict": [70, 106], "nc_serverid": [60, 143], "nc_session_id": 106, "nc_token": 106, "nc_usernam": 106, "ncdata": 138, "ncp": 130, "ncvm": 133, "ne": 178, "nearli": [123, 172], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 96, 106, 107, 116, 118, 123, 128, 129, 130, 133, 138, 157, 174, 179], "necessarili": [58, 77, 95, 96, 138], "need": [0, 1, 3, 4, 6, 8, 11, 12, 15, 16, 18, 22, 23, 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, 93, 95, 96, 97, 99, 101, 102, 108, 111, 112, 113, 116, 118, 120, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 164, 165, 170, 173, 174, 176, 177, 178, 179], "needsdbupgrad": 155, "neg": [6, 126], "neither": 78, "nest": [82, 88, 153, 155, 178], "net": [60, 96, 97, 123, 144, 155, 157], "netdata": 132, "netstat": [56, 63], "network": [15, 22, 40, 58, 60, 88, 92, 93, 95, 96, 97, 99, 101, 126, 127, 133, 134, 145, 155, 172, 178], "never": [28, 40, 44, 53, 60, 77, 81, 107, 110, 126, 132, 152, 153, 156], "nevertheless": 148, "new": [2, 3, 5, 6, 11, 12, 20, 23, 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, 95, 96, 98, 108, 111, 112, 114, 116, 118, 119, 124, 126, 128, 130, 131, 132, 133, 134, 138, 140, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 162, 170, 172, 173, 174, 177, 178, 179], "newer": [23, 38, 70, 95, 113, 116, 118, 132, 134, 146, 152, 177], "newest": [44, 144, 177], "newgroup": [75, 76], "newli": [20, 28, 40, 48, 53, 56, 57, 60, 77, 81, 105, 133, 177, 179], "newnam": 178, "newpassword": 156, "newus": 156, "next": [1, 2, 16, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 94, 95, 112, 113, 123, 127, 138, 147, 148, 151, 152, 153, 155, 161, 166, 177, 179], "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, 45, 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, 95, 98, 99, 100, 101, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 120, 121, 125, 127, 128, 130, 131, 132, 133, 134, 135, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 177], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 123, "nextcloud_config_dir": [60, 126], "nextcloud_docker_network_nam": 96, "nextcloud_host": 69, "nextcloud_imaginari": 132, "nextcloud_install_product": 133, "nextcloud_log": 93, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 96, 97], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 133, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 127], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 96, 110, 126, 127, 128, 132, 133, 134, 138, 170, 171, 172], "ngo": 138, "ngx_pagespe": [129, 138], "ni": 132, "nice": 51, "night": 3, "nin": 178, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 129, "no_last_modifi": 129, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobodi": 137, "nocanon": 158, "node": [6, 60, 88], "nodecod": 158, "nodecopiedev": 178, "nodecreatedev": 178, "nodedeletedev": 178, "nodeinfo": 138, "noderenamedev": 178, "noderestoredev": 178, "nodetouchedev": 178, "nodewrittenev": 178, "nofollow": [126, 129], "noindex": [126, 129], "nologon": 150, "nomatim": 2, "nominatim": 126, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 95, 97, 128, 130, 143, 147, 149, 151, 153, 155, 156, 157, 178], "none": [15, 32, 58, 60, 63, 81, 82, 85, 129, 142, 151, 152, 153, 155, 156, 158, 170], "nonexist": [81, 129], "nonexistingfil": 178, "nonexistingfold": 178, "noon": 2, "nor": [38, 57, 88, 95, 147, 178], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 120, 135, 138, 143, 147, 148, 150, 153, 155], "nosniff": [126, 129], "notabl": 38, "notat": [60, 67, 69, 178], "note": [0, 1, 2, 3, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 96, 102, 108, 112, 113, 121, 126, 127, 129, 133, 134, 138, 139, 142, 148, 149, 150, 152, 156, 164, 166, 177, 178], "noth": [3, 19, 153], "notic": [45, 47, 58, 72, 110, 128, 143, 156], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 105, 108, 110, 115, 126, 131, 133, 138, 141, 147, 149, 151, 155, 170, 178, 179], "notifempti": 107, "notifi": [16, 28, 38, 40, 53, 63, 88, 105, 108, 149, 178], "notify_guest": 16, "notion": [166, 167], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 95, 96, 112, 113, 116, 118, 121, 123, 124, 125, 128, 130, 133, 138, 142, 147, 158, 170, 171, 172, 175, 176, 178, 179], "nowadai": [60, 175], "nsign": 159, "nss": [65, 88], "nsuit": 159, "ntf": 38, "ntlm": [63, 170], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 97, 124, 149, 175, 178, 179], "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, 93, 107, 110, 112, 113, 116, 120, 123, 125, 126, 128, 132, 134, 138, 142, 147, 151, 152, 155, 156, 162, 172, 177, 178], "numer": [47, 60, 86, 128, 153, 155], "numeric_id": 29, "nuri": 159, "nvidia": [3, 4, 5, 6, 7, 9, 11, 95, 97, 99], "o": [26, 28, 58, 60, 81, 88, 124, 129, 130, 132, 133, 138, 143, 155], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 179], "oauth2": [65, 88, 150], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 112, 126, 130, 132, 143, 150, 151, 166, 175, 176, 179], "object_typ": 111, "objectclass": [81, 82, 154], "objectdata": 178, "objectid": 178, "objectprefix": 60, "objectstor": [48, 88, 135, 143], "objecttyp": 178, "oblig": [107, 108, 109], "obscur": 138, "observ": 12, "obsolet": 47, "obtain": [63, 68, 88, 139, 153], "obviou": [58, 172], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 123, 124, 129, 132, 137, 147, 150, 153, 155, 172, 173, 178, 179], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 138, "oc_admin": 128, "oc_admin1": 128, "oc_admin2": 128, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 138, "oc_carla": 60, "oc_com": 111, "oc_comments_read_mark": 111, "oc_databas": 151, "oc_dav_shar": 118, "oc_dbus": 151, "oc_default_modul": [29, 152], "oc_filecach": [29, 138, 151], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 118, "oc_mail_recipi": 118, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 155, "oc_pass": 156, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 106, "oc_shar": 20, "oc_storag": [29, 83, 138], "oca": [3, 60, 63, 155, 172, 178], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 23, 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, 98, 100, 103, 107, 108, 111, 112, 113, 116, 117, 118, 121, 126, 129, 132, 133, 136, 137, 138, 140, 142, 144, 147, 148, 149, 151, 152, 153, 154, 155, 156, 173, 174, 175, 178, 179], "occ6f7365735": 60, "occ_command": 67, "occas": 81, "occasion": [8, 142, 158], "occur": [2, 26, 59, 63, 96, 98, 132, 138, 143, 147, 155, 175, 178], "occurr": 26, "ocdownloadstart": 106, "oci": [20, 60, 121, 155], "ocp": [60, 77, 150, 178], "ocsp": 129, "octal": [60, 67], "odd": 132, "odf": [157, 160], "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 96, 116, 118, 123, 129, 131, 133, 142, 147, 150, 154, 155, 156, 158], "offend": 58, "offer": [0, 1, 12, 15, 16, 28, 56, 60, 64, 72, 114, 116, 118, 126, 133, 135, 138, 147, 177], "offic": [2, 15, 42, 47, 51, 58, 109, 115, 133, 158, 161, 162, 163, 164, 166, 167], "offici": [2, 56, 58, 60, 72, 81, 96, 119, 123, 124, 126, 129, 130, 132, 133, 134, 137, 138, 147, 169, 177], "offlin": [81, 93, 112, 113, 143, 147], "offload": [0, 1, 96, 132, 155], "offset": [75, 76, 154, 155, 156], "often": [1, 26, 57, 58, 60, 93, 107, 112, 113, 116, 126, 130, 133, 172, 174, 177], "ogg": [129, 171, 172], "oid": [60, 153], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 152, 153], "okai": 142, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 137, 138, 142, 147, 152, 153, 155, 170, 175], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 93, 107, 130, 132, 136, 138, 144, 147, 148, 153, 155], "oldest": [44, 85], "oldfil": 178, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 60, 69, 70, 81, 92, 106, 149, 151, 152, 153], "onbootsec": 57, "onc": [2, 14, 18, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 93, 108, 112, 118, 123, 125, 126, 129, 142, 143, 147, 149, 151, 152, 153, 154, 155, 156, 158, 169, 172, 177, 178, 179], "ondemand": 132, "one": [1, 2, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 95, 97, 101, 102, 108, 110, 111, 112, 114, 116, 118, 123, 128, 129, 130, 133, 134, 135, 136, 138, 142, 143, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 161, 166, 172, 177, 178, 179], "ones": [20, 44, 53, 54, 59, 60, 107, 132, 133, 142, 144, 147, 152, 166, 172, 177], "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, 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, 101, 102, 106, 108, 112, 113, 114, 116, 117, 118, 121, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 164, 166, 172, 175, 176, 177, 178, 179], "onlin": [32, 60, 88, 118, 119, 123, 133, 143, 148, 159, 160, 161, 163, 164], "onlyoffic": [32, 133], "onrequest": 179, "ons": [119, 132], "onunitactivesec": 57, "ooxml": 88, "opaqu": 178, "opcach": [59, 60, 88, 123, 124, 127, 129, 130], "opcod": [59, 132], "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, 93, 96, 116, 119, 126, 130, 133, 138, 147, 157, 164, 179], "open_basedir": [26, 126, 130], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 167], "openapi": [12, 60, 179], "openbsd": [88, 127], "opendocu": [47, 60, 132, 157], "opendyslex": 60, "opengraph": 166, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 130], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 118, 124, 130, 132], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [126, 166, 167], "opensus": [134, 150], "opentopodata": 126, "opentyp": 129, "openweathermap": 14, "oper": [3, 6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 101, 108, 109, 121, 127, 132, 133, 134, 135, 138, 142, 147, 148, 150, 152, 156, 157, 158, 177, 178], "operand": 129, "opinion": [133, 145], "opportunist": 63, "opt": [15, 29, 40, 60, 116, 123, 128, 135, 150, 155, 175, 178], "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, 119, 126, 129, 130, 132, 133, 177], "optimis": [6, 11, 138], "option": [0, 1, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 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, 93, 95, 96, 99, 100, 101, 105, 108, 110, 112, 113, 114, 116, 117, 118, 119, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 154, 155, 156, 159, 160, 161, 166, 172, 173, 177, 178, 179], "optout": 88, "oracl": [20, 22, 25, 60, 121, 128, 134, 155, 176], "orang": 15, "orchestr": 96, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 63, 71, 77, 80, 81, 95, 96, 116, 126, 133, 134, 140, 149, 155, 157, 177, 179], "org": [56, 60, 68, 76, 79, 93, 126, 129, 133, 155, 178], "organ": [60, 72, 85, 88, 119, 134, 155], "organis": [77, 81, 109, 134, 138], "organisationscop": 77, "organiz": [81, 85, 116], "organizationnam": 81, "orient": 130, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 106, 110, 118, 126, 138, 142, 143, 150, 153, 178], "orphan": [44, 88, 138, 155], "otf": 129, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 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, 96, 97, 98, 106, 107, 110, 111, 112, 113, 114, 116, 117, 119, 124, 125, 126, 127, 128, 129, 130, 132, 137, 139, 142, 145, 147, 149, 150, 151, 152, 155, 156, 157, 160, 161, 171, 172, 173, 174, 175, 176, 177, 178, 179], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 95, 101, 105, 108, 112, 116, 129, 132, 133, 138, 143, 153, 178], "ou": [81, 82, 83, 154], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 95, 96, 101, 102, 122, 123, 124, 126, 130, 132, 133, 134, 137, 138, 144, 160, 172, 177, 179], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 93, 95, 101, 106, 107, 115, 129, 131, 133, 134, 137, 138, 142, 143, 147, 148, 155, 156, 161, 170, 172, 177, 179], "outbound": [63, 172], "outdat": [44, 60, 65, 88, 112, 113, 123, 146, 155], "outdoor": 2, "outgo": [63, 88, 116, 118], "outlin": [2, 56], "outlook": [63, 88, 116], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 93, 111, 118, 130, 132, 133, 137, 148, 149, 150, 151, 152, 153, 155, 156, 178], "output_buff": 26, "outright": [58, 134], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 96, 101, 110, 112, 125, 128, 129, 132, 133, 135, 138, 140, 142], "outstand": [2, 7, 155], "ova": 133, "over": [22, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 93, 96, 106, 111, 119, 123, 126, 132, 133, 134, 142, 155, 166, 171], "overal": 132, "overcom": 60, "overflow": 40, "overhead": [60, 81, 93, 132], "overlai": 81, "overlap": [38, 177], "overload": 138, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 96, 97, 107, 129, 143, 147, 151, 155], "overridden": 69, "override_app_host": [96, 97, 99], "overridelocaldir": 92, "overriden": 60, "overrideserverurl": 92, "overseen": 119, "overview": [0, 1, 3, 13, 16, 46, 59, 61, 88, 110, 119, 137, 138, 141, 144, 151, 170, 172, 179], "overwrit": [27, 63, 65, 88, 112, 133, 143, 153, 172], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 143], "overwriteprotocol": [69, 70, 88, 143], "overwritewebroot": [69, 88, 143], "overwritten": [27, 60, 67, 73, 77, 81, 112], "owasp": 175, "own": [0, 1, 3, 4, 12, 15, 16, 26, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 101, 103, 107, 108, 111, 112, 113, 114, 124, 128, 133, 138, 148, 153, 158, 172, 178, 179], "owncloud": [30, 70, 88, 93, 138, 140, 141, 146, 150, 153, 155, 178], "owncloud_core_dump": 93, "owner": [22, 43, 77, 88, 101, 102, 105, 108, 110, 118, 123, 151, 179], "ownerid": 178, "ownership": [3, 34, 43, 60, 88, 108, 111, 121, 125, 133, 142, 150, 155], "p": [8, 22, 59, 96, 99, 123, 124, 131, 132, 136, 140, 146, 152, 158], "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 119, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 141, 148, 153, 155, 157, 160, 161, 179], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 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, 93, 94, 95, 99, 107, 108, 110, 111, 112, 116, 123, 125, 126, 129, 130, 132, 133, 137, 138, 142, 144, 147, 148, 149, 152, 153, 155, 156, 166, 167, 169, 179], "pagespe": 129, "paid": [147, 148], "pain": 95, "pair": [28, 37, 46, 60, 88, 97, 106, 116, 153], "pandoc": 42, "pane": [15, 85, 178], "panel": [56, 60, 66, 81, 85, 111, 132, 133, 155, 179], "pant": 63, "paper": 7, "paragraph": [126, 166], "parallel": [15, 22, 26, 60, 70, 95, 138, 178], "param": [178, 179], "paramet": [3, 5, 14, 16, 20, 21, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 93, 96, 107, 112, 126, 127, 129, 130, 133, 143, 150, 155, 172, 176, 177, 178, 179], "parameter_nam": 130, "paramount": [15, 81], "parent": [40, 45, 101, 133, 138, 153, 155], "pars": [3, 29, 60, 129, 130], "parser": 132, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 93, 111, 121, 123, 126, 133, 134, 137, 149, 158, 163, 177, 179], "part_file_in_storag": 88, "parti": [6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 106, 134, 138, 142, 148, 157, 165, 167], "partial": [63, 118, 178], "particip": [110, 112, 119], "particular": [1, 7, 22, 38, 48, 54, 81, 129, 132, 177], "particularli": [58, 177], "partit": [26, 60], "partner": [110, 119], "partnership": 160, "pass": [2, 5, 22, 32, 38, 56, 60, 65, 67, 81, 88, 92, 96, 97, 98, 121, 124, 129, 137, 138, 147, 150, 151, 153, 155, 156, 157, 177, 178], "passiv": 92, "passphras": [29, 110], "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, 93, 95, 96, 97, 106, 108, 110, 111, 116, 118, 120, 121, 123, 124, 125, 127, 128, 130, 133, 138, 140, 145, 146, 149, 150, 152, 153, 155, 156, 159, 170, 179], "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, "passwordsalt": 88, "past": [56, 60, 70, 137, 151], "pasta": 2, "patch": [63, 70, 88, 118, 139, 147, 177], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 65, 67, 69, 77, 81, 88, 92, 93, 96, 97, 98, 110, 118, 124, 126, 128, 129, 131, 133, 136, 143, 144, 149, 150, 151, 152, 153, 155, 156, 162, 178, 179], "path_info": 129, "path_redirect": 69, "pathparamet": 179, "pattern": [44, 49, 58, 60, 128, 132], "pauvo": 69, "payload": [88, 110, 179], "payment": 0, "pbkdf2": 29, "pc": [22, 142], "pcntl": 130, "pcntl_signal": 130, "pcntl_signal_dispatch": 130, "pdf": [2, 3, 47, 56, 60, 88, 102, 130, 133, 152, 153, 155, 156, 178], "pdo": [22, 60], "pdo_mysql": [22, 130], "pdo_pgsql": [22, 124, 130], "pdo_sqlit": 130, "pecl": [38, 59, 60, 123], "pecl82": 124, "peer": [22, 63, 116, 119, 129], "peertub": [166, 167], "pem": [22, 29, 60, 124], "pencil": 85, "pend": [126, 151, 155], "peopl": [6, 9, 43, 53, 58, 83, 102, 114, 138, 154, 166, 167], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 60, 77, 82, 88, 107, 108, 110, 112, 113, 134, 143, 152, 153, 156, 166, 168, 172, 178], "perbucket": 48, "percentag": 177, "perfect": [4, 9, 133, 145], "perfectli": 177, "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, 93, 95, 96, 99, 103, 106, 108, 118, 119, 126, 127, 128, 129, 130, 133, 134, 143, 144, 147, 148, 150, 151, 152, 153, 155, 161, 174, 175, 176, 177, 179], "period": [40, 44, 57, 58, 60, 85, 86, 105, 107, 111, 112, 113, 114, 116, 117, 134, 142, 148, 151, 153, 155, 177], "peripher": 133, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 96, 106, 111, 123, 126, 152, 153, 155, 156], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 101, 107, 118, 124, 129, 131, 133, 138, 142, 143, 147, 150, 155], "permit": [54, 60, 126, 129, 153, 177], "persian": 4, "persist": [22, 46, 60, 85, 88, 93, 98, 106, 118, 135, 155, 164], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 106, 107, 108, 109, 111, 112, 114, 116, 133, 137, 151, 152, 153, 161, 167], "personnel": 93, "perspect": 15, "pertain": [26, 93], "pg_ctl": [3, 124], "pg_dump": 140, "pg_hba": 22, "pg_user": 22, "pgp": [123, 125, 131], "pgpassword": [140, 146], "pgsql": [3, 20, 22, 60, 120, 121, 155], "pgsql_ssl": 88, "pgvector": 3, "phar": [130, 147, 155], "phase": [147, 155], "philip": 154, "phone": [43, 60, 76, 77, 80, 81, 110, 113, 119, 156], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 110, 153], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 45, 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, 95, 96, 106, 107, 108, 110, 111, 112, 113, 114, 117, 118, 120, 121, 125, 127, 128, 131, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 164, 170, 171, 172, 173, 175, 176, 178, 179], "php7": 22, "php70": 150, "php74": 123, "php8": [129, 132], "php82_fpm": 124, "php_valu": 26, "phpdoc": 178, "phpinfo": [130, 138], "phpredi": [59, 60, 130], "physic": [13, 28, 56, 88, 96, 110, 128, 143], "pi": [60, 119, 133], "pick": [15, 22, 40, 66, 93, 143, 153, 167], "picker": [1, 2, 15, 88, 165], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 110, 130], "pin": 147, "ping": [22, 63], "pipe": [60, 118, 149], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 124, "pkg_add": 124, "pki": 129, "place": [1, 26, 27, 45, 56, 60, 63, 88, 114, 116, 118, 121, 124, 128, 129, 131, 132, 136, 137, 138, 142, 147, 163, 165, 166, 178], "placehold": [29, 32, 60, 81], "plai": [60, 72, 132], "plain": [14, 60, 63, 70, 71, 101, 106, 129, 133, 138, 150], "plaintext": [81, 110], "plan": [2, 8, 25, 81, 125, 130, 133, 134, 148, 177], "planetexpress": 154, "platform": [31, 48, 92, 93, 119, 123, 132, 134, 135, 178], "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, 93, 96, 101, 102, 113, 117, 118, 123, 126, 128, 132, 133, 134, 137, 138, 142, 144, 147, 148, 150, 151, 152, 164, 172, 177, 179], "plu": [67, 178, 179], "plug": 132, "pluggabl": 80, "plugin": [96, 178], "plusserv": [0, 15], "pm": [132, 133], "png": [31, 60, 72, 129, 155], "pod": 3, "pod_nam": 3, "podman": [3, 133], "point": [6, 12, 15, 16, 22, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 95, 101, 107, 112, 113, 128, 129, 132, 133, 134, 138, 143, 147, 148, 153], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 106, 107, 108, 110, 126, 129, 130, 131, 139, 153], "policycoreutil": 123, "polish": 4, "polit": [1, 14], "poll": [40, 132, 155, 178], "pomerium": 88, "pool": [59, 126, 129, 132, 133], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 110, 133, 142], "popular": [45, 95, 96], "popup": 116, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 95, 96, 97, 99, 123, 124, 126, 128, 132, 149, 151, 155, 157, 163], "portabl": 88, "portal": [48, 63, 102, 116, 122], "portion": 138, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 172, 177], "posix": [50, 130], "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, 93, 95, 96, 97, 99, 101, 102, 112, 113, 116, 118, 121, 126, 129, 130, 131, 132, 133, 134, 137, 138, 142, 143, 144, 146, 147, 149, 152, 157, 158, 164, 177, 179], "possibli": [60, 118, 126, 138], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 118, 128, 129, 136, 149, 157, 178, 179], "post_allow": 157, "post_max_s": [26, 124, 133], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 124], "postgresql": [3, 20, 60, 88, 121, 124, 128, 130, 132, 134, 151, 155, 173, 176], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 132], "power": [3, 5, 6, 7, 9, 10, 14, 60, 101, 129, 133, 143], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 160, "pptx": [2, 160], "pr": 136, "practic": [47, 60, 77, 107, 118, 126, 143], "pre": [50, 60, 65, 72, 88, 95, 99, 126, 128, 130, 138, 148, 152, 177], "preced": [51, 60, 80, 88, 153], "precis": [48, 81, 94], "precompil": 132, "preconfigur": [88, 101], "predefin": [50, 92, 93], "predict": [107, 132, 177], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 115, 117, 118, 121, 129, 130, 133, 138, 155, 178], "prefil": 92, "prefix": [25, 31, 60, 65, 67, 88, 106, 114, 129, 133, 154, 155], "preinstal": 161, "preliminari": 155, "preload": [124, 126, 129], "prem": 15, "prematur": [112, 113], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 109, 119], "premium": 134, "prepar": [15, 88, 95, 110, 127, 133], "prepend": [1, 60, 129, 138, 150], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 125, 127, 128, 141, 143], "preseed": 60, "presenc": 178, "present": [2, 51, 54, 60, 63, 64, 67, 81, 96, 110, 119, 132, 133, 136, 147, 153, 158, 159, 178], "preserv": [0, 1, 4, 40, 43, 44, 85, 123, 132, 142, 146, 156, 160], "preset": 85, "press": [2, 41, 63, 93, 112, 113, 138, 167], "pretrain": 5, "pretti": [68, 88, 125, 127, 129, 179], "prettier": 133, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 104, 106, 112, 116, 126, 128, 129, 132, 134, 137, 138, 140, 146, 148, 154, 172, 175], "preview": [28, 40, 46, 65, 88, 127, 130, 133, 150, 151, 165], "preview_concurrency_al": [88, 172], "preview_concurrency_new": [88, 172], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 132, "preview_imaginary_kei": [88, 132], "preview_imaginary_url": [88, 132], "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": 172, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 96, 107, 110, 118, 137, 141, 146, 147, 148, 151, 162, 179], "previous": [53, 67, 95, 130, 138, 162, 172, 174], "previousnam": 178, "previousvalu": 178, "primari": [1, 25, 26, 31, 46, 58, 72, 81, 82, 88, 144, 148, 153, 154], "primarili": [77, 119], "primary_color": [72, 155], "princip": [138, 151, 178], "principaluri": 138, "principl": 107, "print": [98, 132, 178], "printenv": 133, "prior": [12, 26, 58, 93, 144, 178], "priorit": 12, "prioriti": [2, 16, 71, 132], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 106, 107, 108, 110], "privacyurl": [72, 155], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 110, 113, 116, 119, 124, 126, 129, 149, 153, 156], "privatedata": 20, "privatekei": [29, 153], "privileg": [22, 65, 74, 76, 81, 88, 125, 128, 155, 179], "proactiv": 43, "probabl": [48, 81, 129, 159], "probe": 126, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 112, 113, 129, 131, 132, 133, 137, 139, 143, 147, 155, 177], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 147], "proc": [3, 132], "proce": [29, 108, 116, 123, 147, 151], "procedur": [12, 28, 77, 93, 107, 147, 155], "proceed": [28, 142, 148, 153], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 93, 95, 97, 99, 110, 115, 123, 126, 129, 130, 134, 137, 138, 142, 147, 148, 150, 152, 153, 156, 178], "process_idle_timeout": 132, "processor": 132, "produc": [5, 8, 11, 67, 107, 111, 132, 153], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 107, 123, 126, 128, 131, 132, 133, 138, 151, 155], "productnam": 155, "profession": [11, 15, 28, 134, 138], "profil": [40, 43, 74, 84, 88, 93, 111, 113, 114, 126, 131, 150, 172], "profile_en": 156, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 138, "program": [12, 57, 63, 92, 93, 95, 143, 150], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 150], "project": [2, 48, 84, 88, 119, 125, 137, 153, 155, 177, 178], "prometheu": 176, "promin": [174, 179], "promot": [81, 88], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 93, 116, 125, 133, 145, 150, 151, 152, 153, 179], "pronoun": [77, 156], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 132, 137, 138, 147, 151, 153, 172], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 93, 99, 126, 130, 137, 138, 142, 152, 155, 158], "properti": [60, 74, 81, 85, 88, 92, 93, 156, 178, 179], "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, 132], "propget": 93, "propos": 12, "proprietari": [8, 15], "prospect": 177, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 102, 107, 109, 110, 133, 147, 155], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 60, 69, 82, 88, 93, 95, 96, 97, 99, 118, 126, 157, 164], "prototyp": 96, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 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, 93, 94, 97, 106, 109, 112, 113, 114, 116, 119, 120, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 143, 145, 147, 153, 155, 156, 157, 160, 161, 165, 170, 172, 173, 174, 175, 176, 177, 178, 179], "provider_id": [80, 156], "providerfactori": 60, "provis": [48, 74, 77, 84, 88, 116], "provisioning_api": [17, 149], "proxi": [2, 16, 48, 65, 70, 88, 97, 99, 100, 110, 128, 133, 143, 147, 159, 160, 161], "proxy_add_x_forwarded_for": 129, "proxy_buff": 26, "proxy_connect_timeout": [96, 129], "proxy_fcgi": 133, "proxy_hide_head": 69, "proxy_http": 158, "proxy_max_temp_file_s": 26, "proxy_pass": 96, "proxy_protocol": 96, "proxy_read_timeout": 129, "proxy_send_timeout": 129, "proxy_set": [158, 159, 162, 163], "proxy_set_head": 129, "proxy_timeout": 96, "proxy_wstunnel": 158, "proxyexclud": 88, "proxyfcgibackendtyp": 133, "proxypass": [96, 158], "proxypassmatch": 158, "proxypassrevers": [96, 158], "proxypreservehost": 158, "proxytimeout": [26, 132], "proxyuserpwd": 88, "prune": [44, 99, 107, 118], "pseudo": 126, "psql": [22, 146], "pt6h": 112, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 96, 99, 101, 108, 110, 119, 123, 124, 126, 129, 133, 156, 160, 166, 167], "public_html": 33, "publiccalendar": 112, "publickei": 29, "publicli": [5, 12, 18, 29, 118, 133, 149], "publish": [2, 12, 60, 77, 96, 110, 160, 177], "pubshare_": 29, "pull": [81, 88, 129, 136, 158, 162, 166, 167, 172], "punctuat": 4, "pure": 3, "purg": [107, 112], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 106, 107], "push": [40, 53, 110, 112, 126, 137, 153, 155], "pushfe": 126, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 118, 124, 128, 133, 138, 140, 142, 143, 148, 179], "putsizelimit": 48, "pwa": 60, "pwd": 96, "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 128, "py": 18, "python": [3, 123], "q": [22, 63, 150], "q16": 72, "qmail": [60, 65, 88], "quali": 126, "qualifi": [12, 41, 63, 155, 178], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 132, 153, 177], "quantiz": [5, 7], "queri": [1, 3, 15, 24, 25, 43, 60, 67, 76, 81, 87, 111, 112, 114, 128, 132, 138, 148, 150, 178, 179], "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, 118, 147, 150, 160], "queu": [53, 132, 155], "queue": [3, 53, 88, 132], "quic": 129, "quick": [2, 56, 64, 88, 116, 127, 133], "quickli": [16, 50, 85, 93, 154], "quickstart": [88, 141], "quiet": [44, 49, 56, 92, 150, 153], "quit": [19, 22, 56, 63, 125, 144, 148, 152], "quot": [60, 82, 96], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 107, 111, 139, 156], "quota_include_external_storag": [85, 88], "qwen": 2, "r": [7, 10, 28, 34, 69, 82, 121, 123, 125, 130, 133, 136, 138, 142], "race": [7, 70], "rackspac": 36, "rainloop": [88, 127], "rais": [12, 22, 26, 132, 138], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 132, 134], "ramdisk": 60, "ran": [6, 70, 172], "rand": 48, "random": [29, 40, 48, 81, 106, 110, 118, 126, 128], "random_byt": 29, "randomli": [60, 106], "rang": [48, 58, 60, 67, 69, 88, 95, 96, 101, 127, 132, 148], "rank": 155, "rapid": 177, "rapidli": 177, "rar": 56, "rare": [28, 31, 48, 60, 146], "raspberri": [60, 119], "rate": [0, 5, 7, 13, 88, 108, 115, 128], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 113, "ratelimitcalendarcr": 112, "ratelimitperiodaddressbookcr": 113, "ratelimitperiodcalendarcr": 112, "rather": [16, 32, 35, 41, 45, 60, 63, 81, 92, 111, 114, 129, 132, 138, 147, 153, 155, 172], "ration": 60, "raw": [15, 29, 71, 81, 96, 137, 138], "rc4": 152, "rcctl": 124, "re": [4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 94, 101, 107, 111, 116, 118, 128, 129, 133, 134, 138, 142, 143, 147, 148, 152, 153, 156, 174, 175, 177], "reach": [40, 43, 58, 60, 67, 70, 81, 95, 99, 123, 126, 133, 134, 138, 143, 144, 145, 147, 148, 151, 164, 172, 177], "reachabl": [8, 58, 60, 69, 77, 88, 95, 96, 99, 129, 133, 138, 143, 155, 172, 179], "react": [150, 179], "reaction": 110, "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 101, 107, 112, 113, 114, 118, 123, 124, 129, 133, 134, 135, 137, 151, 152, 153, 155, 156, 157, 174, 175, 176], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 129, 151, 152, 153, 155, 156], "reader": [20, 155], "readi": [40, 60, 81, 99, 133, 164, 177], "readili": 28, "readm": [3, 18, 84, 95, 96, 99, 124, 133], "readonli": 178, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 118, 128, 129, 132, 155, 160, 177, 178], "real_ip_head": 129, "realiz": 15, "realli": [126, 152, 155], "reallysuppress": 92, "realtim": 58, "reappear": 107, "reason": [5, 15, 48, 52, 58, 60, 63, 64, 70, 81, 92, 107, 110, 118, 120, 126, 128, 130, 131, 132, 133, 134, 138, 143, 158, 172, 174, 175, 176], "reassign": 101, "reboot": 88, "rebuild": 155, "receiv": [15, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 108, 111, 116, 123, 134, 137, 148, 150, 153, 177, 178, 179], "recent": [26, 43, 44, 58, 81, 88, 107, 110, 115, 132, 143, 155, 156, 158, 162], "recid": 126, "recip": 2, "recipi": [29, 41, 60, 111, 114, 116, 118, 153, 155], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88], "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, 93, 95, 96, 101, 107, 118, 124, 125, 126, 127, 128, 129, 132, 133, 134, 137, 138, 140, 144, 145, 146, 148, 149, 151, 152, 155, 157, 158, 161, 165, 170, 171, 172, 174, 175, 177, 178, 179], "recommended": 177, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 107, 110, 111, 114, 118, 132, 143, 151, 153, 155], "recov": [28, 29, 78, 85, 88, 146, 153], "recoveri": [46, 80, 88, 107, 141, 152, 153], "recoverykey_": 29, "recreat": 146, "rectif": 88, "recurs": [153, 155], "recv": 63, "recycl": 132, "red": [15, 40, 41, 59, 93, 133, 134], "redact": [93, 118], "reddit": [166, 167], "redeploi": 3, "redhat": 56, "redi": [26, 45, 65, 70, 88, 127, 130, 135, 143, 149], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 95, 96, 99, 116, 129, 133, 138], "redirectregex": 69, "redis_log_fil": 88, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 107, 118, 127, 129, 138, 177], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 99, 107, 117, 118, 123, 127, 128, 136, 138, 148, 166, 172, 178, 179], "referenc": [14, 18, 29, 138], "reference_opengraph": 88, "referr": [126, 129], "refil": 59, "reflect": [60, 129, 143, 155], "refman": [60, 134], "reformat": 81, "reformul": 1, "refresh": [59, 60, 81, 88, 145, 155], "refus": 153, "regard": [84, 118, 130, 135, 177], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 107, 128, 149, 155, 177], "regener": [32, 143, 153, 155], "regex": [69, 126, 129], "region": [31, 36, 48, 60, 153], "regionon": [48, 60], "regist": [3, 4, 8, 15, 57, 60, 88, 95, 96, 100, 112, 116, 143, 153, 155, 156, 165, 166], "registr": [57, 116], "registrar": 133, "regress": 134, "regul": 109, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 101, 114, 147, 148, 161, 178], "regularli": [12, 15, 53, 57, 81, 107, 133, 148, 151, 177], "regulatori": 109, "reinforc": 5, "reinstal": [3, 92, 138, 144], "reject": [38, 88], "rel": [18, 29, 133, 156], "relai": 143, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 93, 95, 96, 113, 118, 127, 130, 132, 133, 135, 136, 143, 151, 154, 173, 174, 175, 177], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 93, 96, 123, 125, 126, 130, 132, 133, 134, 136, 137, 141, 144, 145, 147, 148, 149, 150, 158, 159, 162, 176], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 93, 116, 124, 126, 129, 143, 177], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 117, 134, 165, 167, 177], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 130, 134, 138, 142, 143, 160, 164], "reliev": 45, "reload": [40, 64, 96, 123, 132, 133], "remain": [3, 28, 40, 43, 60, 77, 81, 85, 96, 108, 111, 116, 124, 129, 143, 152, 153], "remedi": [60, 113, 138], "rememb": [60, 81, 85, 88, 92, 110, 123, 124, 131, 179], "remember_login_cookie_lifetim": [88, 106, 107, 110], "remi": 123, "remind": [88, 115], "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, 93, 95, 97, 101, 110, 111, 112, 114, 116, 118, 124, 127, 129, 133, 134, 138, 147, 149, 155, 176], "remote_addr": [60, 129], "remoteaddr": [67, 126], "remotedirpath": 92, "remoteport": [96, 97], "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, 98, 99, 101, 102, 105, 107, 108, 111, 112, 113, 114, 116, 118, 120, 126, 129, 131, 133, 135, 137, 147, 149, 152, 153, 156, 158, 162, 164, 171, 172, 175], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 142, 153, 156, 162, 178], "render": [9, 60, 71, 160, 165, 166], "renew": 133, "rep": 153, "repair": [2, 23, 28, 51, 60, 88, 142, 148, 150], "repeat": [31, 58, 99, 143, 155], "repeatedli": [6, 126, 129, 132], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 96, 111, 112, 123, 125, 126, 127, 130, 133, 137, 138, 143, 147, 148, 149, 151, 153, 155, 158, 170, 173, 178], "repli": [63, 116, 160], "replic": [0, 1, 15, 21, 25, 88, 153, 167], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 159, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 93, 119, 131, 132, 138, 149, 152, 153, 155, 164, 173, 174, 175], "repositori": [13, 29, 56, 58, 88, 119, 123, 162, 166, 167, 177], "repres": [29, 44, 47, 118, 178, 179], "represent": 155, "reproduc": 70, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 22, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 93, 95, 96, 97, 99, 101, 106, 107, 109, 110, 118, 120, 124, 126, 129, 130, 132, 134, 136, 137, 138, 157, 163, 166, 167, 172, 178, 179], "request_checksum_calcul": [60, 175], "request_slowlog_timeout": 132, "request_terminate_timeout": 132, "request_timeout": [26, 41, 88], "request_uri": 129, "requestreadtimeout": 26, "requir": [1, 13, 15, 16, 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, 95, 96, 97, 99, 106, 107, 108, 110, 116, 120, 125, 126, 127, 128, 129, 131, 132, 133, 137, 138, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 161, 162, 164, 177, 178], "rerun": 28, "rescan": [40, 88, 139, 142, 153, 155], "resembl": 12, "resend": 88, "reserv": [50, 114, 174], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 110, 112, 113, 118, 123, 129, 132, 138, 147, 152, 153, 156, 170], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 96, 131], "resist": 58, "resiz": 81, "resolut": [9, 164, 172], "resolv": [28, 40, 58, 60, 65, 88, 93, 96, 114, 124, 126, 147, 148, 166, 172], "resolveexappurl": 96, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 95, 113, 115, 118, 126, 127, 132, 133, 138, 142, 145, 179], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 95, 96, 112, 116, 178], "respond": [52, 60, 88, 99, 101, 108, 109, 132], "respons": [2, 12, 14, 29, 65, 67, 88, 92, 96, 110, 119, 126, 129, 138, 147, 166, 175, 179], "response_checksum_valid": [60, 175], "rest": [28, 118, 123, 132, 138, 155], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 93, 96, 123, 126, 129, 130, 132, 133, 138, 142, 158, 159, 178], "restor": [23, 29, 44, 60, 88, 107, 138, 140, 141, 142, 143, 147, 148, 151, 155, 177, 178], "restorecon": [123, 131], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 101, 104, 105, 110, 112, 113, 118, 127, 138, 149, 155, 156, 171, 176], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 95, 96, 116, 118, 128, 129, 132, 133, 137, 151, 153, 155, 172, 178, 179], "resum": [60, 179], "resync": 113, "retain": [12, 14, 40, 43, 44, 53, 77, 106, 107, 110, 111, 140], "retent": [44, 49, 60, 88, 102, 104, 109, 110, 111, 115, 153, 156], "rethink": 107, "retrain": 177, "retreat": 2, "retri": [60, 147, 158], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 111, 155, 179], "retroact": [53, 60], "return": [17, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 96, 112, 123, 124, 129, 132, 133, 138, 149, 156, 166, 179], "reus": 118, "revalid": 88, "revalidate_freq": [124, 132], "reveal": 164, "revers": [28, 60, 65, 70, 88, 95, 99, 128, 133, 136, 143, 152, 159, 160, 161], "reverse_proxi": 69, "revert": [88, 93, 112, 139, 145, 147, 148, 152], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 126, 138, 142, 143, 148, 156, 172, 174, 177], "revis": [142, 148], "revisit": [132, 142, 148], "revok": [54, 107], "rewrit": [113, 129, 133, 138, 155, 172], "rewritebas": [88, 133], "rewriteengin": [69, 138], "rewriterul": [69, 138], "rewritten": 129, "rf": 131, "rfc": [60, 80, 126, 151], "rfc6749": 68, "rh": [123, 150], "rhel": [132, 133], "rich": [65, 88, 166], "rich_editing_en": 71, "richdocu": 172, "richdocumentscod": 129, "rid": [47, 152], "right": [1, 25, 33, 59, 60, 76, 81, 85, 88, 107, 108, 112, 129, 133, 142, 147, 172, 178], "rim": 129, "risk": [12, 28, 34, 60, 63, 126, 129, 132, 138, 147, 148, 177], "riski": 12, "rm": [98, 146, 158], "rmm": 92, "ro": 8, "roadmap": 12, "roam": 93, "rob": 154, "robbi": 154, "robert": 154, "roberta": 154, "robin": [17, 154], "robot": [126, 129], "robust": [13, 88, 133, 145], "rocm": [95, 97, 99], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 177, "rollout": 92, "roman": 2, "room": [8, 88, 115, 153, 155], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 102, 118, 120, 121, 123, 124, 125, 128, 129, 131, 132, 133, 136, 137, 138, 147, 150, 153], "rootcert": 60, "ropa": 110, "rotat": [4, 67, 88, 107, 110, 130, 155], "rough": [5, 7, 9, 10, 15], "round": 29, "rout": [2, 60, 96, 110, 129], "router": [60, 69], "routin": [150, 153, 177], "row": [22, 23, 40, 118, 134, 151, 174, 178], "row_format": [23, 60], "rowaddedev": 178, "rowdeletedev": 178, "rowid": 178, "rowupdatedev": 178, "rpm": 123, "rsa": [29, 32, 40], "rss": [129, 132], "rsync": [93, 140, 143, 146], "rt": 179, "rtrim": 96, "rtx": 95, "rule": [13, 44, 60, 81, 82, 86, 88, 96, 103, 104, 105, 123, 126, 129, 133, 147, 155, 157, 163], "ruleset": 131, "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, 93, 95, 96, 97, 107, 111, 112, 113, 114, 117, 118, 119, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 146, 147, 149, 151, 152, 153, 154, 155, 158, 159, 161, 164, 172, 177, 178], "runner": [15, 156], "runtim": [82, 88, 92, 134, 155], "runus": 150, "russian": 4, "rv": 131, "rw": 82, "s01": [81, 82, 154], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 143, 153], "s_time": 118, "sabr": 138, "sabredav": [133, 138, 178], "safari": [67, 134], "safe": [15, 19, 20, 28, 44, 59, 60, 63, 68, 95, 123, 125, 129, 130, 138, 143, 147, 152, 153, 155], "safest": 101, "safeti": 64, "sai": [63, 147], "said": [12, 15], "sake": 123, "sale": [16, 149, 160], "salt": [29, 60], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 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, 95, 97, 98, 101, 106, 110, 112, 113, 114, 118, 123, 124, 126, 129, 133, 135, 136, 138, 143, 145, 147, 148, 149, 150, 151, 153, 155, 156, 157, 158, 164, 172, 173, 174, 175, 178, 179], "sameorigin": [126, 129], "samesit": [60, 106], "saml": [29, 32, 85, 111, 132, 156], "sampl": [26, 45, 88, 120, 124, 149], "sandbox": 133, "sanit": [46, 88], "sapi": 130, "satisfi": [56, 67, 77, 128, 133], "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 93, 95, 108, 114, 116, 118, 129, 152, 179], "save_com": [124, 132], "sbin": [60, 63, 133], "scalabl": [48, 119, 132, 133, 145, 160, 161, 164], "scale": [13, 20, 25, 48, 60, 88, 107, 119, 134, 138], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 93, 137, 138, 142, 146, 150], "scanfil": 155, "scanner": [40, 60, 63, 65, 88, 155], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 126, 135, 146, 161, 178], "scene": 15, "schedul": [2, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 107, 112, 115, 117, 148, 149, 151, 155, 178], "scheduledaft": [14, 155], "scheduledat": 14, "schema": [20, 22, 25, 88, 135, 144, 147, 153, 155], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 96], "school": 138, "scl": 150, "scope": [8, 22, 48, 60, 68, 74, 81, 88, 98, 110, 137, 153, 155, 156], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 133, 147], "screen": [41, 63, 78, 79, 88, 108, 120, 133, 147, 155, 179], "screenshar": 134, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 121, 127, 129, 132, 150, 155, 156, 157, 178], "script_filenam": 129, "scriptnam": 67, "scroll": [41, 85, 111, 112, 113, 116, 147], "sdk": [6, 123, 131, 157, 158, 159, 161, 162, 163, 175], "sdkref": [60, 175], "seal": 88, "sealert": 131, "seamless": [81, 178], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 95, 112, 126, 130, 132, 133, 138, 143, 156, 165], "sec": [22, 23, 82, 118], "second": [1, 15, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 101, 106, 112, 116, 118, 126, 132, 133, 137, 138, 149, 155, 156, 158, 178], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 116, 126, 132, 143, 149, 152, 153, 155, 157], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 93, 96, 99, 101, 102, 111, 112, 113, 116, 117, 118, 119, 120, 128, 129, 132, 133, 138, 144, 147, 148, 149, 153, 155, 158, 164, 177], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 97, 107, 108, 110, 111, 112, 118, 123, 127, 128, 129, 130, 131, 133, 134, 137, 138, 144, 145, 148, 150, 156, 158, 176, 177], "see": [0, 1, 2, 3, 4, 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, 95, 96, 99, 101, 102, 107, 108, 110, 111, 112, 113, 114, 116, 118, 119, 121, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 161, 164, 169, 170, 171, 173, 174, 175, 176, 178, 179], "seed": [59, 60], "seem": [3, 60, 63, 70, 147], "seen": [60, 93, 95, 102, 113, 137, 154], "segment": 26, "segreg": 126, "select": [1, 2, 3, 4, 5, 7, 8, 12, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 80, 81, 85, 92, 106, 107, 110, 111, 116, 128, 132, 138, 147, 149, 151, 153, 179], "selector": [88, 150], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 93, 96, 108, 114, 116, 133, 155, 170], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 127], "semanag": [123, 131], "semant": 3, "semaphor": 130, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 17, 18, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 96, 108, 112, 114, 115, 126, 128, 131, 133, 147, 153, 155, 156, 165, 170, 178, 179], "send_timeout": 129, "sendemail": 156, "sender": [63, 116], "sendeventremindersmod": [112, 151], "sendfil": 138, "sendmail": [60, 65, 88, 127], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 93, 118, 126, 133, 138, 149], "sent": [12, 40, 60, 63, 67, 81, 88, 96, 110, 112, 116, 118, 151, 155, 156, 179], "sentri": 118, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 99, 111, 120, 148, 149, 155, 156, 179], "septemb": 4, "sequenc": [155, 176], "seri": [166, 167, 175], "serial": 60, "serializer_igbinari": 60, "seriou": 138, "serious": 70, "serv": [3, 5, 7, 26, 60, 63, 69, 70, 81, 88, 101, 119, 127, 133, 143, 147, 157, 158, 172, 173, 175], "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, 95, 96, 97, 99, 105, 106, 111, 115, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 135, 137, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 161, 163, 164, 166, 169, 176, 177, 178], "server0": 59, "server1": [48, 59, 128], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 96, 124, 129], "server_token": 129, "serveraddr": 96, "serverid": [88, 143], "serverinfo": [59, 138, 172], "servernam": [96, 123, 126, 133], "servernotavailableexcept": 155, "serverport": 96, "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, 93, 99, 106, 108, 123, 124, 126, 132, 133, 139, 143, 153, 155, 156, 157, 159, 161, 162, 165, 167, 177], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 93, 106, 118, 129, 130, 140, 143, 148, 150, 153, 155, 156], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 153, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 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, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 113, 114, 115, 116, 117, 118, 120, 124, 125, 126, 127, 128, 129, 131, 134, 137, 138, 140, 142, 143, 144, 146, 147, 148, 150, 153, 159, 160, 164, 170, 171, 172, 174, 177, 178], "set_real_ip_from": 129, "setenv": [126, 133], "setenvif": 133, "setroubleshoot": 131, "setsebool": [123, 131], "settingclass": 155, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 16, 22, 28, 32, 40, 44, 48, 49, 57, 58, 60, 62, 63, 69, 80, 81, 88, 91, 93, 96, 97, 100, 123, 127, 128, 129, 132, 133, 134, 138, 143, 144, 148, 149, 150, 151, 152, 158, 159, 161, 162, 163, 170, 173, 174], "setup_create_db_us": 128, "setupcheck": 155, "sever": [3, 12, 26, 28, 58, 60, 63, 77, 92, 96, 98, 107, 108, 111, 116, 126, 129, 130, 132, 133, 138, 143, 148, 153, 155, 161, 177], "sf": [16, 124], "sftp": [32, 40, 60, 88, 130, 153], "sgi": 60, "sh": [15, 133, 178], "sha": 147, "sha256": [29, 123, 125], "sha256_cert_fingerprint": 55, "sha256sum": [123, 125], "sha512": [29, 147], "sha512sum": 147, "shall": [60, 66, 81], "shallow": [40, 153], "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 93, 95, 96, 97, 101, 102, 107, 108, 110, 111, 114, 115, 119, 124, 126, 131, 133, 135, 139, 142, 146, 147, 150, 156, 157, 159, 160, 167, 178], "share20": [60, 155], "share_fold": 88, "shareabl": 114, "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": [110, 153], "shares_extern": 153, "sharescount": 60, "sharesreminderjob": 155, "sheet": 175, "shell": [15, 23, 57, 60, 150, 178], "shellextens": 92, "shibbol": 157, "ship": [4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 113, 114, 123, 126, 129, 132, 147, 149, 153, 154, 155, 165, 173, 176], "shm_size": [59, 174], "shop": 2, "short": [60, 77, 81, 83, 95, 106, 112, 113, 116, 138, 151], "shortcut": [88, 92], "shorten": 106, "shorter": [29, 133], "shortli": 105, "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, 95, 96, 97, 99, 101, 105, 112, 113, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 143, 144, 147, 148, 150, 151, 157, 158, 160, 163, 170, 171, 174, 176, 177, 178, 179], "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, 93, 98, 99, 111, 112, 113, 118, 128, 129, 132, 137, 138, 142, 147, 148, 149, 150, 151, 153, 156, 160, 172, 178, 179], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 179], "showexpir": 178, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 110, 126, 128, 129, 130, 137, 138, 142, 147, 148, 151, 152, 153, 155, 156], "showonli": 149, "showpassword": 82, "shred": 107, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 107, 110, 112, 126, 128, 129, 132, 138, 147, 152, 153, 154, 155, 172, 174], "sidebar": [85, 94], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 93, 116, 123, 129, 133, 134, 138, 139, 155, 170], "signal": [4, 106], "signatur": [56, 88, 116, 123, 125, 137, 153], "signific": [8, 12, 34, 45, 53, 137, 177], "significantli": [8, 12, 26, 59, 60, 67, 134, 148], "signup": [2, 60], "silent": [92, 98, 108, 131, 152, 153], "similar": [0, 6, 19, 26, 36, 60, 81, 93, 102, 105, 118, 123, 126, 131, 132, 133, 135, 137, 149], "similarli": [143, 149, 157, 175], "simpl": [15, 20, 51, 60, 88, 102, 119, 133, 145, 179], "simplesignuplink": 88, "simplest": [96, 138], "simplexml": 130, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 95, 101, 102, 142, 146, 147, 178], "simplifi": [96, 152], "simul": 153, "simultan": [45, 132, 133, 149, 177], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 93, 101, 103, 105, 114, 124, 129, 134, 144, 147, 153, 156, 162, 172, 174, 177, 179], "singl": [3, 20, 26, 28, 41, 57, 58, 60, 67, 81, 85, 88, 116, 118, 123, 125, 129, 131, 132, 133, 140, 151, 152, 154, 155, 156, 178], "sink": 2, "site": [26, 65, 88, 106, 126, 133, 138], "situat": [3, 5, 7, 48, 58, 60, 69, 93, 123, 126, 138], "sixteen": 177, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 85, 88, 93, 95, 101, 110, 119, 124, 126, 129, 139, 142, 143, 152, 155, 170, 178], "sji": 71, "skeleton": [18, 27, 60, 179], "skeletondirectori": [27, 88], "skill": [133, 145], "skip": [3, 40, 53, 57, 60, 65, 81, 88, 92, 97, 118, 120, 147, 148, 150, 151, 153, 155], "skip_name_resolv": 22, "skipapp": 172, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 93, "sl": 59, "sla": 12, "slash": [33, 40, 51, 93, 138, 178], "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 98], "slogan": [72, 155], "slot": 2, "slow": [3, 6, 22, 28, 56, 58, 59, 60, 88, 93], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 152, 161], "slowlog": 132, "sluggish": 132, "small": [2, 12, 43, 47, 57, 60, 88, 112, 113, 129, 138, 161, 177], "smaller": [4, 5, 7, 12, 26, 60, 147], "smallest": 11, "smart": [1, 2, 15, 88, 116, 165], "smb": [40, 60, 88, 127, 130, 153], "smbclient": [38, 130], "sme": 133, "smili": 23, "smith": [151, 156], "smtp": [60, 65, 88, 127, 143], "sn": [82, 154], "snap": [88, 127, 130, 141, 148], "snapcraft": [133, 145], "snapd": [133, 145], "snapshot": [81, 96, 107], "sni": 70, "sniff": 126, "snip": 57, "snooz": [88, 115], "snowflak": [88, 150], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 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, 101, 102, 105, 107, 111, 112, 116, 117, 118, 123, 124, 126, 129, 130, 131, 132, 133, 137, 138, 142, 143, 144, 146, 147, 148, 149, 150, 153, 154, 159, 162, 165, 172, 177, 178, 179], "sock": [22, 45, 59, 60, 96, 97, 124, 129, 149], "socket": [22, 45, 56, 60, 88, 97, 99, 100, 124, 128, 132, 163], "sodium": 130, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 93, 134, 170], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 93, 116, 133, 137, 138, 143, 160, 162, 164], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 131, 136, 147, 175], "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, 93, 94, 95, 96, 98, 101, 110, 112, 113, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 161, 165, 166, 169, 172, 174, 178, 179], "some_secure_password": 97, "some_very_secure_password": [96, 97], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 95, 96, 129, 132, 137, 144, 164, 178], "sometim": [2, 5, 15, 43, 48, 57, 85, 132, 138, 142, 147, 177], "somewher": [81, 96, 129, 133, 179], "soon": [4, 15, 62, 112, 132, 177], "sooner": [107, 177, 178], "sophist": [58, 93], "sorri": 164, "sort": [44, 60, 114, 130, 161], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 142, "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, 112, 119, 123, 126, 129, 130, 132, 133, 135, 138, 146, 147, 150, 153, 157, 159, 178], "sourcecalendardata": 178, "sourcecalendarid": 178, "sourcecod": 29, "sourceshar": 178, "sovereignti": [0, 1, 4], "sp6": 134, "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 93, 127, 138, 149, 152, 153, 174], "spaghetti": 2, "spam": [60, 63, 116], "span": [73, 101], "spanish": [4, 5, 10, 11], "spawn": [38, 132], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 112, 133, 138, 178], "specialis": 51, "specif": [1, 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, 93, 96, 104, 107, 108, 109, 112, 113, 118, 119, 127, 133, 143, 147, 149, 150, 151, 152, 153, 155, 156, 166, 172, 173, 177, 178, 179], "specifi": [1, 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, 93, 96, 112, 120, 126, 128, 129, 132, 133, 137, 149, 150, 151, 153, 156, 157, 158, 178, 179], "speech": [4, 13, 88, 155, 167], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 93, 95, 129, 132], "speedscop": 60, "split": [21, 24, 88, 129, 168], "spoof": [60, 69], "sporad": 93, "spread": 133, "spreadsheet": [2, 51], "spreed": [4, 8], "sprintf": 96, "sql": [60, 88, 111, 138, 148, 151], "sqlbkp": 146, "sqlbkp_": 140, "sqlite": [20, 25, 88, 121, 127, 128, 134, 135, 138, 151, 155], "sqlite3": [20, 60, 121, 140, 146], "sqlstate": 138, "squeez": 22, "src": [123, 131], "src_path": 98, "sse": [28, 31, 46, 88, 155], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 94, 118, 124, 127, 129, 155, 158, 159, 163], "ssl_certif": 129, "ssl_certificate_kei": 129, "ssl_context": [59, 60], "ssl_stapl": 129, "ssl_stapling_verifi": 129, "sslproxycheckpeercn": 158, "sslproxycheckpeernam": 158, "sslproxyengin": 158, "sslproxyverifi": 158, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 126, "stabil": [12, 70, 134, 174, 175, 176], "stabilityai": 15, "stabl": [15, 60, 124, 133, 134, 137, 145, 160, 167, 177], "stable_bas": 56, "stablediffus": 15, "stack": [58, 133, 161], "stage": [60, 121, 147, 177], "stai": [133, 148, 150, 177], "stale": [40, 60, 143, 151, 153, 156], "stall": [60, 132], "stand": 179, "standalon": [4, 17, 161], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 89, 92, 112, 120, 123, 126, 130, 133, 134, 142, 143, 150, 151, 153, 173, 174, 175, 178], "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 93, 96, 106, 112, 118, 123, 124, 125, 127, 130, 132, 133, 138, 142, 143, 145, 147, 148, 151, 152, 154, 158, 162, 164, 172, 173, 174, 175, 176, 178, 179], "start_header_id": 5, "start_serv": 132, "startedat": 14, "startlimitburst": [15, 178], "startlimitinterv": [15, 178], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 170], "startup": [59, 99, 143], "stat": [1, 3, 88], "state": [28, 44, 63, 77, 80, 85, 88, 118, 126, 146, 150, 151, 153, 155, 178], "statement": 151, "static": [12, 29, 60, 69, 126, 129, 132, 158, 171, 172, 173, 179], "statist": [1, 3, 118, 126, 153, 155], "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 98, 100, 110, 117, 126, 129, 136, 148, 150, 151, 153, 159, 164, 177, 178], "status": 149, "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, 150], "stdout": [4, 153, 155], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 93, 95, 96, 98, 99, 108, 116, 118, 123, 127, 128, 132, 133, 136, 138, 141, 143, 147, 155, 158, 161, 162], "stephani": 156, "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, 95, 118, 126, 129, 130, 138, 143, 147, 152, 153, 154, 172, 173, 174, 175, 176, 177, 178], "stolen": [80, 107], "stop": [5, 6, 26, 53, 56, 60, 67, 93, 96, 102, 138, 142, 143, 147, 155, 158, 162], "stop_aft": 155, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 93, 98, 102, 110, 128, 130, 131, 132, 133, 134, 135, 138, 143, 149, 150, 156, 159], "storage43": 81, "storageclass": 48, "storagecrawljob": 3, "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, 95, 107, 108, 109, 111, 113, 116, 126, 128, 129, 131, 132, 135, 138, 149, 150, 151, 152, 156, 173, 174, 175], "storecryptedpassword": 88, "str_ends_with": 96, "straight": [18, 92], "straightforward": 55, "strain": 118, "strategi": [23, 48, 107], "stream": [26, 40, 53, 56, 60, 96, 123, 134], "streamable_http": 2, "street": 2, "strength": 128, "strengthen": 70, "strict": [14, 58, 65, 88, 106, 129], "strictest": 77, "strictli": [96, 132, 133], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 96, 98, 110, 129, 149, 151, 156, 177, 178], "strip": [68, 77, 133, 156], "strive": 15, "strong": [86, 128], "stronger": 131, "strongli": [38, 60, 64, 70, 93, 132, 133, 134, 143, 177], "strtotim": 153, "structur": [28, 29, 48, 60, 67, 81, 96, 151, 153, 178], "stt_whisper2": [1, 13, 15, 88], "stuck": 142, "studio": 60, "stuff": 99, "stuttgart": 156, "style": [11, 31, 60, 72, 166, 178], "su": [124, 150], "sub": [6, 76, 81, 169, 179], "subadmin": 88, "subdir": [88, 127], "subdirectori": [36, 40, 88, 129, 133, 153], "subdomain": [60, 69, 124, 126, 133, 158], "subfold": [33, 37, 38, 39, 92, 133, 138], "subgroup": 81, "subject": [28, 77, 88, 107, 108, 109, 112, 118], "submiss": [63, 178, 179], "submissionmessag": 178, "submit": 126, "submitcontentjob": 3, "submitmultipl": 178, "subnet": [60, 96], "subpag": 168, "subpath": 96, "subreddit": [166, 167], "subscrib": 112, "subscript": [12, 88, 115, 121, 126, 134, 160, 164, 177], "subsecond": 48, "subsequ": [92, 118, 133, 145, 154], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 96], "subsystem": 155, "subtitl": 15, "succe": [67, 92, 96], "succeed": [15, 147], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 95, 107, 110, 123, 124, 126, 128, 138, 142, 147, 153, 155], "successfulli": [14, 41, 60, 78, 99, 134, 147, 152, 155, 156, 179], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 107, 108, 111, 112, 113, 118, 121, 125, 130, 132, 133, 136, 138, 140, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 178], "suexec": 60, "suffer": 11, "suffici": [77, 123, 128, 132, 133, 138, 144, 155], "suffix": 128, "suggest": [14, 43, 60, 70, 96, 114, 119, 123, 131, 132, 133, 177], "suit": [12, 28, 96, 126], "suitabl": [45, 57, 59, 60, 95, 126, 132, 151, 155, 177], "sum": [123, 125, 132], "summar": [1, 5, 13, 15, 53, 88, 116, 155], "summari": [13, 15, 88, 111, 115, 132], "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 151], "superus": 124, "supervisor": 153, "supplement": 60, "supplementari": 133, "suppli": [59, 81, 88, 112, 116, 133, 147], "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, 99, 101, 112, 116, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 151, 153, 155, 156, 160, 164, 165, 166, 170, 171, 172, 173, 174, 175, 176, 178], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 153], "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, 93, 96, 101, 105, 108, 112, 114, 118, 123, 124, 126, 129, 132, 133, 134, 137, 138, 142, 143, 144, 146, 148, 150, 156, 158, 164, 170, 171, 172, 173, 174, 177, 178], "surfac": 77, "surfer": 64, "surnam": [81, 96], "surround": 60, "surveyserv": 126, "surviv": 85, "suse": 134, "suspect": 177, "suspend": [88, 111], "suspici": [15, 57, 58, 60], "sustain": [8, 138], "sv1b7krauqmf8qq": 133, "svg": [47, 60, 72, 129, 132, 133], "swap": [26, 29, 132], "swift": [36, 60, 88, 143, 153], "switch": [13, 16, 60, 81, 88, 113, 118, 126, 132, 150, 151, 152, 155, 161, 179], "symbol": 16, "symfoni": 150, "symlink": [60, 138], "symmetr": 29, "sync": [3, 18, 19, 22, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 114, 118, 128, 132, 143, 146, 150, 155, 178], "sync_xxxxxxx": 93, "synchron": [50, 60, 65, 88, 91, 93, 101, 112, 113, 119, 151, 153, 155], "synchronis": [88, 141], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 134, 150, 154, 156], "sys_nic": 132, "sysadmin": 121, "syslog": [60, 88, 155], "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, 99, 103, 107, 110, 111, 112, 114, 115, 118, 123, 124, 125, 127, 130, 131, 138, 142, 143, 144, 149, 150, 153, 157, 165, 166, 177], "system_addressbook_expos": 113, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 123, 132, 158, 159, 178], "systemd": [53, 56, 60, 88, 99, 153, 155, 159], "systempl": 157, "systemtag": [88, 178], "systemtagsmanag": 60, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [130, 172], "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, 95, 99, 112, 118, 123, 126, 129, 131, 133, 137, 138, 140, 142, 143, 147, 149, 153, 158, 164, 178, 179], "tab": [88, 150, 179], "tabl": [15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 108, 112, 113, 118, 125, 127, 138, 144, 146, 151, 153, 154, 155, 156, 166, 167, 174], "tableid": 178, "tablespac": 128, "tag": [2, 6, 12, 16, 40, 43, 60, 88, 101, 104, 126, 129, 137, 150, 153, 157], "tagassignedev": 178, "tagid": 178, "tagunassignedev": 178, "tail": [4, 129, 155], "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, 93, 96, 97, 120, 121, 124, 126, 129, 132, 133, 137, 142, 143, 145, 147, 148, 151, 152, 153, 174, 178, 179], "taken": [3, 43, 57, 63, 70, 81, 96, 113, 151], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 111, 133, 138, 165, 166, 167, 172, 179], "talk_bot": 8, "talo": 56, "tamper": [28, 147], "tape": 107, "tar": [60, 123, 125, 133, 142], "tarbal": [121, 133, 142, 155], "target": [15, 16, 28, 29, 55, 57, 60, 77, 81, 88, 92, 93, 126, 142, 150, 151, 152, 153, 155, 164, 178], "targetcalendardata": 178, "targetcalendarid": 178, "targetchunkuploaddur": 93, "targetshar": 178, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 110, 112, 119, 124, 133, 150], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 178], "tasktyp": 155, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [88, 96, 126, 129, 132], "te": 154, "team": [16, 18, 46, 48, 60, 65, 88, 111, 133, 145, 161], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 107, 137, 152, 179], "techniqu": 138, "technologi": [15, 70, 133, 145], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 96, 129, 138, 142], "telnet": 63, "temp": [26, 60, 93, 133], "tempdirectori": [26, 88, 143], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 96, 129, 157, 167], "template0": 22, "template1": [22, 146], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 105, 156, 179], "temporarili": [58, 63, 67, 81, 83, 110, 153, 155], "tempt": 1, "ten": [40, 56, 80, 81, 119, 151], "tenant": [36, 116], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 125, 129, 133, 152, 153, 159, 163], "terri": 154, "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, 95, 96, 98, 100, 101, 118, 119, 126, 129, 131, 134, 136, 137, 138, 151, 153, 155, 172, 176, 177, 178], "tester": 101, "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, 101, 110, 116, 126, 129, 133, 137, 138, 143, 150, 151, 155, 158, 165, 166, 167, 172], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 155], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 129, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 16, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 93, 107, 111, 112, 114, 116, 119, 123, 126, 128, 130, 132, 133, 134, 137, 138, 142, 146, 147, 150, 153, 155, 158, 161, 172, 174, 175, 177, 179], "thank": [69, 177], "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, 71, 80, 81, 84, 85, 87, 88, 91, 92, 93, 95, 101, 102, 103, 106, 107, 108, 110, 111, 112, 116, 118, 119, 125, 126, 128, 129, 132, 133, 134, 136, 138, 142, 143, 149, 151, 153, 155, 156, 157, 165, 174, 177], "them": [6, 7, 14, 15, 16, 22, 23, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 60, 63, 64, 67, 70, 71, 72, 81, 83, 85, 86, 92, 93, 95, 101, 102, 107, 108, 110, 111, 112, 114, 118, 123, 125, 126, 129, 132, 133, 137, 138, 142, 143, 146, 148, 149, 151, 152, 153, 155, 156, 157, 172, 179], "theme": [64, 65, 88, 140, 142, 146, 147, 150, 151], "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 101, 114], "theori": [5, 9], "therefor": [8, 12, 22, 26, 29, 32, 43, 47, 60, 67, 77, 81, 101, 102, 112, 113, 133, 135, 146, 148, 150, 166], "therein": 12, "thereof": 129, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 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, 95, 96, 97, 98, 99, 101, 102, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 161, 162, 164, 166, 170, 172, 173, 174, 175, 176, 177, 178, 179], "thing": [15, 60, 80, 126, 133, 140, 146, 147, 177], "think": [36, 138], "third": [12, 15, 16, 22, 28, 57, 78, 88, 106, 134, 142, 148], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 60, 64, 68, 69, 70, 81, 85, 93, 102, 108, 111, 112, 123, 126, 128, 129, 130, 134, 137, 138, 147, 148, 151, 152, 153, 155, 156, 165, 176, 177, 178], "though": [38, 39, 43, 56, 59, 88, 126, 129, 133, 137, 172], "thought": 18, "thousand": [119, 138], "thread": [4, 7, 10, 15, 60, 88, 115, 138], "threat": [28, 126], "three": [8, 40, 56, 57, 63, 67, 80, 95, 96, 116, 118, 121, 128, 146, 156], "threshold": [58, 88, 116], "throttl": [58, 155], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 95, 96, 103, 108, 110, 112, 116, 118, 123, 133, 138, 147, 150, 153, 155, 156, 160, 161, 163, 164, 177], "throughout": [29, 58, 177], "throughput": [7, 10, 60], "throw": 93, "thrown": 150, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 95, 126, 129, 133, 134, 148], "thumbnail": [28, 41, 47, 60, 85], "thumbnailphoto": 81, "thunderbird": [112, 113, 114, 118], "ti": [8, 43, 143], "ticket": [61, 147, 148, 166, 167], "tidewai": 138, "tiff": [47, 60, 133], "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, 73, 77, 81, 83, 85, 93, 95, 101, 105, 107, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 132, 133, 134, 142, 143, 145, 147, 148, 150, 151, 152, 153, 155, 160, 174, 176, 177, 178], "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 99, 124, 129, 132, 133, 142, 147, 149, 155, 178], "timer": 57, "timestamp": [14, 29, 67, 110, 114, 143, 155, 178], "timezon": [8, 57, 60, 67, 101, 130, 155], "tip": [46, 70, 74, 88, 127, 141, 174], "titl": [1, 2, 81, 110, 166, 178], "tl": [28, 60, 63, 69, 70, 82, 88, 95, 96, 118, 124, 126, 127, 129, 133], "tld": [60, 70, 82, 96, 118, 124, 126, 149, 156], "tld_fullchain": 124, "tld_privat": 124, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 93, 118, 133, 147, 151, 153], "tmp_table_s": 22, "tmpdir": [60, 133], "tmux": 88, "to_gif_exampl": 98, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 134, 138], "toggl": [53, 60, 72, 77, 81, 113, 132, 138, 153], "token": [1, 2, 32, 58, 60, 65, 74, 88, 96, 106, 110, 111, 157, 178, 179], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "tom": 75, "toml": [69, 96], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 93, 112, 113, 126, 128, 132, 133, 138, 142, 145, 172], "took": 118, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 93, 95, 98, 111, 116, 126, 131, 132, 138, 148, 178], "toolkit": 6, "tooltip": 81, "toot": [166, 167], "top": [1, 12, 16, 60, 64, 67, 70, 85, 138, 147, 148, 167, 178], "topic": [1, 28, 45, 60, 119, 133, 138], "total": [6, 29, 36, 60, 67, 85, 87, 155, 156], "totalnumberofsynctokenstokeep": [112, 113], "totalsizelimit": 60, "totp": [80, 156], "touch": [124, 142], "toward": 60, "town": 76, "trace": [67, 132, 150], "trace_mod": 22, "track": [53, 88, 92, 93, 112, 113, 115, 118, 153], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 133, 158], "trail": [40, 50, 53, 154], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 127, 130, 134, 138, 140], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 167], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 107, 108, 111, 129, 132, 137, 142, 147], "transferincomingshar": [88, 153], "transient": 132, "transifex": 66, "transit": [60, 133, 138], "translat": [13, 27, 88, 115, 119, 130, 167], "translate2": [1, 4, 13, 15, 88], "transmit": [106, 110, 126, 179], "transp": 178, "transpar": [13, 15, 29, 58, 88], "transport": [2, 65, 81, 88, 93, 96, 116, 129, 134], "trash": [28, 29, 41, 46, 65, 85, 88, 110, 115, 118, 150, 151], "trashbin": [43, 49, 60, 88, 107, 138, 150, 151], "trashbin_retention_oblig": [49, 88, 107, 153], "trashcan": 40, "travers": 178, "treat": [38, 60, 69, 70, 81, 128, 129, 138], "tree": [1, 2, 40, 81, 88, 132, 155], "tremend": 93, "tri": [18, 126, 128, 151, 152], "triag": 119, "trick": [74, 88, 127, 174], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 67, 76, 81, 85, 88, 113, 118, 132, 137, 138, 147, 153, 155, 172, 178, 179], "triplecheck": 164, "trixi": 134, "trojan": 56, "troubl": [81, 138, 172], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 115, 126, 127, 133, 141, 143, 148, 160], "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, 93, 101, 116, 118, 126, 129, 133, 138, 140, 148, 149, 150, 153, 155, 156, 159, 178, 179], "truena": [88, 127], "truncat": [29, 53, 60], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 96, 110, 116, 126, 127, 147, 149, 155], "trusted_domain": [41, 88, 128, 129, 143, 149, 172], "trusted_proxi": [58, 69, 88], "trustedcafil": 96, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 93, 95, 96, 101, 118, 129, 131, 134, 137, 138, 142, 146, 147, 151, 164, 170, 177], "try_fil": 129, "trystack": 60, "ttf": 129, "ttl": [22, 63, 88], "tty": 152, "tue": 63, "tune": [5, 88, 126, 127, 129, 130, 133], "tunisian": 4, "tunnel": [95, 96, 97], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 116, 133, 147, 155, 177, 179], "turnkei": [130, 133], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [119, 123, 124], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 26, 28, 36, 40, 41, 44, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 95, 96, 108, 111, 112, 118, 119, 120, 126, 133, 147, 148, 149, 150, 153, 177, 178, 179], "twofactor_totp": 149, "twofactorauth": [80, 88], "txk4": 156, "txt": [28, 38, 50, 60, 71, 129, 131, 132, 178], "ty": 132, "type": [1, 2, 3, 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, 96, 97, 101, 106, 110, 111, 113, 115, 116, 118, 125, 126, 129, 130, 132, 138, 142, 148, 149, 153, 156, 159, 166, 170, 172, 175, 178, 179], "typescript": 179, "typic": [3, 28, 40, 57, 59, 60, 77, 81, 89, 92, 93, 106, 112, 118, 125, 128, 130, 132, 138, 143, 156, 177, 178], "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, 99, 107, 108, 111, 112, 113, 118, 121, 124, 130, 133, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 172, 178], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 121, 127, 130, 132, 133, 134, 138, 140, 142, 145, 148, 150, 158, 160, 161], "uc": 133, "udp": 63, "ui": [12, 15, 40, 58, 60, 77, 82, 85, 92, 95, 97, 98, 114, 116, 138, 147, 148, 151, 155], "uid": [29, 80, 81, 82, 83, 107, 108, 111, 118, 151, 154, 156, 178], "uid1": 156, "uid2": 156, "uidn": 156, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 153], "unaffect": 60, "unansw": 116, "unauthent": [43, 77], "unauthor": [28, 164], "unavail": [3, 40, 51, 60, 80, 96, 130, 150, 155], "unavoid": 40, "unban": 126, "unchang": 3, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 129, 133], "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, 93, 95, 106, 107, 109, 110, 123, 128, 129, 130, 132, 133, 136, 137, 138, 148, 153, 160, 164, 172, 177], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 130, 132, 133, 153], "underscor": [31, 48, 85, 153], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 120, 135, 138], "undertak": 6, "underutil": 133, "undesir": 60, "undetect": 138, "undo": 85, "unencrypt": [28, 63, 85, 88], "unencrypted_s": 138, "unevenli": [7, 10], "unexpect": [59, 60, 138, 164, 177], "unexpectedli": [60, 92], "unexplain": 133, "unfavor": 172, "unforeseen": 143, "unfortun": 57, "unfound": 111, "unhandl": 150, "unicod": [40, 60, 151], "unicodepwd": 81, "unifi": [1, 60, 163], "unified_search": 88, "uninstal": [4, 88, 92, 127, 131, 156], "uniqu": [48, 59, 60, 61, 64, 81, 85, 95, 96, 97, 98, 110, 126, 138, 155, 156, 178], "uniquememb": [81, 82], "unison": 93, "unit": [15, 57, 116, 155, 178], "univent": 133, "unix": [14, 45, 56, 60, 81, 88, 101, 102, 128, 132, 134, 178], "unix_domain_socket": 96, "unixpath": 96, "unixsocketperm": 59, "unknown": [75, 76, 88, 111, 153, 155], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 96, 107, 111, 116, 130, 133, 138, 150, 153], "unlik": [59, 93, 153], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 126], "unnecessarili": 57, "unoffici": 145, "unpack": [121, 125, 133, 142, 155], "unpredict": [12, 28], "unreach": 81, "unrecover": 28, "unregist": [8, 88, 100], "unreli": [40, 60, 93, 116], "unrequir": 137, "unscan": [38, 60, 88, 153, 155], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81], "unshar": [88, 118, 153], "unsign": 153, "unspecifi": [60, 120], "unstabl": 149, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 129, 148, 164, 166], "unsur": [3, 26, 129], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 98, 106, 111, 125, 126, 128, 132, 146, 148, 151, 152, 153, 155, 172, 175, 177], "untouch": 149, "untrust": [88, 126], "unus": [60, 73, 99, 173], "unusu": [1, 132], "unwant": [118, 132, 138], "unzip": [123, 125, 142], "up": [0, 1, 2, 3, 5, 14, 15, 19, 20, 22, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 93, 95, 99, 108, 111, 112, 115, 118, 120, 122, 126, 127, 128, 132, 134, 135, 138, 142, 143, 146, 147, 153, 154, 155, 156, 159, 169, 170, 172, 174, 177], "upcom": [12, 61, 112, 177], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 82, 88, 100, 111, 112, 113, 114, 116, 119, 123, 125, 126, 127, 129, 130, 133, 134, 137, 141, 142, 143, 144, 145, 146, 149, 151, 152, 153, 154, 156, 157, 159, 160, 172, 174, 177, 178], "updateattributesinterv": 81, "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "upfront": 152, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 124, 125, 130, 132, 137, 138, 141, 144, 150, 151, 152, 158, 160, 169], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 93, 102, 104, 105, 110, 116, 124, 130, 132, 137, 138, 143, 145, 153, 158, 172, 174, 175, 178], "upload_max_files": [26, 124, 133], "upload_tmp_dir": [26, 130], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 107, 110, 126, 133, 138, 145], "upostgr": 22, "upper": 86, "upscal": [47, 48, 98], "upscaler_exampl": 98, "upstream": [111, 129, 132, 134], "upward": 132, "urandom": [65, 88], "urg": [12, 144], "urgent": [2, 61, 151], "uri": [60, 69, 81, 116, 118, 129, 138, 151, 155, 178], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 69, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 95, 96, 97, 98, 101, 108, 110, 112, 123, 124, 125, 127, 128, 129, 132, 136, 138, 141, 143, 151, 155, 157, 158, 162, 164, 172, 176, 179], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 153, 178], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 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, 101, 102, 105, 106, 108, 110, 111, 112, 113, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 130, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 158, 161, 162, 163, 164, 165, 166, 170, 173, 174, 175, 176, 177, 178, 179], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 107, 110, 126, 130, 132, 146, 150, 154, 155, 156, 164, 177], "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, 72, 73, 75, 78, 80, 82, 91, 92, 93, 96, 97, 98, 102, 103, 105, 106, 107, 108, 110, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 134, 135, 137, 140, 143, 145, 146, 147, 148, 149, 150, 151, 153, 155, 157, 160, 164, 165, 171, 172, 177, 178, 179], "user1": 43, "user123": 118, "user2": 43, "user_directori": 156, "user_id": [3, 111, 153, 156], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 154], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 103, "userag": 67, "userdeletedev": 150, "userdirectori": 40, "userid": [2, 14, 18, 28, 76, 81, 92, 111, 114, 118, 138, 178, 179], "useridfilt": [14, 155], "usermod": [59, 133], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 93, 106, 110, 111, 113, 120, 123, 125, 128, 133, 138, 140, 145, 146, 150, 153, 156], "userpassword": [81, 156], "usr": [56, 57, 59, 60, 63, 96, 124, 133, 150, 159], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 95, 126, 130, 133, 135, 136, 137, 138, 142, 148, 172, 177, 178], "utc": [57, 60, 67, 117, 153, 155], "utf": 71, "utf8": [22, 60, 124, 134, 146], "utf8mb4": [20, 22, 23, 25, 88, 125, 140, 146, 151], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 125, 146], "util": [6, 8, 54, 60, 67, 118, 123, 150, 177], "uuid": [81, 82, 154], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 96, 100, 129, 130, 132, 150, 153, 155, 178], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 96, 118, 129, 132, 147], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 129, 179], "v27": [142, 148], "v28": [15, 142, 148], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 101], "v6": 101, "v9": 28, "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 108, 128, 129, 130, 137, 143, 151, 153, 154, 155, 158, 172, 179], "valkei": 59, "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, 95, 96, 97, 98, 103, 107, 112, 113, 116, 117, 118, 125, 126, 128, 129, 132, 133, 135, 138, 143, 151, 153, 154, 155, 172, 174, 175, 178], "value1": 60, "value2": 60, "vanish": 118, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 93, 96, 97, 107, 112, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 135, 138, 142, 147, 148, 149, 150, 153, 155, 156], "vari": [3, 4, 59, 77, 130, 133], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 98, 100, 126, 132, 134, 143, 156, 176, 178, 179], "variable_nam": [22, 23], "variant": 56, "varieti": [1, 71, 179], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 93, 132, 138, 150, 157, 160, 162, 165], "vboxsf": 133, "vcard": [110, 113, 114, 129], "vcf": [111, 113], "ve": [118, 132, 133, 169, 177], "vector": [3, 29, 51, 126, 175], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 177, "vendor": 132, "verbatim": 143, "verbos": [56, 67, 93, 132, 150, 153, 155], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 93, 138, 147, 154, 179], "verif": [58, 63, 65, 88, 118, 137], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 93, 95, 99, 116, 123, 125, 126, 130, 131, 132, 133, 136, 137, 142, 143, 144, 147, 152, 155, 164, 172, 177], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "versatil": 119, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 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, 95, 98, 110, 112, 113, 116, 117, 118, 123, 124, 125, 126, 129, 130, 132, 133, 136, 137, 142, 143, 144, 145, 147, 148, 149, 150, 151, 155, 158, 160, 162, 167, 175, 176, 178], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 107, 153], "versionstr": [150, 155], "vevent": 178, "vhd": 133, "vhdx": 133, "vhost": 138, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 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, 93, 94, 96, 101, 106, 107, 108, 110, 111, 112, 114, 116, 118, 121, 126, 127, 128, 129, 130, 132, 135, 136, 138, 141, 143, 148, 151, 153, 156, 157, 159, 166, 172, 173, 174, 175, 177, 178, 179], "video": [2, 15, 47, 60, 88, 119, 130, 134, 155, 166, 167], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 93, 111, 138, 154, 155, 160], "viewer": [18, 60, 67, 179], "virtual": [2, 48, 60, 88, 92, 96, 126, 127, 132, 135, 143], "virtualbox": 133, "virtualhost": [123, 124, 126, 133, 158], "viru": [56, 93], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 99, 110, 114, 117, 138, 146, 172, 173, 174, 175, 177, 178], "visible\u00b9": 156, "visio": 160, "visit": [57, 101, 116, 123, 133, 145, 147, 148], "visitor": [77, 126], "visual": 12, "vm": [132, 133, 148], "vmdk": 133, "vmp": 133, "vmware": 133, "vnd": 129, "vo": 124, "voic": 88, "volum": [56, 60, 98, 111, 134], "volunt": 177, "vosk": 4, "vp": [88, 127], "vpn": 96, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 95], "vtodo": 178, "vtt": 129, "vulner": [126, 177], "vv": [150, 153], "vvv": [118, 138, 150, 153], "w": [28, 124, 126, 158, 163], "wa": [7, 8, 10, 12, 14, 15, 18, 20, 28, 40, 43, 50, 53, 57, 58, 60, 67, 74, 76, 81, 88, 95, 105, 110, 113, 116, 117, 118, 130, 133, 137, 138, 143, 144, 145, 146, 147, 148, 149, 152, 155, 156, 172, 173, 174, 175, 176, 178], "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 93, 95, 96, 101, 108, 110, 112, 126, 129, 132, 133, 138, 142, 146, 147, 148, 152, 161, 173, 174, 175], "wait": [4, 8, 53, 60, 98, 132, 143, 148, 153, 177, 179], "wait_timeout": [22, 60], "wal": 60, "walk": [123, 133], "walkthrough": 151, "want": [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, 93, 95, 96, 99, 103, 108, 111, 113, 116, 119, 120, 123, 124, 126, 128, 131, 133, 134, 135, 136, 137, 138, 147, 148, 149, 150, 152, 153, 155, 156, 158, 164, 165, 169, 175, 177, 178, 179], "wantedbi": [15, 57, 178], "warm": 132, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 93, 110, 123, 126, 128, 129, 132, 133, 137, 138, 144, 145, 150, 152, 153, 155, 164, 174], "wasm": 129, "watch": [58, 155], "watermark": 157, "watsonx": [1, 8, 12, 13, 15, 88], "watt": 2, "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, 93, 96, 118, 123, 124, 126, 128, 129, 130, 132, 133, 138, 144, 148, 150, 158, 160, 164, 172, 174, 177, 179], "weak": 128, "weaken": 64, "weather": [2, 14, 126], "web": [2, 5, 7, 9, 10, 11, 16, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 95, 96, 99, 108, 114, 116, 118, 119, 123, 124, 125, 127, 128, 129, 130, 132, 139, 141, 142, 143, 148, 150, 152, 153, 155, 156, 163], "webauthn": 88, "webcal": [60, 151], "webcalallowlocalaccess": 112, "webcron": [53, 88, 149, 155], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 108, 111, 118, 126, 129, 133, 139, 155], "webdavf": 60, "webfing": [124, 138], "webhook": [88, 150, 179], "webhook_listen": [155, 178, 179], "webhookcal": 178, "webhooklisten": 178, "webinterfac": 129, "webm": 129, "webmail": 131, "webp": [60, 129, 132, 133, 173], "webp_qual": 132, "webpag": 129, "webroot": [8, 60, 69, 88, 127], "webserv": [26, 27, 57, 59, 60, 69, 88, 123, 126, 129, 133, 134, 161, 175], "websit": [14, 55, 64, 70, 76, 77, 81, 110, 126, 138], "websitescop": 77, "websocket": [95, 158], "webspac": 133, "week": [2, 44, 56, 177], "weekend": 3, "weekli": 53, "weight": [12, 15, 60], "welcom": [12, 88, 119], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 118, 123, 124, 129, 131, 132, 133, 135, 138, 142, 143, 145, 147, 164, 169, 177, 178, 179], "went": [142, 143], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 112, 117, 130, 137, 138, 147, 148, 152, 153, 155, 172], "west": [31, 48], "wget": [123, 125, 136, 159, 172], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 93, 95, 96, 108, 110, 111, 120, 126, 132, 138, 141, 153, 155, 179], "whatev": [20, 43, 60, 129, 147], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 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, 94, 95, 96, 101, 102, 105, 106, 107, 108, 110, 112, 113, 114, 116, 118, 120, 123, 125, 126, 128, 130, 131, 132, 133, 135, 136, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 164, 166, 172, 175, 177, 178, 179], "when_requir": [60, 175], "when_support": 60, "whenev": [40, 43, 44, 132, 138, 177, 178], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 95, 96, 111, 112, 114, 116, 123, 125, 126, 133, 135, 136, 138, 142, 144, 147, 150, 151, 152, 153, 155, 164, 165, 176, 177, 178, 179], "wherev": [91, 143], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 95, 101, 106, 114, 116, 126, 129, 132, 135, 149, 152, 153, 154, 155, 156, 177], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 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, 93, 95, 96, 97, 99, 101, 108, 110, 114, 116, 118, 123, 124, 126, 129, 130, 131, 132, 133, 134, 137, 138, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 161, 165, 166, 174, 175, 176, 177, 178, 179], "whichev": [60, 153], "while": [1, 4, 11, 15, 19, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 77, 81, 101, 118, 126, 132, 133, 143, 145, 147, 148, 149, 150, 151, 177, 178], "whisper": [13, 15, 88, 167], "whiteboard": 15, "whitelist": [16, 58, 92, 128], "whitespac": [92, 154], "who": [3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 77, 81, 85, 110, 113, 114, 121, 138, 151, 155, 156, 178], "whole": [39, 88, 95, 96, 112, 118, 123, 127, 146], "whom": [12, 110], "whose": [44, 53, 67, 153, 178], "why": [38, 64, 88, 111, 118, 153], "wide": [28, 60, 80, 110, 126, 132, 155], "widenetworkaddress": 96, "wider": 95, "widespread": 177, "widget": [61, 165, 166], "width": 60, "wiki": [60, 133, 145], "wikipedia": 60, "wildcard": [60, 128, 154], "win": 56, "windmil": 88, "window": [3, 15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 93, 107, 119, 127, 134, 174, 178], "wipe": 73, "wise": 118, "wish": [22, 28, 37, 54, 59, 60, 85, 93, 112, 128], "within": [12, 22, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 93, 97, 111, 112, 113, 114, 119, 126, 129, 130, 132, 134, 135, 137, 138, 142, 150, 151, 153, 156, 177], "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, 94, 95, 96, 97, 102, 106, 107, 108, 111, 112, 113, 116, 126, 128, 130, 132, 133, 138, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 160, 161, 166, 170, 172, 173, 178], "wizard": [22, 41, 60, 63, 82, 88, 121, 123, 124, 127], "wjalrxutnfemi": 153, "woff2": 129, "won": [15, 43, 60, 81, 112], "wopi": [88, 158, 159, 164], "word": [7, 51, 77, 92, 130], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 93, 95, 98, 101, 102, 112, 119, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 144, 145, 147, 148, 149, 150, 151, 154, 155, 156, 161, 164, 165, 170, 178], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 132, 178, 179], "workflow": [65, 88, 92, 102, 150, 156, 178], "workflowengin": [67, 103, 155], "workload": [45, 95], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 96, 177], "worm": 56, "worri": 3, "wors": [60, 132], "worst": [15, 93], "worthi": 58, "would": [3, 5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 95, 96, 99, 112, 113, 118, 129, 138, 143, 144, 146, 147, 149, 153, 162, 172], "wrap": [152, 155], "wrapper": [63, 150], "writabl": [16, 34, 50, 60, 133, 143, 147, 151, 152, 153], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 93, 112, 116, 119, 123, 127, 133, 137, 147, 149, 152, 153, 179], "writeabl": [16, 126], "written": [3, 29, 30, 60, 67, 92, 95, 110, 113, 118, 126, 128, 143, 151, 153, 179], "wrong": [14, 28, 43, 60, 79, 137, 138, 142, 144, 153, 164], "wsdlcach": 129, "wss": [4, 158], "wurst": 118, "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, 107, 108, 111, 112, 113, 118, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 135, 136, 138, 140, 142, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 161, 176, 178], "wwwhomepag": 81, "wwwrun": [57, 150], "wysiwyg": 160, "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 96, 101, 123, 125, 126, 128, 129, 138, 144, 150, 175, 176, 177, 178], "x11": 67, "x64": 92, "x86": [4, 6, 11, 132], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 151, "xeon": [7, 10], "xeu": [15, 178], "xhtml": 129, "xjf": 142, "xjvf": 125, "xl": [15, 160], "xlii": 82, "xloc": 129, "xlsx": 160, "xml": [60, 88, 98, 118, 125, 129, 130, 132, 151, 157, 159, 162, 178], "xmlreader": 130, "xmlwriter": 130, "xoauth2": [63, 88, 115], "xss": 175, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 123, 125, 126, 140, 142, 147, 148, 152, 153, 155, 176], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 103, 106, 112, 117, 138, 144, 149, 153, 156, 164], "year": [73, 134, 177], "yellow": [15, 40, 41, 81, 88], "yet": [1, 3, 4, 15, 54, 60, 65, 68, 81, 88, 92, 137, 143, 152, 153, 155, 167], "yield": 60, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 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, 93, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 110, 111, 112, 113, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 164, 169, 172, 173, 174, 175, 176, 177, 178, 179], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 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, 93, 94, 95, 96, 99, 101, 106, 107, 108, 109, 110, 111, 112, 114, 116, 117, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [118, 164], "yourself": [5, 56, 92, 126, 147], "yourserv": 93, "yourswifthost": 60, "youtub": [2, 119], "yum": [56, 123], "yyyi": [81, 151], "yyyymmdd": 81, "z": [85, 92, 114, 123, 125, 126, 142, 148, 176], "z0": 81, "za": 81, "zammad": [166, 167], "zend": 59, "zero": [29, 156], "zip": [56, 85, 93, 101, 111, 123, 125, 130, 142, 147], "zlib": 130, "zone": [96, 117, 123], "zsh": 150, "zshrc": 150, "\u00b2": 156, "\u00b9": 156}, "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", "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", "Automatic setup", "Installing from 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", "System & maintenance commands", "User & group commands", "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", "Upgrade to Nextcloud 33", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "04": [125, 159], "1": 69, "10": 129, "11": 55, "12": 55, "15": 111, "16": 111, "17": 111, "18": 111, "1st": [133, 145], "2": [11, 69, 123, 132], "20": 111, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [125, 159], "26": 170, "27": 171, "28": 172, "3": [96, 129], "30": 173, "31": 174, "32": 175, "33": 176, "3rdparti": 138, "4": 23, "502": 129, "512mb": 26, "64bit": 19, "8": [123, 124], "No": 92, "Not": [28, 137], "The": [58, 68, 70, 82, 114, 167], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 151, "abus": 116, "access": [3, 22, 68, 69, 70, 101, 111, 126, 129, 131, 157], "accessible_featur": 60, "account": [92, 108, 110, 116, 118, 156], "account_manag": 60, "act": 12, "action": [6, 102, 126], "activ": [53, 58, 60, 81, 107, 110, 173, 174, 175], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 116, "add": [68, 76, 137, 151, 155, 156, 159], "addendum": 5, "addit": [12, 59, 67, 81, 97, 133, 157], "address": [58, 63, 85, 113, 114, 126, 171, 175], "addressbook": [151, 153], "addus": 156, "adjust": 26, "admin": [53, 67, 70, 78, 126, 155], "admin_audit": 67, "administr": [54, 81, 85, 113], "advanc": [43, 67, 81, 92, 94, 98], "advantag": 134, "after": [53, 92, 138, 146], "ag": [44, 105], "agent": [1, 2, 15, 176], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [96, 97], "ajax": 57, "alarm": 112, "alert": 116, "alias": 51, "all": [28, 60, 63, 96, 120, 126, 152], "allow": [18, 40, 70, 112, 131], "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_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 149], "android": 55, "ani": 129, "anoth": 43, "anti": 116, "antiviru": [56, 155], "anymor": 137, "apach": [26, 123, 133, 158], "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, 95, 108, 132, 134, 136, 137, 138, 149, 153, 157, 158, 173, 174, 178], "app_api": [173, 174, 175], "appapi": [95, 173, 174, 175], "appcodecheck": 60, "appear": [72, 166], "appli": 136, "applic": [68, 130, 153], "approach": [92, 148], "approv": 179, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [40, 53, 70, 114], "architectur": 134, "archiv": 93, "argument": [97, 98], "around": 22, "arrai": 149, "articl": 111, "artifici": [2, 13], "ask": [15, 164], "assetlink": 55, "assign": [102, 156], "assist": 1, "attach": 116, "attempt": [60, 155], "attribut": 81, "audienc": 119, "audit": [67, 110], "auth": [60, 156], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 116, 156, 179], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 150, "autoconfig": [118, 128], "autom": [73, 102, 173], "automat": [92, 120, 128], "avail": [40, 101, 102], "avatar": [81, 156], "avoid": 129, "awai": 22, "azur": [48, 116], "backend": [15, 28, 40, 60, 112, 153], "background": [44, 49, 56, 57, 112, 116, 132, 133, 149, 155], "backtrac": 60, "backup": [28, 48, 81, 107, 140, 146], "bad": [28, 129], "balanc": 58, "bare": 96, "base": [32, 59, 67, 132, 147], "basic": [67, 93], "batch": 147, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 177, "better": 53, "between": [43, 179], "beyond": 63, "big": 26, "bigint": [19, 151], "bin": [49, 60, 107, 112, 153], "binary_search_path": 60, "birthdai": [112, 151], "blob": 48, "block": [29, 101, 179], "book": [113, 114, 171, 175], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 155, "browser": 134, "brute": 58, "bruteforc": [60, 155], "bucket": 48, "bug": [138, 177], "build": 179, "built": 147, "bulkupload": 60, "button": 112, "byte": 23, "c": 48, "cach": [59, 60, 70, 81, 130, 132, 151, 156], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": 69, "caldav": [70, 112, 151], "calendar": [2, 112, 118, 138, 151, 178], "call": 110, "can": [22, 63, 77, 167, 179], "candid": 177, "cannot": 28, "canon": 157, "capabl": 63, "carddav": [70, 113], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 123, "certif": [40, 63, 81, 89, 155], "chang": [40, 41, 62, 85, 92, 138, 151, 152, 169, 176], "changelog": 169, "channel": [60, 177], "charset": 151, "chat": [1, 3, 8, 15, 110], "check": [29, 30, 40, 70, 99, 153, 154, 155, 172, 175], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 128, "choos": 92, "chroot": 124, "chunk": [26, 174], "chunked_upload": 60, "cif": [38, 131], "cipher": 60, "circl": 2, "citrix": 93, "clamav": 56, "clean": [73, 151, 152, 173], "cleanup": [83, 153, 155, 156], "clear": [151, 156], "cli": [60, 72, 97, 130], "client": [40, 72, 91, 92, 93, 134, 146], "close": 93, "cloud": [26, 60, 138], "clue": 129, "cluster": [59, 60], "code": [60, 137, 155], "collabor": 105, "collabora": [157, 158, 162], "collat": 60, "collect": [18, 88], "column": 151, "com": 118, "combin": 2, "command": [3, 16, 22, 28, 50, 58, 93, 113, 121, 147, 149, 150, 151, 152, 153, 154, 155, 156], "comment": [60, 132], "commit": [22, 70], "common": [92, 101, 105, 138], "commun": 96, "comparison": 28, "compat": [50, 153], "complet": 128, "complianc": [12, 109], "compon": 119, "compound": 67, "compress": 132, "condit": [60, 67, 69], "config": [59, 63, 77, 93, 126, 149, 153, 154, 155], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 18, 21, 22, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 96, 103, 116, 120, 126, 127, 129, 130, 131, 132, 133, 149, 157, 158, 159, 162, 170, 171, 172, 173, 174, 175], "confirm": 56, "connect": [59, 81, 84, 93, 118, 126, 179], "connectivity_check_domain": 60, "connector": 130, "consequ": 50, "consider": [32, 68], "consumpt": 89, "contact": [2, 113, 114, 118, 138, 151], "contain": [96, 99], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "control": [3, 44, 101, 152], "convers": [20, 42, 151], "convert": [20, 151], "cookbook": 2, "cooki": [70, 106], "cookie_domain": 60, "copi": 153, "copied_sample_config": 60, "core": [60, 93, 119, 153], "count": [173, 174, 175], "cpu": 134, "creat": [22, 41, 43, 55, 75, 82, 85, 93, 151, 153, 154, 179], "creation": [44, 128, 151], "critic": 169, "cron": [57, 124, 132, 155], "csrf": 60, "css": 129, "csync": 93, "current": 2, "custom": [2, 16, 72, 112, 147, 157], "customclient_desktop": 60, "cybersecur": 12, "daemon": [95, 96, 97, 99], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 107, 108, 110, 111, 112, 113, 114, 118, 120, 126, 128, 138, 146, 151, 152, 153, 155, 156], "databas": [20, 21, 22, 25, 53, 60, 70, 118, 120, 123, 124, 128, 130, 131, 132, 134, 140, 146, 151, 174], "datadirectori": [60, 138], "date": 43, "dav": [151, 170], "davstorag": 60, "db": [60, 151, 155], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debug": [14, 60, 63, 67, 93, 126, 132, 138, 150], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 152], "dedic": [67, 126], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 96, 116, 152, 157, 173, 174, 176], "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, 116, 155], "delet": [49, 60, 75, 76, 82, 83, 85, 114, 149, 151, 153, 154, 155, 156], "demand": 67, "demot": 76, "deni": 101, "depend": [18, 153], "deploi": [94, 95, 96, 97, 98, 99], "deploy": [59, 92, 96, 122, 126], "deployconfig": 97, "deriv": 29, "desktop": [40, 60, 91, 92, 134], "detail": 29, "detect": [6, 40, 56, 129], "determin": 63, "dev": [70, 126], "develop": 119, "diagnost": 60, "did": 137, "differ": [48, 63, 143], "directori": [16, 59, 81, 120, 126, 128, 131, 138], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 98, 116, 126, 138, 151, 152, 156], "disallow": 131, "discoveri": [69, 138], "disk": 6, "dispatch": 178, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 162], "dmz": 126, "do": [137, 147, 166], "docker": [95, 96, 158, 162], "document": 15, "documentation_url": 60, "doe": [70, 147, 166], "dokuwiki": 18, "domain": [62, 63, 69, 118, 126, 128, 129, 138], "don": 28, "down": [77, 137], "downgrad": 177, "download": [99, 147], "drop": [43, 108, 134, 152], "due": 53, "dump": 93, "duplic": 81, "dure": [44, 148], "edit": [71, 75, 76, 119, 156, 157], "email": [53, 63, 76, 85, 170], "embed": [60, 64], "empti": [70, 154], "enabl": [16, 17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 98, 99, 126, 131, 132, 133, 150, 152, 155, 156, 157, 175], "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, 132, 133, 138, 152], "end": [6, 177], "endpoint": 176, "energi": 89, "enforc": [80, 156], "enforce_them": 60, "ensur": 126, "entri": 67, "envelop": [29, 178], "environ": [60, 94, 133, 150], "erasur": 111, "error": [22, 28, 93, 129, 137, 138], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [112, 118, 151, 178], "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 97, 101, 102, 105, 112, 113, 120, 123, 124, 125, 132, 151, 158, 159, 179], "exapp": [95, 96, 98, 100], "exclud": [53, 58], "execut": [102, 155], "exist": [18, 77], "expand": 175, "expect": 151, "experi": 60, "expert": 81, "expir": [43, 53, 153], "explain": 67, "export": [112, 118, 151, 153, 155], "expos": 171, "extens": [71, 89], "extern": [28, 32, 40, 48, 53, 64, 95, 101, 133, 153, 157], "external_storag": 60, "face": 6, "factor": [47, 80, 156], "fail": [118, 129], "fail2ban": [58, 126], "failur": [38, 92], "fair": 138, "faq": [77, 95, 137, 179], "faster": 132, "featur": [15, 92, 117], "feder": [26, 41, 60, 112, 138, 153], "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, 93, 101, 102, 105, 107, 110, 129, 132, 134, 138, 153, 155, 156, 157, 172, 173, 178], "filecach": 151, "filekei": 152, "filelock": 60, "filenam": [50, 153], "files_antiviru": 155, "files_extern": 153, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 126, 178], "final": 124, "find": [22, 63], "fingerprint": [60, 155], "fix": [137, 151, 152, 153], "flow": [103, 104], "folder": [28, 40, 53, 92, 101, 140, 146, 178], "follow": 116, "font": 157, "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, 178], "format": [29, 30, 60, 152], "forwarded_for_head": 60, "found": 28, "fpm": [132, 133], "freebusi": 112, "frequenc": 40, "frequent": [15, 164], "from": [18, 48, 53, 58, 63, 76, 92, 121, 144, 162], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 93, "further": [28, 119, 130], "fusef": 131, "g": 60, "gatewai": 129, "gdpr": 109, "gener": [9, 15, 22, 29, 47, 126, 130, 138], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 118, 119, 149, 151, 153, 155], "getenv": 70, "give": 126, "global": [71, 77, 118], "gone": 22, "googl": 116, "gpg": 131, "grant": 85, "greater": 129, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 101, 154, 156, 157], "group_everyon": 18, "groupwar": [88, 110, 115], "grow": 53, "guest": 18, "guidanc": 126, "ha": 22, "handl": [55, 81], "handler": [59, 129], "haproxi": 69, "harden": 126, "hardwar": 12, "harp": [95, 96], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 126], "heartbeat": 99, "held": 110, "help": 108, "hidden": 38, "hide": 112, "hide_login_form": 60, "hierarch": 149, "home": 59, "host": [16, 96], "how": [22, 40, 58, 63, 77, 114, 148, 166], "htaccess": [60, 133, 155], "http": [70, 126, 129, 132, 133], "http_client_add_user_agent_url": 60, "httpd": 124, "i": [15, 22, 28, 56, 63, 70, 126, 137, 173, 174, 179], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 118, 138, 155, 176], "ident": 84, "identifi": [19, 93], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 99, 126, 162], "imagick": 123, "imaginari": 173, "imap": [116, 118], "implement": [2, 12], "implic": 48, "import": [18, 92, 151, 153, 155, 159], "imprint": 108, "improv": [0, 1, 15], "inconvert": 20, "independ": 96, "index": 3, "indic": 151, "info": [17, 56, 153, 155, 156], "inform": 138, "ini": 130, "init": 99, "initi": [3, 18, 25, 89], "insecur": 93, "insert": 118, "insight": 14, "inspect": 151, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 95, 121, 123, 124, 125, 126, 127, 128, 130, 133, 145, 155, 158, 159, 161, 177, 178, 179], "instanc": [48, 126], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 137, 153, 175], "intellig": [2, 13], "interact": [67, 92, 114], "interfac": [50, 67, 113, 116, 131], "intern": [81, 138], "interoper": 12, "interv": [81, 116], "introduct": [54, 58, 60, 119, 126, 178], "invalid": [28, 50, 63, 137, 151], "invis": 102, "invit": 112, "ip": [58, 126], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 93], "issu": [93, 118, 138, 139], "item": [49, 60, 113], "j": [129, 155], "jail": 126, "javascript": 129, "jit": 132, "job": [44, 49, 57, 112, 124, 132, 133, 149, 155], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 132, 151, 152, 156, 159], "keyboard": 93, "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 93, 112, 166, 167], "kubernet": 3, "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 156, "launch": 92, "ldap": [28, 60, 81, 82, 83, 131, 154], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 152], "legal": 12, "length": [126, 177], "level": [22, 67, 70, 132], "libreoffic": 172, "life": 177, "lifetim": 107, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 112, 113, 116, 126, 150], "line": [93, 113, 121, 147, 155], "link": [41, 43, 55, 60, 64, 166], "linux": 133, "list": [14, 17, 76, 81, 97, 98, 151, 152, 153, 155, 156, 178], "listen": [63, 155, 178], "live": [4, 15], "live_transcript": 4, "llm": 116, "llm2": 5, "load": [3, 58, 60, 81, 132], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 96, 112, 116], "localstorag": 60, "locat": [29, 59, 60, 67, 128, 152], "lock": [45, 60, 70, 77, 132, 137], "log": [3, 4, 60, 67, 81, 93, 99, 107, 110, 118, 129, 132, 138, 155], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 138], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 129, 133, 145], "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": [134, 148], "look": 63, "lookup_serv": 60, "loop": 129, "lost": 78, "lost_password_link": 60, "lt": 125, "machin": [1, 11, 15, 133], "maco": 93, "made": 40, "mai": 175, "mail": [2, 60, 63, 116, 118], "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": 116, "mainten": [60, 88, 140, 141, 148, 150, 151, 152, 155, 177], "maintenance_window_start": [57, 60], "major": 177, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 74, 85, 97, 98, 100, 130, 132, 133, 151, 155, 165], "managerfactori": 60, "mandatori": 137, "manual": [8, 56, 118, 133, 142, 148], "map": [51, 81], "mariadb": [22, 134, 140, 146], "mark": [56, 155], "master": [29, 152], "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, 133, 174], "mcp": 2, "me": [106, 107], "mechan": 32, "media": [130, 133], "member": 75, "memberof": 81, "memcach": [59, 60, 131], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 134], "merg": 60, "messag": [93, 129, 137, 138], "metadata": 110, "metadata_max_files": 60, "metal": 96, "method": 28, "mib": 129, "microsoft": [48, 81, 116], "migrat": [25, 30, 116, 143, 144, 148, 152, 162], "mimetyp": [51, 155], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [101, 105], "miss": [40, 53, 118, 151], "mobil": 134, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 126, 132, 140, 147, 148, 150, 155], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [123, 126, 130, 138, 152], "monitor": [52, 172, 173, 174, 175], "mount": [40, 94, 153], "mountpoint": 28, "move": [138, 151, 153], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 118, 120, 134, 140, 146, 151], "name": [40, 70, 138], "nc": 96, "need": 175, "nest": 81, "network": [112, 131], "new": [18, 41, 76, 77, 85, 157], "next": 125, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 93, 96, 97, 106, 119, 123, 124, 126, 129, 136, 137, 138, 142, 157, 158, 170, 171, 172, 173, 174, 175, 176, 178, 179], "nf": 131, "nginx": [26, 69, 129], "no_unsupported_browser_warn": 60, "node": 178, "non": [92, 138], "nor": 129, "note": [59, 81, 88, 124, 130, 136, 168, 169], "notif": [16, 38, 43, 53, 112, 148, 153], "notifi": 153, "now": [173, 174], "nss": 70, "o": 134, "oauth": 116, "oauth2": [68, 155], "object": [6, 26, 36, 48, 60, 153, 178], "objectstor": 60, "obtain": [93, 136], "occ": [3, 16, 28, 50, 58, 81, 97, 150], "off": 81, "offic": [88, 117, 151, 157, 160, 172], "old": [30, 134], "olmo": 5, "one": [63, 96], "onli": [63, 70], "onlin": [157, 158, 162], "ooxml": 157, "opcach": 132, "open": [5, 137], "openai": 0, "openbsd": 124, "openid": 84, "openmetr": [52, 176], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [126, 153, 155], "option": [3, 28, 40, 60, 67, 81, 92, 94, 97, 98, 123, 153, 157], "optout": 60, "organ": 59, "orphan": [152, 153], "other": [15, 60, 93, 118, 133, 138], "out": [22, 63, 117, 151], "outdat": 70, "outgo": 176, "outlook": 118, "output": [17, 75, 76, 82], "outsid": [40, 126], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 133, 142, 148, 177, 178], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 144, "owner": [153, 155], "ownership": 153, "packag": [133, 145, 159, 162], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 120, 132], "part_file_in_storag": 60, "parti": 110, "pass": [70, 179], "password": [32, 73, 78, 79, 85, 86, 126, 173], "passwordsalt": 60, "patch": 136, "path": [40, 60, 70, 138], "payload": 178, "pdf": 173, "per": [48, 81, 118], "perform": [0, 48, 132], "permiss": [40, 81], "persist": 43, "person": 110, "pgsql_ssl": 60, "photo": [6, 151], "php": [26, 59, 63, 70, 77, 116, 123, 124, 126, 129, 130, 132, 133, 134, 138, 174], "physic": 12, "picker": 167, "pickup": [1, 15], "place": 126, "point": 28, "polici": [86, 138], "pomerium": 69, "port": 63, "portabl": 111, "postgresql": [22, 120, 140, 146], "pre": 68, "preced": 77, "preconfigur": 92, "prefer": 116, "prefix": [59, 70], "prepar": 130, "prerequisit": [126, 133, 148], "pretti": 133, "prevent": [64, 101], "preview": [47, 60, 126, 132, 153, 157, 166, 172, 173, 174, 175, 176], "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": 142, "primari": [48, 151], "privaci": 113, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [93, 118, 138], "process": [1, 15, 111, 116, 132, 133, 155], "profil": [60, 77, 81, 110, 156], "project": 60, "promot": 76, "prompt": 15, "proper": 126, "properli": [70, 129], "properti": [77, 113], "protect": [58, 60, 175], "protocol": 63, "provid": [15, 27, 63, 80, 84, 166, 167], "provis": [87, 92], "proxi": [58, 60, 69, 95, 96, 129, 158, 162, 163], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 105, 112], "pull": 99, "put": 153, "qmail": 63, "qualiti": 47, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 164], "queue": 56, "quick": [128, 130], "quickstart": 145, "quota": [85, 138], "quota_include_external_storag": 60, "rainloop": 131, "rang": 126, "rate": [6, 8, 11, 15, 60, 112, 113], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 126], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 114, "recogn": 6, "recognit": 6, "recommend": [59, 92, 122, 130], "recov": 152, "recoveri": [28, 29, 48, 146], "rectif": 111, "redi": [59, 60, 123, 124, 132], "redirect": 126, "redis_log_fil": 60, "reduc": 132, "reduce_to_languag": 60, "refer": [53, 77, 130, 150, 165], "reference_opengraph": 60, "refresh": [112, 153], "regist": [97, 98, 99, 178], "regular": 44, "reject": 63, "relat": [1, 126], "releas": [60, 88, 142, 168, 169, 177], "reliabl": [12, 40], "rememb": [106, 107], "remember_login_cookie_lifetim": 60, "remind": [112, 116, 151, 153], "remirepo": 123, "remnant": 154, "remot": [96, 126, 131, 153], "remov": [76, 80, 151, 155], "removeus": 156, "renam": [40, 85], "repair": [152, 153, 155], "replac": 132, "replic": 24, "report": [156, 177], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 159], "request": [60, 108, 111, 176], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 123, 130, 134, 170, 171, 172, 173, 174, 175, 176], "rescan": 137, "resend": 76, "reset": [78, 79, 85, 155], "resetpassword": 156, "resolv": 70, "resourc": [112, 119, 130], "respond": 111, "respons": 70, "restor": [146, 153], "restrict": [102, 111, 126, 157], "retent": [105, 107, 112, 113, 114, 151, 170], "retriev": 51, "return": [70, 155], "revalid": 132, "revers": [58, 69, 96, 158, 162, 163], "revert": 136, "rewritebas": 60, "rich": 71, "right": [92, 111], "robust": 12, "room": 112, "root": [126, 152], "rotat": 60, "rule": [3, 77, 101, 102], "run": [5, 20, 70, 148, 150], "runtim": 18, "s3": [31, 48, 175], "same": 96, "sampl": 60, "sanit": [50, 153], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 152, 153, 155], "scanner": 56, "schedul": [53, 116, 177], "schema": 151, "scope": [77, 113], "screen": [15, 178], "script": [133, 179], "seal": 29, "search": [2, 15, 75, 76, 154], "secret": [60, 67], "secur": [12, 60, 68, 70, 96, 126, 155, 157], "see": [28, 77], "selector": 149, "self": [16, 40, 63], "selinux": [123, 126, 131, 133], "send": [63, 116, 151], "sendmail": [63, 131], "sensit": 38, "sent": 53, "serv": [126, 129], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 107, 110, 112, 116, 126, 127, 131, 132, 133, 134, 136, 138, 143, 157, 158, 170, 171, 172, 173, 175], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 110, 138, 178], "session": [15, 59, 60, 107, 110, 178], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 112, 123, 130, 132, 133, 149, 151, 152, 154, 155, 156, 157, 179], "setup": [8, 59, 92, 95, 120, 126, 155, 172, 175], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 112, 113, 116, 118, 138, 151, 153, 155], "share_fold": 60, "ship": 138, "shortcut": 93, "show": [152, 154, 155], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [116, 118], "sign": [29, 40, 63, 137, 153, 159], "signatur": [28, 29, 147], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 149], "site": [64, 70], "size": [26, 47, 116, 132, 133, 138, 153, 174], "skeletondirectori": 60, "skip": 68, "slow": [15, 132], "small": 59, "smart": 167, "smb": [38, 131], "smtp": [63, 116, 118, 131], "snap": [133, 145], "snooz": 116, "snowflak": [155, 176], "socket": [59, 95, 96, 129], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 137], "space": [3, 6, 8, 11, 133, 155], "special": [32, 81], "specif": [63, 81, 101, 126, 130, 157], "speech": [1, 7, 10, 15], "speed": [1, 15, 178], "split": [25, 29], "sql": 22, "sqlite": [60, 120, 132, 140, 146], "sse": 48, "ssl": [22, 60, 81, 126, 133], "standalone_window": 60, "start": [88, 99, 119, 128], "starttl": 63, "stat": 155, "state": 156, "statu": [99, 152, 155], "step": [28, 124, 125, 142, 148, 179], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 101, 126, 152, 153, 155], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 106, 110, 153], "storecryptedpassword": 60, "strict": [70, 126], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 129, "subdirectori": 69, "subject": 111, "subscript": [112, 151], "summar": 8, "summari": [8, 92, 107, 116], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 134, 177], "supporteddatabas": 60, "suppress": 129, "suspend": 179, "swift": 48, "switch": 11, "sync": [38, 93, 112, 113, 116, 138, 151, 153, 156, 170], "synchron": [3, 70, 118], "synchronis": 146, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 113, 126, 132, 133, 134, 151, 155, 156, 170, 171, 172, 173, 174, 175, 176, 178], "systemd": [15, 57, 67, 178], "systemtag": 60, "t": 28, "tab": 81, "tabl": [20, 88, 107, 130, 178], "tag": [102, 105, 156, 178], "talk": [2, 4, 8, 110, 134], "target": [20, 119], "task": [1, 2, 14, 15, 56, 155], "taskprocess": 155, "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63], "templatedirectori": 60, "temporari": 67, "term": 134, "test": [60, 63, 70, 81, 99, 154], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 129, "thei": 166, "theme": [60, 63, 72, 108, 155], "thi": 70, "third": 110, "though": 63, "thread": [116, 118], "threshold": 60, "through": [67, 129], "timeout": [116, 118], "tip": [41, 81, 129, 133, 145], "tl": [59, 81, 116, 132], "tmux": [15, 178], "token": [68, 84, 107, 112, 113, 126, 156, 170], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "track": 114, "traefik": 69, "traffic": 126, "transact": [22, 45, 70, 132], "transcript": [4, 15], "transfer": [43, 153], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 116], "translate2": 11, "transpar": 12, "transport": [70, 126], "trash": [49, 60, 107, 112, 153], "trashbin": 153, "trashbin_retention_oblig": 60, "tree": 153, "trick": [81, 129], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 93, 118, 131, 132, 136, 138, 139, 142, 147, 164], "truena": 133, "trust": [41, 69, 128, 129], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 132, "turn": 81, "two": [80, 156], "twofactorauth": 156, "type": [20, 29, 59, 60, 67, 112, 151, 155, 177], "ubuntu": [125, 159], "umask": 60, "unabl": 118, "unencrypt": 126, "unified_search": 60, "uninstal": 135, "unix": [59, 129], "unknown": 93, "unlink_on_trunc": 60, "unregist": [97, 98], "unscan": 56, "unseal": 29, "unshar": 151, "untrust": 129, "up": [70, 73, 116, 123, 133, 151, 173, 178, 179], "updat": [16, 25, 38, 60, 81, 92, 98, 118, 131, 138, 147, 148, 155, 158, 162, 175], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 134, 142, 145, 147, 148, 155, 162, 170, 171, 172, 173, 174, 175, 176, 177], "upload": [26, 38, 101, 129, 133], "urandom": [70, 126], "url": [60, 133, 147], "us": [2, 12, 15, 16, 22, 40, 43, 50, 59, 60, 63, 67, 70, 81, 84, 116, 126, 129, 132, 138, 147, 150, 157, 167, 172], "usag": [3, 6, 8, 11, 40, 54, 58, 97, 157], "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, 101, 113, 114, 116, 128, 138, 152, 154, 156, 173, 174, 175, 176], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 95], "valid": 84, "valu": [60, 77, 149, 179], "variabl": [40, 60, 94, 133, 150], "verif": [60, 81, 116, 147], "verifi": [77, 153, 156], "version": [44, 60, 70, 107, 134, 138, 152, 153, 177], "versions_retention_oblig": 60, "via": [8, 16, 28, 41, 69, 70, 72, 81, 131, 133, 145, 147], "video": 6, "view": 157, "virtual": 133, "visibl": 77, "voic": 1, "vp": 133, "wa": 85, "warn": [68, 70], "watsonx": 0, "we": [134, 137], "web": [26, 50, 60, 63, 67, 70, 107, 110, 126, 131, 133, 134, 138, 147, 170, 171, 172, 173, 175], "webauthn": 60, "webcron": 57, "webdav": [39, 138], "webhook": [155, 178], "webroot": [129, 157], "webserv": 93, "welcom": [76, 156], "well": 70, "what": [5, 63, 77, 147], "when": [12, 77, 93, 129], "where": [166, 167], "whisper": 7, "who": 119, "whole": 131, "why": [15, 28, 40, 63, 134, 137], "windmil": [15, 179], "window": [50, 92, 133, 153], "without": 129, "wizard": [92, 128, 133], "wopi": 157, "work": [22, 40, 56, 58, 166], "worker": 155, "workflow": [15, 67, 155, 179], "workspac": [71, 93, 179], "write": 131, "xml": [17, 75, 76, 82], "xoauth2": 116, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 118, 126, 132]}}) \ No newline at end of file diff --git a/server/latest/developer_manual/404.html b/server/latest/developer_manual/404.html index 0d9c12f5ae5..323e1f1c8cd 100644 --- a/server/latest/developer_manual/404.html +++ b/server/latest/developer_manual/404.html @@ -563,7 +563,7 @@

    Here are some alternatives:

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/bootstrap.html b/server/latest/developer_manual/app_development/bootstrap.html index faf4c6d3054..cba0e06168c 100644 --- a/server/latest/developer_manual/app_development/bootstrap.html +++ b/server/latest/developer_manual/app_development/bootstrap.html @@ -322,7 +322,7 @@

    Nextcloud 20 and later

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/commands.html b/server/latest/developer_manual/app_development/commands.html index 48d5d088200..fd1014c6bcb 100644 --- a/server/latest/developer_manual/app_development/commands.html +++ b/server/latest/developer_manual/app_development/commands.html @@ -316,7 +316,7 @@

    Interactive commands

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/dav_extension.html b/server/latest/developer_manual/app_development/dav_extension.html index 409993f082b..987bde9e048 100644 --- a/server/latest/developer_manual/app_development/dav_extension.html +++ b/server/latest/developer_manual/app_development/dav_extension.html @@ -218,7 +218,7 @@

    Performance considerations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/dependency_management.html b/server/latest/developer_manual/app_development/dependency_management.html index 0bbfdcef15b..26d47c9f6fe 100644 --- a/server/latest/developer_manual/app_development/dependency_management.html +++ b/server/latest/developer_manual/app_development/dependency_management.html @@ -283,7 +283,7 @@

    Conflict example

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/index.html b/server/latest/developer_manual/app_development/index.html index 9cd698e946e..0563904d1cf 100644 --- a/server/latest/developer_manual/app_development/index.html +++ b/server/latest/developer_manual/app_development/index.html @@ -189,7 +189,7 @@

    App development

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/info.html b/server/latest/developer_manual/app_development/info.html index 89c13ee6a62..9270359c59a 100644 --- a/server/latest/developer_manual/app_development/info.html +++ b/server/latest/developer_manual/app_development/info.html @@ -660,7 +660,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/init.html b/server/latest/developer_manual/app_development/init.html index 87759cfb5b1..03f73cae7b8 100644 --- a/server/latest/developer_manual/app_development/init.html +++ b/server/latest/developer_manual/app_development/init.html @@ -166,7 +166,7 @@

    Initialization events

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/intro.html b/server/latest/developer_manual/app_development/intro.html index 17abfd684c4..17032d3c24e 100644 --- a/server/latest/developer_manual/app_development/intro.html +++ b/server/latest/developer_manual/app_development/intro.html @@ -196,7 +196,7 @@

    App architecture

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/translation.html b/server/latest/developer_manual/app_development/translation.html index 0637d8565e8..5303f5b8211 100644 --- a/server/latest/developer_manual/app_development/translation.html +++ b/server/latest/developer_manual/app_development/translation.html @@ -307,7 +307,7 @@

    Documentation on the translation process

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_development/tutorial.html b/server/latest/developer_manual/app_development/tutorial.html index 5b6e7bf33ee..dbadcc0f45b 100644 --- a/server/latest/developer_manual/app_development/tutorial.html +++ b/server/latest/developer_manual/app_development/tutorial.html @@ -140,7 +140,7 @@

    Tutorial

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/code_signing.html b/server/latest/developer_manual/app_publishing_maintenance/code_signing.html index 6e5280fb7c4..8a4173dec54 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/code_signing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/code_signing.html @@ -336,7 +336,7 @@

    Errors<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/index.html b/server/latest/developer_manual/app_publishing_maintenance/index.html index 244762cded2..d75ff37498f 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/index.html +++ b/server/latest/developer_manual/app_publishing_maintenance/index.html @@ -177,7 +177,7 @@

    App publishing and maintenance

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/maintainer.html b/server/latest/developer_manual/app_publishing_maintenance/maintainer.html index 9695c5e0475..ce77ab050ff 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/maintainer.html +++ b/server/latest/developer_manual/app_publishing_maintenance/maintainer.html @@ -166,7 +166,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/monetizing.html b/server/latest/developer_manual/app_publishing_maintenance/monetizing.html index eb42ea4b1c7..bd013315f8a 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/monetizing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/monetizing.html @@ -168,7 +168,7 @@

    Enterprise support

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/publishing.html b/server/latest/developer_manual/app_publishing_maintenance/publishing.html index 5d803896dcd..85cd888328b 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/publishing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/publishing.html @@ -243,7 +243,7 @@

    How to move

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/release_automation.html b/server/latest/developer_manual/app_publishing_maintenance/release_automation.html index 3571cc5dabc..4f2141948e7 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/release_automation.html +++ b/server/latest/developer_manual/app_publishing_maintenance/release_automation.html @@ -325,7 +325,7 @@

    The process

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/release_process.html b/server/latest/developer_manual/app_publishing_maintenance/release_process.html index 7af3b787825..18728d85b2c 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/release_process.html +++ b/server/latest/developer_manual/app_publishing_maintenance/release_process.html @@ -335,7 +335,7 @@

    Hybrid Distribution

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/_available_events_ocp.html b/server/latest/developer_manual/basics/_available_events_ocp.html index 50ff344bdbb..06fd26ed0a0 100644 --- a/server/latest/developer_manual/basics/_available_events_ocp.html +++ b/server/latest/developer_manual/basics/_available_events_ocp.html @@ -1214,7 +1214,7 @@

    OCP\WorkflowEng

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/backgroundjobs.html b/server/latest/developer_manual/basics/backgroundjobs.html index 14a715a3c1a..41faddd77e5 100644 --- a/server/latest/developer_manual/basics/backgroundjobs.html +++ b/server/latest/developer_manual/basics/backgroundjobs.html @@ -327,7 +327,7 @@

    Scheduling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/caching.html b/server/latest/developer_manual/basics/caching.html index 3d456f57c5f..43d33da06cd 100644 --- a/server/latest/developer_manual/basics/caching.html +++ b/server/latest/developer_manual/basics/caching.html @@ -322,7 +322,7 @@

    Distributed cache

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/controllers.html b/server/latest/developer_manual/basics/controllers.html index b43a78529e0..88f8f18f548 100644 --- a/server/latest/developer_manual/basics/controllers.html +++ b/server/latest/developer_manual/basics/controllers.html @@ -1242,7 +1242,7 @@

    Modifying the content security policy

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/dependency_injection.html b/server/latest/developer_manual/basics/dependency_injection.html index 30e7be362fd..25230ff89bc 100644 --- a/server/latest/developer_manual/basics/dependency_injection.html +++ b/server/latest/developer_manual/basics/dependency_injection.html @@ -692,7 +692,7 @@

    Accessing the container from anywhere

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/events.html b/server/latest/developer_manual/basics/events.html index ad802cce509..189c86a4f29 100644 --- a/server/latest/developer_manual/basics/events.html +++ b/server/latest/developer_manual/basics/events.html @@ -1749,7 +1749,7 @@

    Public emitter

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/css.html b/server/latest/developer_manual/basics/front-end/css.html index 0827a72e315..719639e4c4d 100644 --- a/server/latest/developer_manual/basics/front-end/css.html +++ b/server/latest/developer_manual/basics/front-end/css.html @@ -184,7 +184,7 @@

    CSS

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/index.html b/server/latest/developer_manual/basics/front-end/index.html index 991c8b1271b..cf81d214781 100644 --- a/server/latest/developer_manual/basics/front-end/index.html +++ b/server/latest/developer_manual/basics/front-end/index.html @@ -175,7 +175,7 @@

    Front-end

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/js.html b/server/latest/developer_manual/basics/front-end/js.html index 006a3b18a2e..8a463ebba4b 100644 --- a/server/latest/developer_manual/basics/front-end/js.html +++ b/server/latest/developer_manual/basics/front-end/js.html @@ -360,7 +360,7 @@

    Obtaining the initial state in JavaScript

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/templates.html b/server/latest/developer_manual/basics/front-end/templates.html index c07ec9204a2..7fb94ec8994 100644 --- a/server/latest/developer_manual/basics/front-end/templates.html +++ b/server/latest/developer_manual/basics/front-end/templates.html @@ -212,7 +212,7 @@

    Including images

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/theming.html b/server/latest/developer_manual/basics/front-end/theming.html index 871e7d9e44b..fa9eae95a2d 100644 --- a/server/latest/developer_manual/basics/front-end/theming.html +++ b/server/latest/developer_manual/basics/front-end/theming.html @@ -185,7 +185,7 @@

    Icons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/index.html b/server/latest/developer_manual/basics/index.html index 6a424986dbd..211a6a50b40 100644 --- a/server/latest/developer_manual/basics/index.html +++ b/server/latest/developer_manual/basics/index.html @@ -255,7 +255,7 @@

    Basic concepts

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/logging.html b/server/latest/developer_manual/basics/logging.html index 969f30ff5f7..8ba6c2065f9 100644 --- a/server/latest/developer_manual/basics/logging.html +++ b/server/latest/developer_manual/basics/logging.html @@ -447,7 +447,7 @@

    Admin audit logging

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/middlewares.html b/server/latest/developer_manual/basics/middlewares.html index a77d750c836..cce23aed789 100644 --- a/server/latest/developer_manual/basics/middlewares.html +++ b/server/latest/developer_manual/basics/middlewares.html @@ -318,7 +318,7 @@

    Parsing annotations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/public_share_template.html b/server/latest/developer_manual/basics/public_share_template.html index 20a395800d2..55e6f87f5a2 100644 --- a/server/latest/developer_manual/basics/public_share_template.html +++ b/server/latest/developer_manual/basics/public_share_template.html @@ -237,7 +237,7 @@

    Public share template

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/request_lifecycle.html b/server/latest/developer_manual/basics/request_lifecycle.html index 1b3b6039cc9..d1021ff0f85 100644 --- a/server/latest/developer_manual/basics/request_lifecycle.html +++ b/server/latest/developer_manual/basics/request_lifecycle.html @@ -172,7 +172,7 @@

    Front controller

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/routing.html b/server/latest/developer_manual/basics/routing.html index 1cf0bdd2020..d19aad21e20 100644 --- a/server/latest/developer_manual/basics/routing.html +++ b/server/latest/developer_manual/basics/routing.html @@ -397,7 +397,7 @@

    router:match

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/setting.html b/server/latest/developer_manual/basics/setting.html index a3c42144190..d0f6bb2a309 100644 --- a/server/latest/developer_manual/basics/setting.html +++ b/server/latest/developer_manual/basics/setting.html @@ -317,7 +317,7 @@

    Settings

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/appdata.html b/server/latest/developer_manual/basics/storage/appdata.html index 39756d2173f..b6c4dfb9b77 100644 --- a/server/latest/developer_manual/basics/storage/appdata.html +++ b/server/latest/developer_manual/basics/storage/appdata.html @@ -226,7 +226,7 @@

    File<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/configuration.html b/server/latest/developer_manual/basics/storage/configuration.html index c9b6f5d29ad..c94fff969e4 100644 --- a/server/latest/developer_manual/basics/storage/configuration.html +++ b/server/latest/developer_manual/basics/storage/configuration.html @@ -295,7 +295,7 @@

    User values

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/database.html b/server/latest/developer_manual/basics/storage/database.html index 8aa6c8d725d..62bae444b14 100644 --- a/server/latest/developer_manual/basics/storage/database.html +++ b/server/latest/developer_manual/basics/storage/database.html @@ -595,7 +595,7 @@

    Supporting more databases

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/filesystem.html b/server/latest/developer_manual/basics/storage/filesystem.html index 6b5e01b4ace..e6c6e2ee063 100644 --- a/server/latest/developer_manual/basics/storage/filesystem.html +++ b/server/latest/developer_manual/basics/storage/filesystem.html @@ -293,7 +293,7 @@

    Adding mounts to the filesystem

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/index.html b/server/latest/developer_manual/basics/storage/index.html index a04254b6641..c6f28420776 100644 --- a/server/latest/developer_manual/basics/storage/index.html +++ b/server/latest/developer_manual/basics/storage/index.html @@ -189,7 +189,7 @@

    Storage and database

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/migrations.html b/server/latest/developer_manual/basics/storage/migrations.html index 6574f10533d..e7624f80d3a 100644 --- a/server/latest/developer_manual/basics/storage/migrations.html +++ b/server/latest/developer_manual/basics/storage/migrations.html @@ -402,7 +402,7 @@

    Replacing indices

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/testing.html b/server/latest/developer_manual/basics/testing.html index d41bded82d4..1878f71aac5 100644 --- a/server/latest/developer_manual/basics/testing.html +++ b/server/latest/developer_manual/basics/testing.html @@ -231,7 +231,7 @@

    Testing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/basics/translations.html b/server/latest/developer_manual/basics/translations.html index 19c0252d70f..e8e1ee884f7 100644 --- a/server/latest/developer_manual/basics/translations.html +++ b/server/latest/developer_manual/basics/translations.html @@ -529,7 +529,7 @@

    l10n:createjs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/ClientIntegration/index.html b/server/latest/developer_manual/client_apis/ClientIntegration/index.html index 2da133e0b14..440357bbf3b 100644 --- a/server/latest/developer_manual/client_apis/ClientIntegration/index.html +++ b/server/latest/developer_manual/client_apis/ClientIntegration/index.html @@ -385,7 +385,7 @@

    Issues/Bugs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/LoginFlow/index.html b/server/latest/developer_manual/client_apis/LoginFlow/index.html index 9efe12fed25..7aaa062de60 100644 --- a/server/latest/developer_manual/client_apis/LoginFlow/index.html +++ b/server/latest/developer_manual/client_apis/LoginFlow/index.html @@ -755,7 +755,7 @@

    Login name vs. email login

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/index.html b/server/latest/developer_manual/client_apis/OCS/index.html index 4cf344a69e8..3ebbd94b35a 100644 --- a/server/latest/developer_manual/client_apis/OCS/index.html +++ b/server/latest/developer_manual/client_apis/OCS/index.html @@ -333,7 +333,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html b/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html index 7eed03ea220..e2fb6163fe3 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html @@ -413,7 +413,7 @@

    Filtering the auto-complete results

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html index 10d96115eea..473300a363b 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html @@ -337,7 +337,7 @@

    Reset collection

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html b/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html index 3d081a6344e..c8daec4d6b3 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html @@ -997,7 +997,7 @@

    Generate the specification

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html index be1d6e73363..2a87b060103 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html @@ -415,7 +415,7 @@

    Clear data and disable out-of-office

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html index 468d11997c5..117bbda844c 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html @@ -227,7 +227,7 @@

    Fetch user setting and recommendations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html index 7cbedb5b6da..662df163c4f 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html @@ -450,7 +450,7 @@

    Decline a pending Federated Cloud Share

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html index 7f74c9137cc..4716fbb107f 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html @@ -199,7 +199,7 @@

    Sharee recommendations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html index c0db018b98f..2d7ee43adc0 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html @@ -492,7 +492,7 @@

    User status - Restore backup

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html index 6becefbfbb3..4bf974d774d 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html @@ -159,7 +159,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html index 17d28c224d3..f675f671750 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html @@ -452,7 +452,7 @@

    List tasks by App

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html index 567ca0ec80e..fb0e0c67e1e 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html @@ -340,7 +340,7 @@

    Fetch a task by ID

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html index 78e4d45cfa7..d1135db8099 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html @@ -295,7 +295,7 @@

    Translate a string

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html index d571571a7d6..3ecb1eb3d09 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html @@ -296,7 +296,7 @@

    Deleting multiple preference

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/RemoteWipe/index.html b/server/latest/developer_manual/client_apis/RemoteWipe/index.html index 3b7971d7f6a..638b398f887 100644 --- a/server/latest/developer_manual/client_apis/RemoteWipe/index.html +++ b/server/latest/developer_manual/client_apis/RemoteWipe/index.html @@ -180,7 +180,7 @@

    Signalling completion

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/basic.html b/server/latest/developer_manual/client_apis/WebDAV/basic.html index e701fb5667d..0a352d7769b 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/basic.html +++ b/server/latest/developer_manual/client_apis/WebDAV/basic.html @@ -1134,7 +1134,7 @@

    Response Headers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html b/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html index 9e33a4949e1..9ed3a32afd9 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html +++ b/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html @@ -241,7 +241,7 @@

    Starting a bulk upload

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/chunking.html b/server/latest/developer_manual/client_apis/WebDAV/chunking.html index bab959cba4e..012ea55e434 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/chunking.html +++ b/server/latest/developer_manual/client_apis/WebDAV/chunking.html @@ -244,7 +244,7 @@

    Aborting the upload

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/comments.html b/server/latest/developer_manual/client_apis/WebDAV/comments.html index 7e08c8da60f..3d8b18066d7 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/comments.html +++ b/server/latest/developer_manual/client_apis/WebDAV/comments.html @@ -231,7 +231,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/index.html b/server/latest/developer_manual/client_apis/WebDAV/index.html index a5fce6e1909..27ef0bb5300 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/index.html +++ b/server/latest/developer_manual/client_apis/WebDAV/index.html @@ -203,7 +203,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/search.html b/server/latest/developer_manual/client_apis/WebDAV/search.html index 2b6954550fc..1c093c89444 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/search.html +++ b/server/latest/developer_manual/client_apis/WebDAV/search.html @@ -523,7 +523,7 @@

    Examples search bodies

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/trashbin.html b/server/latest/developer_manual/client_apis/WebDAV/trashbin.html index ff50301372d..94aa396fa58 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/trashbin.html +++ b/server/latest/developer_manual/client_apis/WebDAV/trashbin.html @@ -182,7 +182,7 @@

    Emptying the trashbin

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/versions.html b/server/latest/developer_manual/client_apis/WebDAV/versions.html index 8c8e10625af..d887c61e789 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/versions.html +++ b/server/latest/developer_manual/client_apis/WebDAV/versions.html @@ -165,7 +165,7 @@

    Restoring a version

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/activity-api.html b/server/latest/developer_manual/client_apis/activity-api.html index 35cd49e8f90..14707e59a3e 100644 --- a/server/latest/developer_manual/client_apis/activity-api.html +++ b/server/latest/developer_manual/client_apis/activity-api.html @@ -690,7 +690,7 @@

    Further reading

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/examples.html b/server/latest/developer_manual/client_apis/android_library/examples.html index 804f0e54120..0ff7238fcd6 100644 --- a/server/latest/developer_manual/client_apis/android_library/examples.html +++ b/server/latest/developer_manual/client_apis/android_library/examples.html @@ -540,7 +540,7 @@

    Tips<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/index.html b/server/latest/developer_manual/client_apis/android_library/index.html index ef1d265e9f2..b6bf9af14e4 100644 --- a/server/latest/developer_manual/client_apis/android_library/index.html +++ b/server/latest/developer_manual/client_apis/android_library/index.html @@ -175,7 +175,7 @@

    Nextcloud Android library

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/library_installation.html b/server/latest/developer_manual/client_apis/android_library/library_installation.html index d0acec35c0f..3c6a592d722 100644 --- a/server/latest/developer_manual/client_apis/android_library/library_installation.html +++ b/server/latest/developer_manual/client_apis/android_library/library_installation.html @@ -182,7 +182,7 @@

    Add the library project to your project as a Git submodule

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/files.html b/server/latest/developer_manual/client_apis/files.html index 3852b6edbc4..7d4ab15942e 100644 --- a/server/latest/developer_manual/client_apis/files.html +++ b/server/latest/developer_manual/client_apis/files.html @@ -228,7 +228,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/general.html b/server/latest/developer_manual/client_apis/general.html index 1e60152bbe0..cc4723e1d02 100644 --- a/server/latest/developer_manual/client_apis/general.html +++ b/server/latest/developer_manual/client_apis/general.html @@ -153,7 +153,7 @@

    Maintenance Mode

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/client_apis/index.html b/server/latest/developer_manual/client_apis/index.html index 662d12a78ec..6e066c35d2b 100644 --- a/server/latest/developer_manual/client_apis/index.html +++ b/server/latest/developer_manual/client_apis/index.html @@ -219,7 +219,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/atomiccomponents.html b/server/latest/developer_manual/design/atomiccomponents.html index 220e4b66da3..6be14445294 100644 --- a/server/latest/developer_manual/design/atomiccomponents.html +++ b/server/latest/developer_manual/design/atomiccomponents.html @@ -324,7 +324,7 @@

    Pickers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/foundations.html b/server/latest/developer_manual/design/foundations.html index 92210e770b5..13e4717001a 100644 --- a/server/latest/developer_manual/design/foundations.html +++ b/server/latest/developer_manual/design/foundations.html @@ -370,7 +370,7 @@

    Wording

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/index.html b/server/latest/developer_manual/design/index.html index 2062a081c45..9bce4766888 100644 --- a/server/latest/developer_manual/design/index.html +++ b/server/latest/developer_manual/design/index.html @@ -184,7 +184,7 @@

    Interface & interaction design

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/introduction.html b/server/latest/developer_manual/design/introduction.html index 2c5c40be76d..e063e613e26 100644 --- a/server/latest/developer_manual/design/introduction.html +++ b/server/latest/developer_manual/design/introduction.html @@ -155,7 +155,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/layout.html b/server/latest/developer_manual/design/layout.html index e23762e02b1..c3601b99410 100644 --- a/server/latest/developer_manual/design/layout.html +++ b/server/latest/developer_manual/design/layout.html @@ -184,7 +184,7 @@

    Navigation → List → Content

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/layoutcomponents.html b/server/latest/developer_manual/design/layoutcomponents.html index f8b47a01a87..4e3268c3e11 100644 --- a/server/latest/developer_manual/design/layoutcomponents.html +++ b/server/latest/developer_manual/design/layoutcomponents.html @@ -281,7 +281,7 @@

    Sharing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/design/writing.html b/server/latest/developer_manual/design/writing.html index 249468a26f0..56848caef8d 100644 --- a/server/latest/developer_manual/design/writing.html +++ b/server/latest/developer_manual/design/writing.html @@ -340,7 +340,7 @@

    Translatable strings

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/desktop/building.html b/server/latest/developer_manual/desktop/building.html index 8395d7f6e8b..6c625c17a99 100644 --- a/server/latest/developer_manual/desktop/building.html +++ b/server/latest/developer_manual/desktop/building.html @@ -574,7 +574,7 @@

    Address Sanitizer

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/desktop/index.html b/server/latest/developer_manual/desktop/index.html index 4f20ea6db4a..bac847fb59d 100644 --- a/server/latest/developer_manual/desktop/index.html +++ b/server/latest/developer_manual/desktop/index.html @@ -147,7 +147,7 @@

    Desktop Clients

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/ai.html b/server/latest/developer_manual/digging_deeper/ai.html index 770ac9faf40..ab61f48b040 100644 --- a/server/latest/developer_manual/digging_deeper/ai.html +++ b/server/latest/developer_manual/digging_deeper/ai.html @@ -183,7 +183,7 @@

    AI & Machine Learning

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/api.html b/server/latest/developer_manual/digging_deeper/api.html index 39d211a4bee..e6e61ee84d5 100644 --- a/server/latest/developer_manual/digging_deeper/api.html +++ b/server/latest/developer_manual/digging_deeper/api.html @@ -201,7 +201,7 @@

    PHP unstable API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/apis.html b/server/latest/developer_manual/digging_deeper/apis.html index e2247883837..dec9b0e37c4 100644 --- a/server/latest/developer_manual/digging_deeper/apis.html +++ b/server/latest/developer_manual/digging_deeper/apis.html @@ -208,7 +208,7 @@

    APIs & Integration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/auth.html b/server/latest/developer_manual/digging_deeper/auth.html index 3a261a87985..22e1b3f3eed 100644 --- a/server/latest/developer_manual/digging_deeper/auth.html +++ b/server/latest/developer_manual/digging_deeper/auth.html @@ -191,7 +191,7 @@

    Users & Authentication

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/classloader.html b/server/latest/developer_manual/digging_deeper/classloader.html index 84c41047f9b..df26f80c491 100644 --- a/server/latest/developer_manual/digging_deeper/classloader.html +++ b/server/latest/developer_manual/digging_deeper/classloader.html @@ -208,7 +208,7 @@

    Server autoloading

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/appconfig.html b/server/latest/developer_manual/digging_deeper/config/appconfig.html index 049290799fe..fb67cc5e3f4 100644 --- a/server/latest/developer_manual/digging_deeper/config/appconfig.html +++ b/server/latest/developer_manual/digging_deeper/config/appconfig.html @@ -466,7 +466,7 @@

    Constants and flags

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/index.html b/server/latest/developer_manual/digging_deeper/config/index.html index 0f7d0d590c3..6b1f91816a0 100644 --- a/server/latest/developer_manual/digging_deeper/config/index.html +++ b/server/latest/developer_manual/digging_deeper/config/index.html @@ -174,7 +174,7 @@

    Config & Preferences

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/lexicon.html b/server/latest/developer_manual/digging_deeper/config/lexicon.html index 04e1ca85c65..d67865f6e7c 100644 --- a/server/latest/developer_manual/digging_deeper/config/lexicon.html +++ b/server/latest/developer_manual/digging_deeper/config/lexicon.html @@ -290,7 +290,7 @@

    ./occ config:app:get –details

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/userconfig.html b/server/latest/developer_manual/digging_deeper/config/userconfig.html index 5cb811ee0ea..07f029bdef4 100644 --- a/server/latest/developer_manual/digging_deeper/config/userconfig.html +++ b/server/latest/developer_manual/digging_deeper/config/userconfig.html @@ -338,7 +338,7 @@

    Miscellaneous

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/context_chat.html b/server/latest/developer_manual/digging_deeper/context_chat.html index 4b5ca854593..149029a132a 100644 --- a/server/latest/developer_manual/digging_deeper/context_chat.html +++ b/server/latest/developer_manual/digging_deeper/context_chat.html @@ -274,7 +274,7 @@

    Submitting ContentItem data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/continuous_integration.html b/server/latest/developer_manual/digging_deeper/continuous_integration.html index 6bcc67c9558..577485306e9 100644 --- a/server/latest/developer_manual/digging_deeper/continuous_integration.html +++ b/server/latest/developer_manual/digging_deeper/continuous_integration.html @@ -246,7 +246,7 @@

    php-cs<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/dashboard.html b/server/latest/developer_manual/digging_deeper/dashboard.html index 4da8dce8e3d..1e98e20855e 100644 --- a/server/latest/developer_manual/digging_deeper/dashboard.html +++ b/server/latest/developer_manual/digging_deeper/dashboard.html @@ -686,7 +686,7 @@

    Use the API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/deadlock.html b/server/latest/developer_manual/digging_deeper/deadlock.html index 19d62432bf8..3a7ea43c70a 100644 --- a/server/latest/developer_manual/digging_deeper/deadlock.html +++ b/server/latest/developer_manual/digging_deeper/deadlock.html @@ -246,7 +246,7 @@

    References

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/debugging.html b/server/latest/developer_manual/digging_deeper/debugging.html index 0c622a843b2..b84ef61eeea 100644 --- a/server/latest/developer_manual/digging_deeper/debugging.html +++ b/server/latest/developer_manual/digging_deeper/debugging.html @@ -241,7 +241,7 @@

    Using alternative app directories

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/declarative_settings.html b/server/latest/developer_manual/digging_deeper/declarative_settings.html index 4064e4d99c1..332b93f59e4 100644 --- a/server/latest/developer_manual/digging_deeper/declarative_settings.html +++ b/server/latest/developer_manual/digging_deeper/declarative_settings.html @@ -589,7 +589,7 @@

    Sensitive field type

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/devtools.html b/server/latest/developer_manual/digging_deeper/devtools.html index 115ffaa5a7c..38aae572838 100644 --- a/server/latest/developer_manual/digging_deeper/devtools.html +++ b/server/latest/developer_manual/digging_deeper/devtools.html @@ -200,7 +200,7 @@

    Development Tools

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/discovery.html b/server/latest/developer_manual/digging_deeper/discovery.html index fe9adb85c7b..0eac432e5cd 100644 --- a/server/latest/developer_manual/digging_deeper/discovery.html +++ b/server/latest/developer_manual/digging_deeper/discovery.html @@ -177,7 +177,7 @@

    Search & Discovery

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/email.html b/server/latest/developer_manual/digging_deeper/email.html index 761cff0462c..15720acf5df 100644 --- a/server/latest/developer_manual/digging_deeper/email.html +++ b/server/latest/developer_manual/digging_deeper/email.html @@ -198,7 +198,7 @@

    Inline attachments

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/files-metadata.html b/server/latest/developer_manual/digging_deeper/files-metadata.html index 4fe09686919..707180949ba 100644 --- a/server/latest/developer_manual/digging_deeper/files-metadata.html +++ b/server/latest/developer_manual/digging_deeper/files-metadata.html @@ -528,7 +528,7 @@

    Metadata Query Helper

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/flow.html b/server/latest/developer_manual/digging_deeper/flow.html index 37710ee7a38..e2dc93d5f41 100644 --- a/server/latest/developer_manual/digging_deeper/flow.html +++ b/server/latest/developer_manual/digging_deeper/flow.html @@ -184,7 +184,7 @@

    Configuration Component

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/calendar.html b/server/latest/developer_manual/digging_deeper/groupware/calendar.html index f66694d0580..3b1111d343c 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/calendar.html +++ b/server/latest/developer_manual/digging_deeper/groupware/calendar.html @@ -377,7 +377,7 @@

    Rooms

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html b/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html index 5433531ef6c..62e381fe139 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html +++ b/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html @@ -779,7 +779,7 @@

    Register the calendar provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html b/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html index 69d333a633a..41f96c9c146 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html +++ b/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html @@ -257,7 +257,7 @@

    User status

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/index.html b/server/latest/developer_manual/digging_deeper/groupware/index.html index 26d8efda6f9..35221a97021 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/index.html +++ b/server/latest/developer_manual/digging_deeper/groupware/index.html @@ -181,7 +181,7 @@

    Groupware integration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html b/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html index 59ac894a987..42307e424d5 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html +++ b/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html @@ -363,7 +363,7 @@

    Step 3: Register the Mail Provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware_workflows.html b/server/latest/developer_manual/digging_deeper/groupware_workflows.html index de00c85d8a4..4564bdc5f56 100644 --- a/server/latest/developer_manual/digging_deeper/groupware_workflows.html +++ b/server/latest/developer_manual/digging_deeper/groupware_workflows.html @@ -163,7 +163,7 @@

    Groupware & Workflows

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/http_client.html b/server/latest/developer_manual/digging_deeper/http_client.html index 6d8572d66b2..88ab08a49bc 100644 --- a/server/latest/developer_manual/digging_deeper/http_client.html +++ b/server/latest/developer_manual/digging_deeper/http_client.html @@ -281,7 +281,7 @@

    Error handling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/index.html b/server/latest/developer_manual/digging_deeper/index.html index 6e8ece97e83..50bd396e1d1 100644 --- a/server/latest/developer_manual/digging_deeper/index.html +++ b/server/latest/developer_manual/digging_deeper/index.html @@ -459,7 +459,7 @@

    Digging deeper

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/internals.html b/server/latest/developer_manual/digging_deeper/internals.html index 48b53d11015..196111dc719 100644 --- a/server/latest/developer_manual/digging_deeper/internals.html +++ b/server/latest/developer_manual/digging_deeper/internals.html @@ -218,7 +218,7 @@

    Server Internals

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/javascript-apis.html b/server/latest/developer_manual/digging_deeper/javascript-apis.html index 7b6896fbb39..e6fb9899712 100644 --- a/server/latest/developer_manual/digging_deeper/javascript-apis.html +++ b/server/latest/developer_manual/digging_deeper/javascript-apis.html @@ -282,7 +282,7 @@

    OCP – Public APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/machinetranslation.html b/server/latest/developer_manual/digging_deeper/machinetranslation.html index f78e103ff49..f76b96746f3 100644 --- a/server/latest/developer_manual/digging_deeper/machinetranslation.html +++ b/server/latest/developer_manual/digging_deeper/machinetranslation.html @@ -324,7 +324,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/notifications.html b/server/latest/developer_manual/digging_deeper/notifications.html index e87050b1a29..7dd2299bdec 100644 --- a/server/latest/developer_manual/digging_deeper/notifications.html +++ b/server/latest/developer_manual/digging_deeper/notifications.html @@ -150,7 +150,7 @@

    Notifications

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/npm.html b/server/latest/developer_manual/digging_deeper/npm.html index 8fed16ccd72..c832712f850 100644 --- a/server/latest/developer_manual/digging_deeper/npm.html +++ b/server/latest/developer_manual/digging_deeper/npm.html @@ -236,7 +236,7 @@

    npm run lint (optional)

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/oidc.html b/server/latest/developer_manual/digging_deeper/oidc.html index 2d610185891..98d7a44dd48 100644 --- a/server/latest/developer_manual/digging_deeper/oidc.html +++ b/server/latest/developer_manual/digging_deeper/oidc.html @@ -175,7 +175,7 @@

    Generating a token if Nextcloud is the provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/openmetrics.html b/server/latest/developer_manual/digging_deeper/openmetrics.html index 7bd5fcf976f..62df9c0450b 100644 --- a/server/latest/developer_manual/digging_deeper/openmetrics.html +++ b/server/latest/developer_manual/digging_deeper/openmetrics.html @@ -231,7 +231,7 @@

    Implement a new exporter

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/out_of_office.html b/server/latest/developer_manual/digging_deeper/out_of_office.html index 130614f9da2..c03bd957e7b 100644 --- a/server/latest/developer_manual/digging_deeper/out_of_office.html +++ b/server/latest/developer_manual/digging_deeper/out_of_office.html @@ -265,7 +265,7 @@

    Common data structure

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/performance.html b/server/latest/developer_manual/digging_deeper/performance.html index d5ffcf0eb79..4381c649889 100644 --- a/server/latest/developer_manual/digging_deeper/performance.html +++ b/server/latest/developer_manual/digging_deeper/performance.html @@ -262,7 +262,7 @@

    Getting help

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/phonenumberutil.html b/server/latest/developer_manual/digging_deeper/phonenumberutil.html index c2c6c07e418..aaaf60305be 100644 --- a/server/latest/developer_manual/digging_deeper/phonenumberutil.html +++ b/server/latest/developer_manual/digging_deeper/phonenumberutil.html @@ -203,7 +203,7 @@

    Get the country code for a region

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/profile.html b/server/latest/developer_manual/digging_deeper/profile.html index 56a6134e9f0..59ac3aecafc 100644 --- a/server/latest/developer_manual/digging_deeper/profile.html +++ b/server/latest/developer_manual/digging_deeper/profile.html @@ -325,7 +325,7 @@

    Register a profile action

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/profiler.html b/server/latest/developer_manual/digging_deeper/profiler.html index 3c4e40cae24..d2b94b6ee45 100644 --- a/server/latest/developer_manual/digging_deeper/profiler.html +++ b/server/latest/developer_manual/digging_deeper/profiler.html @@ -289,7 +289,7 @@

    Contributing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/projects.html b/server/latest/developer_manual/digging_deeper/projects.html index 826ba9a9881..68bd84dcc84 100644 --- a/server/latest/developer_manual/digging_deeper/projects.html +++ b/server/latest/developer_manual/digging_deeper/projects.html @@ -358,7 +358,7 @@

    Provide a user interface

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/psr.html b/server/latest/developer_manual/digging_deeper/psr.html index 9b4b8fb14ce..64c0b9bcb85 100644 --- a/server/latest/developer_manual/digging_deeper/psr.html +++ b/server/latest/developer_manual/digging_deeper/psr.html @@ -202,7 +202,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/publicpage.html b/server/latest/developer_manual/digging_deeper/publicpage.html index 899753a64a1..2e8c31f87d0 100644 --- a/server/latest/developer_manual/digging_deeper/publicpage.html +++ b/server/latest/developer_manual/digging_deeper/publicpage.html @@ -241,7 +241,7 @@

    Implementing an authenticated public page

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/reference.html b/server/latest/developer_manual/digging_deeper/reference.html index 0209c2509bc..74e33155bc1 100644 --- a/server/latest/developer_manual/digging_deeper/reference.html +++ b/server/latest/developer_manual/digging_deeper/reference.html @@ -988,7 +988,7 @@

    Register a custom picker component

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/repair.html b/server/latest/developer_manual/digging_deeper/repair.html index 45b6ab49267..25cc99f662e 100644 --- a/server/latest/developer_manual/digging_deeper/repair.html +++ b/server/latest/developer_manual/digging_deeper/repair.html @@ -278,7 +278,7 @@

    Creating an expensive repair step

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/rest_apis.html b/server/latest/developer_manual/digging_deeper/rest_apis.html index 17fc3282b4a..1610fb17247 100644 --- a/server/latest/developer_manual/digging_deeper/rest_apis.html +++ b/server/latest/developer_manual/digging_deeper/rest_apis.html @@ -392,7 +392,7 @@

    Historical options

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/search.html b/server/latest/developer_manual/digging_deeper/search.html index 4822b7516ad..3829b97b591 100644 --- a/server/latest/developer_manual/digging_deeper/search.html +++ b/server/latest/developer_manual/digging_deeper/search.html @@ -635,7 +635,7 @@

    Privacy

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/security.html b/server/latest/developer_manual/digging_deeper/security.html index aa62f998ab1..c90d7010386 100644 --- a/server/latest/developer_manual/digging_deeper/security.html +++ b/server/latest/developer_manual/digging_deeper/security.html @@ -252,7 +252,7 @@

    Trusted domain

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/settings.html b/server/latest/developer_manual/digging_deeper/settings.html index 2a8c686e888..2ed2dc84afd 100644 --- a/server/latest/developer_manual/digging_deeper/settings.html +++ b/server/latest/developer_manual/digging_deeper/settings.html @@ -450,7 +450,7 @@

    Registering Settings and Sections

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/setup_checks.html b/server/latest/developer_manual/digging_deeper/setup_checks.html index ef3748dd2ce..3b66eafcd2e 100644 --- a/server/latest/developer_manual/digging_deeper/setup_checks.html +++ b/server/latest/developer_manual/digging_deeper/setup_checks.html @@ -301,7 +301,7 @@

    Running HTTP requests against the server

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/snowflake_ids.html b/server/latest/developer_manual/digging_deeper/snowflake_ids.html index c5bb3f56123..91abedd6819 100644 --- a/server/latest/developer_manual/digging_deeper/snowflake_ids.html +++ b/server/latest/developer_manual/digging_deeper/snowflake_ids.html @@ -259,7 +259,7 @@

    Decode a Snowflake ID

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/speech-to-text.html b/server/latest/developer_manual/digging_deeper/speech-to-text.html index a76333b0d2b..e731bd375c0 100644 --- a/server/latest/developer_manual/digging_deeper/speech-to-text.html +++ b/server/latest/developer_manual/digging_deeper/speech-to-text.html @@ -320,7 +320,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/status.html b/server/latest/developer_manual/digging_deeper/status.html index 94d9ece14e2..e91c7443871 100644 --- a/server/latest/developer_manual/digging_deeper/status.html +++ b/server/latest/developer_manual/digging_deeper/status.html @@ -234,7 +234,7 @@

    Updating the status programmatically

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/talk.html b/server/latest/developer_manual/digging_deeper/talk.html index 74172b7f865..61cef1108fa 100644 --- a/server/latest/developer_manual/digging_deeper/talk.html +++ b/server/latest/developer_manual/digging_deeper/talk.html @@ -224,7 +224,7 @@

    Delete a conversation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/task_processing.html b/server/latest/developer_manual/digging_deeper/task_processing.html index 33302c0e228..0fe0cbdff49 100644 --- a/server/latest/developer_manual/digging_deeper/task_processing.html +++ b/server/latest/developer_manual/digging_deeper/task_processing.html @@ -941,7 +941,7 @@

    Provider and task type registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/text2image.html b/server/latest/developer_manual/digging_deeper/text2image.html index 43da2fe19ab..9c9067106f6 100644 --- a/server/latest/developer_manual/digging_deeper/text2image.html +++ b/server/latest/developer_manual/digging_deeper/text2image.html @@ -361,7 +361,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/text_processing.html b/server/latest/developer_manual/digging_deeper/text_processing.html index 308e50170c9..9133b87f445 100644 --- a/server/latest/developer_manual/digging_deeper/text_processing.html +++ b/server/latest/developer_manual/digging_deeper/text_processing.html @@ -510,7 +510,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/time.html b/server/latest/developer_manual/digging_deeper/time.html index ff43a676e6e..c44bb0be1d5 100644 --- a/server/latest/developer_manual/digging_deeper/time.html +++ b/server/latest/developer_manual/digging_deeper/time.html @@ -190,7 +190,7 @@

    Methods

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/two-factor-provider.html b/server/latest/developer_manual/digging_deeper/two-factor-provider.html index deda73dad4e..a39037b81d3 100644 --- a/server/latest/developer_manual/digging_deeper/two-factor-provider.html +++ b/server/latest/developer_manual/digging_deeper/two-factor-provider.html @@ -292,7 +292,7 @@

    Make a provider deactivatable by the admin (optional)

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/user_migration.html b/server/latest/developer_manual/digging_deeper/user_migration.html index 14fd1b28c9f..78283155d72 100644 --- a/server/latest/developer_manual/digging_deeper/user_migration.html +++ b/server/latest/developer_manual/digging_deeper/user_migration.html @@ -310,7 +310,7 @@

    Register a migrator

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/users.html b/server/latest/developer_manual/digging_deeper/users.html index 7a2aee25445..c28243a77a3 100644 --- a/server/latest/developer_manual/digging_deeper/users.html +++ b/server/latest/developer_manual/digging_deeper/users.html @@ -366,7 +366,7 @@

    User managers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/web_host_metadata.html b/server/latest/developer_manual/digging_deeper/web_host_metadata.html index 55b26e4e183..6a5da20aefc 100644 --- a/server/latest/developer_manual/digging_deeper/web_host_metadata.html +++ b/server/latest/developer_manual/digging_deeper/web_host_metadata.html @@ -280,7 +280,7 @@

    Handler registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html b/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html index 90cab305aec..d772723931d 100644 --- a/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html +++ b/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html @@ -244,7 +244,7 @@

    Best practices

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/DevSetup.html b/server/latest/developer_manual/exapp_development/DevSetup.html index 5059485fe12..5cc7cdf49cb 100644 --- a/server/latest/developer_manual/exapp_development/DevSetup.html +++ b/server/latest/developer_manual/exapp_development/DevSetup.html @@ -225,7 +225,7 @@

    Docker by socket

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/Introduction.html b/server/latest/developer_manual/exapp_development/Introduction.html index 98f168acc41..0b75fc3094d 100644 --- a/server/latest/developer_manual/exapp_development/Introduction.html +++ b/server/latest/developer_manual/exapp_development/Introduction.html @@ -173,7 +173,7 @@

    Glossary

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html index bab3763fb91..8e1c7728609 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html @@ -258,7 +258,7 @@

    6. Testing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html index 1bcedfe600c..92fe145bdbc 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html @@ -829,7 +829,7 @@

    Integration test example

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html index ab3c9066959..51236309b49 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html @@ -703,7 +703,7 @@

    Cookies

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html index 80f3ad73a05..aa3dfa1a025 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html @@ -343,7 +343,7 @@

    Makefile

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/index.html b/server/latest/developer_manual/exapp_development/development_overview/index.html index b371549f869..a69232fa275 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/index.html +++ b/server/latest/developer_manual/exapp_development/development_overview/index.html @@ -178,7 +178,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html b/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html index cdb6af8eb94..0e8636275ec 100644 --- a/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html +++ b/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html @@ -287,7 +287,7 @@

    Contact Support

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html b/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html index e8703519f54..b13e60a87d9 100644 --- a/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html +++ b/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html @@ -151,7 +151,7 @@

    How to use a private Docker container registry with authentication?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html b/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html index 0fd1542a69f..6883624b09a 100644 --- a/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html +++ b/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html @@ -194,7 +194,7 @@

    Other implementations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/GpuSupport.html b/server/latest/developer_manual/exapp_development/faq/GpuSupport.html index e6fd9cbca4b..ce3db656d38 100644 --- a/server/latest/developer_manual/exapp_development/faq/GpuSupport.html +++ b/server/latest/developer_manual/exapp_development/faq/GpuSupport.html @@ -169,7 +169,7 @@

    How to limit the number of GPUs per ExApp?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/Scaling.html b/server/latest/developer_manual/exapp_development/faq/Scaling.html index f155880e748..50b547c3f2b 100644 --- a/server/latest/developer_manual/exapp_development/faq/Scaling.html +++ b/server/latest/developer_manual/exapp_development/faq/Scaling.html @@ -162,7 +162,7 @@

    GPUs scaling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html b/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html index 2f2c5b47e6b..35f530ae6f7 100644 --- a/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html +++ b/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html @@ -195,7 +195,7 @@

    ExApps management list of apps from App Store is empty

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/index.html b/server/latest/developer_manual/exapp_development/faq/index.html index 4a239ec5f81..a18b4ed3f80 100644 --- a/server/latest/developer_manual/exapp_development/faq/index.html +++ b/server/latest/developer_manual/exapp_development/faq/index.html @@ -190,7 +190,7 @@

    Frequently Asked Questions

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/index.html b/server/latest/developer_manual/exapp_development/index.html index 81bbad834c0..e299583b2e9 100644 --- a/server/latest/developer_manual/exapp_development/index.html +++ b/server/latest/developer_manual/exapp_development/index.html @@ -171,7 +171,7 @@

    ExApp development

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Authentication.html b/server/latest/developer_manual/exapp_development/tech_details/Authentication.html index 4ab3757c9c1..8b6adda07e9 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Authentication.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Authentication.html @@ -603,7 +603,7 @@

    Authentication flow

    Authentication flow in details

    -
    +
             sequenceDiagram
         autonumber
         participant ExApp
    @@ -658,7 +658,7 @@ 

    AppAPI session keys

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Deployment.html b/server/latest/developer_manual/exapp_development/tech_details/Deployment.html index 0e1b868fb66..675df0ffd97 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Deployment.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Deployment.html @@ -299,7 +299,7 @@

    ExApp info.xml schema

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html b/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html index c5d6e39b829..1aff42e3b6a 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html +++ b/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html @@ -252,7 +252,7 @@

    Enabled

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Translations.html b/server/latest/developer_manual/exapp_development/tech_details/Translations.html index 6a96c4b9517..8055b375af3 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Translations.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Translations.html @@ -195,7 +195,7 @@

    Translation tool

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html b/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html index 64bd4cfc546..15f4f0bbab0 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html @@ -282,7 +282,7 @@

    Response

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html b/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html index 8745606a05e..2b0940f21ef 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html @@ -229,7 +229,7 @@

    Node Events

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html b/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html index 1288f0b8ede..1b93f3325ca 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html @@ -269,7 +269,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html b/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html index 609f9bb0044..60f183e505a 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html @@ -721,7 +721,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/index.html b/server/latest/developer_manual/exapp_development/tech_details/api/index.html index a1416d07cbe..f08575217fd 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/index.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/index.html @@ -247,7 +247,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/logging.html b/server/latest/developer_manual/exapp_development/tech_details/api/logging.html index 3baecc5452c..33297944fd7 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/logging.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/logging.html @@ -184,7 +184,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html b/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html index f6d29302a1f..4cfac2fd681 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html @@ -221,7 +221,7 @@

    Params<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html b/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html index efe58c427c5..df5e85437cc 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html @@ -251,7 +251,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html b/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html index e1fccd90ba3..2dc6fc18e16 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html @@ -177,7 +177,7 @@

    Other OCS APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html b/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html index 1cf43432ac6..56f9775fbe6 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html @@ -282,7 +282,7 @@

    Response

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/routes.html b/server/latest/developer_manual/exapp_development/tech_details/api/routes.html index ff85273d35b..2af6b0e9b3e 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/routes.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/routes.html @@ -196,7 +196,7 @@

    Unregister

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/settings.html b/server/latest/developer_manual/exapp_development/tech_details/api/settings.html index ed097ce1bc9..f829382dd98 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/settings.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/settings.html @@ -356,7 +356,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html b/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html index a9b96819e1d..a5f6d3449fc 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html @@ -189,7 +189,7 @@

    Request data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html b/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html index da9b210ac74..611b5796d0b 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html @@ -303,7 +303,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/utils.html b/server/latest/developer_manual/exapp_development/tech_details/api/utils.html index 1394d0d3afc..4d8cc7c437c 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/utils.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/utils.html @@ -181,7 +181,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/index.html b/server/latest/developer_manual/exapp_development/tech_details/index.html index 8e1bf518f22..2be30e15e50 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/index.html +++ b/server/latest/developer_manual/exapp_development/tech_details/index.html @@ -193,7 +193,7 @@

    Technical details

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/genindex.html b/server/latest/developer_manual/genindex.html index de394db779c..4c72c3f54c2 100644 --- a/server/latest/developer_manual/genindex.html +++ b/server/latest/developer_manual/genindex.html @@ -559,7 +559,7 @@

    Index

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/html_css.html b/server/latest/developer_manual/getting_started/coding_standards/html_css.html index ebac7a953e6..e9e752a9a5c 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/html_css.html +++ b/server/latest/developer_manual/getting_started/coding_standards/html_css.html @@ -231,7 +231,7 @@

    Naming convention

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/index.html b/server/latest/developer_manual/getting_started/coding_standards/index.html index 1740dd469e3..dc01c0005ef 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/index.html +++ b/server/latest/developer_manual/getting_started/coding_standards/index.html @@ -272,7 +272,7 @@

    License headers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/javascript.html b/server/latest/developer_manual/getting_started/coding_standards/javascript.html index f03d141c12a..24bf33090ba 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/javascript.html +++ b/server/latest/developer_manual/getting_started/coding_standards/javascript.html @@ -1067,7 +1067,7 @@

    Control structures

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/php.html b/server/latest/developer_manual/getting_started/coding_standards/php.html index 1a6492fc869..ad62a93ad3c 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/php.html +++ b/server/latest/developer_manual/getting_started/coding_standards/php.html @@ -287,7 +287,7 @@

    Unit tests

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/development_process.html b/server/latest/developer_manual/getting_started/development_process.html index 07713fcd0c9..d292dd3cb11 100644 --- a/server/latest/developer_manual/getting_started/development_process.html +++ b/server/latest/developer_manual/getting_started/development_process.html @@ -236,7 +236,7 @@

    Manual Backport

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/devenv.html b/server/latest/developer_manual/getting_started/devenv.html index edd6cb0d7b2..ef78f3b292e 100644 --- a/server/latest/developer_manual/getting_started/devenv.html +++ b/server/latest/developer_manual/getting_started/devenv.html @@ -261,7 +261,7 @@

    Keep the code up-to-date

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/getting_started/index.html b/server/latest/developer_manual/getting_started/index.html index dc6a61cf5eb..44ea03df27c 100644 --- a/server/latest/developer_manual/getting_started/index.html +++ b/server/latest/developer_manual/getting_started/index.html @@ -153,7 +153,7 @@

    Getting started

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/how_to/index.html b/server/latest/developer_manual/how_to/index.html index 13ef65a9757..5b719876871 100644 --- a/server/latest/developer_manual/how_to/index.html +++ b/server/latest/developer_manual/how_to/index.html @@ -446,7 +446,7 @@

    WebAuthn without SSL

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/content.html b/server/latest/developer_manual/html_css_design/content.html index e253bc757bb..c636fc8c3d6 100644 --- a/server/latest/developer_manual/html_css_design/content.html +++ b/server/latest/developer_manual/html_css_design/content.html @@ -193,7 +193,7 @@

    Rules and information

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/css.html b/server/latest/developer_manual/html_css_design/css.html index 4248d36bb1f..3ad67ef24d4 100644 --- a/server/latest/developer_manual/html_css_design/css.html +++ b/server/latest/developer_manual/html_css_design/css.html @@ -663,7 +663,7 @@

    Dos and Don’ts

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/html.html b/server/latest/developer_manual/html_css_design/html.html index 726f17105a7..e32d32b08e4 100644 --- a/server/latest/developer_manual/html_css_design/html.html +++ b/server/latest/developer_manual/html_css_design/html.html @@ -204,7 +204,7 @@

    Buttons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/icons.html b/server/latest/developer_manual/html_css_design/icons.html index a5354778cfb..4685d3ff5d5 100644 --- a/server/latest/developer_manual/html_css_design/icons.html +++ b/server/latest/developer_manual/html_css_design/icons.html @@ -166,7 +166,7 @@

    Material design icons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/index.html b/server/latest/developer_manual/html_css_design/index.html index 10386401ad3..0a46eadfd2f 100644 --- a/server/latest/developer_manual/html_css_design/index.html +++ b/server/latest/developer_manual/html_css_design/index.html @@ -204,7 +204,7 @@

    HTML/CSS guidelines

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/list.html b/server/latest/developer_manual/html_css_design/list.html index 322d03fd33e..8687870bbab 100644 --- a/server/latest/developer_manual/html_css_design/list.html +++ b/server/latest/developer_manual/html_css_design/list.html @@ -266,7 +266,7 @@

    Rules and information

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/navigation.html b/server/latest/developer_manual/html_css_design/navigation.html index 9b62da21c45..6ac3b6a4842 100644 --- a/server/latest/developer_manual/html_css_design/navigation.html +++ b/server/latest/developer_manual/html_css_design/navigation.html @@ -619,7 +619,7 @@

    Basic layout

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/popovermenu.html b/server/latest/developer_manual/html_css_design/popovermenu.html index cdcd2864f2e..6f877f9c43f 100644 --- a/server/latest/developer_manual/html_css_design/popovermenu.html +++ b/server/latest/developer_manual/html_css_design/popovermenu.html @@ -241,7 +241,7 @@

    Alignment

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/index.html b/server/latest/developer_manual/index.html index e1070adef00..68928b73842 100644 --- a/server/latest/developer_manual/index.html +++ b/server/latest/developer_manual/index.html @@ -252,7 +252,7 @@

    Table of contents

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/codereviews.html b/server/latest/developer_manual/prologue/bugtracker/codereviews.html index c19cdc1d63a..b954799139d 100644 --- a/server/latest/developer_manual/prologue/bugtracker/codereviews.html +++ b/server/latest/developer_manual/prologue/bugtracker/codereviews.html @@ -199,7 +199,7 @@

    Questions?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/index.html b/server/latest/developer_manual/prologue/bugtracker/index.html index 1fb4b7aaacd..7e0e0f709fa 100644 --- a/server/latest/developer_manual/prologue/bugtracker/index.html +++ b/server/latest/developer_manual/prologue/bugtracker/index.html @@ -151,7 +151,7 @@

    Bugtracker

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/triaging.html b/server/latest/developer_manual/prologue/bugtracker/triaging.html index 8c0a3a91509..8c9cf412ad7 100644 --- a/server/latest/developer_manual/prologue/bugtracker/triaging.html +++ b/server/latest/developer_manual/prologue/bugtracker/triaging.html @@ -269,7 +269,7 @@

    Finalizing and tagging

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/code-of-conduct.html b/server/latest/developer_manual/prologue/code-of-conduct.html index f37c2458b0d..5f5dd853987 100644 --- a/server/latest/developer_manual/prologue/code-of-conduct.html +++ b/server/latest/developer_manual/prologue/code-of-conduct.html @@ -135,7 +135,7 @@

    Code of conduct

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html b/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html index 2e1dc28704e..f99579a51c5 100644 --- a/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html +++ b/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html @@ -172,7 +172,7 @@

    Other documentation requirements

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/help_communication.html b/server/latest/developer_manual/prologue/help_communication.html index 973af048419..471dbc406df 100644 --- a/server/latest/developer_manual/prologue/help_communication.html +++ b/server/latest/developer_manual/prologue/help_communication.html @@ -150,7 +150,7 @@

    Maintainers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/index.html b/server/latest/developer_manual/prologue/index.html index 8a0be0cb762..60e36219e4b 100644 --- a/server/latest/developer_manual/prologue/index.html +++ b/server/latest/developer_manual/prologue/index.html @@ -164,7 +164,7 @@

    Prologue

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/prologue/security.html b/server/latest/developer_manual/prologue/security.html index 1075f523311..e9a665d3bdc 100644 --- a/server/latest/developer_manual/prologue/security.html +++ b/server/latest/developer_manual/prologue/security.html @@ -384,7 +384,7 @@

    Getting help

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/critical_changes.html b/server/latest/developer_manual/release_notes/critical_changes.html index f71d5b685f4..a5e9f4b4ad8 100644 --- a/server/latest/developer_manual/release_notes/critical_changes.html +++ b/server/latest/developer_manual/release_notes/critical_changes.html @@ -243,7 +243,7 @@

    Settings title left-alignment

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/deprecations.html b/server/latest/developer_manual/release_notes/deprecations.html index fdca361d46c..a91ccfa7cdb 100644 --- a/server/latest/developer_manual/release_notes/deprecations.html +++ b/server/latest/developer_manual/release_notes/deprecations.html @@ -160,7 +160,7 @@

    Older deprecations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/index.html b/server/latest/developer_manual/release_notes/index.html index b1f42517a94..1b464063710 100644 --- a/server/latest/developer_manual/release_notes/index.html +++ b/server/latest/developer_manual/release_notes/index.html @@ -142,7 +142,7 @@

    Release notes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/new.html b/server/latest/developer_manual/release_notes/new.html index b0445656d00..11ddf24bad7 100644 --- a/server/latest/developer_manual/release_notes/new.html +++ b/server/latest/developer_manual/release_notes/new.html @@ -157,7 +157,7 @@

    Expensive post migration repair steps

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/index.html b/server/latest/developer_manual/release_notes/previous/index.html index 86d486c598c..137a3305c03 100644 --- a/server/latest/developer_manual/release_notes/previous/index.html +++ b/server/latest/developer_manual/release_notes/previous/index.html @@ -185,7 +185,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html index 32a3e99fd47..232cd325c40 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html @@ -289,7 +289,7 @@

    Internal changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html index 9207ac44248..4db8566b884 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html @@ -207,7 +207,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html index c9c7807cc5a..80759c41312 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html @@ -210,7 +210,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html index d367f0fb6e7..c12a99653fa 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html @@ -225,7 +225,7 @@

    Behavioral changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html index 1cb3ca28dea..b5227d959e6 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html @@ -217,7 +217,7 @@

    Behavioral changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html index b7e8002d030..458cd4c1d1f 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html @@ -250,7 +250,7 @@

    Changed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html index 36dd1ee5d24..db063872b4d 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html @@ -374,7 +374,7 @@

    Removed from public namespace

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html index 84d4284174a..03f5c57068d 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html @@ -224,7 +224,7 @@

    Replaced well-known handler API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html index 817bbc1fc6e..b576eb0119f 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html @@ -245,7 +245,7 @@

    Deprecated APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html index 989528f3303..c8d1469a61c 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html @@ -201,7 +201,7 @@

    Deprecated APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html index e162f1d7b94..39dfc048c75 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html @@ -210,7 +210,7 @@

    Entity slug deprecation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html index 8e98d83e099..5bf99c54e60 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html @@ -211,7 +211,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html index 27ee1ac96d7..afb069242bb 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html @@ -272,7 +272,7 @@

    Deprecated

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html index 39d111dc577..57bdf746cfe 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html @@ -268,7 +268,7 @@

    Changed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html index c41d07b5b10..9d84a3dab47 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html @@ -461,7 +461,7 @@

    Removed WebDAV properties

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html index 374e4002aae..c31886b4450 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html @@ -235,7 +235,7 @@

    Changed behavior

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html index f02e50d4535..dc2462a2585 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html @@ -461,7 +461,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html index 3f14a627af8..79ae602a289 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html @@ -563,7 +563,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html index 92048fc2ae4..f97785c119e 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html @@ -380,7 +380,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html index bb2d39abf50..0cbb0ced17b 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html @@ -417,7 +417,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/search.html b/server/latest/developer_manual/search.html index 9e341f1eee6..05342ca7bd4 100644 --- a/server/latest/developer_manual/search.html +++ b/server/latest/developer_manual/search.html @@ -566,7 +566,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/architecture/files.html b/server/latest/developer_manual/server/architecture/files.html index 9e77b5351cb..43455ff5d39 100644 --- a/server/latest/developer_manual/server/architecture/files.html +++ b/server/latest/developer_manual/server/architecture/files.html @@ -270,7 +270,7 @@

    View.php

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/architecture/index.html b/server/latest/developer_manual/server/architecture/index.html index 63fa92938ac..513a46a68fb 100644 --- a/server/latest/developer_manual/server/architecture/index.html +++ b/server/latest/developer_manual/server/architecture/index.html @@ -165,7 +165,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/code-back-end.html b/server/latest/developer_manual/server/code-back-end.html index 0926eb36e2d..fef72fab4e9 100644 --- a/server/latest/developer_manual/server/code-back-end.html +++ b/server/latest/developer_manual/server/code-back-end.html @@ -155,7 +155,7 @@

    Compatibility documentation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/code-front-end.html b/server/latest/developer_manual/server/code-front-end.html index b5d91063c0d..dc100fcc3d6 100644 --- a/server/latest/developer_manual/server/code-front-end.html +++ b/server/latest/developer_manual/server/code-front-end.html @@ -230,7 +230,7 @@

    Committing changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/externalapi.html b/server/latest/developer_manual/server/externalapi.html index 5b4b7964b84..78aa4b0f607 100644 --- a/server/latest/developer_manual/server/externalapi.html +++ b/server/latest/developer_manual/server/externalapi.html @@ -259,7 +259,7 @@

    Changing API and backwards compatibility

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/index.html b/server/latest/developer_manual/server/index.html index 7c49d19fae3..279409cb408 100644 --- a/server/latest/developer_manual/server/index.html +++ b/server/latest/developer_manual/server/index.html @@ -182,7 +182,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/static-analysis.html b/server/latest/developer_manual/server/static-analysis.html index ec16cd2a589..f21deb4d693 100644 --- a/server/latest/developer_manual/server/static-analysis.html +++ b/server/latest/developer_manual/server/static-analysis.html @@ -169,7 +169,7 @@

    PHP static analysis

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/developer_manual/server/unit-testing.html b/server/latest/developer_manual/server/unit-testing.html index 1322faff171..96957b8565b 100644 --- a/server/latest/developer_manual/server/unit-testing.html +++ b/server/latest/developer_manual/server/unit-testing.html @@ -324,7 +324,7 @@

    Documentation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on May 22, 2026. + Last updated on May 24, 2026.

    diff --git a/server/latest/user_manual/fr/groupware/sync_ios.html b/server/latest/user_manual/fr/groupware/sync_ios.html index 2197ee1c27c..1ca8f96a5b5 100644 --- a/server/latest/user_manual/fr/groupware/sync_ios.html +++ b/server/latest/user_manual/fr/groupware/sync_ios.html @@ -185,7 +185,7 @@

    ContactsNote

    If you select CalDAV only calendar syncing will be made available.

    -

    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/latest/user_manual/ga/groupware/sync_ios.html b/server/latest/user_manual/ga/groupware/sync_ios.html index 65eadd1d3c5..9b15942fc43 100644 --- a/server/latest/user_manual/ga/groupware/sync_ios.html +++ b/server/latest/user_manual/ga/groupware/sync_ios.html @@ -184,7 +184,7 @@

    TeagmhálaitheNote

    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éilireFabhtcheartú na Seirbhíse Fionnachtana.

    +

    Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & FéilireFabhtcheartú na Seirbhíse Fionnachtana.

    diff --git a/server/latest/user_manual/ja_JP/404.html b/server/latest/user_manual/ja_JP/404.html index 25a1922a907..0c7a7a100d8 100644 --- a/server/latest/user_manual/ja_JP/404.html +++ b/server/latest/user_manual/ja_JP/404.html @@ -507,7 +507,7 @@
  • Nextcloud latest ユーザーマニュアル はじめに
  • The Nextcloud web interface
  • アクティビティアプリの使用
  • -
  • Files & synchronization
  • +
  • ファイル(Files)と同期
  • Groupware
  • Talk
  • Collectives
  • diff --git a/server/latest/user_manual/ja_JP/activity.html b/server/latest/user_manual/ja_JP/activity.html index d5c7dc554df..025ca17b549 100644 --- a/server/latest/user_manual/ja_JP/activity.html +++ b/server/latest/user_manual/ja_JP/activity.html @@ -30,7 +30,7 @@ - + @@ -87,7 +87,7 @@ -
  • Files & synchronization
  • +
  • ファイル(Files)と同期
  • Groupware
  • Talk
  • Collectives
  • @@ -129,7 +129,7 @@
    The Activity stream showing all recent activities.
    -

    すべての最近のアクティビティを表示するアクティビティストリーム。

    +

    すべての最近のアクティビティを表示するアクティビティストリーム

    @@ -149,13 +149,13 @@

    アクティビティのフィルター Activity stream filtered to show only activities you triggered.
    -

    自分のアクティビティのみを表示するようにフィルターされたアクティビティストリーム。

    +

    自分のアクティビティのみを表示するようにフィルターされたアクティビティストリーム

    Activity stream filtered to show file changes only.
    -

    ファイルの変更のみを表示するようにフィルターされたアクティビティストリーム。

    +

    ファイルの変更のみを表示するようにフィルターされたアクティビティストリーム

    @@ -166,7 +166,7 @@

    ファイルのサイドバーでのアクティビティ The Activity tab in the Files sidebar showing per-file events.
    -

    ファイルごとのイベントを表示する、ファイルのサイドバー内のアクティビティタブ。

    +

    ファイルごとのイベントを表示する、ファイルのサイドバー内のアクティビティタブ

    @@ -191,10 +191,10 @@

    通知設定 Personal notification settings for the Activity app.
    -

    アクティビティアプリの個人用通知設定。

    +

    アクティビティアプリの個人用通知設定

    -

    設定はカテゴリー別に整理されています(例: ファイル共有カレンダー、連絡先、タスク)。各アクティビティの種類について、次の通知を受け取るかを選択できます:

    +

    設定はカテゴリー別に整理されています。(例: ファイル共有カレンダー、連絡先、タスク) 各アクティビティの種類について、次の通知を受け取るかを選択できます:

    • メール 通知(メール)

    • プッシュ 通知(モバイルおよびデスクトップ)

    • @@ -226,7 +226,7 @@

      毎日のアクティビティサマリー - +
      diff --git a/server/latest/user_manual/ja_JP/collectives/getting_started.html b/server/latest/user_manual/ja_JP/collectives/getting_started.html index 3c390c9a7c1..f0bc56cae80 100644 --- a/server/latest/user_manual/ja_JP/collectives/getting_started.html +++ b/server/latest/user_manual/ja_JP/collectives/getting_started.html @@ -74,7 +74,7 @@
    • Nextcloud latest ユーザーマニュアル はじめに
    • The Nextcloud web interface
    • アクティビティアプリの使用
    • -
    • Files & synchronization
    • +
    • ファイル(Files)と同期
    • Groupware
    • Talk
    • Collectives
        diff --git a/server/latest/user_manual/ja_JP/collectives/index.html b/server/latest/user_manual/ja_JP/collectives/index.html index b09882809eb..bc4054b6f79 100644 --- a/server/latest/user_manual/ja_JP/collectives/index.html +++ b/server/latest/user_manual/ja_JP/collectives/index.html @@ -74,7 +74,7 @@
      • Nextcloud latest ユーザーマニュアル はじめに
      • The Nextcloud web interface
      • アクティビティアプリの使用
      • -
      • Files & synchronization
      • +
      • ファイル(Files)と同期
      • Groupware
      • Talk
      • Collectives
          diff --git a/server/latest/user_manual/ja_JP/collectives/markdown_files.html b/server/latest/user_manual/ja_JP/collectives/markdown_files.html index d06be574491..4bc130617de 100644 --- a/server/latest/user_manual/ja_JP/collectives/markdown_files.html +++ b/server/latest/user_manual/ja_JP/collectives/markdown_files.html @@ -74,7 +74,7 @@
        • Nextcloud latest ユーザーマニュアル はじめに
        • The Nextcloud web interface
        • アクティビティアプリの使用
        • -
        • Files & synchronization
        • +
        • ファイル(Files)と同期
        • Groupware
        • Talk
        • Collectives
            diff --git a/server/latest/user_manual/ja_JP/collectives/onboard_your_team.html b/server/latest/user_manual/ja_JP/collectives/onboard_your_team.html index fd3a4671a37..0cb62861553 100644 --- a/server/latest/user_manual/ja_JP/collectives/onboard_your_team.html +++ b/server/latest/user_manual/ja_JP/collectives/onboard_your_team.html @@ -74,7 +74,7 @@
          • Nextcloud latest ユーザーマニュアル はじめに
          • The Nextcloud web interface
          • アクティビティアプリの使用
          • -
          • Files & synchronization
          • +
          • ファイル(Files)と同期
          • Groupware
          • Talk
          • Collectives
          • -
          • Files & synchronization
              -
            • Accessing your files
            • +
            • ファイル(Files)と同期
                +
              • ファイルへのアクセス
              • Managing your files
              • Sharing & collaboration
              • Security & encryption
              • diff --git a/server/latest/user_manual/ja_JP/desktop/autoupdate.html b/server/latest/user_manual/ja_JP/desktop/autoupdate.html index b7ad8bffc48..66b4d7474b2 100644 --- a/server/latest/user_manual/ja_JP/desktop/autoupdate.html +++ b/server/latest/user_manual/ja_JP/desktop/autoupdate.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/commandline.html b/server/latest/user_manual/ja_JP/desktop/commandline.html index dec94b026d9..e173f0b54dd 100644 --- a/server/latest/user_manual/ja_JP/desktop/commandline.html +++ b/server/latest/user_manual/ja_JP/desktop/commandline.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/configfile.html b/server/latest/user_manual/ja_JP/desktop/configfile.html index 7038f77b135..7645a24f6d4 100644 --- a/server/latest/user_manual/ja_JP/desktop/configfile.html +++ b/server/latest/user_manual/ja_JP/desktop/configfile.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/conflicts.html b/server/latest/user_manual/ja_JP/desktop/conflicts.html index c1d004146ba..9e82f8dafcc 100644 --- a/server/latest/user_manual/ja_JP/desktop/conflicts.html +++ b/server/latest/user_manual/ja_JP/desktop/conflicts.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/envvars.html b/server/latest/user_manual/ja_JP/desktop/envvars.html index 88fe16190f4..ca99f34f741 100644 --- a/server/latest/user_manual/ja_JP/desktop/envvars.html +++ b/server/latest/user_manual/ja_JP/desktop/envvars.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/faq.html b/server/latest/user_manual/ja_JP/desktop/faq.html index beb807a2452..6717500af85 100644 --- a/server/latest/user_manual/ja_JP/desktop/faq.html +++ b/server/latest/user_manual/ja_JP/desktop/faq.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/index.html b/server/latest/user_manual/ja_JP/desktop/index.html index e9322258b89..9980fb60e99 100644 --- a/server/latest/user_manual/ja_JP/desktop/index.html +++ b/server/latest/user_manual/ja_JP/desktop/index.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/installation.html b/server/latest/user_manual/ja_JP/desktop/installation.html index c6903ce3fcc..08e435520f9 100644 --- a/server/latest/user_manual/ja_JP/desktop/installation.html +++ b/server/latest/user_manual/ja_JP/desktop/installation.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/macosvfs.html b/server/latest/user_manual/ja_JP/desktop/macosvfs.html index eecda18f77e..1b02bc10d5b 100644 --- a/server/latest/user_manual/ja_JP/desktop/macosvfs.html +++ b/server/latest/user_manual/ja_JP/desktop/macosvfs.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/options.html b/server/latest/user_manual/ja_JP/desktop/options.html index e3bceb42dcd..73f05826fcc 100644 --- a/server/latest/user_manual/ja_JP/desktop/options.html +++ b/server/latest/user_manual/ja_JP/desktop/options.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/uninstallation.html b/server/latest/user_manual/ja_JP/desktop/uninstallation.html index afdd2fef1d8..daae4362427 100644 --- a/server/latest/user_manual/ja_JP/desktop/uninstallation.html +++ b/server/latest/user_manual/ja_JP/desktop/uninstallation.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/updatechannel.html b/server/latest/user_manual/ja_JP/desktop/updatechannel.html index ed7374a0142..3905cd5fc4a 100644 --- a/server/latest/user_manual/ja_JP/desktop/updatechannel.html +++ b/server/latest/user_manual/ja_JP/desktop/updatechannel.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/desktop/usage.html b/server/latest/user_manual/ja_JP/desktop/usage.html index 8bf5a1ff9fc..abb54ec4ed3 100644 --- a/server/latest/user_manual/ja_JP/desktop/usage.html +++ b/server/latest/user_manual/ja_JP/desktop/usage.html @@ -74,7 +74,7 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
              • +
              • ファイル(Files)と同期
              • Groupware
              • Talk
              • Collectives
              • diff --git a/server/latest/user_manual/ja_JP/files/access_webdav.html b/server/latest/user_manual/ja_JP/files/access_webdav.html index 2b296dc9992..629152fcd7d 100644 --- a/server/latest/user_manual/ja_JP/files/access_webdav.html +++ b/server/latest/user_manual/ja_JP/files/access_webdav.html @@ -74,8 +74,8 @@
              • Nextcloud latest ユーザーマニュアル はじめに
              • The Nextcloud web interface
              • アクティビティアプリの使用
              • -
              • Files & synchronization
                  -
                • Accessing your files
                    +
                  • ファイル(Files)と同期
                      +
                    • ファイルへのアクセス
                      • Accessing your files using the Nextcloud web interface
                      • Accessing Nextcloud files using WebDAV
                        • Official Nextcloud desktop and mobile clients
                        • @@ -126,8 +126,8 @@
                          • - - + +
                          • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/access_webgui.html b/server/latest/user_manual/ja_JP/files/access_webgui.html index 87c76e70796..c5d53c26d9e 100644 --- a/server/latest/user_manual/ja_JP/files/access_webgui.html +++ b/server/latest/user_manual/ja_JP/files/access_webgui.html @@ -31,7 +31,7 @@ - + @@ -74,8 +74,8 @@
                          • Nextcloud latest ユーザーマニュアル はじめに
                          • The Nextcloud web interface
                          • アクティビティアプリの使用
                          • -
                          • Files & synchronization
                              -
                            • Accessing your files
                                +
                              • ファイル(Files)と同期
                                  +
                                • ファイルへのアクセス
                                  • Accessing your files using the Nextcloud web interface
                                    • Navigating your files
                                    • File controls
                                    • @@ -127,8 +127,8 @@
                                      diff --git a/server/latest/user_manual/ja_JP/files/accessing.html b/server/latest/user_manual/ja_JP/files/accessing.html index ed894b806a0..1252ecf3230 100644 --- a/server/latest/user_manual/ja_JP/files/accessing.html +++ b/server/latest/user_manual/ja_JP/files/accessing.html @@ -7,7 +7,7 @@ - Accessing your files — Nextcloud latest User Manual latest ドキュメント + ファイルへのアクセス — Nextcloud latest User Manual latest ドキュメント @@ -31,7 +31,7 @@ - + @@ -74,8 +74,8 @@
                                    • Nextcloud latest ユーザーマニュアル はじめに
                                    • The Nextcloud web interface
                                    • アクティビティアプリの使用
                                    • -
                                    • Files & synchronization
                                        -
                                      • Accessing your files
                                          +
                                        • ファイル(Files)と同期
                                            +
                                          • ファイルへのアクセス
                                            • Accessing your files using the Nextcloud web interface
                                            • Accessing Nextcloud files using WebDAV
                                            • Desktop and mobile synchronization
                                            • @@ -112,8 +112,8 @@
                                              • - - + +
                                              • Edit on GitHub
                                              • @@ -124,7 +124,7 @@
                                                -

                                                Accessing your files

                                                +

                                                ファイルへのアクセス

                                                diff --git a/server/latest/user_manual/ja_JP/files/collaboration.html b/server/latest/user_manual/ja_JP/files/collaboration.html index 00a91c922e6..b7de69ca735 100644 --- a/server/latest/user_manual/ja_JP/files/collaboration.html +++ b/server/latest/user_manual/ja_JP/files/collaboration.html @@ -74,8 +74,8 @@
                                              • Nextcloud latest ユーザーマニュアル はじめに
                                              • The Nextcloud web interface
                                              • アクティビティアプリの使用
                                              • -
                                              • Files & synchronization
                                                  -
                                                • Accessing your files
                                                • +
                                                • ファイル(Files)と同期
                                                    +
                                                  • ファイルへのアクセス
                                                  • Managing your files
                                                  • Sharing & collaboration
                                                    • File sharing
                                                    • @@ -112,7 +112,7 @@
                                                      • - +
                                                      • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/deleted_file_management.html b/server/latest/user_manual/ja_JP/files/deleted_file_management.html index c463addb3c1..1973a8dac87 100644 --- a/server/latest/user_manual/ja_JP/files/deleted_file_management.html +++ b/server/latest/user_manual/ja_JP/files/deleted_file_management.html @@ -74,8 +74,8 @@
                                                      • Nextcloud latest ユーザーマニュアル はじめに
                                                      • The Nextcloud web interface
                                                      • アクティビティアプリの使用
                                                      • -
                                                      • Files & synchronization
                                                          -
                                                        • Accessing your files
                                                        • +
                                                        • ファイル(Files)と同期
                                                            +
                                                          • ファイルへのアクセス
                                                          • Managing your files
                                                            • Managing deleted files
                                                              • Quotas
                                                              • @@ -116,7 +116,7 @@
                                                                • - +
                                                                • diff --git a/server/latest/user_manual/ja_JP/files/desktop_mobile_sync.html b/server/latest/user_manual/ja_JP/files/desktop_mobile_sync.html index 565b10807eb..c4946bb8724 100644 --- a/server/latest/user_manual/ja_JP/files/desktop_mobile_sync.html +++ b/server/latest/user_manual/ja_JP/files/desktop_mobile_sync.html @@ -74,8 +74,8 @@
                                                                • Nextcloud latest ユーザーマニュアル はじめに
                                                                • The Nextcloud web interface
                                                                • アクティビティアプリの使用
                                                                • -
                                                                • Files & synchronization
                                                                    -
                                                                  • Accessing your files
                                                                      +
                                                                    • ファイル(Files)と同期
                                                                        +
                                                                      • ファイルへのアクセス
                                                                        • Accessing your files using the Nextcloud web interface
                                                                        • Accessing Nextcloud files using WebDAV
                                                                        • Desktop and mobile synchronization
                                                                            @@ -115,8 +115,8 @@
                                                                            • - - + +
                                                                            • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/encrypting_files.html b/server/latest/user_manual/ja_JP/files/encrypting_files.html index 36e29a4609f..0f76df60d81 100644 --- a/server/latest/user_manual/ja_JP/files/encrypting_files.html +++ b/server/latest/user_manual/ja_JP/files/encrypting_files.html @@ -74,8 +74,8 @@
                                                                            • Nextcloud latest ユーザーマニュアル はじめに
                                                                            • The Nextcloud web interface
                                                                            • アクティビティアプリの使用
                                                                            • -
                                                                            • Files & synchronization
                                                                                -
                                                                              • Accessing your files
                                                                              • +
                                                                              • ファイル(Files)と同期
                                                                                  +
                                                                                • ファイルへのアクセス
                                                                                • Managing your files
                                                                                • Sharing & collaboration
                                                                                • Security & encryption
                                                                                    @@ -115,7 +115,7 @@
                                                                                    • - +
                                                                                    • diff --git a/server/latest/user_manual/ja_JP/files/external_storage.html b/server/latest/user_manual/ja_JP/files/external_storage.html index 6412ab205cf..0f4f26c1676 100644 --- a/server/latest/user_manual/ja_JP/files/external_storage.html +++ b/server/latest/user_manual/ja_JP/files/external_storage.html @@ -74,8 +74,8 @@
                                                                                    • Nextcloud latest ユーザーマニュアル はじめに
                                                                                    • The Nextcloud web interface
                                                                                    • アクティビティアプリの使用
                                                                                    • -
                                                                                    • Files & synchronization
                                                                                        -
                                                                                      • Accessing your files
                                                                                          +
                                                                                        • ファイル(Files)と同期
                                                                                            +
                                                                                          • ファイルへのアクセス
                                                                                            • Accessing your files using the Nextcloud web interface
                                                                                            • Accessing Nextcloud files using WebDAV
                                                                                            • Desktop and mobile synchronization
                                                                                            • @@ -119,8 +119,8 @@
                                                                                              • - - + +
                                                                                              • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/federated_cloud_sharing.html b/server/latest/user_manual/ja_JP/files/federated_cloud_sharing.html index 5115b8584f1..ca733197acb 100644 --- a/server/latest/user_manual/ja_JP/files/federated_cloud_sharing.html +++ b/server/latest/user_manual/ja_JP/files/federated_cloud_sharing.html @@ -74,8 +74,8 @@
                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                              • The Nextcloud web interface
                                                                                              • アクティビティアプリの使用
                                                                                              • -
                                                                                              • Files & synchronization
                                                                                                  -
                                                                                                • Accessing your files
                                                                                                • +
                                                                                                • ファイル(Files)と同期
                                                                                                    +
                                                                                                  • ファイルへのアクセス
                                                                                                  • Managing your files
                                                                                                  • Sharing & collaboration
                                                                                                    • File sharing
                                                                                                    • @@ -116,7 +116,7 @@
                                                                                                      • - +
                                                                                                      • diff --git a/server/latest/user_manual/ja_JP/files/file_drop.html b/server/latest/user_manual/ja_JP/files/file_drop.html index 6bf5f93364c..bb877113c07 100644 --- a/server/latest/user_manual/ja_JP/files/file_drop.html +++ b/server/latest/user_manual/ja_JP/files/file_drop.html @@ -74,8 +74,8 @@
                                                                                                      • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                      • The Nextcloud web interface
                                                                                                      • アクティビティアプリの使用
                                                                                                      • -
                                                                                                      • Files & synchronization
                                                                                                          -
                                                                                                        • Accessing your files
                                                                                                        • +
                                                                                                        • ファイル(Files)と同期
                                                                                                            +
                                                                                                          • ファイルへのアクセス
                                                                                                          • Managing your files
                                                                                                          • Sharing & collaboration
                                                                                                            • File sharing
                                                                                                            • @@ -116,7 +116,7 @@
                                                                                                              • - +
                                                                                                              • diff --git a/server/latest/user_manual/ja_JP/files/index.html b/server/latest/user_manual/ja_JP/files/index.html index 7c2949070ef..a3376b657d0 100644 --- a/server/latest/user_manual/ja_JP/files/index.html +++ b/server/latest/user_manual/ja_JP/files/index.html @@ -7,7 +7,7 @@ - Files & synchronization — Nextcloud latest User Manual latest ドキュメント + ファイル(Files)と同期 — Nextcloud latest User Manual latest ドキュメント @@ -30,7 +30,7 @@ - + @@ -74,8 +74,8 @@
                                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                              • The Nextcloud web interface
                                                                                                              • アクティビティアプリの使用
                                                                                                              • -
                                                                                                              • Files & synchronization
                                                                                                                  -
                                                                                                                • Accessing your files
                                                                                                                • +
                                                                                                                • ファイル(Files)と同期
                                                                                                                    +
                                                                                                                  • ファイルへのアクセス
                                                                                                                  • Managing your files
                                                                                                                  • Sharing & collaboration
                                                                                                                  • Security & encryption
                                                                                                                  • @@ -105,7 +105,7 @@
                                                                                                                    • - +
                                                                                                                    • Edit on GitHub
                                                                                                                    • @@ -116,10 +116,10 @@
                                                                                                                      -

                                                                                                                      Files & synchronization

                                                                                                                      +

                                                                                                                      ファイル(Files)と同期


                                                                                                                      diff --git a/server/latest/user_manual/ja_JP/files/large_file_upload.html b/server/latest/user_manual/ja_JP/files/large_file_upload.html index 8818e1fe1ad..167508befb4 100644 --- a/server/latest/user_manual/ja_JP/files/large_file_upload.html +++ b/server/latest/user_manual/ja_JP/files/large_file_upload.html @@ -74,8 +74,8 @@
                                                                                                                    • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                    • The Nextcloud web interface
                                                                                                                    • アクティビティアプリの使用
                                                                                                                    • -
                                                                                                                    • Files & synchronization
                                                                                                                        -
                                                                                                                      • Accessing your files
                                                                                                                          +
                                                                                                                        • ファイル(Files)と同期
                                                                                                                            +
                                                                                                                          • ファイルへのアクセス
                                                                                                                            • Accessing your files using the Nextcloud web interface
                                                                                                                            • Accessing Nextcloud files using WebDAV
                                                                                                                            • Desktop and mobile synchronization
                                                                                                                            • @@ -112,8 +112,8 @@
                                                                                                                              • - - + +
                                                                                                                              • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/managing.html b/server/latest/user_manual/ja_JP/files/managing.html index f695b283191..a03ca154ea3 100644 --- a/server/latest/user_manual/ja_JP/files/managing.html +++ b/server/latest/user_manual/ja_JP/files/managing.html @@ -74,8 +74,8 @@
                                                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                              • The Nextcloud web interface
                                                                                                                              • アクティビティアプリの使用
                                                                                                                              • -
                                                                                                                              • Files & synchronization
                                                                                                                                  -
                                                                                                                                • Accessing your files
                                                                                                                                • +
                                                                                                                                • ファイル(Files)と同期
                                                                                                                                    +
                                                                                                                                  • ファイルへのアクセス
                                                                                                                                  • Managing your files
                                                                                                                                    • Managing deleted files
                                                                                                                                    • Version control
                                                                                                                                    • @@ -111,7 +111,7 @@
                                                                                                                                      • - +
                                                                                                                                      • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/quota.html b/server/latest/user_manual/ja_JP/files/quota.html index 64900f41535..f32d4ee2620 100644 --- a/server/latest/user_manual/ja_JP/files/quota.html +++ b/server/latest/user_manual/ja_JP/files/quota.html @@ -74,8 +74,8 @@
                                                                                                                                      • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                      • The Nextcloud web interface
                                                                                                                                      • アクティビティアプリの使用
                                                                                                                                      • -
                                                                                                                                      • Files & synchronization
                                                                                                                                          -
                                                                                                                                        • Accessing your files
                                                                                                                                        • +
                                                                                                                                        • ファイル(Files)と同期
                                                                                                                                            +
                                                                                                                                          • ファイルへのアクセス
                                                                                                                                          • Managing your files
                                                                                                                                            • Managing deleted files
                                                                                                                                            • Version control
                                                                                                                                            • @@ -111,7 +111,7 @@
                                                                                                                                              • - +
                                                                                                                                              • diff --git a/server/latest/user_manual/ja_JP/files/security.html b/server/latest/user_manual/ja_JP/files/security.html index 43664c1d81c..dd2a9a89290 100644 --- a/server/latest/user_manual/ja_JP/files/security.html +++ b/server/latest/user_manual/ja_JP/files/security.html @@ -74,8 +74,8 @@
                                                                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                              • The Nextcloud web interface
                                                                                                                                              • アクティビティアプリの使用
                                                                                                                                              • -
                                                                                                                                              • Files & synchronization
                                                                                                                                                  -
                                                                                                                                                • Accessing your files
                                                                                                                                                • +
                                                                                                                                                • ファイル(Files)と同期
                                                                                                                                                    +
                                                                                                                                                  • ファイルへのアクセス
                                                                                                                                                  • Managing your files
                                                                                                                                                  • Sharing & collaboration
                                                                                                                                                  • Security & encryption
                                                                                                                                                      @@ -109,7 +109,7 @@
                                                                                                                                                      • - +
                                                                                                                                                      • Edit on GitHub diff --git a/server/latest/user_manual/ja_JP/files/sharing.html b/server/latest/user_manual/ja_JP/files/sharing.html index bf8158ef55f..38536044b19 100644 --- a/server/latest/user_manual/ja_JP/files/sharing.html +++ b/server/latest/user_manual/ja_JP/files/sharing.html @@ -74,8 +74,8 @@
                                                                                                                                                      • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                      • The Nextcloud web interface
                                                                                                                                                      • アクティビティアプリの使用
                                                                                                                                                      • -
                                                                                                                                                      • Files & synchronization
                                                                                                                                                          -
                                                                                                                                                        • Accessing your files
                                                                                                                                                        • +
                                                                                                                                                        • ファイル(Files)と同期
                                                                                                                                                            +
                                                                                                                                                          • ファイルへのアクセス
                                                                                                                                                          • Managing your files
                                                                                                                                                          • Sharing & collaboration
                                                                                                                                                            • File sharing
                                                                                                                                                                @@ -121,7 +121,7 @@
                                                                                                                                                                • - +
                                                                                                                                                                • diff --git a/server/latest/user_manual/ja_JP/files/tagging.html b/server/latest/user_manual/ja_JP/files/tagging.html index b54bdcf00f2..c879da7fd8e 100644 --- a/server/latest/user_manual/ja_JP/files/tagging.html +++ b/server/latest/user_manual/ja_JP/files/tagging.html @@ -74,8 +74,8 @@
                                                                                                                                                                • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                • The Nextcloud web interface
                                                                                                                                                                • アクティビティアプリの使用
                                                                                                                                                                • -
                                                                                                                                                                • Files & synchronization
                                                                                                                                                                    -
                                                                                                                                                                  • Accessing your files
                                                                                                                                                                  • +
                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                      +
                                                                                                                                                                    • ファイルへのアクセス
                                                                                                                                                                    • Managing your files
                                                                                                                                                                      • Managing deleted files
                                                                                                                                                                      • Version control
                                                                                                                                                                      • @@ -117,7 +117,7 @@
                                                                                                                                                                        • - +
                                                                                                                                                                        • diff --git a/server/latest/user_manual/ja_JP/files/transfer_ownership.html b/server/latest/user_manual/ja_JP/files/transfer_ownership.html index a338466d283..3a3f02a72ed 100644 --- a/server/latest/user_manual/ja_JP/files/transfer_ownership.html +++ b/server/latest/user_manual/ja_JP/files/transfer_ownership.html @@ -74,8 +74,8 @@
                                                                                                                                                                        • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                        • The Nextcloud web interface
                                                                                                                                                                        • アクティビティアプリの使用
                                                                                                                                                                        • -
                                                                                                                                                                        • Files & synchronization
                                                                                                                                                                            -
                                                                                                                                                                          • Accessing your files
                                                                                                                                                                          • +
                                                                                                                                                                          • ファイル(Files)と同期
                                                                                                                                                                              +
                                                                                                                                                                            • ファイルへのアクセス
                                                                                                                                                                            • Managing your files
                                                                                                                                                                            • Sharing & collaboration
                                                                                                                                                                              • File sharing
                                                                                                                                                                              • @@ -112,7 +112,7 @@
                                                                                                                                                                                • - +
                                                                                                                                                                                • diff --git a/server/latest/user_manual/ja_JP/files/using_e2ee.html b/server/latest/user_manual/ja_JP/files/using_e2ee.html index 5c1d5313b09..389d6ed568c 100644 --- a/server/latest/user_manual/ja_JP/files/using_e2ee.html +++ b/server/latest/user_manual/ja_JP/files/using_e2ee.html @@ -74,8 +74,8 @@
                                                                                                                                                                                • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                • The Nextcloud web interface
                                                                                                                                                                                • アクティビティアプリの使用
                                                                                                                                                                                • -
                                                                                                                                                                                • Files & synchronization
                                                                                                                                                                                    -
                                                                                                                                                                                  • Accessing your files
                                                                                                                                                                                  • +
                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                      +
                                                                                                                                                                                    • ファイルへのアクセス
                                                                                                                                                                                    • Managing your files
                                                                                                                                                                                    • Sharing & collaboration
                                                                                                                                                                                    • Security & encryption
                                                                                                                                                                                        @@ -115,7 +115,7 @@
                                                                                                                                                                                        • - +
                                                                                                                                                                                        • diff --git a/server/latest/user_manual/ja_JP/files/version_control.html b/server/latest/user_manual/ja_JP/files/version_control.html index f4dab1965e5..a277096dbd3 100644 --- a/server/latest/user_manual/ja_JP/files/version_control.html +++ b/server/latest/user_manual/ja_JP/files/version_control.html @@ -74,8 +74,8 @@
                                                                                                                                                                                        • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                        • The Nextcloud web interface
                                                                                                                                                                                        • アクティビティアプリの使用
                                                                                                                                                                                        • -
                                                                                                                                                                                        • Files & synchronization
                                                                                                                                                                                            -
                                                                                                                                                                                          • Accessing your files
                                                                                                                                                                                          • +
                                                                                                                                                                                          • ファイル(Files)と同期
                                                                                                                                                                                              +
                                                                                                                                                                                            • ファイルへのアクセス
                                                                                                                                                                                            • Managing your files
                                                                                                                                                                                              • Managing deleted files
                                                                                                                                                                                              • Version control
                                                                                                                                                                                                  @@ -115,7 +115,7 @@
                                                                                                                                                                                                  • - +
                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/genindex.html b/server/latest/user_manual/ja_JP/genindex.html index 3a463232306..bc19bc5627b 100644 --- a/server/latest/user_manual/ja_JP/genindex.html +++ b/server/latest/user_manual/ja_JP/genindex.html @@ -507,7 +507,7 @@
                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                  • -
                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                  • +
                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                  • Talk
                                                                                                                                                                                                  • Collectives
                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/groupware/absence.html b/server/latest/user_manual/ja_JP/groupware/absence.html index bedab05d946..e00594e077e 100644 --- a/server/latest/user_manual/ja_JP/groupware/absence.html +++ b/server/latest/user_manual/ja_JP/groupware/absence.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                  • -
                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                  • +
                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                    • Using the Contacts app
                                                                                                                                                                                                    • Using the Calendar app
                                                                                                                                                                                                    • diff --git a/server/latest/user_manual/ja_JP/groupware/calendar.html b/server/latest/user_manual/ja_JP/groupware/calendar.html index 9b276ad488c..54051182906 100644 --- a/server/latest/user_manual/ja_JP/groupware/calendar.html +++ b/server/latest/user_manual/ja_JP/groupware/calendar.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                    • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                    • The Nextcloud web interface
                                                                                                                                                                                                    • アクティビティアプリの使用
                                                                                                                                                                                                    • -
                                                                                                                                                                                                    • Files & synchronization
                                                                                                                                                                                                    • +
                                                                                                                                                                                                    • ファイル(Files)と同期
                                                                                                                                                                                                    • Groupware
                                                                                                                                                                                                      • Using the Contacts app
                                                                                                                                                                                                      • Using the Calendar app
                                                                                                                                                                                                          diff --git a/server/latest/user_manual/ja_JP/groupware/contacts.html b/server/latest/user_manual/ja_JP/groupware/contacts.html index ea0adf3eddf..86ad434ccd4 100644 --- a/server/latest/user_manual/ja_JP/groupware/contacts.html +++ b/server/latest/user_manual/ja_JP/groupware/contacts.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                        • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                        • The Nextcloud web interface
                                                                                                                                                                                                        • アクティビティアプリの使用
                                                                                                                                                                                                        • -
                                                                                                                                                                                                        • Files & synchronization
                                                                                                                                                                                                        • +
                                                                                                                                                                                                        • ファイル(Files)と同期
                                                                                                                                                                                                        • Groupware
                                                                                                                                                                                                          • Using the Contacts app
                                                                                                                                                                                                            • Adding Contacts
                                                                                                                                                                                                                diff --git a/server/latest/user_manual/ja_JP/groupware/index.html b/server/latest/user_manual/ja_JP/groupware/index.html index eb4079acf70..6262b094542 100644 --- a/server/latest/user_manual/ja_JP/groupware/index.html +++ b/server/latest/user_manual/ja_JP/groupware/index.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                              • The Nextcloud web interface
                                                                                                                                                                                                              • アクティビティアプリの使用
                                                                                                                                                                                                              • -
                                                                                                                                                                                                              • Files & synchronization
                                                                                                                                                                                                              • +
                                                                                                                                                                                                              • ファイル(Files)と同期
                                                                                                                                                                                                              • Groupware
                                                                                                                                                                                                                • Using the Contacts app
                                                                                                                                                                                                                • Using the Calendar app
                                                                                                                                                                                                                • diff --git a/server/latest/user_manual/ja_JP/groupware/mail.html b/server/latest/user_manual/ja_JP/groupware/mail.html index 02552a69ea4..41b883147d7 100644 --- a/server/latest/user_manual/ja_JP/groupware/mail.html +++ b/server/latest/user_manual/ja_JP/groupware/mail.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                • The Nextcloud web interface
                                                                                                                                                                                                                • アクティビティアプリの使用
                                                                                                                                                                                                                • -
                                                                                                                                                                                                                • Files & synchronization
                                                                                                                                                                                                                • +
                                                                                                                                                                                                                • ファイル(Files)と同期
                                                                                                                                                                                                                • Groupware
                                                                                                                                                                                                                  • Using the Contacts app
                                                                                                                                                                                                                  • Using the Calendar app
                                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_android.html b/server/latest/user_manual/ja_JP/groupware/sync_android.html index ede0d141a38..12bdd0ddaee 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_android.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_android.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                                    • Using the Contacts app
                                                                                                                                                                                                                    • Using the Calendar app
                                                                                                                                                                                                                    • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_gnome.html b/server/latest/user_manual/ja_JP/groupware/sync_gnome.html index c51b74f8926..208957d18ba 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_gnome.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_gnome.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                    • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                    • The Nextcloud web interface
                                                                                                                                                                                                                    • アクティビティアプリの使用
                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                    • Files & synchronization
                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                    • ファイル(Files)と同期
                                                                                                                                                                                                                    • Groupware
                                                                                                                                                                                                                      • Using the Contacts app
                                                                                                                                                                                                                      • Using the Calendar app
                                                                                                                                                                                                                      • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_ios.html b/server/latest/user_manual/ja_JP/groupware/sync_ios.html index 3d0e121fec0..973ad329077 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_ios.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_ios.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                      • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                      • The Nextcloud web interface
                                                                                                                                                                                                                      • アクティビティアプリの使用
                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                      • Files & synchronization
                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                      • ファイル(Files)と同期
                                                                                                                                                                                                                      • Groupware
                                                                                                                                                                                                                        • Using the Contacts app
                                                                                                                                                                                                                        • Using the Calendar app
                                                                                                                                                                                                                        • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_kde.html b/server/latest/user_manual/ja_JP/groupware/sync_kde.html index 56c729c36c3..38c2981f1cc 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_kde.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_kde.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                        • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                        • The Nextcloud web interface
                                                                                                                                                                                                                        • アクティビティアプリの使用
                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                        • Files & synchronization
                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                        • ファイル(Files)と同期
                                                                                                                                                                                                                        • Groupware
                                                                                                                                                                                                                          • Using the Contacts app
                                                                                                                                                                                                                          • Using the Calendar app
                                                                                                                                                                                                                          • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_osx.html b/server/latest/user_manual/ja_JP/groupware/sync_osx.html index 126f6d007bd..a2cb5d9d83f 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_osx.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_osx.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                          • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                          • The Nextcloud web interface
                                                                                                                                                                                                                          • アクティビティアプリの使用
                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                          • Files & synchronization
                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                          • ファイル(Files)と同期
                                                                                                                                                                                                                          • Groupware
                                                                                                                                                                                                                            • Using the Contacts app
                                                                                                                                                                                                                            • Using the Calendar app
                                                                                                                                                                                                                            • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_thunderbird.html b/server/latest/user_manual/ja_JP/groupware/sync_thunderbird.html index b87de468e4d..47e85c0f24c 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_thunderbird.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_thunderbird.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                            • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                            • The Nextcloud web interface
                                                                                                                                                                                                                            • アクティビティアプリの使用
                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                            • Files & synchronization
                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                            • ファイル(Files)と同期
                                                                                                                                                                                                                            • Groupware
                                                                                                                                                                                                                              • Using the Contacts app
                                                                                                                                                                                                                              • Using the Calendar app
                                                                                                                                                                                                                              • diff --git a/server/latest/user_manual/ja_JP/groupware/sync_windows10.html b/server/latest/user_manual/ja_JP/groupware/sync_windows10.html index bf93cca23a5..64b31fad02d 100644 --- a/server/latest/user_manual/ja_JP/groupware/sync_windows10.html +++ b/server/latest/user_manual/ja_JP/groupware/sync_windows10.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                              • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                              • The Nextcloud web interface
                                                                                                                                                                                                                              • アクティビティアプリの使用
                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                              • Files & synchronization
                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                              • ファイル(Files)と同期
                                                                                                                                                                                                                              • Groupware
                                                                                                                                                                                                                                • Using the Contacts app
                                                                                                                                                                                                                                • Using the Calendar app
                                                                                                                                                                                                                                • diff --git a/server/latest/user_manual/ja_JP/groupware/user_migration.html b/server/latest/user_manual/ja_JP/groupware/user_migration.html index c1fb8556103..481c5a8f61e 100644 --- a/server/latest/user_manual/ja_JP/groupware/user_migration.html +++ b/server/latest/user_manual/ja_JP/groupware/user_migration.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                                • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                                • The Nextcloud web interface
                                                                                                                                                                                                                                • アクティビティアプリの使用
                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                • Files & synchronization
                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                • ファイル(Files)と同期
                                                                                                                                                                                                                                • Groupware
                                                                                                                                                                                                                                  • Using the Contacts app
                                                                                                                                                                                                                                  • Using the Calendar app
                                                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/index.html b/server/latest/user_manual/ja_JP/index.html index 590c23c32af..a3ebb441f5d 100644 --- a/server/latest/user_manual/ja_JP/index.html +++ b/server/latest/user_manual/ja_JP/index.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                                                  • Talk
                                                                                                                                                                                                                                  • Collectives
                                                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/objects.inv b/server/latest/user_manual/ja_JP/objects.inv index a46517492b5..a848022bc0f 100644 Binary files a/server/latest/user_manual/ja_JP/objects.inv and b/server/latest/user_manual/ja_JP/objects.inv differ diff --git a/server/latest/user_manual/ja_JP/search.html b/server/latest/user_manual/ja_JP/search.html index be46d1b255f..e19f1be31e2 100644 --- a/server/latest/user_manual/ja_JP/search.html +++ b/server/latest/user_manual/ja_JP/search.html @@ -510,7 +510,7 @@
                                                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                                                  • Talk
                                                                                                                                                                                                                                  • Collectives
                                                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/searchindex.js b/server/latest/user_manual/ja_JP/searchindex.js index a570aadab61..06a4b35df46 100644 --- a/server/latest/user_manual/ja_JP/searchindex.js +++ b/server/latest/user_manual/ja_JP/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"1. Private (one-to-one) conversations": [[68, "private-one-to-one-conversations"]], "2. Group conversations": [[68, "group-conversations"]], "3. Note to self": [[68, "note-to-self"]], "4. Disposable conversations": [[68, "disposable-conversations"]], "AI summary": [[43, "ai-summary"]], "Accepting an invitation": [[69, "accepting-an-invitation"]], "Access Markdown files": [[3, null]], "Accessing Nextcloud files using WebDAV": [[19, null]], "Accessing external storage": [[26, "accessing-external-storage"]], "Accessing files using Cyberduck": [[19, "accessing-files-using-cyberduck"]], "Accessing files using Linux": [[19, "accessing-files-using-linux"]], "Accessing files using Microsoft Windows": [[19, "accessing-files-using-microsoft-windows"]], "Accessing files using WinSCP": [[19, "accessing-files-using-winscp"]], "Accessing files using cURL": [[19, "accessing-files-using-curl"]], "Accessing files using macOS": [[19, "accessing-files-using-macos"]], "Accessing files with KDE and Dolphin": [[19, "accessing-files-with-kde-and-dolphin"]], "Accessing public shares over WebDAV": [[19, "accessing-public-shares-over-webdav"]], "Accessing your files": [[21, null]], "Accessing your files using the Nextcloud web interface": [[20, null]], "Account delegation": [[43, "account-delegation"]], "Account settings": [[43, "account-settings"]], "Actions": [[43, "actions"]], "Activity and comments": [[20, "activity-and-comments"]], "Add Talk conversation": [[40, "add-talk-conversation"]], "Add a folder": [[43, "add-a-folder"]], "Add a new mail account": [[43, "add-a-new-mail-account"]], "Add a subfolder": [[43, "add-a-subfolder"]], "Add attachments to events": [[40, "add-attachments-to-events"]], "Add members to a team": [[41, "add-members-to-a-team"]], "Add recurring options": [[40, "add-recurring-options"]], "Adding Contacts": [[41, "adding-contacts"]], "Adding Contacts Manually": [[41, "adding-contacts-manually"]], "Adding New Accounts": [[18, "adding-new-accounts"]], "Adding a public share to your Nextcloud": [[34, "adding-a-public-share-to-your-nextcloud"]], "Adding an E2EE device": [[37, "adding-an-e2ee-device"]], "Adding and Managing Address Books": [[41, "adding-and-managing-address-books"]], "Adding your own external storage": [[26, "adding-your-own-external-storage"]], "Advanced search in folder": [[43, "advanced-search-in-folder"]], "Alias files": [[14, "alias-files"]], "All inboxes": [[43, "all-inboxes"]], "Alternative: Using the CardBook add-on (Contacts only)": [[49, "alternative-using-the-cardbook-add-on-contacts-only"]], "Android \u3068\u306e\u540c\u671f": [[44, null]], "Answer": [[19, "answer"]], "Appearance": [[54, null]], "Appointments": [[40, "appointments"]], "Apps integrating with messages": [[74, null]], "Archive conversations": [[68, "archive-conversations"]], "Assign rooms and resources to an event": [[40, "assign-rooms-and-resources-to-an-event"]], "Assigning tags to files": [[35, "assigning-tags-to-files"]], "Attachments": [[55, null]], "Automated User Status": [[40, "automated-user-status"]], "Automatic trash deletion": [[43, "automatic-trash-deletion"]], "Autoresponders": [[43, "autoresponders"]], "Availability (Working Hours)": [[40, "availability-working-hours"]], "Backgrounds": [[59, "backgrounds"]], "Ban participants": [[68, "ban-participants"]], "Basic Workflow": [[6, "basic-workflow"]], "Birthday calendar": [[40, "birthday-calendar"]], "Booking an appointment": [[40, "booking-an-appointment"]], "Bots": [[56, "bots"]], "Bots and commands": [[56, null]], "Breakout rooms": [[57, null]], "Browser and Talk Desktop client": [[59, "browser-and-talk-desktop-client"]], "Browsing files by tag": [[35, "browsing-files-by-tag"]], "Calendar": [[46, "calendar"], [50, "calendar"]], "Calendar Transparency": [[40, "calendar-transparency"]], "Calendar Widget": [[40, "calendar-widget"]], "Calendar integration": [[43, "calendar-integration"]], "Calendar integration with Talk": [[58, null]], "Calendars": [[49, "calendars"]], "Call layout": [[64, null]], "Call live transcription": [[63, "call-live-transcription"]], "Call recording": [[61, null]], "Calls": [[60, null]], "Can encryption be disabled without the user\u2019s password?": [[25, "can-encryption-be-disabled-without-the-user-s-password"]], "Change color for tags": [[43, "change-color-for-tags"]], "Change private key password": [[25, "change-private-key-password"]], "Change sort order": [[43, "change-sort-order"]], "Chat": [[66, null]], "Chat messages": [[54, "chat-messages"]], "Chat summary": [[65, "chat-summary"]], "Checking attendees\u300f busy times": [[40, "checking-attendees-busy-times"]], "Collectives": [[2, null]], "Command-Line Options": [[15, null]], "Commands": [[56, "commands"]], "Compact view of conversations list": [[54, "compact-view-of-conversations-list"]], "Compose messages": [[43, "compose-messages"]], "Conditions": [[43, "conditions"]], "Configuration": [[14, "configuration"]], "Configuration File": [[8, null]], "Configure breakout rooms": [[57, "configure-breakout-rooms"]], "Configuring Nextcloud Account Settings": [[18, "configuring-nextcloud-account-settings"]], "Configuring two-factor authentication": [[80, "configuring-two-factor-authentication"]], "Conflicts": [[9, null]], "Connecting to a Federation Share": [[20, "connecting-to-a-federation-share"]], "Considerations": [[80, "considerations"]], "Contact Picture": [[41, "contact-picture"]], "Contacts": [[46, "contacts"], [49, "contacts"], [50, "contacts"]], "Context menu actions": [[14, "context-menu-actions"]], "Controlling audio and video": [[59, "controlling-audio-and-video"], [59, "id1"]], "Conversations": [[67, null], [68, null]], "Create Talk room for booked appointments": [[40, "create-talk-room-for-booked-appointments"]], "Create a filter from a message": [[43, "create-a-filter-from-a-message"]], "Create a new Calendar": [[40, "create-a-new-calendar"]], "Create a new event": [[40, "create-a-new-event"]], "Create a task": [[43, "create-a-task"]], "Create a team": [[41, "create-a-team"]], "Create an event": [[43, "create-an-event"]], "Create tasks from chat message": [[74, "create-tasks-from-chat-message"]], "Creating WebDAV mounts on the Linux command line": [[19, "creating-webdav-mounts-on-the-linux-command-line"]], "Creating a conversation": [[68, "creating-a-conversation"]], "Creating a new federated cloud share via email": [[27, "creating-a-new-federated-cloud-share-via-email"]], "Creating a new federation share": [[27, "creating-a-new-federation-share"], [34, "creating-a-new-federation-share"]], "Creating a proposal": [[40, "creating-a-proposal"]], "Creating an appointment configuration": [[40, "creating-an-appointment-configuration"]], "Creating an open conversation": [[77, "creating-an-open-conversation"]], "Creating and managing tags": [[35, "creating-and-managing-tags"]], "Credential Handling": [[7, "credential-handling"]], "Credits": [[50, "credits"]], "Dashboard integration": [[43, "dashboard-integration"]], "Deck": [[74, "deck"]], "Delete tags": [[43, "delete-tags"]], "Deleting a version": [[38, "deleting-a-version"]], "Desktop Client": [[12, null]], "Desktop and mobile synchronization": [[24, null]], "Details sidebar": [[20, "details-sidebar"]], "Device-specific passwords and password changes": [[53, "device-specific-passwords-and-password-changes"]], "Displaying the mnemonic": [[37, "displaying-the-mnemonic"]], "Download": [[13, "download"]], "Download call participants list": [[59, "download-call-participants-list"]], "During a call": [[59, "during-a-call"]], "Edit or Remove Contact Information": [[41, "edit-or-remove-contact-information"]], "Edit tags": [[43, "edit-tags"]], "Edit, Export or Delete a Calendar": [[40, "edit-export-or-delete-a-calendar"]], "Edit, duplicate or delete an event": [[40, "edit-duplicate-or-delete-an-event"]], "Editing a proposal": [[40, "editing-a-proposal"]], "Editing messages": [[75, "editing-messages"]], "Enable mail body search": [[43, "enable-mail-body-search"]], "Enabling E2EE": [[37, "enabling-e2ee"]], "Encrypting a folder": [[37, "encrypting-a-folder"]], "Encryption FAQ": [[25, "encryption-faq"]], "Envelope actions": [[43, "envelope-actions"]], "Environment Variables": [[10, null]], "Example": [[7, "example"], [9, "example"]], "Exclude List": [[7, "exclude-list"]], "FAQ": [[11, null]], "Federated calendar sharing": [[40, "federated-calendar-sharing"]], "Federated shares": [[34, "federated-shares"]], "Federation": [[69, null]], "File Manager Overlay Icons": [[18, "file-manager-overlay-icons"]], "File actions": [[14, "file-actions"]], "File change detection": [[26, "file-change-detection"]], "File controls": [[20, "file-controls"]], "File sharing": [[34, null]], "Files & synchronization": [[29, null]], "Files integration": [[70, null]], "Files not encrypted": [[25, "files-not-encrypted"]], "Filter": [[43, "filter"]], "Filter your conversations": [[68, "filter-your-conversations"]], "Filtering and autoresponder": [[43, "filtering-and-autoresponder"]], "Finder integration": [[14, "finder-integration"]], "First steps": [[1, "first-steps"]], "Folder actions": [[43, "folder-actions"]], "Follow-up reminders": [[43, "follow-up-reminders"]], "For moderators": [[76, null]], "Full screen": [[59, "full-screen"]], "Full-screen and other settings": [[71, "full-screen-and-other-settings"]], "General Window": [[18, "general-window"]], "General instructions": [[16, "general-instructions"]], "Getting started": [[1, null]], "Grid view": [[20, "grid-view"], [64, "grid-view"]], "Groupware": [[42, null]], "How can encryption be disabled?": [[25, "how-can-encryption-be-disabled"]], "How the deleted files app manages storage space": [[23, "how-the-deleted-files-app-manages-storage-space"]], "How the \u300cEdit locally\u300d functionality works": [[11, "how-the-edit-locally-functionality-works"]], "How to Add a New Filter": [[43, "how-to-add-a-new-filter"]], "How to Delete a Filter": [[43, "how-to-delete-a-filter"]], "How to enable it": [[11, "how-to-enable-it"]], "How to onboard your team": [[4, null]], "I Want To Move My Local Sync Folder": [[11, "i-want-to-move-my-local-sync-folder"]], "I would like to change the language of the user interface": [[11, "i-would-like-to-change-the-language-of-the-user-interface"]], "Immediately join a call": [[59, "immediately-join-a-call"]], "Import a Calendar": [[40, "import-a-calendar"]], "Import an Event/Add .ics Event": [[40, "import-an-event-add-ics-event"]], "Importing Virtual Contacts": [[41, "importing-virtual-contacts"]], "Included themes": [[79, "included-themes"]], "Initial Setup": [[13, "initial-setup"]], "Inserting emoji": [[65, "inserting-emoji"]], "Install": [[7, "install"]], "Install on Linux": [[13, "install-on-linux"]], "Install on macOS and Windows": [[13, "install-on-macos-and-windows"]], "Installation": [[13, null]], "Interacting with messages": [[75, null]], "Internal addresses": [[43, "internal-addresses"]], "Internal shares with users and groups": [[34, "internal-shares-with-users-and-groups"]], "Invite attendees to an event": [[40, "invite-attendees-to-an-event"]], "Is group sharing possible with the recovery key?": [[25, "is-group-sharing-possible-with-the-recovery-key"]], "Is it planned to move this to the next user login or a background job?": [[25, "is-it-planned-to-move-this-to-the-next-user-login-or-a-background-job"]], "Is it possible to disable encryption with the recovery key?": [[25, "is-it-possible-to-disable-encryption-with-the-recovery-key"]], "Join a call or chat as guest": [[71, null]], "Joining a call": [[59, null], [71, "joining-a-call"]], "Joining a chat": [[71, "joining-a-chat"]], "Joining as an email guest": [[71, "joining-as-an-email-guest"]], "Keep Downloaded": [[14, "keep-downloaded"]], "Keyboard shortcuts": [[43, "keyboard-shortcuts"]], "Known issues": [[14, "known-issues"], [19, "known-issues"]], "Known problems": [[19, "known-problems"]], "Large file uploads": [[30, null]], "Linux": [[6, "linux"], [16, "linux"]], "Live translation": [[63, "live-translation"]], "Locking": [[14, "locking"]], "Logging in with two-factor authentication": [[80, "logging-in-with-two-factor-authentication"]], "Low Disk Space": [[10, "low-disk-space"]], "Mail translation": [[43, "mail-translation"]], "Making anonymous uploads": [[28, null]], "Manage a recording": [[61, "manage-a-recording"]], "Manage breakout rooms": [[57, "manage-breakout-rooms"]], "Manage connected browsers and devices": [[53, null]], "Managing Events": [[40, "managing-events"]], "Managing a conversation": [[68, "managing-a-conversation"]], "Managing connected browsers": [[53, "managing-connected-browsers"]], "Managing deleted files": [[23, null]], "Managing devices": [[53, "managing-devices"]], "Managing multiple Contacts at a time": [[41, "managing-multiple-contacts-at-a-time"]], "Managing proposals": [[40, "managing-proposals"]], "Managing your calendars": [[40, "managing-your-calendars"]], "Managing your files": [[31, null]], "Managing your mail account": [[43, "managing-your-mail-account"]], "Mapping drives with Windows Explorer": [[19, "mapping-drives-with-windows-explorer"]], "Mapping drives with the command line": [[19, "mapping-drives-with-the-command-line"]], "Matterbridge": [[73, null]], "Meeting invitation automation": [[43, "meeting-invitation-automation"]], "Meeting invitations": [[43, "meeting-invitations"]], "Meetings and events": [[58, "meetings-and-events"]], "Mention contacts": [[43, "mention-contacts"]], "Merging duplicate Contacts": [[41, "merging-duplicate-contacts"]], "Message Display / Operation Mode": [[43, "message-display-operation-mode"]], "Message actions": [[43, "message-actions"]], "Messages expiration": [[68, "messages-expiration"]], "Messages search in a conversation": [[75, "messages-search-in-a-conversation"]], "Migrate data between instances": [[51, null]], "Minimize the composer modal": [[43, "minimize-the-composer-modal"]], "Mobile clients": [[24, "mobile-clients"], [59, "mobile-clients"]], "Move messages to Junk folder": [[43, "move-messages-to-junk-folder"]], "Moving files": [[20, "moving-files"]], "Naming a version": [[38, "naming-a-version"]], "Nautilus file manager": [[19, "nautilus-file-manager"]], "Navigating the interface": [[82, "navigating-the-interface"]], "Navigating via keyboard": [[79, "navigating-via-keyboard"]], "Navigating your files": [[20, "navigating-your-files"]], "Nextcloud latest \u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb \u306f\u3058\u3081\u306b": [[52, null]], "Nextcloud \u306e\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea\u3092\u5229\u7528\u3057\u306a\u3044\u5834\u5408": [[44, "without-the-nextcloud-mobile-app"]], "Nextcloud \u306e\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea\u3092\u5229\u7528\u3059\u308b\u5834\u5408": [[44, "with-the-nextcloud-mobile-app"]], "Notifications and privacy": [[68, "notifications-and-privacy"]], "Notifications for a proposed meeting": [[40, "notifications-for-a-proposed-meeting"]], "Official Nextcloud desktop and mobile clients": [[19, "official-nextcloud-desktop-and-mobile-clients"]], "On Linux": [[11, "on-linux"]], "On Windows": [[11, "on-windows"]], "Open conversations": [[77, null]], "Organize your Contacts with Contact Groups": [[41, "organize-your-contacts-with-contact-groups"]], "Others with access": [[34, "others-with-access"]], "Our first project: Introductions": [[4, "our-first-project-introductions"]], "Outbox": [[43, "outbox"]], "Overview": [[9, "overview"]], "Phishing detection": [[43, "phishing-detection"]], "Pinning messages": [[75, "pinning-messages"]], "Polls in chat": [[55, "polls-in-chat"]], "Preventing Automatic Updates": [[6, "preventing-automatic-updates"]], "Preventing Automatic Updates in Linux Environments": [[6, "preventing-automatic-updates-in-linux-environments"]], "Preventing Automatic Updates in Windows Environments": [[6, "preventing-automatic-updates-in-windows-environments"]], "Previewing files": [[20, "previewing-files"]], "Priority inbox": [[43, "priority-inbox"]], "Problem": [[19, "problem"], [19, "id1"], [19, "id3"], [19, "id5"], [19, "id6"], [19, "id8"], [19, "id9"], [19, "id11"]], "Proposals": [[40, "proposals"]], "Public link shares": [[34, "public-link-shares"]], "Publishing a calendar": [[40, "publishing-a-calendar"]], "Quick actions": [[43, "quick-actions"]], "Quotas": [[23, "quotas"]], "RSS \u30d5\u30a3\u30fc\u30c9": [[0, "rss-feed"]], "Raise hand": [[59, "raise-hand"]], "Reactions": [[59, "reactions"]], "Recipient info on composer": [[43, "recipient-info-on-composer"]], "Recommended method": [[49, "recommended-method"]], "Record a call": [[59, "record-a-call"]], "Recording consent": [[61, "recording-consent"]], "Recovery codes if you lose your second factor": [[80, "recovery-codes-if-you-lose-your-second-factor"]], "Recovery key password": [[25, "recovery-key-password"]], "Refresh folder": [[43, "refresh-folder"]], "Replying to messages and more": [[65, "replying-to-messages-and-more"]], "Responding to a proposed meeting": [[40, "responding-to-a-proposed-meeting"]], "Responding to invitations": [[40, "responding-to-invitations"]], "Restrict who can see your profile data": [[81, "restrict-who-can-see-your-profile-data"]], "Room availability": [[40, "room-availability"]], "Schedule from Calendar": [[58, "schedule-from-calendar"]], "Scheduled messages": [[43, "scheduled-messages"]], "Scheduling messages": [[65, "scheduling-messages"]], "Screen sharing": [[62, null]], "Search in folder": [[43, "search-in-folder"]], "Searching and filtering": [[20, "searching-and-filtering"]], "Security": [[43, "security"]], "Security & encryption": [[33, null]], "Selecting files or folders": [[20, "selecting-files-or-folders"]], "Sending an invitation": [[69, "sending-an-invitation"]], "Sending messages": [[65, null]], "Set the user status": [[18, "set-the-user-status"]], "Set up breakout rooms": [[59, "set-up-breakout-rooms"]], "Set up reminders": [[40, "set-up-reminders"]], "Setting out-of-office messages": [[39, null]], "Setting reminder on messages": [[75, "setting-reminder-on-messages"]], "Setting up your own file drop": [[28, "setting-up-your-own-file-drop"]], "Setting your preferences": [[81, null]], "Settings and profile": [[82, "settings-and-profile"]], "Setup your Accounts": [[48, "setup-your-accounts"]], "Share card into a chat": [[74, "share-card-into-a-chat"]], "Shared folder": [[43, "shared-folder"]], "Shared items": [[41, "shared-items"]], "Sharing": [[14, "sharing"]], "Sharing & collaboration": [[22, null]], "Sharing From Your Desktop": [[18, "sharing-from-your-desktop"]], "Sharing calendars": [[40, "sharing-calendars"]], "Sharing encrypted files": [[25, "sharing-encrypted-files"]], "Sharing files from external storage": [[26, "sharing-files-from-external-storage"]], "Sharing files in a chat": [[55, "sharing-files-in-a-chat"]], "Sharing status icons": [[20, "sharing-status-icons"]], "Sharing your data in the global address book": [[81, "sharing-your-data-in-the-global-address-book"]], "Silent messages": [[65, "silent-messages"]], "Smart Picker": [[65, "smart-picker"]], "Smart replies": [[43, "smart-replies"]], "Snooze": [[43, "snooze"]], "Solution": [[19, "solution"], [19, "id2"], [19, "id4"], [19, "id7"], [19, "id10"], [19, "id12"]], "Solution 1": [[19, "solution-1"]], "Solution 2": [[19, "solution-2"]], "Some Files Are Continuously Uploaded to the Server, Even When They Are Not Modified.": [[11, "some-files-are-continuously-uploaded-to-the-server-even-when-they-are-not-modified"]], "Sort favorites up": [[43, "sort-favorites-up"]], "Speaker view": [[64, "speaker-view"]], "Start the call": [[59, "start-the-call"]], "Starting a screen share": [[71, "starting-a-screen-share"]], "Starting or joining a call": [[59, "starting-or-joining-a-call"]], "Step 1: Create an \u201cIntroductions\u201d parent page \ud83d\udcc3": [[4, "step-1-create-an-introductions-parent-page"]], "Step 2: Create an \u201cIntroduction\u201d-template together \ud83d\udc65": [[4, "step-2-create-an-introduction-template-together"]], "Step 3: Everyone creates their own! \ud83d\udcab": [[4, "step-3-everyone-creates-their-own"]], "Storage quota": [[32, null]], "Subscribe to a Calendar": [[40, "subscribe-to-a-calendar"]], "Subscribe to a Holiday Calendar": [[40, "subscribe-to-a-holiday-calendar"]], "Supported backends": [[26, "supported-backends"]], "Supported features": [[14, "supported-features"]], "Supported server versions": [[13, "supported-server-versions"]], "Switch layout": [[43, "switch-layout"]], "Sync status indicators": [[14, "sync-status-indicators"]], "Synchronizing with KDE Kontact": [[47, null]], "Synchronizing with Thunderbird": [[49, null]], "Synchronizing with Windows 10": [[50, null]], "Synchronizing with iOS": [[46, null]], "Synchronizing with macOS": [[48, null]], "Synchronizing with the GNOME desktop": [[45, null]], "Syncing Stops When Attempting To Sync Deeper Than 100 Sub-directories.": [[11, "syncing-stops-when-attempting-to-sync-deeper-than-100-sub-directories"]], "System Requirements": [[13, "system-requirements"]], "System tags": [[35, null]], "Systray Icon": [[18, "systray-icon"]], "Tag access levels": [[35, "tag-access-levels"]], "Talk": [[72, null]], "Talk Dashboard": [[68, "talk-dashboard"]], "Talk from Files": [[70, "talk-from-files"]], "Team options": [[41, "team-options"]], "Team roles": [[41, "team-roles"]], "Teams": [[41, "teams"]], "Text blocks": [[43, "text-blocks"]], "The Automatic Updater": [[6, null]], "The Dashboard": [[82, "the-dashboard"]], "The Nextcloud web interface": [[82, null]], "There Was A Warning About Changes In Synchronized Folders Not Being Tracked Reliably.": [[11, "there-was-a-warning-about-changes-in-synchronized-folders-not-being-tracked-reliably"]], "Third-party WebDAV clients": [[19, "third-party-webdav-clients"]], "Thread summary": [[43, "thread-summary"]], "Threaded messages": [[75, "threaded-messages"]], "Transcription and translation": [[63, null]], "Transfer ownership": [[36, null]], "Trash bin": [[40, "trash-bin"]], "Troubleshooting": [[48, "troubleshooting"]], "Troubleshooting: 2FA": [[50, "troubleshooting-2fa"]], "Troubleshooting: TLSv1.2": [[50, "troubleshooting-tlsv1-2"]], "Unified search": [[43, "unified-search"]], "Uninstallation": [[16, null]], "Universal access": [[79, null]], "Unsubscribe from a mailing list": [[43, "unsubscribe-from-a-mailing-list"]], "Update channels": [[17, null]], "Uploading and creating files": [[20, "uploading-and-creating-files"]], "Uploading conflicts (experimental)": [[9, "uploading-conflicts-experimental"]], "Uploading files": [[28, "uploading-files"]], "Usage": [[7, "usage"]], "Use Compact Mode": [[43, "use-compact-mode"]], "Using Markdown": [[65, "using-markdown"]], "Using client applications with two-factor authentication": [[80, "using-client-applications-with-two-factor-authentication"]], "Using encryption": [[25, "using-encryption"]], "Using end-to-end encryption": [[37, null]], "Using external storage": [[26, null]], "Using federation shares": [[27, null]], "Using server-side encryption": [[25, null]], "Using the Calendar app": [[40, null]], "Using the Command-Line Client": [[7, null]], "Using the Contacts app": [[41, null]], "Using the Ignored Files Editor": [[18, "using-the-ignored-files-editor"]], "Using the Mail app": [[43, null]], "Using the Network Window": [[18, "using-the-network-window"]], "Using the Synchronization Client": [[18, null]], "Using two-factor authentication": [[80, null]], "Using two-factor authentication with hardware tokens": [[80, "using-two-factor-authentication-with-hardware-tokens"]], "Version control": [[38, null]], "Video player": [[20, "video-player"]], "View all open conversations": [[77, "view-all-open-conversations"]], "Viewing a proposal progress": [[40, "viewing-a-proposal-progress"]], "Virtual Files on macOS": [[18, "virtual-files-on-macos"]], "Webinar and lobby": [[78, null]], "Web\u30d6\u30e9\u30a6\u30b6\u30fc\u306e\u8981\u4ef6": [[82, "web-browser-requirements"]], "What happens when shared files are deleted": [[23, "what-happens-when-shared-files-are-deleted"]], "What\u2019s next": [[1, "what-s-next"]], "Why use Collectives?": [[1, "why-use-collectives"]], "Windows": [[6, "windows"], [16, "windows"]], "Working with the booked appointment": [[40, "working-with-the-booked-appointment"]], "Zoom and responsiveness": [[79, "zoom-and-responsiveness"]], "macOS": [[6, "macos"], [16, "macos"]], "macOS Extensions conflict": [[14, "macos-extensions-conflict"]], "macOS Virtual Files Client": [[14, null]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u306e\u30d5\u30a3\u30eb\u30bf\u30fc": [[0, "filtering-activities"]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea\u306e\u4f7f\u7528": [[0, null]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u8868\u793a": [[0, "viewing-your-activity-stream"]], "\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u76ee\u6b21": [[5, null]], "\u30d5\u30a1\u30a4\u30eb\u3068\u901a\u77e5": [[44, "files-and-notifications"]], "\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30a4\u30c9\u30d0\u30fc\u3067\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": [[0, "activity-in-the-files-sidebar"]], "\u30e1\u30fc\u30eb\u901a\u77e5\u306e\u983b\u5ea6": [[0, "email-notification-frequency"]], "\u6bce\u65e5\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b5\u30de\u30ea\u30fc": [[0, "daily-activity-summary"]], "\u7d71\u5408\u691c\u7d22": [[82, "unified-search"]], "\u901a\u77e5\u8a2d\u5b9a": [[0, "notification-settings"]], "\u9023\u7d61\u5148\u3068\u30ab\u30ec\u30f3\u30c0\u30fc": [[44, "contacts-and-calendar"]]}, "docnames": ["activity", "collectives/getting_started", "collectives/index", "collectives/markdown_files", "collectives/onboard_your_team", "contents", "desktop/autoupdate", "desktop/commandline", "desktop/configfile", "desktop/conflicts", "desktop/envvars", "desktop/faq", "desktop/index", "desktop/installation", "desktop/macosvfs", "desktop/options", "desktop/uninstallation", "desktop/updatechannel", "desktop/usage", "files/access_webdav", "files/access_webgui", "files/accessing", "files/collaboration", "files/deleted_file_management", "files/desktop_mobile_sync", "files/encrypting_files", "files/external_storage", "files/federated_cloud_sharing", "files/file_drop", "files/index", "files/large_file_upload", "files/managing", "files/quota", "files/security", "files/sharing", "files/tagging", "files/transfer_ownership", "files/using_e2ee", "files/version_control", "groupware/absence", "groupware/calendar", "groupware/contacts", "groupware/index", "groupware/mail", "groupware/sync_android", "groupware/sync_gnome", "groupware/sync_ios", "groupware/sync_kde", "groupware/sync_osx", "groupware/sync_thunderbird", "groupware/sync_windows10", "groupware/user_migration", "index", "session_management", "talk/appearance", "talk/attachments", "talk/bots", "talk/breakout_rooms", "talk/calendar_integration", "talk/call", "talk/call_index", "talk/call_recording", "talk/call_screenshare", "talk/call_transcription", "talk/call_views", "talk/chat", "talk/chat_index", "talk/conversation_index", "talk/conversations", "talk/federation_index", "talk/files_integration", "talk/guest", "talk/index", "talk/matterbridge", "talk/message_integrations", "talk/messages", "talk/moderator_index", "talk/open_conversations", "talk/webinar", "universal_access", "user_2fa", "userpreferences", "webinterface"], "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": ["activity.rst", "collectives/getting_started.rst", "collectives/index.rst", "collectives/markdown_files.rst", "collectives/onboard_your_team.rst", "contents.rst", "desktop/autoupdate.rst", "desktop/commandline.rst", "desktop/configfile.rst", "desktop/conflicts.rst", "desktop/envvars.rst", "desktop/faq.rst", "desktop/index.rst", "desktop/installation.rst", "desktop/macosvfs.rst", "desktop/options.rst", "desktop/uninstallation.rst", "desktop/updatechannel.rst", "desktop/usage.rst", "files/access_webdav.rst", "files/access_webgui.rst", "files/accessing.rst", "files/collaboration.rst", "files/deleted_file_management.rst", "files/desktop_mobile_sync.rst", "files/encrypting_files.rst", "files/external_storage.rst", "files/federated_cloud_sharing.rst", "files/file_drop.rst", "files/index.rst", "files/large_file_upload.rst", "files/managing.rst", "files/quota.rst", "files/security.rst", "files/sharing.rst", "files/tagging.rst", "files/transfer_ownership.rst", "files/using_e2ee.rst", "files/version_control.rst", "groupware/absence.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/sync_android.rst", "groupware/sync_gnome.rst", "groupware/sync_ios.rst", "groupware/sync_kde.rst", "groupware/sync_osx.rst", "groupware/sync_thunderbird.rst", "groupware/sync_windows10.rst", "groupware/user_migration.rst", "index.rst", "session_management.rst", "talk/appearance.rst", "talk/attachments.rst", "talk/bots.rst", "talk/breakout_rooms.rst", "talk/calendar_integration.rst", "talk/call.rst", "talk/call_index.rst", "talk/call_recording.rst", "talk/call_screenshare.rst", "talk/call_transcription.rst", "talk/call_views.rst", "talk/chat.rst", "talk/chat_index.rst", "talk/conversation_index.rst", "talk/conversations.rst", "talk/federation_index.rst", "talk/files_integration.rst", "talk/guest.rst", "talk/index.rst", "talk/matterbridge.rst", "talk/message_integrations.rst", "talk/messages.rst", "talk/moderator_index.rst", "talk/open_conversations.rst", "talk/webinar.rst", "universal_access.rst", "user_2fa.rst", "userpreferences.rst", "webinterface.rst"], "indexentries": {"bandwidth": [[18, "index-0", false]], "exclude files": [[18, "index-1", false]], "ignored files": [[18, "index-1", false]], "limiting": [[18, "index-0", false]], "pattern": [[18, "index-1", false]], "proxy settings": [[18, "index-0", false]], "socks": [[18, "index-0", false]], "throttling": [[18, "index-0", false]]}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"!\u300d": 18, "\"$": 16, "\"%": 11, "\"*": 16, "\"<": 19, "\">": 19, "\"?": 19, "\"\\\"": 11, "##": 65, "$home": [6, 8, 16], "%.": 32, "%\\": [8, 16], "%appdata": [8, 16], "&arch": 7, "&keywords": 7, "&searchon": 7, "')": 19, "(calendar": 48, "(contacts": 48, "(default": 10, "(e": [7, 40], "(far": 82, "(for": 46, "(general": 18, "(kubuntu": 18, "(like": 80, "(of": 6, "(optional": 19, "(or": 3, "(replace": 46, "(s": [8, 41, 81], "(server": 49, "(top": 82, "(ubuntu": 18, "(windows": 19, "),": [9, 16, 18, 19, 40, 41, 43, 45, 49, 68, 80], ").": [1, 3, 6, 8, 9, 11, 15, 18, 19, 41, 43, 44, 46, 49, 57, 58, 63, 68, 80, 82], "):": [30, 40], ")\u3002": 44, ")\u300d": [40, 50], "**": 65, "*.": 7, "*bold": 65, "*\u300d": 43, "+%d": 19, ", for": 47, "-%": 19, "--": 65, "->": 47, "-account": 14, "-added": 11, "-administrator": 81, "-app": 40, "-authentication": 44, "-available": 19, "-background": 15, "-bar": [57, 61], "-based": [6, 7, 19, 56, 80], "-block": 65, "-busy": 40, "-by": [13, 46], "-bytes": 19, "-called": 81, "-catching": 18, "-changes": 11, "-circles": 18, "-click": [13, 14, 18, 19, 34, 47, 62], "-client": [7, 42], "-clients": 7, "-cmd": 7, "-compatibility": 11, "-compatible": [26, 40], "-confdir": 15, "-contact": 44, "-conversation": 59, "-dates": 11, "-day": 40, "-defined": 41, "-desktop": [7, 16], "-devs": 7, "-do": 68, "-document": 11, "-dot": [20, 26, 35, 59, 64], "-down": [11, 19], "-droid": 44, "-eml": 11, "-encrypted": [19, 48], "-end": [25, 29, 33], "-event": 40, "-exclude": [7, 18], "-explanatory": 41, "-facing": [59, 81], "-factor": [5, 45, 49, 50, 53, 81], "-file": 35, "-files": [11, 40], "-fill": 55, "-filled": 43, "-fledged": 49, "-focused": 13, "-free": 59, "-generated": [40, 43], "-get": 19, "-granular": 40, "-h": 7, "-header": 19, "-hierarchical": 1, "-hoc": 68, "-httpproxy": 7, "-in": [16, 19, 20, 25, 43, 45, 68, 81], "-indexer": 11, "-interactive": [7, 13], "-it": 50, "-knowledge": 11, "-level": [1, 15, 25], "-line": [5, 12, 13, 35], "-link": 20, "-locally": 8, "-logdebug": 15, "-logdir": 15, "-logexpire": 15, "-logfile": 15, "-logflush": 15, "-logwindow": 15, "-mail": 40, "-managed": [13, 26], "-management": 11, "-max": 7, "-modification": 11, "-n": 7, "-nextcloud": 18, "-non": 7, "-of": [5, 11, 42, 68], "-office": [5, 11, 42, 68], "-on": 40, "-one": [40, 65], "-only": [26, 37, 40, 41, 59, 76], "-open": 19, "-ordered": 43, "-out": [25, 43, 68], "-overhauls": 11, "-p": 7, "-party": [25, 40], "-password": [7, 47, 48], "-path": 7, "-performance": 63, "-populated": 18, "-protected": 19, "-related": 14, "-release": 11, "-releases": 17, "-requested": 19, "-retries": 7, "-rich": 49, "-s": 7, "-screen": [19, 59, 72], "-secured": 19, "-server": [27, 34], "-servers": 40, "-set": 40, "-share": [20, 25, 32], "-sharing": 28, "-side": [14, 26, 29, 33, 48], "-signed": [19, 48], "-silent": 7, "-solves": 11, "-source": 19, "-specific": [5, 14, 26, 80], "-ssl": 19, "-step": [13, 46], "-style": 42, "-sync": 7, "-talk": 59, "-term": 17, "-time": [40, 63, 80], "-to": [29, 33, 43, 59, 65], "-trust": 7, "-u": 7, "-unsyncedfolders": 7, "-up": 6, "-update": 6, "-updater": 6, "-updates": 41, "-url": [27, 34], "-use": 80, "-used": 19, "-user": [3, 7], "-view": 40, "-way": 24, "-wide": [9, 25, 35, 61], "-with": 19, "-write": 19, "-x": 16, ".)": [18, 23, 25, 26, 65], ".*": 15, ".,": [7, 46], "..": [43, 65, 68, 70, 71, 73, 74, 75], "...": 7, ".:": [7, 19], ".alpinelinux": 7, ".cfg": [6, 8, 11, 16], ".collectives": 3, ".com": [7, 11, 16, 19, 34, 40, 44, 46, 47, 48, 50, 69, 72], ".conf": 11, ".davfs": 19, ".db": 7, ".debian": 7, ".desktopclient": [8, 16], ".e": [1, 15, 19, 46], ".eml": 11, ".every": 40, ".example": [19, 34, 40, 44, 69], ".exe": [11, 19], ".fedoraproject": 7, ".g": [3, 7, 18, 19, 40, 44, 48], ".ics": 40, ".inotify": 11, ".jpg": 19, ".log": 19, ".lst": [7, 18], ".max": 11, ".net": 7, ".nextcloud": [8, 16], ".org": [7, 19, 46], ".pem": 19, ".php": [19, 23, 40, 44, 46], ".plist": 16, ".reddit": 50, ".txt": [9, 19], ".ubuntu": 7, ".wordpress": 11, ".y": 16, ".yourdomain": [19, 48], ".z": 16, ".\u300d": [11, 25, 43], "/#": 7, "/$": 19, "/+": 7, "/.": [6, 8, 16, 19], "/<": [7, 19, 40], "/>": 19, "/[": [7, 38], "/activity": 0, "/application": 16, "/apps": [0, 40], "/blog": 11, "/busy": [39, 40], "/caches": 16, "/calendar": 40, "/carddav": [42, 48], "/cifs": 26, "/client": 7, "/com": [8, 16], "/comments": 50, "/community": 7, "/contacts": 48, "/containers": [8, 16], "/crashreporter": 16, "/data": [8, 16], "/dav": [19, 44, 46], "/davfs": 19, "/debian": 18, "/disable": [18, 59], "/edge": 7, "/embed": 40, "/etc": [11, 19], "/event": 40, "/files": 19, "/folder": [23, 34], "/font": 79, "/fs": 11, "/fstab": 19, "/group": 16, "/help": 56, "/index": 40, "/inotify": 11, "/install": [7, 72], "/kfy": 19, "/launchagents": 16, "/library": [8, 16], "/macos": 50, "/max": 11, "/media": 7, "/music": 7, "/my": 7, "/mycertificate": 19, "/mynextcloud": 47, "/nextcloud": [6, 7, 8, 11, 16, 19, 50], "/nextcloudusername": 19, "/nkujuxuj": 16, "/ns": 19, "/package": 7, "/participant": 40, "/pkgs": 7, "/plain": 19, "/pop": 42, "/preferences": [8, 16, 40], "/principals": 46, "/public": 19, "/r": 50, "/recipient": 43, "/remote": [19, 44, 46], "/remove": 19, "/resume": 18, "/roll": 56, "/s": [19, 34], "/save": 45, "/search": 7, "/source": 19, "/ssl": 19, "/sys": 11, "/sysctl": 11, "/target": 19, "/team": 68, "/thread": 43, "/token": [45, 47, 48], "/ubuntu": [7, 19], "/unmute": 59, "/unset": 43, "/user": [7, 19], "/username": [19, 46], "/users": 46, "/using": 50, "/vcard": 41, "/video": 72, "/welcome": 19, "/wiki": 56, "/write": 40, "/x": 7, "/yxcfkrwbjqyyzp": 34, "/~": 7, "/\u2026": 11, "0f": 19, "0fee": 19, "0x": 19, "1f": 19, "1\u3064": 52, "1\u901a": 0, "2d": 19, "2f": 80, "2fa": [44, 45, 48, 80], "2nd": 80, "2\u3064": 44, "3a": 19, "3b": 16, "3rd": 40, "4gb": 19, "5e": 19, "5rcypb": 50, "5sm": 19, "9lek": 19, ":\"": 19, ":/": [7, 11, 19, 34, 40, 44, 46, 47, 48, 50], ":\\": 11, ":]": 7, ":collection": 19, ":d": 19, ":getcontentlength": 19, ":getcontenttype": 19, ":getetag": 19, ":getlastmodified": 19, ":href": 19, ":multistatus": 19, ":oc": 19, ":pass": 19, ":prop": 19, ":propstat": 19, ":quota": 19, ":resourcetype": 19, ":response": 19, ":s": 19, ":scan": 26, ":secret": 7, ":status": 19, ":youruser": 19, ";*": 15, "\n<": 19, ">\"": 19, ">-": 40, ">/": [19, 40], ">:": [7, 19], ">@": [7, 27, 34, 40], ">http": 19, ">text": 19, ">tue": 19, "?keywords": 7, "?suite": 7, "?\u300d": 43, "@=": 11, "@cloud": [34, 40, 69], "@pass": 7, "@server": 7, "@ssl": 19, "[general": [8, 11], "[nextcloud": 8, "[proxy": 8, "[x": 65, "\\\"": 11, "\\\\": [11, 19], "\\command": 11, "\\currentcontrolset": 19, "\\currentversion": 11, "\\dav": 19, "\\hkey": 11, "\\microsoft": 11, "\\nc": 11, "\\nextcloud": [6, 8, 16, 19], "\\open": 11, "\\parameters": 19, "\\policies": 6, "\\propertyhandlers": 11, "\\propertysystem": 11, "\\remote": 19, "\\services": 19, "\\shell": 11, "\\software": [6, 11], "\\system": 19, "\\webclient": 19, "\\windows": 11, "]/": 38, "]thumbs": 7, "_\"": 16, "_*": 7, "__": 65, "_address": 7, "_application": 50, "_been": 7, "_blacklist": 10, "_bytes": 10, "_chunk": 10, "_classes": 11, "_conflict": 9, "_created": 7, "_critical": 10, "_current": 6, "_files": 9, "_folder": 7, "_free": 10, "_has": 7, "_http": 10, "_local": [6, 11, 19], "_locks": 19, "_logging": 15, "_machine": [6, 11, 19], "_max": 10, "_min": 10, "_obligation": 23, "_openai": 43, "_parallel": 10, "_password": 7, "_path": 19, "_pp": 19, "_push": 14, "_retention": 23, "_root": 11, "_rules": 15, "_size": 10, "_space": 10, "_sync": 7, "_that": 7, "_the": 50, "_time": 10, "_timeout": 10, "_transcription": 63, "_upload": 9, "_user": [6, 7, 11], "_username": 19, "_versions": 38, "_watches": 11, "_windows": 50, "_with": 50, "``": [16, 65], "aa": 79, "aaa": 79, "ability": [11, 43], "able": [11, 18, 19, 25, 26, 35, 40, 41, 43, 44, 50, 55, 57, 79, 80, 81], "aborted": 10, "aborts": 10, "about": [4, 14, 18, 19, 20, 23, 25, 32, 36, 40, 41, 42, 58, 68, 69, 70, 72, 75], "above": [18, 19, 20, 34, 35, 40, 41, 46, 65, 69, 71, 75, 81], "absence": [39, 40, 43, 68], "absences": 40, "absent": 39, "accelerate": 14, "accept": [34, 36, 43, 69], "acceptance": [34, 36, 43], "accepted": [36, 40], "accepting": [40, 72], "access": [2, 5, 7, 13, 14, 18, 19, 20, 25, 30, 37, 40, 41, 43, 44, 45, 53, 56, 59, 61, 62, 68, 71, 73, 80, 81, 82], "accessed": [14, 73], "accessibility": [79, 82], "accessible": [4, 34, 38, 40, 68, 75], "accessibly": 4, "accessing": [5, 29, 68], "accidentally": 40, "according": [18, 43], "accordingly": [43, 61], "account": [8, 9, 11, 13, 14, 19, 25, 26, 28, 36, 40, 44, 45, 46, 48, 49, 50, 51, 53, 55, 71, 80, 82], "accounts": [19, 41, 43, 45, 46, 50], "across": [14, 16, 20, 24, 35, 40, 43, 69, 82], "action": [15, 20, 35, 40, 41, 43, 61], "actionable": 74, "actions": [35, 41, 55, 56, 65, 68, 75, 76, 82], "activate": [41, 79], "active": [19, 43, 64], "activities": [18, 58], "activity": [8, 11, 13, 18, 19, 53, 81, 82], "actual": 14, "ad": 68, "add": [1, 4, 6, 11, 16, 18, 19, 26, 27, 34, 35, 37, 39, 45, 46, 47, 48, 50, 55, 65, 68, 73, 75, 82], "added": [1, 11, 23, 26, 34, 40, 41, 43, 80, 81], "addflag": 43, "adding": [6, 19, 25, 40, 43, 68], "addition": [18, 19, 41, 75, 81], "additional": [12, 18, 19, 20, 40, 55, 59, 65, 68, 75], "additionally": [23, 68], "additions": 41, "address": [5, 6, 7, 8, 19, 26, 27, 40, 43, 44, 46, 48, 49, 50, 59, 68, 71, 82], "addressbook": 43, "addressbooks": [41, 50], "addresses": [40, 41, 59], "adds": [4, 40, 41, 43], "adjust": [8, 18, 19, 23, 81], "adjustable": 34, "adjusted": [10, 14, 38], "adjusting": [11, 34], "adjustments": 9, "adjusts": 8, "admin": [12, 13, 23, 41, 43], "administer": 81, "administration": [19, 26, 30, 35, 40, 56, 61, 63, 68, 73], "administrative": [6, 30, 34, 36], "administrator": [13, 20, 23, 25, 26, 28, 30, 32, 34, 35, 36, 37, 40, 41, 43, 56, 65, 69, 73, 79, 80, 81], "administrators": [6, 35, 56, 59, 61, 81], "admins": 35, "advanced": [13, 19, 40, 46, 49, 50], "advantage": 11, "advise": 13, "advising": 25, "affected": 43, "affecting": 43, "affects": 3, "after": [8, 11, 13, 14, 15, 18, 19, 25, 38, 40, 41, 43, 44, 46, 47, 56, 58, 59, 61, 68, 75, 80, 82], "afterwards": 4, "ag": 19, "again": [8, 11, 20, 23, 25, 38, 40, 43, 49, 53, 62, 71, 80], "against": [11, 17, 23, 32, 80], "age": 23, "agenda": [43, 56], "agendas": 56, "aggregate": 41, "aging": 32, "ai": 65, "aid": 79, "aim": 79, "airplanes": 56, "alias": 43, "aliases": [43, 51], "alice": 40, "align": 68, "alike": 68, "all": [1, 4, 8, 10, 11, 13, 14, 15, 16, 18, 19, 20, 25, 26, 27, 32, 34, 35, 36, 40, 41, 44, 45, 49, 50, 53, 55, 56, 57, 58, 59, 61, 63, 64, 65, 68, 75, 81, 82], "allocates": 23, "allow": [6, 11, 14, 19, 28, 32, 34, 40, 41, 43, 54, 55, 57, 59, 61, 62, 79, 81], "allowance": 41, "allowed": [7, 14, 19, 23, 41, 59, 61], "allowing": [34, 40, 43, 74], "allows": [6, 14, 19, 27, 34, 39, 40, 41, 42, 43, 56, 78, 81], "alma": 13, "almost": 80, "along": [7, 38, 51], "alpine": 7, "already": [1, 9, 13, 18, 30, 34, 40, 44, 49, 50, 59, 68, 71, 80], "also": [3, 7, 9, 10, 13, 14, 15, 16, 18, 19, 20, 26, 28, 34, 35, 36, 38, 40, 41, 43, 45, 55, 57, 58, 59, 62, 63, 64, 65, 68, 71, 73, 75, 76, 79, 80, 81, 82], "alter": [11, 37], "alternative": [19, 28], "alternatively": [1, 11, 13, 59], "always": [6, 14, 18, 19, 24, 40, 43, 49, 68, 80], "am": 40, "amazon": [19, 26], "amount": 11, "an": [1, 6, 7, 9, 11, 13, 14, 18, 19, 20, 25, 26, 28, 30, 34, 35, 39, 41, 42, 44, 45, 46, 47, 49, 50, 53, 55, 56, 58, 59, 62, 68, 72, 73, 75, 79, 81], "analyzed": 43, "and": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 36, 37, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 55, 57, 60, 61, 62, 64, 69, 70, 72, 73, 74, 75, 76, 77, 80, 81], "android": [5, 19, 24, 37, 42, 52, 72], "anonymous": [22, 29, 55], "anonymously": 19, "another": [11, 26, 34, 40, 41, 43, 59, 68, 75, 80], "answer": 4, "any": [6, 7, 13, 14, 18, 19, 20, 23, 25, 26, 27, 28, 32, 38, 40, 41, 43, 53, 56, 59, 61, 68, 69, 71, 77, 79, 82], "anyone": [65, 81], "anything": [11, 25, 47, 81], "anytime": [27, 61], "anywhere": [43, 45], "apache": 30, "app": [1, 3, 5, 6, 14, 18, 19, 20, 25, 28, 35, 37, 38, 39, 42, 44, 45, 47, 48, 49, 50, 51, 58, 59, 63, 68, 70, 73, 79, 80, 82], "apparent": 50, "appear": [1, 6, 14, 18, 19, 20, 26, 35, 40, 41, 43, 50, 58, 68, 69, 81], "appearance": [14, 43, 67, 72, 82], "appearing": 26, "appears": [14, 18, 20, 35, 43, 63, 65], "appimage": [11, 13, 16], "appimagelauncher": 11, "apple": [14, 19, 40, 48, 82], "applet": 47, "applicable": 9, "application": [6, 13, 15, 18, 19, 26, 40, 41, 45, 46, 59, 62, 71], "applications": [5, 16, 40, 41, 47, 48, 81], "applied": [18, 35, 43], "applies": [41, 68], "apply": [14, 35, 39, 43], "appointment": [47, 51], "appointments": 43, "appropriate": [19, 30, 50, 75], "approximately": 8, "apps": [14, 19, 32, 40, 42, 43, 45, 46, 65, 66, 72, 81, 82], "apt": [16, 19], "arbitrary": [18, 19], "archive": [7, 20], "archived": 68, "archives": 13, "are": [3, 6, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 20, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 47, 49, 50, 53, 55, 56, 57, 59, 63, 65, 68, 71, 75, 76, 79, 80, 81, 82], "area": [18, 40, 59], "around": [35, 41], "arrives": 43, "arrow": [14, 27, 38, 49, 65, 71, 79], "article": 19, "as": [1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 25, 26, 27, 30, 32, 34, 35, 37, 39, 40, 41, 43, 44, 45, 46, 47, 48, 53, 55, 58, 61, 64, 65, 68, 69, 72, 75, 76, 79, 80, 81, 82], "ask": [8, 18, 20, 25, 26, 40, 43, 44, 49, 61, 65], "asked": [34, 36], "asking": 27, "asks": 39, "assign": [35, 57, 68], "assigned": [35, 43, 57], "assigning": [19, 20], "assignment": 57, "assistant": 65, "assistive": 79, "associated": 18, "assuming": 14, "asterisk": 18, "at": [3, 9, 13, 16, 17, 18, 19, 20, 32, 35, 38, 40, 43, 46, 48, 49, 53, 57, 59, 61, 63, 65, 68, 70, 78, 79, 82], "attach": 35, "attached": 43, "attachment": 40, "attachments": [28, 43, 66, 72], "attempt": [13, 43], "attempting": 9, "attempts": [43, 50], "attendee": 40, "attendees": 51, "attention": 9, "attribute": 81, "audio": [20, 61, 71, 72], "auth": 80, "authenticate": 19, "authenticates": 19, "authentication": [5, 19, 26, 45, 49, 50, 53, 81], "authenticator": 80, "author": 9, "authoring": 19, "authorities": 19, "auto": [6, 19, 40, 41, 43, 55], "autocompletion": 36, "automated": [35, 56], "automatic": [5, 12, 13, 14, 38, 49], "automatically": [4, 6, 8, 11, 13, 14, 19, 25, 26, 27, 34, 38, 40, 43, 46, 55, 57, 58, 61, 68], "autoresponder": 39, "autoupdater": 6, "availability": [18, 39, 68], "available": [6, 7, 8, 10, 13, 14, 16, 18, 19, 23, 25, 26, 34, 38, 39, 40, 41, 43, 45, 46, 49, 56, 57, 59, 62, 65, 68, 69, 71, 72, 73, 75, 81], "avatar": [18, 19, 40, 68], "avatars": [41, 43], "avoid": 14, "away": [18, 40, 47, 68], "back": [4, 13, 19, 20, 25, 38, 40, 43, 47, 61, 65, 70, 71, 82], "backend": [26, 53, 63], "background": [15, 18, 26, 59, 71, 79], "backing": 43, "backup": [18, 40, 80], "backups": 38, "bad": 18, "badge": [9, 20], "bandwidth": 18, "banned": 68, "banner": 25, "bar": [18, 19, 20, 40, 43, 47, 59, 63, 64, 68, 71, 75, 82], "base": [9, 44], "based": [43, 79, 80], "basic": [13, 19, 40, 41], "basicauthlevel": 19, "basics": 1, "basis": [14, 41], "batch": 41, "be": [1, 3, 4, 6, 7, 8, 9, 10, 11, 14, 16, 18, 19, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 73, 75, 79, 80, 81], "because": [6, 11, 14, 18, 19, 25, 37, 43, 45], "become": 9, "becomes": [41, 68], "becoming": 4, "been": [6, 7, 9, 11, 13, 14, 18, 19, 20, 24, 25, 30, 34, 40, 43, 56, 68, 80], "before": [11, 14, 16, 17, 18, 19, 26, 40, 43, 59, 61, 68, 71, 73], "beginning": [43, 46, 79], "behave": 18, "behavior": [6, 8, 9, 10, 18, 68], "behind": 73, "being": [6, 14, 18, 19, 36, 41, 59], "bell": 82, "belongs": 41, "below": [8, 9, 10, 16, 18, 19, 25, 32, 40, 41, 43, 50, 64], "beside": 18, "best": [9, 13, 17, 40, 82], "beta": 17, "better": 25, "between": [1, 5, 7, 8, 9, 12, 14, 19, 20, 41, 42, 43, 54, 64, 73, 79], "beyond": 16, "bidirectional": 24, "big": 40, "bin": [20, 23, 25, 32, 41], "binary": [7, 14], "bins": 23, "birthdays": 40, "bit": [11, 19], "bits": 13, "bitv": 79, "blacklisted": [10, 18], "block": 43, "blockquote": 65, "blocks": 40, "blue": [18, 40, 48], "blur": [59, 71], "boards": [1, 42], "bob": 34, "bodies": 43, "bold": 65, "book": [5, 40, 41, 46, 49], "bookable": 40, "books": [40, 49], "border": 26, "bot": 56, "both": [7, 9, 19, 23, 41, 43, 46, 47, 51, 54, 59], "bots": [72, 76], "bottom": [3, 19, 41, 43, 49, 50, 53, 59, 63, 64, 68, 82], "bounds": 8, "box": [18, 19, 43, 50, 61], "branded": 6, "breadcrumb": 20, "breakout": [72, 76], "bridge": 73, "bridges": 73, "brief": [4, 55], "brightness": 79, "bring": [7, 18, 40, 41, 71], "brings": 40, "broadcast": 57, "browse": [19, 20, 26, 81], "browser": [1, 6, 11, 13, 19, 20, 27, 34, 37, 50, 62, 71, 80, 82], "browsers": [5, 19, 80, 82], "browsing": 20, "bsd": 13, "bubble": 59, "bubbles": 54, "buckets": 26, "bug": 6, "bugs": [11, 17], "build": 13, "building": 41, "builds": 17, "built": [13, 16, 19, 20, 45], "bulk": 71, "bundle": [6, 42], "bundled": 6, "bundles": 14, "business": 43, "busy": 39, "but": [6, 9, 11, 13, 23, 25, 32, 40, 41, 43, 65, 68, 79, 80, 81], "button": [1, 4, 13, 18, 19, 20, 23, 27, 28, 40, 41, 43, 45, 49, 50, 59, 62, 65, 68, 71, 75, 77, 81, 82], "buttons": [20, 34, 40, 41, 64, 68, 71, 79], "by": [1, 4, 6, 7, 9, 11, 13, 14, 16, 18, 19, 20, 23, 25, 26, 27, 28, 30, 34, 36, 40, 41, 43, 45, 47, 49, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 71, 73, 75, 77, 79, 80, 81, 82], "bytes": [8, 10], "cache": 32, "caja": [18, 19], "calculated": 32, "calculates": 23, "calculations": 40, "caldav": [42, 46, 47, 48, 49, 50], "calendar": [5, 32, 39, 41, 42, 44, 45, 47, 48, 49, 51, 67, 68, 72, 82], "calendars": [1, 43, 44, 45, 47, 51], "call": [5, 40, 56, 57, 60, 68, 70, 72, 76, 78, 79], "called": [3, 9, 19, 37, 64], "calls": [5, 59, 68, 69, 72, 76], "camera": [44, 59, 62, 71], "can": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82], "cancel": 40, "cancellations": 40, "cannot": [18, 19, 20, 25, 28, 35, 40, 41, 43, 55, 81], "capabilities": 19, "capable": 19, "caption": 55, "captions": 75, "carddav": [41, 46, 47, 48, 49, 50], "cards": [41, 65, 74], "careful": 11, "carla": 7, "carries": 19, "carry": 14, "case": [6, 11, 13, 19, 25, 41, 44], "cases": [47, 61, 68, 81], "categories": 44, "cause": 18, "caused": 79, "causes": 79, "caution": 8, "cellular": 47, "center": 19, "centos": 19, "central": 68, "centres": 64, "certain": [10, 30, 41, 43, 75], "certificate": [7, 19, 46], "certificates": [19, 48], "certification": 19, "certs": 19, "chain": 20, "challenging": 40, "change": [3, 9, 13, 14, 18, 19, 24, 35, 36, 39, 40, 47, 50, 54, 57, 68, 71, 81, 82], "changed": [9, 11, 25, 26, 40, 50, 81], "changes": [5, 7, 8, 9, 14, 18, 20, 27, 28, 35, 40, 41, 43, 57, 79, 80], "changing": [11, 19, 40, 68, 81], "channels": [5, 12], "chapter": [13, 19], "character": [18, 43], "characters": [18, 43], "chart": 14, "chat": [5, 39, 41, 56, 58, 59, 61, 68, 69, 70, 72, 73, 75, 76, 79], "chats": [34, 54, 55, 68], "chatting": [65, 68], "check": [6, 11, 18, 19, 26, 35, 40, 41, 43, 59, 61, 68, 71], "checkbox": [18, 20, 35, 40, 43, 59, 61, 68], "checkboxes": [41, 43], "checked": [18, 40, 41], "checking": 8, "checklists": 68, "checkmark": [18, 40], "checks": [6, 23, 43], "chips": 82, "chmod": 19, "choice": [11, 36, 63], "choices": 55, "choose": [1, 4, 11, 14, 18, 19, 20, 25, 26, 28, 36, 40, 41, 43, 44, 47, 48, 49, 50, 51, 53, 54, 57, 58, 59, 62, 65, 71, 78, 80, 81], "choosing": [11, 44, 55, 59], "chose": 40, "chosen": [14, 36, 43], "chown": 19, "chrome": [19, 82], "chromium": [19, 82], "chronological": 20, "chronologically": 43, "chunk": [8, 10], "chunksize": 8, "cifs": 26, "cinnamon": 19, "circle": [14, 18, 68], "circles": 34, "circular": [38, 41], "circumstances": 8, "citrix": [8, 13], "clarity": 79, "classic": [14, 54], "classification": 43, "clean": 11, "cleaner": 43, "clear": [18, 19, 68], "cleared": 18, "clears": 15, "click": [1, 4, 6, 11, 13, 18, 19, 20, 26, 27, 28, 34, 35, 36, 38, 40, 41, 43, 44, 47, 48, 49, 50, 55, 57, 58, 59, 61, 62, 68, 71, 75, 81, 82], "clickable": 6, "clicked": 43, "clicking": [1, 6, 9, 13, 18, 19, 20, 23, 26, 27, 35, 40, 41, 43, 49, 51, 59, 61, 65, 68, 69, 71, 77, 82], "clicks": [40, 71], "client": [5, 6, 8, 9, 10, 11, 13, 15, 16, 17, 19, 24, 30, 37, 48, 49, 50, 53, 62, 72], "clients": [6, 13, 16, 40, 41, 53, 72, 80], "clipboard": [40, 50], "clock": [65, 80], "close": [4, 13, 19, 35, 40, 43, 45, 46, 55, 79], "closely": 81, "closing": 18, "cloud": [14, 19, 20, 34, 40], "cloudid": 69, "code": [13, 37, 40, 44, 65, 80], "codec": 20, "codes": 5, "cohesive": 4, "collaborate": 1, "collaboration": [5, 29, 41], "collaborative": 34, "collaboratively": [1, 2], "collapse": 43, "collapsed": [18, 79], "colleagues": 40, "collected": 40, "collective": [1, 4], "collectively": 4, "collectives": [3, 4, 5], "color": [40, 79], "colored": 26, "column": [20, 65], "columns": 59, "come": 79, "comes": [40, 43, 47], "command": [5, 12, 13, 16, 35, 56], "commands": [16, 72, 76], "comment": [20, 40], "commercial": 28, "common": 79, "communicate": 10, "communicating": 68, "communities": 2, "community": [13, 19, 40], "companies": 6, "compare": 9, "compatibility": [11, 20], "compatible": [10, 26, 40, 43, 80], "complete": [16, 19, 27, 41, 42, 44, 68], "completed": [13, 28, 65], "completely": [8, 61], "complex": 40, "compliance": 61, "compliant": 79, "complicated": 23, "component": 18, "components": 18, "compose": 79, "composed": 43, "compromised": 25, "computer": [12, 19, 20, 23, 24, 45], "computers": [4, 6], "concretize": 40, "conditions": 41, "conf": 19, "config": [6, 8, 16, 19, 23], "configuration": [5, 6, 10, 11, 12, 13, 15, 16, 18, 19, 20, 25, 26, 34, 35, 36, 41, 73, 81], "configurations": [10, 30, 51], "configure": [13, 18, 19, 26, 34, 40, 41, 43, 53, 56, 61, 68, 76, 78, 80, 81], "configured": [13, 14, 18, 23, 30, 32, 40, 43, 48, 58, 59, 68], "configures": 26, "configuring": [5, 19, 26, 44, 53], "confirm": [11, 27, 40, 41, 43, 46], "confirmation": [8, 18, 27, 40, 68], "confirmed": 40, "confirming": 40, "confirms": [26, 27, 40], "conflict": [9, 40], "conflicted": 9, "conflicting": 9, "conflicts": [5, 12, 40], "confusion": 9, "congratulations": [1, 4], "connect": [11, 13, 19, 20, 24, 26, 53, 80], "connected": [5, 14, 18, 25, 26, 40, 45, 80], "connecting": 19, "connection": [11, 14, 18, 19, 26, 27, 44, 47, 50, 73], "connections": [8, 10, 19, 26, 48, 53, 81], "connectivity": [14, 19], "consent": 59, "consider": [16, 19], "considerable": 11, "consideration": 16, "considerations": 5, "consistent": 14, "consisting": 42, "console": 19, "contact": [19, 26, 30, 40, 43, 44, 46, 79, 81, 82], "contacts": [5, 32, 40, 42, 44, 45, 47, 48, 51, 81, 82], "contain": [7, 9, 11, 40, 43], "contained": [18, 43], "containers": 16, "containing": [7, 9, 11, 18, 41, 43], "contains": [8, 9, 11, 18, 20, 38, 43, 59, 71], "content": [1, 4, 7, 11, 14, 19, 65, 68, 74, 75, 79], "contents": [9, 14, 24, 28, 34, 40], "context": [18, 40, 43, 55], "continually": 11, "continue": [9, 18, 43, 49], "continued": 68, "contrary": 7, "contrast": 79, "control": [19, 29, 31, 32, 35, 40, 56, 59, 68, 81], "controlled": [6, 10], "controlling": 6, "controls": 59, "convenience": 18, "conversation": [34, 43, 54, 56, 57, 58, 59, 61, 63, 65, 69, 70, 71, 73, 78], "conversations": [5, 34, 40, 41, 57, 58, 61, 65, 69, 72, 73, 74, 75, 76], "copied": [4, 43], "copies": 14, "copy": [9, 11, 19, 20, 23, 24, 40, 43, 50], "corner": 49, "correct": [19, 80], "correctly": [14, 19], "correctness": 18, "corresponding": [40, 43], "could": [25, 26, 40, 43], "couldn": 43, "count": [23, 32], "counted": [23, 32], "counter": 69, "country": 40, "counts": 32, "cover": 68, "covers": 41, "cowork": 1, "cp": 19, "create": [1, 9, 13, 14, 18, 19, 20, 24, 25, 27, 28, 32, 34, 35, 42, 44, 47, 50, 53, 55, 57, 58, 65, 68, 69, 73, 75, 76, 77], "created": [1, 4, 17, 18, 19, 25, 34, 35, 38, 39, 40, 43, 44, 50, 57, 58, 68, 70], "creates": [9, 11, 20, 38], "creating": [11, 18, 43, 53, 58, 81], "creation": [18, 35, 68, 75], "credentials": [19, 26, 48, 50], "cross": 41, "csv": [59, 71], "ctrl": [79, 82], "current": [3, 13, 14, 18, 19, 20, 24, 34, 43, 59], "currentcontrolset": 19, "currently": [14, 18, 23, 37, 38, 40, 41, 57, 59, 65], "cursor": [1, 40], "custom": [14, 18, 40, 43, 68, 79, 82], "customers": 17, "customisable": 82, "customise": [59, 82], "customize": [19, 43, 54], "customized": 40, "cutton": 18, "cycles": 11, "cycling": 18, "daily": [17, 40], "dangerous": 25, "dark": 79, "dashboard": 5, "data": [5, 11, 14, 16, 19, 25, 32, 37, 38, 39, 40, 41, 42, 47, 65], "database": [25, 32], "date": [11, 14, 18, 19, 34, 40, 43, 58, 65, 68, 75, 82], "dates": 40, "dav": [19, 47], "davdroid": 44, "davfs": 19, "davs": 19, "davx": 44, "day": [10, 38, 40, 68, 81], "daygridmonth": 40, "days": [23, 32, 38, 40, 43, 58, 82], "debian": [7, 19], "debug": 15, "decide": [4, 40, 43, 55], "decided": 4, "decides": 14, "decimal": 19, "deck": [41, 42, 65], "decline": [34, 43, 59, 69], "declined": 40, "declining": [40, 59], "decorations": [14, 65], "decrypt": [25, 37], "decrypted": 37, "decrypts": 25, "dedicated": [14, 19, 43, 44, 49, 68], "deemed": 18, "deeply": 11, "default": [3, 7, 8, 9, 11, 13, 14, 18, 19, 20, 23, 25, 27, 30, 34, 40, 41, 43, 47, 58, 59, 68, 81], "defaults": [7, 20, 40], "define": [18, 43], "defined": [14, 18, 40], "definition": 18, "del": 79, "delay": 14, "delete": [9, 16, 18, 20, 23, 26, 27, 35, 38, 41, 57, 65, 79], "deleted": [8, 20, 29, 31, 32, 40, 43, 58, 68], "deletes": [23, 38], "deleting": [8, 14, 16, 23, 40], "deletion": [40, 68], "deny": 53, "depend": [43, 81], "depending": [18, 20, 25, 26, 35, 43, 47, 59, 62, 71, 79, 80], "depends": [11, 16, 19, 20, 26, 40], "deployment": [6, 13, 17], "depth": 19, "descendants": 14, "describe": 6, "described": [40, 76], "describes": 10, "describing": 40, "description": [4, 40, 55, 58, 68, 71, 75], "deselect": 19, "design": 79, "designed": [2, 19, 43, 79], "desired": [11, 19, 40, 41, 43, 65], "desktop": [1, 5, 6, 9, 11, 13, 14, 15, 16, 17, 21, 29, 37, 42, 62, 72, 81], "destination": [19, 20], "detailed": 40, "details": [19, 23, 26, 32, 34, 35, 36, 38, 40, 41, 43, 51, 58, 68, 81], "detect": 40, "detected": [8, 43], "detection": 14, "detects": 43, "determine": [40, 43], "developer": 12, "development": [17, 79], "device": [5, 14, 19, 40, 59, 71, 80, 82], "devices": [5, 19, 37, 40, 59, 68, 71, 80], "df": 19, "dial": 68, "dialog": [8, 11, 13, 15, 18, 20, 27, 35, 41, 43, 45, 50, 54, 55, 57, 58, 59], "dialogs": 18, "dialogue": [1, 40], "dialogues": 45, "diaspora": 41, "dice": 56, "did": [11, 25, 43, 59], "difference": 40, "differences": [7, 9], "different": [6, 19, 20, 34, 40, 41, 43, 68, 69, 80], "differently": 18, "dig": 19, "digit": 34, "direct": [19, 27, 34, 40, 41, 65], "directly": [14, 18, 20, 25, 26, 35, 40, 41, 43, 55, 58, 59, 61, 73, 74], "directories": [7, 11, 18, 19, 28], "directory": [7, 11, 13, 15, 18, 19, 24, 27, 28, 34, 40], "disable": [6, 8, 20, 34, 40, 43, 46, 56, 59, 61, 63, 71], "disabled": [14, 19, 20, 40, 41, 43], "disables": 25, "disabling": 14, "disallow": 6, "disappears": 59, "disconnect": 53, "disconnections": 19, "discord": 73, "discover": [40, 68, 77], "discoverable": 58, "discovered": 40, "discovery": [8, 14, 46, 49], "discussion": [18, 75], "discussions": [43, 57, 59, 68, 75], "disk": [14, 19, 25, 32, 38], "dismiss": 78, "dismisses": 59, "display": [11, 19, 20, 37, 40, 50, 59, 65, 81], "displayed": [36, 41, 43, 45], "displaying": [15, 43], "displays": [14, 15, 18, 19, 20, 43], "distributed": [19, 40], "distribution": [13, 19, 61], "distributions": [6, 8, 13], "distro": 11, "disturb": [18, 40, 65, 68], "divide": [57, 59], "dividers": 65, "do": [6, 7, 11, 13, 16, 18, 23, 25, 27, 32, 35, 40, 43, 46, 59, 61, 62, 64, 68, 71, 80, 81], "document": [4, 11, 14, 20, 79], "documentation": [13, 19, 23, 30, 32, 34, 36, 56, 73], "documented": [19, 24, 79], "documents": [1, 7, 20, 45, 81], "does": [6, 7, 8, 11, 18, 19, 23, 24, 27, 41, 43, 47, 48, 53, 58, 80], "doesn": [19, 43, 45], "doing": [8, 43], "dolphin": 18, "domain": [19, 43, 46], "domains": 43, "don": [4, 25, 38, 40, 41, 65, 79], "done": [11, 37, 40, 45, 47, 50, 55, 65, 71], "dot": [3, 26, 40, 41], "dots": [18, 34, 43], "double": [11, 13, 62], "down": [19, 49, 68, 75], "download": [6, 9, 10, 11, 18, 19, 20, 24, 25, 26, 34, 38, 41, 51, 55, 61, 72], "downloaded": [6, 19], "downloading": [14, 18, 20, 34], "downloads": [6, 9, 10, 20, 59], "downward": 14, "draft": [43, 55], "drafts": 55, "drag": [20, 55], "drift": 80, "drive": [19, 35, 40], "driver": 19, "drop": [11, 19, 20, 34], "dropdown": [19, 26, 48, 81], "due": [11, 14, 34, 36], "duration": [8, 40], "durations": 68, "during": [18, 39, 40, 43, 50, 61, 63, 71], "dword": [6, 19], "dynamic": 8, "dynamically": 8, "dyslexia": 79, "each": [8, 13, 15, 16, 18, 20, 26, 34, 35, 40, 41, 43, 57, 59, 73, 81, 82], "earlier": 40, "earpiece": 59, "ease": 79, "easier": 65, "easily": [4, 43, 75], "easy": [1, 4, 19, 25], "echo": 11, "edge": [19, 82], "edit": [6, 18, 19, 20, 27, 37, 55, 65, 71, 75, 82], "editable": 41, "edited": [32, 40], "editing": [28, 34, 43, 68, 70], "editor": [1, 11, 14, 19, 20, 40, 43, 57], "editors": 79, "edits": 20, "effect": [27, 34], "effectively": 80, "efficient": 43, "either": [7, 11, 18, 34, 37, 40, 41, 46, 48, 59, 69, 75], "elapsed": 59, "element": [57, 59, 79], "elements": [65, 79], "eliminate": 40, "else": [9, 13, 59, 71], "elses": 41, "elsewhere": 41, "email": [28, 40, 41, 43, 44, 48, 50, 58, 59, 68, 72, 81, 82], "emails": [40, 43], "embed": [1, 40], "embedded": [40, 41], "embedding": 40, "emoji": [1, 4, 18, 59, 68], "emphasizes": 1, "empty": [1, 20, 37, 40, 41, 43], "enable": [3, 6, 8, 18, 19, 25, 28, 37, 40, 56, 59, 61, 63, 71, 80], "enabled": [10, 13, 14, 18, 19, 20, 25, 26, 27, 28, 32, 34, 37, 39, 40, 41, 43, 44, 45, 48, 50, 58, 59, 61, 63, 65, 69, 80, 81], "enables": [9, 18, 19, 24, 25, 41, 59], "enabling": [14, 43, 61], "encoding": 19, "encounter": 19, "encrypt": [25, 37], "encrypted": [19, 32, 37], "encryption": [5, 19, 26, 29, 32, 46], "end": [18, 19, 29, 33, 34, 40, 43, 61, 79], "ends": [39, 40, 56, 61, 68], "engaged": 40, "enhance": 65, "enough": 11, "ensure": [14, 19, 23, 40, 43, 79], "ensures": [6, 14], "enter": [1, 13, 19, 27, 34, 40, 43, 44, 45, 46, 47, 50, 53, 65, 71, 79, 80], "entered": 43, "entering": 45, "enterprise": [17, 52], "entire": [20, 40, 43], "entirely": [6, 10, 14, 30], "entities": 41, "entries": [18, 20], "entry": [1, 19, 20, 41, 81], "env": 15, "envelopes": 43, "environment": [5, 7, 9, 12, 19], "equivalent": 15, "erasing": 11, "error": [10, 18, 19, 43, 44, 46], "errors": [18, 50, 79], "esc": 59, "escape": 79, "especially": 14, "essential": 13, "etc": [19, 26, 34, 40, 65], "even": [1, 8, 9, 14, 40, 68, 70, 79, 81], "event": [25, 39, 41, 50, 58, 68], "events": [41, 51, 68, 82], "every": [8, 19, 20, 23, 25, 35, 38, 40, 41, 53, 59, 61, 80, 82], "everyone": [20, 40, 75], "everything": [13, 14, 17, 19, 79], "evicting": 14, "eviction": 14, "evolution": 45, "ex": 43, "exact": [20, 43], "exactly": [4, 43], "example": [14, 16, 18, 19, 25, 34, 40, 41, 43, 46, 47, 50, 78, 79, 80], "examples": [19, 56], "exceed": [23, 32, 38], "exceeds": 19, "excellent": 28, "except": [19, 68], "exchange": 40, "exclude": 18, "excluded": [11, 14, 32, 38], "excludes": 18, "excluding": 18, "exclusive": 43, "execute": [37, 56], "executed": 43, "execution": 43, "exist": [19, 58, 68], "existent": 40, "existing": [11, 14, 34, 40, 41, 43], "exists": [11, 68], "exit": [18, 19], "exits": 7, "expand": [19, 43], "expanded": 79, "expands": 18, "expected": [18, 43], "expects": 1, "experience": [17, 19, 43, 59, 82], "experimental": 8, "expiration": [23, 34, 38], "expires": 38, "explains": 19, "explicit": 61, "explicitly": [7, 26], "explorer": [9, 18], "export": [41, 51, 55], "exposed": 25, "extend": [65, 68], "extension": [11, 14, 19, 43], "external": [1, 21, 25, 29, 40, 53, 55, 56, 68, 76, 78], "externally": 26, "extra": 11, "eye": 18, "eyes": 79, "factor": [5, 44], "factors": 80, "fae": 19, "fail": [6, 11, 19], "failed": [11, 43], "fails": 19, "failure": [8, 11], "falls": [10, 19], "false": [8, 10], "faq": [5, 12], "far": 34, "fastest": 41, "fatal": 10, "favor": 56, "favorite": [20, 43, 79], "favorites": 20, "feasible": 13, "feature": [16, 17, 19, 20, 25, 39, 40, 41, 43, 49, 61, 69, 73, 78], "features": [1, 6, 8, 11, 17, 18, 20, 41, 43, 59, 69, 81], "federated": [20, 22, 29, 69, 81], "federation": [5, 22, 29, 72], "fedora": [7, 19], "feeds": 59, "fetch": 40, "few": [25, 41, 47, 61, 80], "fido": 80, "field": [1, 18, 19, 20, 27, 35, 36, 41, 43, 46, 50, 55, 65, 68, 71, 77, 79], "fields": [4, 26, 40, 43, 50], "figure": 35, "file": [5, 6, 7, 9, 10, 11, 12, 15, 16, 21, 22, 23, 24, 25, 27, 29, 32, 35, 36, 37, 38, 40, 41, 43, 45, 51, 55, 59, 61, 65, 70, 71, 75, 79], "fileinto": 43, "filename": [15, 18], "filenames": [25, 28], "files": [2, 5, 6, 7, 8, 9, 10, 12, 13, 16, 24, 27, 30, 32, 34, 36, 37, 38, 40, 41, 45, 59, 61, 65, 67, 72, 82], "filesizelimitinbytes": 19, "filesystem": 19, "filing": 40, "fill": [4, 19, 26, 40, 43, 49], "filled": [14, 26, 40], "filter": [20, 35, 58, 82], "filtering": 68, "filters": [35, 43, 68, 75, 82], "final": 40, "finalize": 68, "finally": [19, 40], "find": [11, 13, 18, 19, 20, 23, 24, 34, 40, 41, 42, 46, 47, 49, 55, 56, 65, 68, 69, 71, 72, 73, 79, 80, 81], "finder": [16, 18, 19], "finding": 40, "finds": 36, "fine": [40, 47], "finish": 19, "finished": [4, 27, 40, 49, 51], "firefox": [19, 82], "first": [6, 11, 13, 14, 25, 27, 37, 38, 40, 41, 43, 47, 55, 59, 65, 70, 80, 81], "fit": [64, 79], "fix": [13, 47], "fixes": 6, "flag": 43, "flagged": 43, "fleeting": 18, "flexibility": 43, "flow": [8, 40], "flows": 24, "flushes": 15, "focus": [43, 79], "focused": [54, 57, 59], "folder": [3, 7, 9, 10, 13, 14, 16, 18, 19, 20, 23, 25, 26, 28, 32, 34, 35, 36, 40, 81], "folders": [7, 8, 13, 14, 16, 18, 24, 25, 26, 34, 35, 36, 37, 41, 43], "foldersync": 19, "follow": [4, 13, 17, 18, 19, 27, 34, 50, 79], "followed": [18, 19, 43], "following": [6, 7, 11, 15, 16, 18, 19, 20, 26, 39, 40, 41, 43, 45, 46, 47, 48, 51, 59, 80, 81], "follows": 8, "font": 79, "for": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 30, 32, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 59, 61, 63, 65, 68, 70, 72, 73, 75, 78, 79, 80, 81, 82], "force": 8, "forceloginv": 8, "forcesyncinterval": 8, "forever": 40, "forget": [4, 25], "form": [25, 27, 34, 43, 44], "formal": 41, "format": [1, 4, 8, 20, 40], "formats": [14, 20], "formatted": 43, "formatting": 4, "formerly": 44, "forth": 40, "forward": [68, 75], "forwarded": 40, "found": [19, 40, 43, 56, 71, 82], "four": 43, "fourth": 40, "framework": 6, "free": [10, 14, 19, 23, 38, 39, 40, 79], "freeing": 14, "frequent": 19, "friends": 40, "from": [1, 7, 9, 11, 13, 14, 16, 19, 20, 23, 25, 27, 32, 34, 35, 36, 37, 38, 40, 41, 45, 48, 50, 53, 54, 55, 57, 59, 61, 62, 65, 68, 69, 72, 75, 81, 82], "front": 59, "fs": 11, "ftp": [19, 26, 28], "ftps": 26, "full": [8, 11, 25, 40, 41, 43, 49, 56, 72, 81], "fulllocaldiscoveryinterval": 8, "fullscreen": 79, "fully": [14, 19, 24, 37, 79], "fun": 4, "function": [19, 28], "functionality": [6, 19, 41], "functions": 80, "further": [9, 19, 37, 40, 43, 81], "future": [9, 19, 43, 59, 61], "gallery": 25, "gateway": [7, 68], "gb": 10, "gear": [41, 50], "general": [6, 11, 40, 76], "generally": 40, "generate": [40, 44, 45, 47, 53, 65, 80], "generated": [40, 43, 48, 51, 53, 65], "generic": 44, "german": 79, "gestures": 62, "get": [19, 25, 40, 46, 50, 55, 62, 68, 71, 79, 80], "gets": [9, 23, 36, 38, 41, 80], "getting": [2, 5], "gifs": 65, "gigabytes": 11, "giphy": 65, "github": [24, 65, 73], "gitlab": 65, "give": [1, 4, 38, 40, 59, 61], "given": [34, 43, 59, 62], "gives": 53, "giving": 11, "glance": 35, "global": [5, 18, 75], "globe": 40, "gmbh": 6, "gmt": 19, "gnome": [5, 13, 19, 42], "go": [11, 13, 17, 18, 19, 27, 34, 40, 43, 44, 47, 49, 57, 70, 71, 80], "going": [26, 40, 51], "gone": 40, "google": [40, 44, 80, 82], "got": 17, "grant": [13, 44, 59, 62], "granted": 59, "gravatar": 41, "gray": [18, 40], "green": [18, 26, 59, 71], "grey": 18, "greyed": 59, "group": [6, 19, 40, 41, 43, 44, 57, 81], "grouped": [43, 82], "groups": [2, 25, 32, 40, 43, 44, 51, 55, 57, 59, 68], "groupware": [5, 40, 41, 47, 51], "guard": 11, "guest": [5, 55, 59, 68, 72], "guests": [40, 57, 58, 68, 78, 81], "gui": [7, 26, 44], "guidance": 30, "guide": [13, 46, 48], "guidelines": 79, "gvfs": 19, "had": 18, "halts": 43, "hand": [4, 18, 79], "handled": 43, "handler": 11, "hands": 59, "handy": 68, "happen": [9, 14, 40], "happens": [4, 14, 40], "happy": 18, "hard": [11, 19, 40], "harder": 34, "hardware": [5, 82], "has": [6, 7, 9, 11, 14, 17, 18, 19, 20, 24, 25, 26, 28, 32, 34, 35, 37, 38, 40, 43, 44, 45, 50, 55, 68, 71, 73, 79, 80, 82], "have": [6, 7, 9, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 25, 27, 30, 32, 34, 38, 40, 41, 43, 44, 45, 46, 48, 50, 53, 55, 56, 57, 58, 59, 62, 68, 70, 80, 81], "haven": 40, "having": [8, 14, 28, 40], "header": [19, 20, 40, 43, 57, 79], "heading": [1, 65], "headings": [1, 4, 65], "help": [10, 15, 17, 40, 41, 43, 56, 68, 79, 81, 82], "helpful": [32, 81], "helping": 40, "helps": [41, 56], "here": [1, 14, 43, 49, 65, 68, 71], "hesitate": 79, "hidden": [3, 7, 43], "hide": [28, 34, 43, 71], "hides": [34, 54], "hierarchy": 34, "high": [63, 79], "higher": 11, "highlighted": [61, 75], "history": [19, 20, 38], "hkey": [6, 11, 19], "holding": [41, 59], "home": [7, 13, 16, 19, 24, 40, 47], "horizontal": [1, 43], "host": 8, "hosted": 19, "hostname": 19, "hour": [38, 40, 68], "hours": [11, 15, 38, 68, 75], "hover": [1, 18, 43, 65, 75], "how": [1, 2, 5, 6, 14, 16, 19, 20, 32, 35, 40, 41, 59, 80], "however": [6, 9, 11, 18, 25, 40, 41, 43], "hr": 8, "html": 40, "http": [7, 8, 10, 11, 19, 48], "httpproxy": 7, "https": [7, 11, 19, 34, 40, 44, 46, 47, 48, 50], "hub": [40, 43, 68], "ical": 40, "icalendar": 40, "icloud": [40, 50], "icon": [9, 13, 14, 19, 20, 26, 27, 34, 35, 40, 41, 43, 44, 49, 50, 53, 59, 62, 64, 65, 71, 75, 81, 82], "icons": [8, 59], "ics": 43, "icsdroid": 44, "icsx": 44, "id": 81, "idea": 9, "ideal": 78, "ideally": 53, "ideas": 68, "ideation": 41, "identical": [25, 43], "identifier": [40, 59], "identify": [14, 18, 53], "identity": [69, 80], "if": [3, 5, 6, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 58, 59, 61, 62, 65, 68, 69, 71, 74, 75, 79, 81], "iframe": 40, "ignore": [7, 18], "ignored": [11, 40], "ignoring": 18, "illustrates": 23, "image": [20, 25, 59], "images": [20, 59], "imagine": 9, "imap": 42, "immediately": [9, 11, 13, 23, 26, 35, 41, 53, 61, 68], "implement": 19, "implementation": 19, "implemented": [24, 41], "implements": 43, "implicit": 19, "import": [11, 19, 41, 43, 51, 55], "importance": 43, "important": [1, 14, 19, 37, 43, 68, 75, 79, 80, 82], "imported": 40, "importing": [40, 43], "imposed": 14, "improve": [19, 43], "improved": 19, "in": [1, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 53, 54, 56, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 76, 78, 79, 82], "inactivity": 58, "include": [7, 19, 20, 40, 81], "included": 5, "includes": [9, 18, 25, 41, 43], "including": [7, 19, 40, 43, 51, 58, 59, 61], "incoming": [34, 36, 43], "incorrect": [8, 18], "increase": [19, 30], "increased": [14, 79], "increases": 19, "increasing": 10, "increment": 40, "increments": 40, "independent": [11, 40], "index": 25, "indicate": 18, "indicates": [18, 59], "indicating": 50, "indication": 19, "indicator": [18, 20, 26, 43, 61], "indicators": 68, "individual": [13, 18, 25, 26, 40, 53, 71], "individually": [41, 43, 53], "individuals": 25, "influence": [10, 40], "info": 35, "inform": [6, 40], "informal": 41, "information": [7, 10, 11, 12, 13, 14, 18, 19, 20, 32, 34, 40, 43, 45, 49, 50, 58, 59, 68, 69, 73, 80, 81, 82], "informational": 18, "informed": [36, 40, 58], "informing": 6, "informs": 61, "infos": 40, "inherited": 41, "inhibits": 7, "ini": 8, "initial": [34, 47], "initialized": 25, "initiated": 34, "inline": [35, 65], "inotify": 11, "input": [18, 55, 65, 79], "inputs": 40, "insert": [1, 65], "inserted": 43, "inserting": 71, "inside": [20, 23, 26, 40, 47, 58, 76, 79], "instagram": 41, "install": [6, 11, 16, 18, 19, 40, 44], "installation": [5, 12, 19, 47, 56], "installations": 27, "installed": [7, 13, 14, 16, 18, 19, 40, 41, 43, 51, 59, 73, 74, 82], "installer": 11, "installing": 19, "instance": [11, 13, 14, 19, 26, 34, 40, 41, 43, 44, 51, 56, 59, 65, 68, 81], "instances": [5, 26, 40, 42, 69, 81], "instant": [58, 68], "instantly": 68, "instead": [8, 11, 14, 19, 20, 40, 44, 50, 63], "instructions": [19, 20, 50, 56, 73], "integrate": [11, 14, 56, 74, 76], "integrated": [14, 45, 48, 72], "integrates": [18, 43, 45], "integrating": [66, 72], "integration": [18, 65, 67, 72, 73], "integrations": 65, "intelligent": 14, "intentionally": 11, "interacted": 43, "interacting": [66, 72], "interesting": 8, "interface": [5, 8, 14, 18, 19, 21, 23, 24, 29, 39, 43, 54, 72, 79, 81], "interfaces": 42, "interferes": 6, "internal": [18, 40, 68], "internet": [19, 47, 48], "interoperable": 40, "interruption": 68, "interval": [8, 11], "into": [6, 9, 11, 13, 14, 16, 19, 20, 23, 24, 25, 28, 34, 36, 40, 41, 43, 45, 49, 50, 57, 59, 65], "introduced": [18, 40], "introductory": 4, "intruder": 25, "invalid": [7, 53], "invisible": [18, 35, 40], "invitation": [40, 44, 71, 72], "invitations": 41, "invite": [41, 58, 69, 71], "invited": [40, 71], "invites": [41, 69], "inviting": 69, "invoke": 7, "involved": 79, "ios": [5, 19, 24, 37, 41, 42, 50, 52, 72], "ip": [7, 19, 68], "iphone": [19, 46], "irreversible": 40, "is": [2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 58, 59, 61, 62, 63, 65, 68, 71, 72, 73, 74, 75, 78, 79, 80, 81, 82], "issue": [14, 24, 25, 79], "issues": [13, 43, 65, 79], "it": [1, 3, 4, 6, 7, 8, 9, 10, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 32, 35, 37, 38, 39, 40, 41, 43, 46, 47, 49, 51, 53, 55, 57, 58, 59, 61, 62, 63, 65, 68, 69, 71, 72, 73, 75, 79, 80, 81], "italicized": 65, "item": [7, 14, 20, 40, 47], "items": [14, 20, 40, 55, 61, 74, 75], "its": [6, 7, 8, 9, 10, 11, 14, 18, 19, 20, 24, 25, 40, 41, 43, 68, 73, 82], "itself": [6, 13, 19, 40, 75, 79], "jobs": 10, "john": 19, "join": [5, 57, 61, 68, 69, 70, 72, 77, 78, 79], "joinable": 57, "joined": [59, 68], "joining": [60, 61, 72], "joke": 41, "json": 55, "jump": [1, 20], "jumping": 14, "just": [1, 4, 11, 17, 19, 20, 23, 25, 26, 40, 44, 49, 65, 71, 79, 80], "kaddressbook": 47, "kalendar": 47, "kanban": 42, "kb": 19, "kde": [5, 18, 42], "keep": [1, 11, 13, 19, 24, 25, 37, 38, 40, 41, 43, 68, 75, 80], "keeping": 14, "keeps": [12, 38], "kept": [14, 25, 41, 43], "key": [6, 27, 40, 41, 45, 71, 80, 82], "keyboard": [5, 59, 71], "keychain": 48, "keynote": 14, "keyring": 13, "keys": [25, 32], "kfy": 19, "know": [19, 27, 40, 80], "knowledge": [1, 2], "known": [44, 80], "kontact": [5, 42], "korganizer": 47, "kwallet": 13, "label": [19, 27], "labeled": 50, "labelled": [40, 50], "labels": [27, 35], "landing": [1, 41], "language": [43, 63, 81], "languages": 43, "large": [21, 28, 29, 43, 64], "larger": [18, 30, 32], "last": [4, 18, 38, 43, 53, 54, 82], "later": [1, 4, 41, 43, 49, 53, 55, 68, 71, 75], "latest": [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, 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], "latter": 45, "launch": [6, 11, 13, 15, 18, 19, 50], "launchpad": [7, 16], "layout": [59, 60, 72], "ldap": 25, "leading": [3, 19], "learn": [1, 20, 23, 25, 41, 45, 47, 48], "learned": 1, "learns": 14, "least": [38, 41], "leave": [20, 39], "leaving": [19, 43], "left": [1, 4, 18, 19, 20, 26, 35, 40, 41, 43, 47, 49, 51, 59, 64, 65, 79, 82], "leftmost": 59, "legend": 40, "length": 40, "lengthier": 19, "less": [4, 10, 37], "let": [4, 6, 40, 59, 71, 78], "lets": [20, 26, 35, 51, 59, 61, 82], "letsencrypt": 46, "letter": 19, "level": [20, 34, 35, 40, 59, 61, 68, 79], "like": [4, 6, 14, 19, 20, 25, 34, 40, 41, 43, 46, 55, 56, 58, 59, 69, 73, 79, 80], "likely": [18, 25, 43], "liking": 79, "limit": [11, 18, 19, 23, 30, 38, 40, 68, 82], "limitation": 19, "limitations": 14, "limited": [11, 14, 30, 36, 41, 68], "limits": [19, 30], "line": [6, 7, 11, 16, 18, 35, 40, 65], "lines": 18, "link": [1, 11, 18, 19, 20, 27, 28, 40, 55, 58, 65, 68, 71], "linked": 27, "links": [13, 18, 24, 27, 34, 40, 43, 65, 79, 81], "linus": 40, "linux": [8, 12, 18, 24], "list": [1, 3, 9, 18, 19, 20, 34, 35, 37, 40, 41, 47, 48, 53, 56, 58, 65, 68, 69, 71, 73, 80, 81], "listday": 40, "listed": [11, 28, 40, 41, 59, 81], "listening": [7, 8], "listing": [28, 36, 56], "listmonth": 40, "lists": [18, 35, 40, 43, 65, 68], "listweek": 40, "little": [18, 23, 32, 55, 71], "live": 59, "llm": 43, "llms": 43, "load": [43, 79], "lobby": [72, 76], "local": [7, 8, 9, 13, 14, 18, 19, 20, 27, 40, 41, 43, 81], "locally": [9, 14, 55], "locate": [8, 18, 50], "located": [3, 16, 18, 43], "location": [7, 11, 14, 19, 20, 40, 43, 49, 58, 68], "lock": 81, "log": [7, 13, 15, 19, 20, 25, 50, 53, 79, 80, 82], "logged": [13, 43, 81], "logging": [5, 18, 19, 28, 82], "login": [7, 8, 13, 18, 19, 41, 43, 44, 45, 49, 53, 80, 81], "logins": 19, "logo": 82, "logs": [15, 19, 50], "long": [8, 14, 39, 40, 43], "longer": [40, 41, 68, 75, 80], "look": [32, 34, 37, 40, 41, 46, 54, 76, 80, 82], "looking": 43, "looks": [40, 56, 69, 82], "loops": 11, "lose": [5, 25, 37], "losing": 80, "lost": 18, "lot": 9, "loudspeaker": 59, "lower": 79, "lowest": 41, "lts": 13, "luminosity": 79, "mac": 18, "machine": [6, 7, 9], "machines": 7, "macos": [5, 8, 12, 24, 41, 42], "made": [40, 41, 46], "magic": [4, 23], "magically": 25, "mail": [5, 39, 40, 42, 49, 51, 79], "mailbox": 50, "mails": [43, 79], "main": [8, 13, 15, 18, 19, 25, 40, 43, 53, 68, 79, 82], "maintain": 41, "maintained": 13, "major": 13, "make": [11, 16, 19, 23, 24, 25, 28, 34, 38, 40, 41, 46, 48, 57, 59, 81], "makes": [4, 9, 19, 27, 65, 73], "making": [8, 18, 19, 22, 29, 40], "manage": [4, 5, 14, 20, 25, 35, 41, 43, 50, 56, 76, 80, 81], "managed": [40, 43], "management": [19, 23, 32, 35, 42], "manager": [4, 13, 16, 20, 45, 49, 55], "managers": [6, 13, 19], "managing": [5, 20, 29, 30], "mandatory": [44, 61], "manner": [7, 40], "manual": [6, 12, 13, 14, 24, 26, 35, 43, 47, 48], "manually": [6, 11, 19, 23, 28, 38, 43, 49, 57, 61, 78], "many": [11, 25, 40], "map": 19, "mapped": 19, "maps": 19, "mark": [18, 20, 43, 65], "markdown": [2, 5, 68], "marked": [14, 18, 20, 26, 43, 53, 76], "marketing": [40, 81], "marking": 43, "marks": 26, "master": 25, "mastodon": 41, "match": [11, 41, 43, 82], "matched": 18, "matches": [6, 43], "matching": 18, "mate": 19, "matrix": [40, 73], "matterbridge": [72, 76], "mature": 49, "maxchunksize": 8, "maximum": [7, 8, 10, 19, 23, 40], "may": [6, 10, 11, 13, 14, 16, 18, 19, 23, 25, 26, 28, 32, 34, 35, 36, 40, 47, 59, 61, 79], "maybe": 40, "mb": [8, 10], "mdn": 20, "me": 40, "mean": [25, 43, 80], "meaning": [8, 43], "means": [14, 18, 19, 26, 40, 43], "meanwhile": 41, "mechanism": 6, "media": [7, 20, 41, 59, 61, 68], "meet": 40, "meeting": [56, 58, 71, 82], "meetings": 68, "meets": [23, 38], "megabyte": 30, "member": [41, 68], "members": [1, 4, 19, 34], "membership": 41, "memberships": [41, 81], "memory": 23, "mentioned": [56, 68, 81], "mentioning": 68, "mentions": 68, "menu": [1, 11, 18, 19, 20, 26, 35, 40, 41, 43, 47, 48, 50, 57, 59, 61, 64, 65, 68, 70, 71, 73, 74, 75, 79, 81, 82], "menus": 79, "merge": 41, "merged": 41, "message": [18, 19, 25, 39, 40, 46, 50, 54, 55, 56, 57, 65, 68, 75, 79, 80], "messages": [5, 15, 18, 42, 56, 66, 72, 82], "met": 23, "metadata": [18, 32], "method": [6, 19, 26, 27, 44, 57, 80], "methods": [6, 19, 40, 41], "mib": 10, "microphone": [59, 71, 79], "microsoft": [8, 13, 82], "middle": 65, "might": [6, 8, 9, 13, 18, 19, 40, 41, 43, 59, 62, 81], "migrate": [5, 42], "migrated": 51, "migration": 51, "milliseconds": 8, "mime": 11, "min": 8, "minchunksize": 8, "mind": [19, 40], "minimal": 17, "minimized": 43, "minimum": [8, 10, 41, 82], "minute": [8, 38, 40], "minutes": [25, 26, 38, 47], "missing": 20, "mitigate": 79, "mkcol": 19, "mkdir": 19, "mmc": 19, "mobile": [1, 21, 29, 37, 40, 41, 44, 72, 80, 81], "modal": [40, 82], "modals": 79, "mode": [41, 59, 65, 68, 79], "model": 43, "moderation": 68, "moderator": [41, 55, 57, 59, 61, 68, 69, 73, 75, 76], "moderators": [5, 59, 61, 63, 68, 72], "modes": 43, "modification": [11, 18], "modifications": 41, "modified": [20, 41], "modify": [18, 19, 41, 59], "modifying": [18, 30], "monitor": [7, 11, 62, 71], "monitoring": 56, "monochrome": 18, "month": 40, "more": [1, 4, 6, 10, 11, 13, 19, 20, 23, 25, 32, 35, 38, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 54, 55, 57, 59, 68, 69, 72, 73, 80, 81, 82], "moreover": 40, "most": [17, 18, 25, 40, 43, 47, 73, 82], "mount": [19, 20, 26, 27, 34], "mounted": 19, "mounting": 19, "mounts": 26, "mouse": [1, 62, 79], "move": [19, 20, 23, 51, 57, 79], "moved": [8, 23, 43, 68], "moves": 43, "movetotrash": 8, "moving": 43, "mozilla": 82, "ms": [19, 73], "msi": [11, 13, 16], "msiexec": 16, "mtime": 18, "mtimes": 18, "much": [4, 25, 32, 81], "multiple": [18, 20, 34, 35, 40, 55, 57], "music": 7, "must": [7, 11, 13, 18, 19, 25, 26, 27, 37, 40, 41, 43, 50, 51, 61, 69, 73], "mute": [59, 71, 79], "muted": [59, 71], "mutes": 59, "mutually": 43, "my": [1, 7, 19], "mycertificate": 19, "mydata": 9, "mynextcloud": [19, 47], "name": [1, 3, 4, 6, 7, 9, 19, 20, 26, 34, 35, 36, 38, 40, 41, 44, 46, 47, 49, 50, 53, 59, 68, 71, 81, 82], "names": 59, "narrow": [75, 82], "native": 19, "natively": 49, "naturally": 41, "nautilus": [18, 45], "navigate": [19, 20, 34, 36, 41, 43, 48, 50, 79], "navigating": 5, "navigation": [35, 64, 68, 75, 79, 82], "navigator": 19, "nc": [7, 11, 34], "near": [20, 49], "nearly": 9, "necessary": [18, 19, 36, 40, 46, 53], "need": [1, 6, 8, 11, 13, 16, 19, 25, 40, 41, 43, 45, 47, 48, 49, 57, 63, 68, 75], "needed": [10, 34, 37, 40, 47, 68], "needing": 14, "needs": [9, 14, 19, 27, 40, 41, 69], "nemo": [18, 19], "nested": 11, "net": 19, "netrc": 7, "network": [8, 10, 14, 19, 26, 41, 49], "networking": 19, "networks": 41, "never": [25, 37, 38, 40, 68], "new": [1, 4, 6, 8, 11, 14, 15, 19, 20, 23, 25, 26, 35, 36, 38, 41, 47, 49, 50, 51, 53, 55, 58, 68, 75, 79, 81], "newer": [40, 41, 43, 79], "newest": 43, "newly": [11, 14, 40], "newsletters": 43, "next": [4, 6, 7, 8, 13, 14, 17, 26, 27, 35, 36, 40, 41, 43, 45, 46, 47, 49, 50, 55, 59, 61, 62, 65, 68, 77, 81, 82], "nextcloud": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 37, 38, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 59, 68, 69, 71, 72, 73, 79, 80, 81], "nextcloudcmd": 7, "nextcloudpassword": 19, "nextclouds": [27, 34], "nextcloudurl": 7, "nextcloudusername": 19, "nice": 4, "nick": 4, "night": 65, "nitrokey": 80, "no": [6, 8, 11, 14, 18, 19, 20, 25, 35, 40, 41, 43, 50, 68, 75, 80, 81], "noauto": 19, "nobody": [68, 81], "non": [1, 8, 13, 19, 48, 81], "none": [43, 46, 50], "normal": [6, 8, 18, 65], "normally": [25, 40, 43], "not": [1, 6, 7, 8, 9, 10, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 30, 32, 34, 35, 37, 39, 40, 41, 43, 44, 46, 47, 48, 49, 50, 53, 57, 58, 59, 61, 62, 64, 65, 68, 80, 81, 82], "note": [3, 34, 41, 43, 50, 75], "notes": [1, 40, 68], "nothing": 25, "notice": [9, 40], "notification": [6, 18, 34, 36, 40, 59, 61, 68, 69, 71, 75], "notificationrefreshinterval": 8, "notifications": [8, 9, 18, 59, 65, 75, 81, 82], "notified": [40, 68, 71, 75], "notifies": 9, "notify": [6, 9, 14, 59, 68], "notifying": 6, "now": [1, 4, 9, 13, 19, 28, 40, 43, 45, 46, 47, 65, 80], "number": [10, 18, 27, 34, 40, 43, 57, 59, 68], "numbers": [14, 41], "object": [26, 34], "obscured": 68, "observe": 13, "oc": 27, "occ": 26, "occur": 25, "occurred": [9, 19], "occurs": [40, 43], "oct": 19, "of": [1, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 27, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 73, 74, 75, 79, 80, 81, 82], "off": [43, 79], "offer": [14, 34, 40, 79], "offers": [6, 18, 19, 20, 40, 43, 59, 72], "office": [19, 20, 40], "officially": 13, "offline": [14, 18, 19, 26], "often": 40, "ok": 19, "old": [8, 11, 25, 38, 40], "older": [8, 13, 15, 16, 19, 23, 27, 32, 79], "oldest": [23, 32, 38, 43], "omit": 19, "on": [1, 4, 6, 7, 8, 9, 14, 16, 20, 23, 24, 25, 26, 27, 30, 32, 34, 35, 36, 37, 38, 40, 41, 42, 44, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 64, 65, 68, 69, 71, 72, 73, 77, 79, 80, 81, 82], "onboard": [1, 2, 5], "onboards": 4, "once": [1, 14, 20, 26, 35, 40, 43, 50, 51, 53, 57, 68, 80, 82], "one": [1, 4, 6, 7, 9, 10, 11, 13, 18, 19, 20, 24, 34, 35, 37, 38, 40, 41, 43, 44, 55, 58, 59, 65, 69, 80, 81, 82], "ones": [7, 40, 58, 68], "ongoing": [61, 68], "online": [1, 18, 19, 45, 82], "only": [1, 3, 6, 13, 14, 18, 19, 23, 25, 26, 27, 30, 34, 35, 37, 38, 40, 41, 43, 45, 46, 53, 75, 80, 81, 82], "onto": [20, 51], "open": [1, 9, 11, 13, 14, 18, 19, 20, 25, 26, 27, 35, 37, 40, 41, 43, 44, 45, 46, 47, 57, 65, 67, 68, 71, 72, 75, 79, 81, 82], "opendyslexic": 79, "opened": [6, 14, 18, 68], "opening": [1, 14, 15, 40, 59], "opens": [9, 11, 14, 15, 18, 19, 20, 28, 36, 41, 43, 59, 82], "openstack": [19, 26], "opensuse": [13, 19], "opentasks": 44, "operating": [6, 11, 16, 19], "operation": 10, "operations": [18, 19], "operators": 43, "opportunity": 11, "opt": [8, 43], "optimized": 19, "option": [11, 15, 18, 19, 20, 25, 27, 32, 34, 35, 40, 41, 43, 44, 47, 55, 59, 61, 62, 71, 75], "optional": [19, 25, 39, 40, 43], "optionally": [40, 44], "options": [5, 6, 7, 8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 25, 34, 57, 59, 68, 71, 81, 82], "or": [1, 4, 5, 6, 7, 10, 11, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 27, 28, 30, 32, 34, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 54, 55, 57, 58, 61, 62, 63, 64, 65, 68, 69, 70, 72, 74, 75, 78, 79, 80, 81, 82], "order": [11, 34, 41], "ordered": 65, "organic": 41, "organise": 35, "organizations": 41, "organize": [1, 2], "organized": 75, "organizer": [40, 43], "organizing": 4, "original": [32, 43, 63], "os": 7, "other": [1, 3, 6, 7, 9, 10, 11, 13, 14, 15, 18, 19, 20, 23, 25, 26, 27, 28, 32, 34, 36, 40, 41, 43, 46, 47, 48, 59, 62, 64, 65, 68, 69, 70, 72, 73, 80, 81, 82], "others": [1, 18, 24, 39, 40, 43, 68, 73, 81], "otherwise": 14, "our": [13, 14, 41, 42, 43, 72, 79], "out": [4, 5, 18, 19, 25, 34, 38, 40, 42, 43, 56, 59, 62, 68, 72, 79, 80, 82], "outbound": 34, "outgoing": 43, "outlined": 14, "outlining": 56, "outlook": 40, "output": [7, 15], "outside": [13, 25, 35, 43, 81], "over": [1, 18, 23, 26, 40, 43, 48, 68, 75], "overall": 79, "overflow": [18, 26], "overflows": 64, "overhead": 19, "overlapping": 40, "override": [6, 23, 32], "overrides": [6, 7, 10], "overview": [1, 53, 56, 68, 82], "overwrite": [8, 40], "overwriting": 34, "own": [6, 7, 8, 9, 27, 34, 40, 41, 43, 54, 59, 73, 82], "owncloud": [9, 10, 26, 27, 34], "owner": [19, 23, 25, 32, 34, 36, 40, 41], "owners": 25, "ownership": [22, 29, 41], "owns": 40, "package": [6, 7, 13, 16, 18, 19], "packages": [7, 13], "page": [1, 6, 13, 20, 23, 24, 25, 27, 28, 32, 34, 40, 41, 53, 73, 79, 81, 82], "pages": [1, 3, 14, 34, 40, 76], "pane": [11, 43], "panel": [19, 35, 43, 49], "paperclip": 55, "parallel": [10, 14, 18], "parameters": [19, 51], "parent": [18, 20, 41, 57], "part": [4, 11, 19, 41, 43, 59, 68], "participant": [59, 61, 68, 69], "participants": [40, 55, 56, 57, 58, 61, 62, 63, 64, 65, 69, 70, 71, 76, 78], "participation": 40, "particular": 57, "parts": 1, "party": [11, 69], "passed": [7, 19, 38], "passkey": 82, "password": [5, 7, 13, 19, 34, 41, 44, 45, 46, 47, 48, 49, 50, 68, 80, 81, 82], "passwords": [5, 80], "past": 68, "paste": [40, 50], "path": [7, 18, 19, 26, 46, 47, 50], "pathtomountpoint": 19, "pattern": [7, 18, 38, 43], "patterns": 18, "pause": 18, "paused": 18, "pauses": 18, "pc": 19, "pdf": 20, "peers": 1, "pen": 40, "penalty": 19, "pending": 69, "people": [1, 23, 28, 40, 68, 81, 82], "per": [3, 7, 14, 40, 41, 44, 59], "perfectly": 17, "perform": [6, 8, 19, 41, 43], "performance": [19, 43], "performed": 43, "performs": 7, "period": [18, 23, 32, 40, 58, 68, 75, 82], "periodic": 26, "permanently": [3, 11, 14, 23, 40, 68], "permission": [56, 59, 62], "permissions": [19, 36, 41, 59, 68], "permit": 19, "persisted": 8, "persistent": 19, "persists": 26, "person": [9, 40, 68, 82], "personal": [19, 23, 24, 26, 32, 34, 37, 39, 40, 43, 45, 49, 51, 53, 68, 69, 75, 80, 81, 82], "petersteier": 11, "phone": [41, 44, 59, 68, 80, 81], "photo": 68, "photos": 79, "photothumb": 7, "php": 30, "physical": [19, 80], "pick": [36, 40, 45, 47, 55, 68, 79], "picked": 40, "picker": [20, 28, 35, 36], "picture": [4, 81, 82], "pictures": 41, "pie": 14, "pim": [45, 49], "pin": [14, 75], "pinned": 75, "pkgs": 7, "place": [1, 6, 19, 40, 41, 68], "placed": [7, 23], "places": [19, 64, 82], "plain": [20, 53], "plan": [19, 40, 47], "planning": 40, "plasma": 47, "platform": 16, "play": [20, 44, 61], "playback": 20, "please": [3, 19, 25, 40, 41, 43, 62, 79, 81], "plus": [40, 41], "point": [13, 19, 43, 44, 82], "pointing": [9, 26, 43], "policies": 6, "poll": [8, 14, 55], "pop": 6, "popover": 79, "popular": 40, "popup": 40, "port": [7, 8, 19, 43, 46], "portable": 19, "possibility": [19, 37], "possible": [6, 11, 14, 17, 18, 34, 37, 40, 41, 43, 57, 58, 61, 73, 75], "possibly": [19, 40], "post": 50, "posts": 56, "potential": 43, "power": 47, "powers": 23, "ppa": 7, "pre": [17, 18, 43, 65], "precaution": 43, "preconfiguration": 13, "predefined": [18, 40, 43, 59], "prefer": [13, 19, 43, 50], "preference": 40, "preferences": [5, 40, 43, 44, 51, 80], "preferred": [6, 19, 81], "preparation": [17, 40], "prepare": [40, 61], "prepared": 65, "preselected": 1, "present": [6, 26], "presentation": 20, "presenter": 62, "preserve": 18, "preserving": 20, "press": [1, 4, 13, 19, 27, 43, 45, 59, 82], "pressing": [4, 45, 65, 71], "pretty": 25, "prevent": [6, 23, 34, 40, 41, 81], "prevented": 68, "prevents": 6, "preview": [1, 20, 40, 43, 54, 59], "previews": [14, 20, 25], "previous": [11, 20, 38, 40, 49, 50], "previously": 43, "primary": [43, 79], "principals": 50, "prior": 6, "privacy": [37, 43, 61, 82], "private": [40, 81], "privately": 65, "privileges": 6, "pro": 80, "probably": 19, "problem": [11, 80], "problems": 10, "proc": 11, "procedure": 49, "proceed": 43, "process": [7, 11, 38, 40, 51], "processed": [43, 61], "processes": [7, 43], "produce": [8, 18], "produces": 20, "productivity": 42, "profile": [5, 8, 26, 40, 41, 43, 68], "program": [11, 13], "programs": 16, "progress": [14, 18, 59], "project": 42, "promote": 68, "promoted": 64, "prompt": [7, 8, 13, 19, 80], "promptdeleteallfiles": 8, "prompted": [13, 50, 59, 62, 71], "proofs": 80, "propagated": 34, "propagates": 7, "properly": [11, 19, 48], "properties": [19, 41], "propfind": 19, "proposal": 51, "proposes": 43, "protect": [25, 34, 80], "protected": 68, "protecting": 37, "protection": [34, 41], "protocol": [11, 19, 26, 46], "protocols": [49, 73], "provide": [6, 7, 11, 13, 14, 19, 40, 56, 68], "provided": [14, 30, 40, 43, 68, 69], "provider": [13, 14, 19, 25, 63], "providers": 25, "provides": [11, 13, 14, 18, 19, 20, 37, 40, 41, 68], "providing": [25, 54, 55], "provisioning": 13, "proxy": [7, 8, 18], "public": [20, 32, 35, 40, 55, 57, 68, 81], "publicly": 41, "published": [40, 81], "pull": 40, "purpose": 25, "purposes": 39, "push": [59, 79], "put": 68, "qr": [44, 80], "qt": 15, "quality": 79, "question": 18, "questions": 7, "quick": [1, 18, 65, 68, 75], "quicker": 79, "quickly": [4, 20, 43, 68, 82], "quiet": 16, "quit": 16, "quota": [23, 29, 31, 81], "quotas": 32, "quotes": 65, "radio": 41, "raise": 79, "raised": 10, "random": 34, "randomly": 43, "range": [19, 75, 82], "ranging": 11, "rate": [40, 47], "rather": [19, 49], "re": [19, 20, 25, 32, 40, 43], "reach": [39, 79], "reached": [26, 40, 43], "reaches": 68, "reaction": 59, "read": [7, 19, 25, 26, 34, 37, 40, 41, 43, 68, 81], "readers": 79, "reading": [14, 79], "reads": 8, "ready": [17, 26], "real": 63, "rearrange": 82, "reason": [46, 68], "reasons": 41, "reboot": 19, "reboots": 19, "receive": [19, 28, 40, 43, 59, 65, 69, 75, 80], "received": 71, "receives": [27, 36, 61], "receiving": [34, 43, 63, 69], "recent": [18, 19, 20, 43, 82], "recently": [20, 53], "recheck": 26, "recipient": [23, 27, 34, 40], "recipients": 43, "recognisable": 14, "recognize": 19, "recommend": [14, 19, 24, 30, 43], "recommended": 19, "reconnect": 19, "record": [61, 76], "recorded": [59, 61], "recording": [59, 72, 76], "recordings": 61, "recover": 25, "recoverable": 20, "recovery": 5, "recurrence": 40, "red": [18, 26, 59, 61], "reddit": 50, "redirected": [68, 71, 80], "redo": 49, "reduce": 10, "reduced": 79, "reducing": [14, 79], "refer": [13, 19, 30], "reference": [20, 61, 75], "references": 17, "reflect": 18, "reflected": [26, 34, 40], "refresh": [19, 47, 79], "refreshed": [40, 49], "reg": 11, "regardless": [40, 55], "regedit": 19, "region": 40, "register": [11, 13, 44], "registered": [11, 44, 59, 68, 77], "registering": 11, "registry": [6, 11, 19], "regular": [11, 19, 26, 35, 40, 41, 49, 59], "regularly": [10, 40], "regulations": 61, "reject": 36, "rejected": 40, "rejection": 36, "rejoining": 68, "related": [16, 40, 43, 46, 82], "relates": 43, "relative": 40, "release": [13, 17, 40], "releases": [13, 17], "relevant": [9, 40, 41, 43, 75], "remain": 43, "remaining": 10, "remains": 18, "remind": 43, "reminder": 40, "reminders": [68, 75], "remote": [7, 8, 9, 14, 16, 19, 20, 25, 26, 27, 34, 40, 46, 49], "remotely": 9, "remotepollinterval": 8, "removal": [11, 16], "removals": 41, "remove": [6, 11, 16, 18, 25, 26, 27, 35, 37, 40, 43, 68, 82], "removed": [18, 32, 40, 43, 56, 68], "removes": [15, 19], "removing": [16, 35], "rename": [20, 23, 35], "renamed": 43, "renames": 34, "render": 18, "reopen": 43, "repeat": [7, 50], "repeating": 40, "replace": [19, 40, 44, 50, 59], "replacement": [39, 68], "replies": [56, 68, 75], "reply": [43, 65], "report": [17, 43, 79], "reported": 19, "repositories": 7, "repository": [7, 8], "represents": 43, "reproduce": 17, "reproducible": 13, "request": [19, 30, 43], "requested": 44, "require": [30, 40], "required": [6, 7, 26, 40, 46, 59, 63], "requirements": 73, "requires": [7, 19, 30, 40, 61, 68], "requiring": [37, 43, 61, 80], "reschedule": 65, "reset": 39, "resetting": 40, "reshared": 40, "resharing": 34, "resizes": 59, "resolve": 9, "resolved": 9, "resolving": 9, "resource": [19, 40, 44, 45, 47], "resources": [41, 45, 47], "respective": [40, 41, 42, 48, 51, 57], "respond": [40, 43, 56], "responded": 40, "response": [40, 43], "responses": 40, "responsive": 79, "responsiveness": 5, "rest": [19, 24], "restart": 19, "restarts": 6, "restore": [23, 25, 38, 40], "restoring": 40, "restrict": [5, 35], "restricted": [19, 35], "restriction": 41, "result": [8, 14, 18], "resulting": 47, "results": [8, 82], "resume": [18, 43], "retention": [23, 32, 35, 43, 68], "retried": [10, 43], "retries": 7, "retrieve": [19, 41], "retrieved": 41, "retry": [26, 43], "retrying": [18, 26], "return": [20, 27, 59], "returned": 25, "revealed": 14, "revert": [34, 68], "review": [19, 40], "reviewed": 40, "revoked": 19, "rf": 16, "rfc": 40, "right": [14, 18, 19, 34, 38, 43, 47, 49, 59, 64, 65, 68, 79, 82], "rights": [34, 43], "ring": 59, "rising": 59, "risk": 17, "rm": 16, "roaming": 8, "role": [41, 81], "roll": [38, 56], "room": [23, 57], "rooms": [41, 72, 76], "root": [7, 14, 19, 34, 36, 40], "row": [20, 35, 64], "rows": 35, "rss": 5, "rule": 43, "rules": [35, 40, 43], "run": [7, 8, 19, 23, 25, 26, 38, 76], "running": [14, 16, 19, 25], "runs": 9, "rw": 19, "sabredav": 19, "safari": 82, "safe": [16, 37, 68, 80], "said": 6, "sales": 81, "samba": 26, "same": [4, 6, 7, 9, 13, 14, 18, 19, 26, 35, 40, 43, 49, 50, 51, 57, 61, 69, 80], "save": [11, 14, 19, 40, 41, 50, 53, 55, 61, 79, 81], "saved": [4, 19, 26, 35, 38, 40, 41, 43, 50, 61], "saves": 43, "saving": [46, 47], "say": 9, "says": [19, 25], "scan": [11, 26, 80], "scanned": 80, "scanner": 44, "scary": 4, "scenario": 23, "scenarios": 9, "schannel": 50, "schedule": [13, 40, 51, 65], "scheduled": [40, 58, 65, 68], "scheme": 11, "scope": [13, 81], "scoped": 43, "scopes": 81, "scp": 19, "screen": [13, 41, 44, 50, 60, 61, 63, 64, 72, 78, 79, 80], "screensharing": 62, "script": [19, 25, 43], "scripting": 19, "scripts": [16, 43], "scroll": [19, 43, 50, 64, 65], "seamless": 25, "seamlessly": 14, "search": [1, 20, 25, 35, 36, 45, 68, 71, 77, 79, 82], "searchable": 45, "searched": 43, "searches": [43, 82], "searching": [40, 43, 68, 81], "sec": 8, "second": [1, 5, 6, 38, 41, 43, 55, 65, 68], "seconds": [8, 10, 38, 47, 59, 61, 80], "secret": [7, 40, 80], "secrets": 19, "section": [6, 8, 10, 11, 19, 25, 35, 36, 39, 40, 41, 43, 51, 54, 61, 68, 71, 78], "sections": [6, 76], "secure": [19, 37], "security": [5, 19, 25, 29, 37, 44, 50, 82], "see": [1, 5, 8, 9, 11, 12, 13, 18, 19, 20, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 39, 40, 41, 43, 55, 57, 58, 59, 61, 62, 68, 69, 71, 73, 80, 82], "seeing": [34, 81], "seen": [25, 50], "sees": 37, "select": [1, 4, 13, 14, 19, 20, 26, 28, 35, 40, 41, 43, 44, 45, 46, 48, 49, 50, 55, 58, 65, 68, 71, 75, 80], "selected": [14, 20, 35, 40, 41, 43], "selecting": [1, 13, 14, 40, 43, 55, 61], "selection": [35, 40, 43, 80], "selections": 40, "selective": 7, "selector": [40, 65], "self": [19, 41, 48, 75], "semi": 18, "send": [19, 28, 40, 43, 44, 57, 59, 65, 69, 75, 79], "sender": [43, 75], "senders": 43, "sending": [28, 43, 66, 72, 75], "sends": 43, "sense": 9, "sensitive": 68, "sent": [9, 27, 40, 43, 68], "separate": [40, 43, 81], "separately": [24, 41, 43, 48, 80], "server": [7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 33, 35, 37, 40, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 61, 68, 69, 77, 80, 81, 82], "servercert": 19, "servers": [19, 20, 26, 27, 34, 40, 69, 81], "service": [19, 25, 26, 46], "services": [19, 25, 26, 28, 56, 73, 76], "session": [8, 19, 41], "sessions": 8, "set": [3, 8, 19, 25, 30, 32, 34, 39, 41, 43, 44, 47, 48, 50, 58, 61, 63, 68, 75, 76, 81, 82], "sets": 40, "setting": [3, 5, 9, 11, 15, 23, 34, 40, 42, 43, 47, 68, 80], "settings": [3, 5, 6, 8, 9, 14, 19, 26, 34, 35, 36, 37, 39, 40, 41, 45, 46, 47, 48, 50, 51, 53, 54, 55, 59, 61, 63, 68, 69, 72, 73, 78, 79, 80, 81], "settle": 40, "setup": [11, 40, 50, 57, 73], "setups": 10, "several": [43, 61, 65, 68, 74, 79], "sftp": [19, 26], "shall": 8, "share": [1, 18, 19, 23, 25, 26, 28, 32, 37, 40, 41, 42, 55, 61, 62, 72, 81], "shared": [1, 2, 14, 19, 20, 25, 26, 27, 32, 34, 40, 55, 61, 62, 68, 75, 81], "sharee": 34, "sharees": 34, "shares": [14, 20, 22, 23, 25, 26, 29, 40, 75, 81], "sharing": [5, 19, 27, 29, 36, 60, 69, 72], "shift": [41, 79], "short": [17, 39, 40, 41, 43], "shortcut": [19, 43, 59, 68], "shortcuts": [59, 71, 79, 82], "shortly": 61, "should": [4, 6, 8, 10, 13, 18, 19, 40, 43, 44, 45, 46, 47, 50, 68, 80], "show": [3, 8, 11, 18, 19, 20, 39, 40, 41, 43, 59, 78, 80, 82], "showexperimentaloptions": 8, "showing": [3, 9, 18, 20, 36, 40], "showmaindialogasnormalwindow": 8, "shown": [8, 18, 34, 35, 40, 41, 43, 45, 59, 68, 82], "shows": [9, 19, 20, 26, 34, 35, 40, 41, 43, 53, 59, 64, 82], "sick": 39, "side": [4, 9, 18, 19, 34, 37, 41, 49, 51, 54], "sidebar": [1, 4, 14, 19, 26, 27, 34, 35, 38, 40, 41, 43, 57, 59, 68, 70, 75, 79, 82], "sieve": 43, "sign": [18, 19, 41, 48], "signature": 43, "significant": [19, 43], "significantly": 19, "silent": [6, 59], "similar": [14, 18, 19, 39, 40, 41], "similarly": [43, 45], "simple": [4, 26, 28, 38, 40, 43], "simplified": 40, "simply": [16, 18, 24, 41, 43, 55, 75], "since": [19, 34, 38, 43, 49, 80], "single": [7, 18, 20, 35, 40, 41, 43, 62, 68, 71, 80], "singleton": 43, "sip": 68, "sits": 18, "situation": [9, 10], "size": [8, 10, 18, 19, 30, 32, 41, 79], "sizes": 30, "sizing": 8, "skip": [59, 79], "skipped": 10, "skipping": 59, "skipupdatecheck": 6, "slash": 18, "slot": 40, "slots": 40, "slow": 19, "small": [48, 62], "smaller": [57, 59], "smartphone": 80, "smb": 26, "smtp": 43, "snap": 19, "sni": 19, "snippets": 43, "snoozed": 43, "snoozing": 43, "so": [4, 6, 8, 11, 13, 14, 18, 19, 20, 25, 26, 28, 35, 40, 41, 43, 47, 53, 59, 62, 65, 68, 71, 79, 80, 81, 82], "social": [41, 81], "socks": 8, "software": [11, 13, 16, 79], "solely": 43, "solutions": [19, 34], "solve": 80, "solved": 11, "some": [4, 8, 9, 13, 18, 25, 26, 32, 34, 40, 43, 47, 56, 68, 79, 81], "somebody": 71, "someone": [9, 40, 41, 59, 68, 81], "something": 80, "sometimes": 40, "somewhere": 80, "soon": [14, 40], "soonest": 23, "sorting": 43, "source": [13, 19, 36, 37], "sourcedir": 7, "sources": 47, "space": [1, 2, 14, 18, 19, 32, 38, 43, 59, 71, 79], "spam": 43, "span": 40, "sparkle": 6, "speak": 71, "speaker": 61, "special": [14, 17, 25, 28, 50, 68], "specially": 16, "specific": [7, 16, 38, 40, 41, 43, 57, 58, 65, 75, 78, 82], "specifically": 11, "specified": [7, 15, 43], "specifies": [8, 10], "specify": [6, 7, 15, 19, 40, 41, 46, 57], "specifying": 41, "speech": [59, 63], "speed": 43, "speeds": 19, "split": 43, "spoken": 59, "spreadsheet": 20, "square": 41, "ssh": 26, "ssl": [7, 19, 46], "stable": [13, 17], "stacked": 43, "standard": [7, 13, 40], "standardized": 14, "standards": 79, "stands": 19, "star": 20, "starred": 20, "start": [11, 19, 37, 40, 43, 51, 57, 61, 68, 70, 71, 75], "started": [2, 5, 19, 59, 61, 68, 71], "starting": [8, 15, 40, 43, 72], "starts": [6, 39, 59, 78], "startup": [18, 19], "state": [7, 14, 18, 19, 43], "status": [6, 19, 24, 26, 39, 59, 68, 82], "stay": [19, 23, 40, 43, 58], "stdout": 15, "step": [11, 13, 35, 40, 46, 50, 68], "steps": [19, 27, 34, 43, 45, 47, 48, 49, 50], "still": [1, 8, 14, 20, 25, 32, 40, 41, 43, 46, 61, 68, 79], "stolen": 80, "stop": [18, 40, 43, 57, 61, 62], "stopping": 61, "stops": 80, "storage": [14, 19, 21, 25, 29, 31, 80], "store": [18, 19, 25, 32, 41, 44, 80], "stored": [3, 14, 19, 25, 38, 41, 43], "stores": [14, 19], "stream": [61, 71, 81], "strikethrough": [14, 40], "string": 18, "stripes": 40, "strongly": 19, "structure": [1, 2, 20, 41], "structures": 25, "sub": [23, 44], "subdirectory": 19, "subfolder": 7, "subfolders": 11, "subject": 43, "subjects": 43, "submenu": 75, "submit": 40, "subpage": 1, "subpages": 1, "subscribe": [49, 75], "subscribed": 75, "subscription": [40, 52], "subscriptions": 40, "subsequent": [14, 19], "substantially": 19, "substring": 43, "successful": [13, 26, 27, 40], "successfully": [6, 50], "such": [6, 9, 13, 18, 19, 25, 26, 32, 35, 40, 41, 43, 58, 61, 65, 68, 75, 79, 80, 81, 82], "sudo": 16, "suggested": [43, 49], "suit": 82, "suitable": 40, "summarizing": 43, "summary": 56, "superior": 34, "support": [13, 14, 16, 18, 19, 40, 41, 45, 48, 50, 80], "supported": [7, 15, 20, 40, 41, 43, 49, 65, 73, 82], "supporting": 40, "supports": [13, 14, 19, 38, 40, 41, 43, 49, 80], "sure": [11, 16, 19, 38, 40, 46, 48, 59, 80], "swift": [19, 26], "switch": [7, 9, 20, 59, 64, 79, 82], "switches": 7, "symbol": [40, 43], "symbolic": [11, 18], "sync": [7, 13, 16, 18, 19, 24, 40, 43, 44, 49, 50, 80], "synced": [11, 16, 18, 24, 40, 47], "synchronization": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 21, 49, 50], "synchronizations": 7, "synchronize": [7, 10, 19, 40, 47, 49, 50], "synchronized": [9, 12, 18, 19, 49], "synchronizes": 49, "synchronizing": [5, 24, 42], "syncing": [18, 41, 46, 48], "syncs": 11, "syntactical": 18, "syntax": [18, 19, 65, 68], "sysctl": 11, "system": [6, 7, 8, 9, 11, 14, 16, 18, 19, 20, 29, 31, 38, 40, 41, 43, 48, 50, 59, 61, 63, 69], "systems": [6, 8, 13, 18, 19, 26], "tab": [11, 18, 19, 20, 34, 38, 40, 55, 62, 68, 71, 75, 79], "tabbed": 20, "tables": 65, "tabs": 18, "tackled": 68, "tag": [20, 43], "tagging": [35, 43], "tags": [20, 29, 31], "take": [1, 11, 16, 27, 40, 43, 47, 61, 68], "taken": 40, "takes": [8, 14, 25, 32, 41, 82], "taking": 40, "talk": [0, 5, 34, 39, 41, 43, 54, 56, 57, 62, 65, 67, 69, 71, 73, 74, 79, 82], "talking": 59, "tap": [44, 59], "tapping": 59, "target": [8, 14, 36, 40], "targetchunkuploadduration": 8, "targeting": 43, "targets": [34, 82], "task": [1, 42, 45, 65], "tasks": [19, 40, 43, 45, 47, 56, 68], "teach": 43, "team": [1, 2, 5, 26, 42, 68, 79], "teams": [68, 73], "technical": 14, "technically": 13, "telegram": 41, "telephone": 81, "tell": [18, 40, 43], "tells": 18, "templates": 4, "temporarily": [11, 19, 59], "temporary": 32, "ten": 26, "tentative": [40, 43], "tentatively": [40, 43], "terabytes": 11, "term": [40, 45], "test": [13, 19, 23, 47], "tested": [9, 11], "testers": 17, "testing": [8, 17], "tests": 43, "text": [1, 4, 9, 14, 18, 20, 25, 55, 65, 72, 79, 80], "than": [1, 15, 18, 19, 23, 30, 32, 38, 49, 55, 59, 65, 80], "thanks": 50, "that": [1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 25, 27, 28, 30, 32, 34, 35, 37, 38, 39, 40, 41, 43, 46, 47, 49, 50, 56, 57, 58, 59, 61, 65, 68, 77, 80, 81, 82], "the": [1, 3, 4, 5, 8, 9, 10, 12, 13, 14, 15, 16, 17, 21, 24, 26, 27, 28, 29, 30, 32, 34, 35, 36, 38, 39, 42, 44, 46, 47, 48, 50, 51, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "their": [6, 8, 13, 14, 19, 20, 23, 25, 27, 34, 36, 40, 43, 50, 53, 57, 59, 68, 81], "them": [3, 4, 6, 7, 8, 9, 11, 13, 14, 20, 23, 25, 26, 27, 34, 35, 40, 41, 42, 48, 55, 57, 68, 79, 80], "theme": 79, "themes": 5, "theming": 79, "themselves": [57, 63], "then": [1, 4, 6, 7, 11, 13, 14, 18, 19, 23, 25, 27, 28, 32, 35, 40, 41, 43, 44, 47, 49, 50, 53, 61, 63, 68, 70, 75, 77, 80], "there": [1, 6, 9, 16, 18, 19, 23, 25, 34, 40, 41, 43, 61, 65, 68, 70, 71, 75], "therefore": [37, 46], "these": [9, 13, 14, 18, 20, 24, 25, 27, 30, 34, 40, 41, 43, 45, 47, 68, 80, 81, 82], "they": [4, 7, 9, 14, 18, 19, 23, 25, 27, 36, 39, 40, 41, 43, 55, 59, 61, 64, 68, 69, 71, 80], "thing": [18, 49], "think": [1, 40], "third": [11, 25], "this": [3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 57, 58, 59, 61, 65, 68, 69, 71, 73, 77, 78, 79, 80, 81, 82], "those": [23, 24, 40, 41, 42, 49, 53], "though": [8, 11, 18, 19, 25], "thread": 75, "threaded": 43, "threads": [43, 75], "three": [13, 18, 20, 26, 34, 35, 40, 41, 43, 55, 57, 59, 64], "threshold": [10, 82], "through": [7, 11, 13, 14, 19, 25, 26, 30, 34, 40, 43, 57, 64], "throughout": 40, "throw": 44, "thumbnail": 20, "thumbnails": [25, 32], "thunderbird": [5, 40, 41, 42], "thus": 7, "tick": 61, "tile": 64, "tiles": 64, "time": [8, 9, 11, 13, 14, 18, 19, 23, 25, 34, 35, 38, 39, 40, 43, 47, 48, 56, 57, 58, 59, 61, 65, 68, 71, 75, 78, 80, 82], "timegridday": 40, "timegridweek": 40, "timeout": [8, 10], "timeouts": 25, "times": [7, 18, 19], "timestamp": [36, 38], "timestamps": 23, "timezone": 40, "timezones": 40, "title": [1, 4, 40, 43, 55, 58, 75], "tls": [19, 50], "tlsv": 19, "tmp": 7, "to": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 27, 28, 30, 32, 36, 37, 38, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 69, 70, 71, 73, 74, 75, 77, 78, 79, 80, 81, 82], "today": 82, "together": [1, 40, 48, 61, 81], "toggle": [20, 40, 43, 59, 64, 68, 71, 79], "token": [19, 34, 40, 53, 71, 80], "tokens": [5, 40, 53], "too": [40, 43], "tool": [1, 42, 80], "toolbar": [1, 4, 35, 43, 62, 71], "tools": [6, 16, 35, 42], "top": [1, 18, 19, 20, 35, 40, 41, 43, 57, 59, 61, 68, 70, 71, 82], "total": [32, 40], "totp": [19, 80], "touchpad": 62, "towards": 44, "tracker": 79, "trail": 20, "transcribes": 63, "transcription": [60, 72], "transfer": [19, 22, 26, 29, 40, 41], "transferred": [19, 36], "transferring": 40, "transfers": 19, "translate": 43, "translated": [3, 63], "translation": [60, 72], "translations": 43, "transparent": 40, "trash": [8, 20, 23, 25, 27, 32, 41, 53], "trashbin": 23, "trashed": 23, "travelling": 40, "tray": [8, 9, 13, 18], "tree": 18, "tried": 43, "tries": [7, 46, 68], "trigger": [26, 40, 43, 49], "triggered": [8, 13, 43], "triggering": 43, "trouble": 19, "troubleshooting": 46, "true": [15, 43], "trust": [7, 19, 37], "trusted": [19, 43, 81], "try": [13, 39, 46, 47], "trying": 25, "tt": 4, "tumblr": 41, "tunnel": 19, "turn": 74, "turned": [43, 49], "turning": 8, "two": [1, 5, 6, 9, 11, 16, 18, 24, 35, 38, 41, 43, 45, 49, 50, 53, 55, 59, 79, 81], "txt": 9, "type": [1, 6, 8, 13, 14, 18, 19, 20, 27, 35, 40, 46, 48, 49, 56, 59, 65, 79, 80], "typeface": 79, "types": [14, 20, 41, 65, 68], "typical": 18, "typically": [18, 56, 80], "typing": [1, 36, 43, 68], "ubuntu": [7, 13, 16], "ui": [8, 40], "umount": 19, "un": 25, "unable": [9, 10], "unaffected": 10, "unauthorized": 80, "unavailable": [14, 19, 26, 68], "unchanged": 43, "uncheck": [35, 40, 41], "uncomment": 19, "und": 4, "under": [6, 10, 19, 26, 35, 36, 43, 45, 50, 68, 69, 71, 78, 79, 80], "undergoing": 8, "understand": 32, "understanding": 43, "undesired": 18, "undo": 40, "undone": 14, "unencrypted": [19, 25, 32, 37], "unfocus": 79, "unfortunately": 19, "unified": [75, 82], "unifying": 4, "uninstall": 16, "uninstallation": [5, 12], "uninstalling": 16, "unintended": 8, "unique": [25, 40, 59, 81], "universal": [5, 11], "universities": 6, "unknown": 44, "unless": [7, 9, 11, 19, 40, 80], "unlike": 14, "unlinks": 27, "unlock": 80, "unlocking": 14, "unmonitored": 11, "unmount": 19, "unmute": [59, 71], "unmuted": [59, 71], "unmutes": 59, "unordered": 65, "unorthodox": 11, "unpin": 75, "unread": [43, 65, 68, 79, 82], "unresolved": 9, "unselect": 41, "unsent": 43, "unshare": [34, 40], "unshares": 40, "unsubscribed": 43, "unsuccessful": 43, "unsynced": 7, "unsynchronized": 14, "until": [8, 17, 19, 23, 26, 32, 38, 40, 43, 55, 71, 75, 78], "unusable": 18, "up": [8, 14, 18, 19, 32, 41, 44, 48, 50, 61, 63, 68, 75, 76, 80, 82], "upcoming": [50, 58, 68, 82], "update": [5, 6, 9, 12, 18, 40, 41, 44, 47], "updated": [9, 13, 19, 40, 53, 63], "updater": [5, 12, 13], "updates": [25, 41, 43], "updating": [6, 18], "upgraded": 27, "upload": [8, 9, 18, 19, 20, 26, 28, 30, 32, 34, 40, 41, 59], "uploaded": [8, 9, 10, 14, 32, 40, 61, 68], "uploaders": 28, "uploading": [30, 40, 71], "uploads": [8, 9, 20, 21, 22, 29, 32], "upon": [6, 19, 43, 68, 69], "upper": 49, "url": [7, 13, 18, 19, 27, 32, 34, 40, 44, 45, 47, 48, 49, 50, 82], "urls": 41, "us": [43, 79], "usable": 79, "usage": [23, 24, 81, 82], "use": [4, 6, 7, 8, 11, 14, 16, 18, 19, 20, 25, 26, 27, 39, 40, 41, 44, 46, 47, 48, 50, 53, 56, 59, 63, 64, 68, 69, 71, 74, 79, 80, 81, 82], "usebasicauth": 19, "used": [7, 8, 11, 15, 16, 18, 19, 32, 35, 37, 38, 39, 40, 41, 43, 50, 53, 79], "useful": [14, 19, 20, 30, 40, 43, 59, 71, 81], "user": [3, 7, 8, 9, 14, 16, 19, 23, 26, 27, 32, 34, 36, 37, 38, 39, 41, 43, 44, 46, 49, 50, 51, 53, 59, 68, 69, 77, 81], "usermod": 19, "username": [7, 13, 18, 19, 27, 34, 36, 44, 45, 46, 47, 48, 49, 50], "users": [6, 8, 9, 13, 14, 17, 18, 19, 23, 25, 27, 30, 32, 35, 36, 40, 41, 43, 55, 56, 57, 68, 69, 81, 82], "uses": [6, 7, 11, 15, 18, 19, 25, 38, 49, 59], "using": [5, 6, 8, 10, 12, 13, 16, 21, 22, 24, 28, 29, 33, 34, 39, 42, 44, 50, 53, 56, 61, 64, 68, 70, 71, 75, 81, 82], "usual": 25, "usually": [11, 43, 46], "utf": 19, "utilize": 43, "vacation": 39, "valid": [40, 43, 50], "validate": 49, "validated": 18, "value": [6, 10, 11, 15, 19, 23, 41, 43], "values": [8, 10, 18, 41], "var": 15, "variable": [8, 9, 10], "variables": [5, 12, 30, 40], "variety": [80, 81], "various": [40, 41], "vary": 79, "vcards": 41, "vcf": 41, "vendor": 6, "venue": 40, "verbose": 7, "verification": 68, "verify": [19, 40, 43], "version": [3, 6, 8, 9, 11, 13, 16, 17, 18, 19, 20, 29, 31, 32, 40, 41, 43, 48, 49, 51, 81, 82], "versioning": [19, 38], "versions": [6, 8, 16, 17, 19, 32, 38, 82], "vertical": 43, "very": [4, 11, 19, 41, 79], "via": [3, 5, 9, 14, 19, 20, 28, 32, 34, 38, 40, 43, 45, 49, 59, 68, 71], "vibrate": 59, "video": [61, 62, 68, 71, 79], "videos": 20, "view": [6, 13, 19, 26, 35, 40, 41, 43, 49, 55, 58, 59, 62, 65, 68, 75, 82], "viewable": 40, "viewed": 20, "viewer": [50, 79], "viewers": 79, "viewing": 34, "views": 20, "virtual": [16, 81], "visibility": [14, 36, 41, 68, 81], "visible": [3, 9, 18, 20, 26, 34, 35, 41, 43, 45, 46, 65, 68], "visit": [24, 43], "visitors": 4, "vista": 19, "visual": 79, "visualized": 14, "voice": 59, "volume": 7, "vote": 40, "voted": 55, "votes": 40, "vpn": 19, "wait": 17, "waiting": [18, 38, 43, 78], "want": [1, 3, 6, 13, 17, 18, 19, 25, 27, 28, 34, 40, 41, 43, 44, 47, 49, 51, 57, 59, 65, 68, 75, 79, 81], "wants": [4, 40], "warn": [11, 43], "warning": [18, 19, 25, 40, 43], "warnings": [18, 19], "was": [8, 34, 38, 40, 43, 80, 82], "watches": 11, "way": [1, 11, 14, 18, 19, 25, 37, 40, 41, 43, 46, 53, 58, 80], "ways": [16, 55, 61], "we": [1, 4, 11, 13, 14, 17, 19, 24, 25, 30, 38, 40, 42, 43, 79], "web": [5, 6, 13, 14, 18, 19, 21, 23, 24, 27, 29, 30, 37, 40, 42, 43, 44, 72, 79], "webauthn": 80, "webclient": 19, "webdav": [21, 26, 29, 45], "webflow": [44, 45], "webinar": [72, 76], "webinars": [76, 78], "website": [42, 72], "wednesday": 40, "week": [38, 40, 68, 81], "weekly": 41, "weeks": [41, 68], "well": [10, 13, 16, 39, 40, 43, 45, 47, 61, 79], "were": [8, 23, 40, 41, 50, 56, 69], "what": [4, 11, 18, 19, 25, 26, 32, 35, 40, 56, 81], "whatever": 50, "wheel": 62, "when": [1, 4, 6, 8, 9, 10, 13, 14, 18, 19, 20, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 43, 44, 47, 49, 50, 53, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 78, 81], "whenever": 25, "where": [4, 6, 7, 8, 9, 14, 18, 34, 36, 38, 40, 41, 55, 57, 59, 68, 71, 80, 82], "whereas": 6, "wherever": 24, "whether": [8, 17, 19, 26, 36, 40, 43, 55, 59], "which": [4, 6, 8, 9, 11, 13, 14, 18, 19, 20, 23, 25, 26, 35, 38, 40, 41, 42, 43, 45, 46, 47, 49, 51, 53, 55, 57, 59, 65, 68, 79, 80, 81, 82], "while": [9, 14, 19, 40, 41, 43, 45, 55, 59, 61, 65, 70, 79], "white": 18, "whiteboards": 1, "who": [4, 5, 20, 25, 27, 34, 40, 55, 61], "whole": [14, 25, 40], "whom": 40, "wide": 81, "wider": 81, "widget": 43, "widgets": [43, 82], "wiki": 73, "wildcards": [7, 18, 43], "will": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 23, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 79, 80, 81], "window": [8, 9, 11, 14, 15, 19, 28, 45, 49, 59, 62, 71], "windows": [5, 7, 8, 12, 18, 24, 26, 42, 45], "wine": 19, "winhttp": 19, "wipe": [16, 40], "wish": [40, 43, 49, 59], "with": [1, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 23, 24, 26, 27, 28, 32, 35, 39, 42, 43, 44, 51, 53, 54, 55, 56, 59, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 76, 78, 79, 81, 82], "within": [8, 14, 16, 41, 43, 50, 58, 68, 74, 75, 81], "without": [1, 3, 11, 13, 14, 15, 18, 19, 26, 28, 34, 38, 40, 41, 43, 59, 68, 71], "wizard": [11, 13, 18], "won": [9, 13, 19, 40, 80], "words": [4, 37], "work": [9, 14, 18, 19, 25, 35, 40, 43, 44, 47, 53, 80, 81], "workflow": 82, "workflows": [1, 35], "working": [1, 46, 80], "works": [19, 25, 26, 40, 43, 45, 80], "workshops": 41, "workspace": 8, "world": 81, "worry": 14, "would": [7, 10, 19, 25, 26, 40, 43, 59, 79, 80], "wow": 4, "writable": 41, "write": [1, 2, 15, 40, 68], "writes": 15, "writing": [19, 43, 48], "written": 40, "wrong": [11, 18], "www": 50, "xing": 41, "xml": 19, "xmlhttprequest": 19, "xmlns": 19, "xp": 19, "year": [40, 82], "yellow": [9, 18, 25, 26], "yes": [25, 35, 40], "yet": [13, 14, 24, 25, 40, 41, 45, 58, 59, 62], "you": [1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 82], "your": [1, 2, 3, 5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 23, 24, 25, 27, 29, 30, 32, 35, 37, 39, 42, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 58, 59, 62, 63, 65, 69, 71, 75, 79, 82], "yourpassword": 19, "yourself": [19, 35, 40, 68, 75], "yum": 19, "zip": 20, "zoom": [5, 62], "~/": 19, "\u00b7\u00b7": 35, "\u2019d": [40, 55], "\u2019drop": 55, "\u2019ll": [1, 28, 40, 57], "\u2019n": 55, "\u2019re": [4, 11, 27, 40], "\u2019s": [3, 4, 6, 8, 13, 14, 16, 19, 20, 26, 32, 34, 36, 38, 40, 43, 44, 45, 46, 49, 57, 59, 61, 75, 80, 81, 82], "\u2019t": [4, 9, 13, 19, 25, 38, 40, 41, 43, 45, 65, 79, 80], "\u2019ve": [17, 19], "\u201cedit": 14, "\u201d.": 1, "\u2026)": 43, "\u2026.": 4, "\u2026\u300d": 19, "\u2026\u300f": 19, "\u2075,": 44, "\u2261)": 35, "\u3001*": 44, "\u3001\u300d": 44, "\u3002,": 44, "\u3002nextcloud": 52, "\u3002\u3057\u304b\u3057": 44, "\u300c+": 44, "\u300cdecrypt": 25, "\u300d)": [15, 40, 50], "\u300d,": [4, 19, 40, 49, 50, 61], "\u300d.": [4, 11, 27, 40, 43, 50, 61], "\u300d:": 19, "\u300f,": 19, "\u300f.": 19, "\u3042\u3063": 0, "\u3042\u306a\u305f": [44, 52], "\u3042\u308a": [0, 44], "\u3042\u308b": 0, "\u3044\u308b": 0, "\u304a\u3088\u3073": [0, 52], "\u304a\u308a": 0, "\u304a\u6301\u3061": 44, "\u304a\u6c17": 0, "\u304b\u3064": 52, "\u304b\u3089": [0, 44, 52], "\u304c\u3044\u3064": 0, "\u304f\u3060": 44, "\u3053\u305d": 52, "\u3053\u3068": 0, "\u3053\u306e": 0, "\u3053\u308c": 44, "\u3054\u3068": 0, "\u3055\u3044": 44, "\u3059\u3050": 52, "\u3059\u3079": [0, 52], "\u3059\u3079\u3066": [0, 52], "\u3059\u308b": [0, 52], "\u305b\u308b": 44, "\u305d\u306e": [0, 44], "\u305d\u308c\u3089": [0, 44], "\u305f\u3044": 44, "\u305f\u304b": 0, "\u305f\u304f": 44, "\u305f\u3059\u3079\u3066": 0, "\u305f\u3081": [0, 44, 52], "\u3060\u3051": 0, "\u3060\u3055\u3044": [0, 44], "\u3067\u304d": [0, 44, 52], "\u3067\u304d\u308b": 0, "\u3067\u304f": [0, 44], "\u3067\u3057\u3087": 44, "\u3067\u3059": [44, 52], "\u3068\u3044\u3046": 44, "\u3068\u304d": 44, "\u3068\u3057\u3066": 0, "\u3069\u306e": 0, "\u306a\u3044": 0, "\u306a\u3057": 0, "\u306a\u3063": 0, "\u306a\u3069": 0, "\u306a\u308a": 0, "\u306a\u308b": 44, "\u306b\u3064\u3044\u3066": 0, "\u306b\u3088\u3063\u3066": 0, "\u306b\u95a2\u3059\u308b": 0, "\u306e\u3067": 44, "\u306e\u307f": 0, "\u306f\u3058\u3081": 5, "\u306f\u3059\u3079\u3066": 0, "\u3078\u3088\u3046": 52, "\u307e\u3059": [0, 44, 52], "\u307e\u305f": [0, 44, 52], "\u307e\u3067": 52, "\u307e\u3068\u3081": 0, "\u307e\u3068\u3081\u3066": 0, "\u3082\u306e": 44, "\u3088\u3046": 0, "\u308c\u308b": [0, 44], "\u3092\u901a\u3057": 44, "\u30a2\u30a4\u30b3\u30f3": [0, 44], "\u30a2\u30ab\u30a6\u30f3\u30c8": 44, "\u30a2\u30af\u30bb\u30b9": [0, 44], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30bf\u30d6": 0, "\u30a2\u30c9\u30ec\u30b9": 44, "\u30a2\u30d7\u30ea": [0, 44, 52], "\u30a2\u30d7\u30ea\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 44, "\u30a4\u30d9\u30f3\u30c8": 0, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 0, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [0, 44], "\u30a6\u30a3\u30f3\u30c9\u30a6": 44, "\u30a8\u30f3\u30c8\u30ea": 0, "\u30aa\u30d5": 0, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 0, "\u30aa\u30d7\u30b7\u30e7\u30f3": 0, "\u30aa\u30f3": 0, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9": 52, "\u30ab\u30c6\u30b4\u30ea\u30fc": 0, "\u30ab\u30ec\u30f3\u30c0": 44, "\u30ab\u30ec\u30f3\u30c0\u30fc": 0, "\u30ab\u30ec\u30f3\u30c0\u30fc\u30a2\u30d7\u30ea": 44, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 52, "\u30af\u30ea\u30c3\u30af": 0, "\u30b0\u30eb\u30fc\u30d7": 0, "\u30b3\u30d4\u30fc": 0, "\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc": 52, "\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9": 52, "\u30b5\u30a4\u30c9\u30d0\u30fc": 5, "\u30b5\u30dd\u30fc\u30c8": 52, "\u30b5\u30de\u30ea\u30fc": 0, "\u30b5\u30de\u30ea\u30fc\u30e1\u30fc\u30eb": 0, "\u30b5\u30fc\u30d0\u30fc": [44, 52], "\u30b5\u30fc\u30d3\u30b9\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc": 52, "\u30b9\u30c6\u30c3\u30d7": 44, "\u30b9\u30c8\u30ea\u30fc\u30e0": 0, "\u30bb\u30ad\u30e5\u30a2": 52, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 52, "\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3": 52, "\u30bf\u30b0": 0, "\u30bf\u30b9\u30af": [0, 44], "\u30bf\u30c3\u30d7": 44, "\u30bf\u30d6": 0, "\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8": 0, "\u30c1\u30a7\u30c3\u30af": 0, "\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9": 0, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 52, "\u30c7\u30b9\u30af\u30c8\u30c3\u30d7": [0, 52], "\u30c7\u30d0\u30a4\u30b9": 52, "\u30c7\u30d5\u30a9\u30eb\u30c8": 0, "\u30c7\u30fc\u30bf": [44, 52], "\u30c8\u30b0\u30eb": 0, "\u30c8\u30fc\u30af\u30f3": 0, "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30d0\u30fc": 0, "\u30d0\u30fc\u30b8\u30e7\u30f3": 40, "\u30d1\u30b9\u30ef\u30fc\u30c9": 44, "\u30d5\u30a1\u30a4\u30eb": [5, 52], "\u30d5\u30a3\u30fc\u30c9": 5, "\u30d5\u30a3\u30fc\u30c9\u30ea\u30fc\u30c0\u30fc": 0, "\u30d5\u30a9\u30eb\u30c0": 0, "\u30d5\u30a9\u30eb\u30c0\u30fc": [0, 52], "\u30d6\u30e9\u30a6\u30b6": 0, "\u30d6\u30e9\u30a6\u30b6\u30fc": 5, "\u30d7\u30c3\u30b7\u30e5": 0, "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8": 52, "\u30dc\u30bf\u30f3": 44, "\u30de\u30c8\u30ea\u30c3\u30af\u30b9": 0, "\u30e2\u30d0\u30a4\u30eb": [0, 44], "\u30e6\u30fc\u30b6": [0, 44], "\u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb": 5, "\u30ea\u30b9\u30c8": 44, "\u30ea\u30f3\u30af": 0, "\u30ed\u30b0\u30a4\u30f3": 44, "\u30ed\u30fc\u30ab\u30eb": 52, "\u4e0a\u8a18": 0, "\u4e0a\u90e8": 0, "\u4e0b\u90e8": 0, "\u4ed8\u3051": 0, "\u4ed8\u4e0e": 44, "\u4efb\u610f": 0, "\u4f5c\u6210": [0, 44], "\u4f7f\u7528": [5, 52], "\u4fbf\u5229": 0, "\u500b\u4eba": [0, 52], "\u5165\u308a": 0, "\u5165\u308c\u308b": 0, "\u5165\u529b": 44, "\u5171\u6709": [0, 52], "\u518d\u5ea6": 44, "\u5229\u7528": 0, "\u524a\u9664": 0, "\u524d\u65e5": 0, "\u5354\u529b": 52, "\u53d6\u308b": 0, "\u53d7\u3051": 0, "\u53d7\u3051\u308b": 52, "\u53ef\u80fd": 44, "\u540c\u671f": [5, 42, 52], "\u540d\u524d": 0, "\u542b\u307e": 0, "\u5834\u5408": 0, "\u5834\u6240": 52, "\u5909\u66f4": [0, 40], "\u5927\u4f01\u696d": 52, "\u5b89\u5168": 52, "\u5b8c\u4e86": 44, "\u5b9f\u884c": 0, "\u5bfe\u5fdc": 0, "\u5de6\u5074": 0, "\u5f71\u97ff": 0, "\u5fc5\u8981": 44, "\u60c5\u5831": 44, "\u624b\u4f5c\u696d": 44, "\u62bc\u4e0b": 44, "\u63d0\u4f9b": [0, 52], "\u6574\u7406": 0, "\u65b0\u3057\u3044": 44, "\u65b9\u6cd5": 44, "\u65e5\u4ed8": 0, "\u65e9\u304f": 0, "\u6642\u7cfb": 0, "\u6642\u9593": 0, "\u66f4\u65b0": 0, "\u6700\u8fd1": 0, "\u6709\u52b9": 0, "\u691c\u7d22": 5, "\u6982\u8981": 0, "\u6a5f\u5668": 44, "\u6a5f\u80fd": 0, "\u6bce\u671d": 0, "\u6bce\u9031": 0, "\u6e96\u62e0": 52, "\u7121\u52b9": 0, "\u7121\u6599": 52, "\u7279\u5b9a": 0, "\u72ec\u7acb": 0, "\u7528\u901a": 0, "\u753b\u9762": 44, "\u76f4\u5f8c": 0, "\u76f4\u63a5": 0, "\u77e5\u8a2d": 0, "\u78ba\u8a8d": [0, 44], "\u79d8\u5bc6": 0, "\u79fb\u52d5": 0, "\u7a2e\u985e": 0, "\u7acb\u3061\u4e0a\u3052\u308b": 44, "\u7ba1\u7406": 52, "\u7d5e\u308a\u8fbc\u3080": 0, "\u7d71\u5408": 5, "\u7d9a\u3051": 44, "\u7f6e\u304f": 52, "\u7ffb\u8a33": 52, "\u81ea\u5206": 0, "\u81ea\u5b85": 52, "\u884c\u3044": 0, "\u884c\u304d": 44, "\u8868\u793a": [5, 44], "\u8907\u6570": 52, "\u8981\u4ef6": 5, "\u8981\u6c42": 44, "\u8a18\u8f09": 0, "\u8a18\u9332": 0, "\u8a2d\u5b9a": [5, 44], "\u8a31\u53ef": 44, "\u8a8d\u8a3c": 0, "\u8cc7\u683c": 44, "\u8cfc\u8aad": 44, "\u8d77\u304d": 0, "\u8d77\u52d5": 44, "\u8ffd\u52a0": 0, "\u8ffd\u8de1": 0, "\u9001\u4fe1": 0, "\u901a\u77e5": 5, "\u9023\u7d61": [0, 44], "\u9023\u7d61\u5148": 0, "\u9031\u9593": 0, "\u904b\u7528": 52, "\u9078\u3093": 44, "\u9078\u629e": [0, 44], "\u9589\u3058": 44, "\u958b\u3044": 0, "\u958b\u304d": [0, 44], "\u95a2\u9023": 0, "\uff08\u4f8b": 0, "\uff11\u3064\u3081": 44}, "titles": ["\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea\u306e\u4f7f\u7528", "Getting started", "Collectives", "Access Markdown files", "How to onboard your team", "\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u76ee\u6b21", "The Automatic Updater", "Using the Command-Line Client", "Configuration File", "Conflicts", "Environment Variables", "FAQ", "Desktop Client", "Installation", "macOS Virtual Files Client", "Command-Line Options", "Uninstallation", "Update channels", "Using the Synchronization Client", "Accessing Nextcloud files using WebDAV", "Accessing your files using the Nextcloud web interface", "Accessing your files", "Sharing & collaboration", "Managing deleted files", "Desktop and mobile synchronization", "Using server-side encryption", "Using external storage", "Using federation shares", "Making anonymous uploads", "Files & synchronization", "Large file uploads", "Managing your files", "Storage quota", "Security & encryption", "File sharing", "System tags", "Transfer ownership", "Using end-to-end encryption", "Version control", "Setting out-of-office messages", "Using the Calendar app", "Using the Contacts app", "Groupware", "Using the Mail app", "Android \u3068\u306e\u540c\u671f", "Synchronizing with the GNOME desktop", "Synchronizing with iOS", "Synchronizing with KDE Kontact", "Synchronizing with macOS", "Synchronizing with Thunderbird", "Synchronizing with Windows 10", "Migrate data between instances", "Nextcloud latest \u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb \u306f\u3058\u3081\u306b", "Manage connected browsers and devices", "Appearance", "Attachments", "Bots and commands", "Breakout rooms", "Calendar integration with Talk", "Joining a call", "Calls", "Call recording", "Screen sharing", "Transcription and translation", "Call layout", "Sending messages", "Chat", "Conversations", "Conversations", "Federation", "Files integration", "Join a call or chat as guest", "Talk", "Matterbridge", "Apps integrating with messages", "Interacting with messages", "For moderators", "Open conversations", "Webinar and lobby", "Universal access", "Using two-factor authentication", "Setting your preferences", "The Nextcloud web interface"], "titleterms": {"-directories": 11, "-end": 37, "-factor": 80, "-line": [7, 15], "-of": 39, "-office": 39, "-on": 49, "-one": 68, "-party": 19, "-screen": 71, "-side": 25, "-specific": 53, "-to": [37, 68], "-up": 43, "/add": 40, "2ee": 37, "2fa": 50, "about": 11, "accepting": 69, "access": [3, 34, 35, 79], "accessing": [19, 20, 21, 26], "account": [18, 43], "accounts": [18, 48], "actions": [14, 43], "activity": 20, "add": [40, 41, 43, 49], "adding": [18, 26, 34, 37, 41], "address": [41, 81], "addresses": 43, "advanced": 43, "ai": 43, "alias": 14, "all": [43, 77], "alternative": 49, "an": [4, 37, 40, 43, 69, 71, 77], "and": [13, 19, 20, 24, 34, 35, 40, 41, 43, 53, 56, 58, 59, 63, 65, 68, 71, 78, 79, 82], "android": 44, "anonymous": 28, "answer": 19, "app": [23, 40, 41, 43], "appearance": 54, "applications": 80, "appointment": 40, "appointments": 40, "apps": 74, "archive": 68, "are": [11, 23], "as": 71, "assign": 40, "assigning": 35, "at": 41, "attachments": [40, 55], "attempting": 11, "attendees": 40, "audio": 59, "authentication": 80, "automated": 40, "automatic": [6, 43], "automation": 43, "autoresponder": 43, "autoresponders": 43, "availability": 40, "backends": 26, "background": 25, "backgrounds": 59, "ban": 68, "basic": 6, "be": 25, "being": 11, "between": 51, "bin": 40, "birthday": 40, "blocks": 43, "body": 43, "book": 81, "booked": 40, "booking": 40, "books": 41, "bots": 56, "breakout": [57, 59], "browser": 59, "browsers": 53, "browsing": 35, "busy": 40, "by": 35, "calendar": [40, 43, 46, 50, 58], "calendars": [40, 49], "call": [59, 61, 63, 64, 71], "calls": 60, "can": [25, 81], "card": 74, "cardbook": 49, "change": [11, 25, 26, 43], "changes": [11, 53], "channels": 17, "chat": [54, 55, 65, 66, 71, 74], "checking": 40, "client": [7, 12, 14, 18, 59, 80], "clients": [19, 24, 59], "cloud": 27, "codes": 80, "collaboration": 22, "collectives": [1, 2], "color": 43, "command": [7, 15, 19], "commands": 56, "comments": 20, "compact": [43, 54], "compose": 43, "composer": 43, "conditions": 43, "configuration": [8, 14, 40], "configure": 57, "configuring": [18, 80], "conflict": 14, "conflicts": 9, "connected": 53, "connecting": 20, "consent": 61, "considerations": 80, "contact": 41, "contacts": [41, 43, 46, 49, 50], "context": 14, "continuously": 11, "control": 38, "controlling": 59, "controls": 20, "conversation": [40, 68, 75, 77], "conversations": [54, 67, 68, 77], "create": [4, 40, 41, 43, 74], "creates": 4, "creating": [19, 20, 27, 34, 35, 40, 68, 77], "credential": 7, "credits": 50, "curl": 19, "cyberduck": 19, "dashboard": [43, 68, 82], "data": [51, 81], "deck": 74, "deeper": 11, "delegation": 43, "delete": [40, 43], "deleted": 23, "deleting": 38, "deletion": 43, "desktop": [12, 18, 19, 24, 45, 59], "details": 20, "detection": [26, 43], "device": [37, 53], "devices": 53, "disable": 25, "disabled": 25, "disk": 10, "display": 43, "displaying": 37, "disposable": 68, "dolphin": 19, "download": [13, 59], "downloaded": 14, "drives": 19, "drop": 28, "duplicate": [40, 41], "during": 59, "edit": [11, 40, 41, 43], "editing": [40, 75], "editor": 18, "email": [27, 71], "emoji": 65, "enable": [11, 43], "enabling": 37, "encrypted": 25, "encrypting": 37, "encryption": [25, 33, 37], "end": 37, "envelope": 43, "environment": 10, "environments": 6, "even": 11, "event": [40, 43], "events": [40, 58], "everyone": 4, "example": [7, 9], "exclude": 7, "experimental": 9, "expiration": 68, "explorer": 19, "export": 40, "extensions": 14, "external": 26, "factor": 80, "faq": [11, 25], "favorites": 43, "features": 14, "federated": [27, 34, 40], "federation": [20, 27, 34, 69], "file": [8, 14, 18, 19, 20, 26, 28, 30, 34], "files": [3, 11, 14, 18, 19, 20, 21, 23, 25, 26, 28, 29, 31, 35, 55, 70], "filter": [43, 68], "filtering": [20, 43], "finder": 14, "first": [1, 4], "folder": [11, 37, 43], "folders": [11, 20], "follow": 43, "for": [40, 43, 76], "from": [18, 26, 43, 58, 70, 74], "full": [59, 71], "functionality": 11, "general": [16, 18], "getting": 1, "global": 81, "gnome": 45, "grid": [20, 64], "group": [25, 68], "groups": [34, 41], "groupware": 42, "guest": 71, "hand": 59, "handling": 7, "happens": 23, "hardware": 80, "holiday": 40, "hours": 40, "how": [4, 11, 23, 25, 43], "icon": 18, "icons": [18, 20], "ics": 40, "if": 80, "ignored": 18, "immediately": 59, "import": 40, "importing": 41, "in": [6, 11, 43, 55, 75, 80, 81], "inbox": 43, "inboxes": 43, "included": 79, "indicators": 14, "info": 43, "information": 41, "initial": 13, "inserting": 65, "install": [7, 13], "installation": 13, "instances": 51, "instructions": 16, "integrating": 74, "integration": [14, 43, 58, 70], "interacting": 75, "interface": [11, 20, 82], "internal": [34, 43], "into": 74, "introduction": 4, "introductions": 4, "invitation": [43, 69], "invitations": [40, 43], "invite": 40, "ios": 46, "is": 25, "issues": [14, 19], "it": [11, 25], "items": 41, "job": 25, "join": [59, 71], "joining": [59, 71], "junk": 43, "kde": [19, 47], "keep": 14, "key": 25, "keyboard": [43, 79], "known": [14, 19], "kontact": 47, "language": 11, "large": 30, "latest": 52, "layout": [43, 64], "levels": 35, "like": 11, "line": 19, "link": 34, "linux": [6, 11, 13, 16, 19], "list": [7, 43, 54, 59], "live": 63, "lobby": 78, "local": 11, "locally": 11, "locking": 14, "logging": 80, "login": 25, "lose": 80, "low": 10, "macos": [6, 13, 14, 16, 18, 19, 48], "mail": 43, "mailing": 43, "making": 28, "manage": [53, 57, 61], "manager": [18, 19], "manages": 23, "managing": [23, 31, 35, 40, 41, 43, 53, 68], "manually": 41, "mapping": 19, "markdown": [3, 65], "matterbridge": 73, "meeting": [40, 43], "meetings": 58, "members": 41, "mention": 43, "menu": 14, "merging": 41, "message": [43, 74], "messages": [39, 43, 54, 65, 68, 74, 75], "method": 49, "microsoft": 19, "migrate": 51, "minimize": 43, "mnemonic": 37, "mobile": [19, 24, 59], "modal": 43, "mode": 43, "moderators": 76, "modified": 11, "more": 65, "mounts": 19, "move": [11, 25, 43], "moving": 20, "multiple": 41, "my": 11, "naming": 38, "nautilus": 19, "navigating": [20, 79, 82], "network": 18, "new": [18, 27, 34, 40, 43], "next": [1, 25], "nextcloud": [18, 19, 20, 34, 44, 52, 82], "not": [11, 25], "note": 68, "notifications": [40, 68], "of": [11, 54], "official": 19, "on": [11, 13, 18, 19, 43, 75], "onboard": 4, "one": 68, "only": 49, "open": 77, "operation": 43, "options": [15, 40, 41], "or": [20, 25, 40, 41, 59, 71], "order": 43, "organize": 41, "other": 71, "others": 34, "our": 4, "out": 39, "outbox": 43, "over": 19, "overlay": 18, "overview": 9, "own": [4, 26, 28], "ownership": 36, "page": 4, "parent": 4, "participants": [59, 68], "password": [25, 53], "passwords": 53, "phishing": 43, "picker": 65, "picture": 41, "pinning": 75, "planned": 25, "player": 20, "polls": 55, "possible": 25, "preferences": 81, "preventing": 6, "previewing": 20, "priority": 43, "privacy": 68, "private": [25, 68], "problem": 19, "problems": 19, "profile": [81, 82], "progress": 40, "project": 4, "proposal": 40, "proposals": 40, "proposed": 40, "public": [19, 34], "publishing": 40, "quick": 43, "quota": 32, "quotas": 23, "raise": 59, "reactions": 59, "recipient": 43, "recommended": 49, "record": 59, "recording": 61, "recovery": [25, 80], "recurring": 40, "refresh": 43, "reliably": 11, "reminder": 75, "reminders": [40, 43], "remove": 41, "replies": 43, "replying": 65, "requirements": 13, "resources": 40, "responding": 40, "responsiveness": 79, "restrict": 81, "roles": 41, "room": 40, "rooms": [40, 57, 59], "rss": 0, "schedule": 58, "scheduled": 43, "scheduling": 65, "screen": [59, 62, 71], "search": [43, 75], "searching": 20, "second": 80, "security": [33, 43], "see": 81, "selecting": 20, "self": 68, "sending": [65, 69], "server": [11, 13, 25], "set": [18, 40, 59], "setting": [28, 39, 75, 81], "settings": [18, 43, 71, 82], "setup": [13, 48], "share": [20, 27, 34, 71, 74], "shared": [23, 41, 43], "shares": [19, 27, 34], "sharing": [14, 18, 20, 22, 25, 26, 34, 40, 55, 62, 81], "shortcuts": 43, "sidebar": 20, "silent": 65, "smart": [43, 65], "snooze": 43, "solution": 19, "some": 11, "sort": 43, "space": [10, 23], "speaker": 64, "start": 59, "started": 1, "starting": [59, 71], "status": [14, 18, 20, 40], "step": 4, "steps": 1, "stops": 11, "storage": [23, 26, 32], "sub": 11, "subfolder": 43, "subscribe": 40, "summary": [43, 65], "supported": [13, 14, 26], "switch": 43, "sync": [11, 14], "synchronization": [18, 24, 29], "synchronized": 11, "synchronizing": [45, 46, 47, 48, 49, 50], "syncing": 11, "system": [13, 35], "systray": 18, "tag": 35, "tags": [35, 43], "talk": [40, 58, 59, 68, 70, 72], "task": 43, "tasks": 74, "team": [4, 41], "teams": 41, "template": 4, "text": 43, "than": 11, "the": [6, 7, 11, 18, 19, 20, 23, 25, 37, 40, 41, 43, 45, 49, 59, 81, 82], "their": 4, "themes": 79, "there": 11, "they": 11, "third": 19, "this": 25, "thread": 43, "threaded": 75, "thunderbird": 49, "time": 41, "times": 40, "tlsv": 50, "to": [4, 11, 20, 25, 34, 35, 40, 41, 43, 65, 68], "together": 4, "tokens": 80, "tracked": 11, "transcription": 63, "transfer": 36, "translation": [43, 63], "transparency": 40, "trash": [40, 43], "troubleshooting": [48, 50], "two": 80, "unified": 43, "uninstallation": 16, "universal": 79, "unsubscribe": 43, "up": [28, 40, 43, 59], "update": 17, "updater": 6, "updates": 6, "uploaded": 11, "uploading": [9, 20, 28], "uploads": [28, 30], "usage": 7, "use": [1, 43], "user": [11, 18, 25, 40], "users": 34, "using": [7, 18, 19, 20, 25, 26, 27, 37, 40, 41, 43, 49, 65, 80], "variables": 10, "version": 38, "versions": 13, "via": [27, 79], "video": [20, 59], "view": [20, 54, 64, 77], "viewing": 40, "virtual": [14, 18, 41], "want": 11, "warning": 11, "was": 11, "web": [20, 82], "webdav": 19, "webinar": 78, "what": [1, 23], "when": [11, 23], "who": 81, "why": 1, "widget": 40, "window": 18, "windows": [6, 11, 13, 16, 19, 50], "winscp": 19, "with": [19, 25, 34, 40, 41, 45, 46, 47, 48, 49, 50, 58, 74, 75, 80], "without": 25, "workflow": 6, "working": 40, "works": 11, "would": 11, "you": 80, "your": [4, 18, 20, 21, 26, 28, 31, 34, 40, 41, 43, 48, 68, 80, 81], "zoom": 79, "\u2019s": [1, 25], "\u201d-": 4, "\u3059\u308b": 44, "\u306a\u3044": 44, "\u306f\u3058\u3081": 52, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b5\u30de\u30ea\u30fc": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0": 0, "\u30ab\u30ec\u30f3\u30c0\u30fc": 44, "\u30b3\u30f3\u30c6\u30f3\u30c4": 5, "\u30b5\u30a4\u30c9\u30d0\u30fc": 0, "\u30d5\u30a1\u30a4\u30eb": [0, 44], "\u30d5\u30a3\u30eb\u30bf\u30fc": 0, "\u30d5\u30a3\u30fc\u30c9": 0, "\u30d6\u30e9\u30a6\u30b6\u30fc": 82, "\u30e1\u30fc\u30eb": 0, "\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea": 44, "\u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb": 52, "\u4f7f\u7528": 0, "\u5229\u7528": 44, "\u540c\u671f": 44, "\u5834\u5408": 44, "\u691c\u7d22": 82, "\u6bce\u65e5": 0, "\u76ee\u6b21": 5, "\u7d71\u5408": 82, "\u8868\u793a": 0, "\u8981\u4ef6": 82, "\u8a2d\u5b9a": 0, "\u901a\u77e5": [0, 44], "\u9023\u7d61\u5148": 44, "\u983b\u5ea6": 0}}) \ No newline at end of file +Search.setIndex({"alltitles": {"1. Private (one-to-one) conversations": [[68, "private-one-to-one-conversations"]], "2. Group conversations": [[68, "group-conversations"]], "3. Note to self": [[68, "note-to-self"]], "4. Disposable conversations": [[68, "disposable-conversations"]], "AI summary": [[43, "ai-summary"]], "Accepting an invitation": [[69, "accepting-an-invitation"]], "Access Markdown files": [[3, null]], "Accessing Nextcloud files using WebDAV": [[19, null]], "Accessing external storage": [[26, "accessing-external-storage"]], "Accessing files using Cyberduck": [[19, "accessing-files-using-cyberduck"]], "Accessing files using Linux": [[19, "accessing-files-using-linux"]], "Accessing files using Microsoft Windows": [[19, "accessing-files-using-microsoft-windows"]], "Accessing files using WinSCP": [[19, "accessing-files-using-winscp"]], "Accessing files using cURL": [[19, "accessing-files-using-curl"]], "Accessing files using macOS": [[19, "accessing-files-using-macos"]], "Accessing files with KDE and Dolphin": [[19, "accessing-files-with-kde-and-dolphin"]], "Accessing public shares over WebDAV": [[19, "accessing-public-shares-over-webdav"]], "Accessing your files using the Nextcloud web interface": [[20, null]], "Account delegation": [[43, "account-delegation"]], "Account settings": [[43, "account-settings"]], "Actions": [[43, "actions"]], "Activity and comments": [[20, "activity-and-comments"]], "Add Talk conversation": [[40, "add-talk-conversation"]], "Add a folder": [[43, "add-a-folder"]], "Add a new mail account": [[43, "add-a-new-mail-account"]], "Add a subfolder": [[43, "add-a-subfolder"]], "Add attachments to events": [[40, "add-attachments-to-events"]], "Add members to a team": [[41, "add-members-to-a-team"]], "Add recurring options": [[40, "add-recurring-options"]], "Adding Contacts": [[41, "adding-contacts"]], "Adding Contacts Manually": [[41, "adding-contacts-manually"]], "Adding New Accounts": [[18, "adding-new-accounts"]], "Adding a public share to your Nextcloud": [[34, "adding-a-public-share-to-your-nextcloud"]], "Adding an E2EE device": [[37, "adding-an-e2ee-device"]], "Adding and Managing Address Books": [[41, "adding-and-managing-address-books"]], "Adding your own external storage": [[26, "adding-your-own-external-storage"]], "Advanced search in folder": [[43, "advanced-search-in-folder"]], "Alias files": [[14, "alias-files"]], "All inboxes": [[43, "all-inboxes"]], "Alternative: Using the CardBook add-on (Contacts only)": [[49, "alternative-using-the-cardbook-add-on-contacts-only"]], "Android \u3068\u306e\u540c\u671f": [[44, null]], "Answer": [[19, "answer"]], "Appearance": [[54, null]], "Appointments": [[40, "appointments"]], "Apps integrating with messages": [[74, null]], "Archive conversations": [[68, "archive-conversations"]], "Assign rooms and resources to an event": [[40, "assign-rooms-and-resources-to-an-event"]], "Assigning tags to files": [[35, "assigning-tags-to-files"]], "Attachments": [[55, null]], "Automated User Status": [[40, "automated-user-status"]], "Automatic trash deletion": [[43, "automatic-trash-deletion"]], "Autoresponders": [[43, "autoresponders"]], "Availability (Working Hours)": [[40, "availability-working-hours"]], "Backgrounds": [[59, "backgrounds"]], "Ban participants": [[68, "ban-participants"]], "Basic Workflow": [[6, "basic-workflow"]], "Birthday calendar": [[40, "birthday-calendar"]], "Booking an appointment": [[40, "booking-an-appointment"]], "Bots": [[56, "bots"]], "Bots and commands": [[56, null]], "Breakout rooms": [[57, null]], "Browser and Talk Desktop client": [[59, "browser-and-talk-desktop-client"]], "Browsing files by tag": [[35, "browsing-files-by-tag"]], "Calendar": [[46, "calendar"], [50, "calendar"]], "Calendar Transparency": [[40, "calendar-transparency"]], "Calendar Widget": [[40, "calendar-widget"]], "Calendar integration": [[43, "calendar-integration"]], "Calendar integration with Talk": [[58, null]], "Calendars": [[49, "calendars"]], "Call layout": [[64, null]], "Call live transcription": [[63, "call-live-transcription"]], "Call recording": [[61, null]], "Calls": [[60, null]], "Can encryption be disabled without the user\u2019s password?": [[25, "can-encryption-be-disabled-without-the-user-s-password"]], "Change color for tags": [[43, "change-color-for-tags"]], "Change private key password": [[25, "change-private-key-password"]], "Change sort order": [[43, "change-sort-order"]], "Chat": [[66, null]], "Chat messages": [[54, "chat-messages"]], "Chat summary": [[65, "chat-summary"]], "Checking attendees\u300f busy times": [[40, "checking-attendees-busy-times"]], "Collectives": [[2, null]], "Command-Line Options": [[15, null]], "Commands": [[56, "commands"]], "Compact view of conversations list": [[54, "compact-view-of-conversations-list"]], "Compose messages": [[43, "compose-messages"]], "Conditions": [[43, "conditions"]], "Configuration": [[14, "configuration"]], "Configuration File": [[8, null]], "Configure breakout rooms": [[57, "configure-breakout-rooms"]], "Configuring Nextcloud Account Settings": [[18, "configuring-nextcloud-account-settings"]], "Configuring two-factor authentication": [[80, "configuring-two-factor-authentication"]], "Conflicts": [[9, null]], "Connecting to a Federation Share": [[20, "connecting-to-a-federation-share"]], "Considerations": [[80, "considerations"]], "Contact Picture": [[41, "contact-picture"]], "Contacts": [[46, "contacts"], [49, "contacts"], [50, "contacts"]], "Context menu actions": [[14, "context-menu-actions"]], "Controlling audio and video": [[59, "controlling-audio-and-video"], [59, "id1"]], "Conversations": [[67, null], [68, null]], "Create Talk room for booked appointments": [[40, "create-talk-room-for-booked-appointments"]], "Create a filter from a message": [[43, "create-a-filter-from-a-message"]], "Create a new Calendar": [[40, "create-a-new-calendar"]], "Create a new event": [[40, "create-a-new-event"]], "Create a task": [[43, "create-a-task"]], "Create a team": [[41, "create-a-team"]], "Create an event": [[43, "create-an-event"]], "Create tasks from chat message": [[74, "create-tasks-from-chat-message"]], "Creating WebDAV mounts on the Linux command line": [[19, "creating-webdav-mounts-on-the-linux-command-line"]], "Creating a conversation": [[68, "creating-a-conversation"]], "Creating a new federated cloud share via email": [[27, "creating-a-new-federated-cloud-share-via-email"]], "Creating a new federation share": [[27, "creating-a-new-federation-share"], [34, "creating-a-new-federation-share"]], "Creating a proposal": [[40, "creating-a-proposal"]], "Creating an appointment configuration": [[40, "creating-an-appointment-configuration"]], "Creating an open conversation": [[77, "creating-an-open-conversation"]], "Creating and managing tags": [[35, "creating-and-managing-tags"]], "Credential Handling": [[7, "credential-handling"]], "Credits": [[50, "credits"]], "Dashboard integration": [[43, "dashboard-integration"]], "Deck": [[74, "deck"]], "Delete tags": [[43, "delete-tags"]], "Deleting a version": [[38, "deleting-a-version"]], "Desktop Client": [[12, null]], "Desktop and mobile synchronization": [[24, null]], "Details sidebar": [[20, "details-sidebar"]], "Device-specific passwords and password changes": [[53, "device-specific-passwords-and-password-changes"]], "Displaying the mnemonic": [[37, "displaying-the-mnemonic"]], "Download": [[13, "download"]], "Download call participants list": [[59, "download-call-participants-list"]], "During a call": [[59, "during-a-call"]], "Edit or Remove Contact Information": [[41, "edit-or-remove-contact-information"]], "Edit tags": [[43, "edit-tags"]], "Edit, Export or Delete a Calendar": [[40, "edit-export-or-delete-a-calendar"]], "Edit, duplicate or delete an event": [[40, "edit-duplicate-or-delete-an-event"]], "Editing a proposal": [[40, "editing-a-proposal"]], "Editing messages": [[75, "editing-messages"]], "Enable mail body search": [[43, "enable-mail-body-search"]], "Enabling E2EE": [[37, "enabling-e2ee"]], "Encrypting a folder": [[37, "encrypting-a-folder"]], "Encryption FAQ": [[25, "encryption-faq"]], "Envelope actions": [[43, "envelope-actions"]], "Environment Variables": [[10, null]], "Example": [[7, "example"], [9, "example"]], "Exclude List": [[7, "exclude-list"]], "FAQ": [[11, null]], "Federated calendar sharing": [[40, "federated-calendar-sharing"]], "Federated shares": [[34, "federated-shares"]], "Federation": [[69, null]], "File Manager Overlay Icons": [[18, "file-manager-overlay-icons"]], "File actions": [[14, "file-actions"]], "File change detection": [[26, "file-change-detection"]], "File controls": [[20, "file-controls"]], "File sharing": [[34, null]], "Files integration": [[70, null]], "Files not encrypted": [[25, "files-not-encrypted"]], "Filter": [[43, "filter"]], "Filter your conversations": [[68, "filter-your-conversations"]], "Filtering and autoresponder": [[43, "filtering-and-autoresponder"]], "Finder integration": [[14, "finder-integration"]], "First steps": [[1, "first-steps"]], "Folder actions": [[43, "folder-actions"]], "Follow-up reminders": [[43, "follow-up-reminders"]], "For moderators": [[76, null]], "Full screen": [[59, "full-screen"]], "Full-screen and other settings": [[71, "full-screen-and-other-settings"]], "General Window": [[18, "general-window"]], "General instructions": [[16, "general-instructions"]], "Getting started": [[1, null]], "Grid view": [[20, "grid-view"], [64, "grid-view"]], "Groupware": [[42, null]], "How can encryption be disabled?": [[25, "how-can-encryption-be-disabled"]], "How the deleted files app manages storage space": [[23, "how-the-deleted-files-app-manages-storage-space"]], "How the \u300cEdit locally\u300d functionality works": [[11, "how-the-edit-locally-functionality-works"]], "How to Add a New Filter": [[43, "how-to-add-a-new-filter"]], "How to Delete a Filter": [[43, "how-to-delete-a-filter"]], "How to enable it": [[11, "how-to-enable-it"]], "How to onboard your team": [[4, null]], "I Want To Move My Local Sync Folder": [[11, "i-want-to-move-my-local-sync-folder"]], "I would like to change the language of the user interface": [[11, "i-would-like-to-change-the-language-of-the-user-interface"]], "Immediately join a call": [[59, "immediately-join-a-call"]], "Import a Calendar": [[40, "import-a-calendar"]], "Import an Event/Add .ics Event": [[40, "import-an-event-add-ics-event"]], "Importing Virtual Contacts": [[41, "importing-virtual-contacts"]], "Included themes": [[79, "included-themes"]], "Initial Setup": [[13, "initial-setup"]], "Inserting emoji": [[65, "inserting-emoji"]], "Install": [[7, "install"]], "Install on Linux": [[13, "install-on-linux"]], "Install on macOS and Windows": [[13, "install-on-macos-and-windows"]], "Installation": [[13, null]], "Interacting with messages": [[75, null]], "Internal addresses": [[43, "internal-addresses"]], "Internal shares with users and groups": [[34, "internal-shares-with-users-and-groups"]], "Invite attendees to an event": [[40, "invite-attendees-to-an-event"]], "Is group sharing possible with the recovery key?": [[25, "is-group-sharing-possible-with-the-recovery-key"]], "Is it planned to move this to the next user login or a background job?": [[25, "is-it-planned-to-move-this-to-the-next-user-login-or-a-background-job"]], "Is it possible to disable encryption with the recovery key?": [[25, "is-it-possible-to-disable-encryption-with-the-recovery-key"]], "Join a call or chat as guest": [[71, null]], "Joining a call": [[59, null], [71, "joining-a-call"]], "Joining a chat": [[71, "joining-a-chat"]], "Joining as an email guest": [[71, "joining-as-an-email-guest"]], "Keep Downloaded": [[14, "keep-downloaded"]], "Keyboard shortcuts": [[43, "keyboard-shortcuts"]], "Known issues": [[14, "known-issues"], [19, "known-issues"]], "Known problems": [[19, "known-problems"]], "Large file uploads": [[30, null]], "Linux": [[6, "linux"], [16, "linux"]], "Live translation": [[63, "live-translation"]], "Locking": [[14, "locking"]], "Logging in with two-factor authentication": [[80, "logging-in-with-two-factor-authentication"]], "Low Disk Space": [[10, "low-disk-space"]], "Mail translation": [[43, "mail-translation"]], "Making anonymous uploads": [[28, null]], "Manage a recording": [[61, "manage-a-recording"]], "Manage breakout rooms": [[57, "manage-breakout-rooms"]], "Manage connected browsers and devices": [[53, null]], "Managing Events": [[40, "managing-events"]], "Managing a conversation": [[68, "managing-a-conversation"]], "Managing connected browsers": [[53, "managing-connected-browsers"]], "Managing deleted files": [[23, null]], "Managing devices": [[53, "managing-devices"]], "Managing multiple Contacts at a time": [[41, "managing-multiple-contacts-at-a-time"]], "Managing proposals": [[40, "managing-proposals"]], "Managing your calendars": [[40, "managing-your-calendars"]], "Managing your files": [[31, null]], "Managing your mail account": [[43, "managing-your-mail-account"]], "Mapping drives with Windows Explorer": [[19, "mapping-drives-with-windows-explorer"]], "Mapping drives with the command line": [[19, "mapping-drives-with-the-command-line"]], "Matterbridge": [[73, null]], "Meeting invitation automation": [[43, "meeting-invitation-automation"]], "Meeting invitations": [[43, "meeting-invitations"]], "Meetings and events": [[58, "meetings-and-events"]], "Mention contacts": [[43, "mention-contacts"]], "Merging duplicate Contacts": [[41, "merging-duplicate-contacts"]], "Message Display / Operation Mode": [[43, "message-display-operation-mode"]], "Message actions": [[43, "message-actions"]], "Messages expiration": [[68, "messages-expiration"]], "Messages search in a conversation": [[75, "messages-search-in-a-conversation"]], "Migrate data between instances": [[51, null]], "Minimize the composer modal": [[43, "minimize-the-composer-modal"]], "Mobile clients": [[24, "mobile-clients"], [59, "mobile-clients"]], "Move messages to Junk folder": [[43, "move-messages-to-junk-folder"]], "Moving files": [[20, "moving-files"]], "Naming a version": [[38, "naming-a-version"]], "Nautilus file manager": [[19, "nautilus-file-manager"]], "Navigating the interface": [[82, "navigating-the-interface"]], "Navigating via keyboard": [[79, "navigating-via-keyboard"]], "Navigating your files": [[20, "navigating-your-files"]], "Nextcloud latest \u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb \u306f\u3058\u3081\u306b": [[52, null]], "Nextcloud \u306e\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea\u3092\u5229\u7528\u3057\u306a\u3044\u5834\u5408": [[44, "without-the-nextcloud-mobile-app"]], "Nextcloud \u306e\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea\u3092\u5229\u7528\u3059\u308b\u5834\u5408": [[44, "with-the-nextcloud-mobile-app"]], "Notifications and privacy": [[68, "notifications-and-privacy"]], "Notifications for a proposed meeting": [[40, "notifications-for-a-proposed-meeting"]], "Official Nextcloud desktop and mobile clients": [[19, "official-nextcloud-desktop-and-mobile-clients"]], "On Linux": [[11, "on-linux"]], "On Windows": [[11, "on-windows"]], "Open conversations": [[77, null]], "Organize your Contacts with Contact Groups": [[41, "organize-your-contacts-with-contact-groups"]], "Others with access": [[34, "others-with-access"]], "Our first project: Introductions": [[4, "our-first-project-introductions"]], "Outbox": [[43, "outbox"]], "Overview": [[9, "overview"]], "Phishing detection": [[43, "phishing-detection"]], "Pinning messages": [[75, "pinning-messages"]], "Polls in chat": [[55, "polls-in-chat"]], "Preventing Automatic Updates": [[6, "preventing-automatic-updates"]], "Preventing Automatic Updates in Linux Environments": [[6, "preventing-automatic-updates-in-linux-environments"]], "Preventing Automatic Updates in Windows Environments": [[6, "preventing-automatic-updates-in-windows-environments"]], "Previewing files": [[20, "previewing-files"]], "Priority inbox": [[43, "priority-inbox"]], "Problem": [[19, "problem"], [19, "id1"], [19, "id3"], [19, "id5"], [19, "id6"], [19, "id8"], [19, "id9"], [19, "id11"]], "Proposals": [[40, "proposals"]], "Public link shares": [[34, "public-link-shares"]], "Publishing a calendar": [[40, "publishing-a-calendar"]], "Quick actions": [[43, "quick-actions"]], "Quotas": [[23, "quotas"]], "RSS \u30d5\u30a3\u30fc\u30c9": [[0, "rss-feed"]], "Raise hand": [[59, "raise-hand"]], "Reactions": [[59, "reactions"]], "Recipient info on composer": [[43, "recipient-info-on-composer"]], "Recommended method": [[49, "recommended-method"]], "Record a call": [[59, "record-a-call"]], "Recording consent": [[61, "recording-consent"]], "Recovery codes if you lose your second factor": [[80, "recovery-codes-if-you-lose-your-second-factor"]], "Recovery key password": [[25, "recovery-key-password"]], "Refresh folder": [[43, "refresh-folder"]], "Replying to messages and more": [[65, "replying-to-messages-and-more"]], "Responding to a proposed meeting": [[40, "responding-to-a-proposed-meeting"]], "Responding to invitations": [[40, "responding-to-invitations"]], "Restrict who can see your profile data": [[81, "restrict-who-can-see-your-profile-data"]], "Room availability": [[40, "room-availability"]], "Schedule from Calendar": [[58, "schedule-from-calendar"]], "Scheduled messages": [[43, "scheduled-messages"]], "Scheduling messages": [[65, "scheduling-messages"]], "Screen sharing": [[62, null]], "Search in folder": [[43, "search-in-folder"]], "Searching and filtering": [[20, "searching-and-filtering"]], "Security": [[43, "security"]], "Security & encryption": [[33, null]], "Selecting files or folders": [[20, "selecting-files-or-folders"]], "Sending an invitation": [[69, "sending-an-invitation"]], "Sending messages": [[65, null]], "Set the user status": [[18, "set-the-user-status"]], "Set up breakout rooms": [[59, "set-up-breakout-rooms"]], "Set up reminders": [[40, "set-up-reminders"]], "Setting out-of-office messages": [[39, null]], "Setting reminder on messages": [[75, "setting-reminder-on-messages"]], "Setting up your own file drop": [[28, "setting-up-your-own-file-drop"]], "Setting your preferences": [[81, null]], "Settings and profile": [[82, "settings-and-profile"]], "Setup your Accounts": [[48, "setup-your-accounts"]], "Share card into a chat": [[74, "share-card-into-a-chat"]], "Shared folder": [[43, "shared-folder"]], "Shared items": [[41, "shared-items"]], "Sharing": [[14, "sharing"]], "Sharing & collaboration": [[22, null]], "Sharing From Your Desktop": [[18, "sharing-from-your-desktop"]], "Sharing calendars": [[40, "sharing-calendars"]], "Sharing encrypted files": [[25, "sharing-encrypted-files"]], "Sharing files from external storage": [[26, "sharing-files-from-external-storage"]], "Sharing files in a chat": [[55, "sharing-files-in-a-chat"]], "Sharing status icons": [[20, "sharing-status-icons"]], "Sharing your data in the global address book": [[81, "sharing-your-data-in-the-global-address-book"]], "Silent messages": [[65, "silent-messages"]], "Smart Picker": [[65, "smart-picker"]], "Smart replies": [[43, "smart-replies"]], "Snooze": [[43, "snooze"]], "Solution": [[19, "solution"], [19, "id2"], [19, "id4"], [19, "id7"], [19, "id10"], [19, "id12"]], "Solution 1": [[19, "solution-1"]], "Solution 2": [[19, "solution-2"]], "Some Files Are Continuously Uploaded to the Server, Even When They Are Not Modified.": [[11, "some-files-are-continuously-uploaded-to-the-server-even-when-they-are-not-modified"]], "Sort favorites up": [[43, "sort-favorites-up"]], "Speaker view": [[64, "speaker-view"]], "Start the call": [[59, "start-the-call"]], "Starting a screen share": [[71, "starting-a-screen-share"]], "Starting or joining a call": [[59, "starting-or-joining-a-call"]], "Step 1: Create an \u201cIntroductions\u201d parent page \ud83d\udcc3": [[4, "step-1-create-an-introductions-parent-page"]], "Step 2: Create an \u201cIntroduction\u201d-template together \ud83d\udc65": [[4, "step-2-create-an-introduction-template-together"]], "Step 3: Everyone creates their own! \ud83d\udcab": [[4, "step-3-everyone-creates-their-own"]], "Storage quota": [[32, null]], "Subscribe to a Calendar": [[40, "subscribe-to-a-calendar"]], "Subscribe to a Holiday Calendar": [[40, "subscribe-to-a-holiday-calendar"]], "Supported backends": [[26, "supported-backends"]], "Supported features": [[14, "supported-features"]], "Supported server versions": [[13, "supported-server-versions"]], "Switch layout": [[43, "switch-layout"]], "Sync status indicators": [[14, "sync-status-indicators"]], "Synchronizing with KDE Kontact": [[47, null]], "Synchronizing with Thunderbird": [[49, null]], "Synchronizing with Windows 10": [[50, null]], "Synchronizing with iOS": [[46, null]], "Synchronizing with macOS": [[48, null]], "Synchronizing with the GNOME desktop": [[45, null]], "Syncing Stops When Attempting To Sync Deeper Than 100 Sub-directories.": [[11, "syncing-stops-when-attempting-to-sync-deeper-than-100-sub-directories"]], "System Requirements": [[13, "system-requirements"]], "System tags": [[35, null]], "Systray Icon": [[18, "systray-icon"]], "Tag access levels": [[35, "tag-access-levels"]], "Talk": [[72, null]], "Talk Dashboard": [[68, "talk-dashboard"]], "Talk from Files": [[70, "talk-from-files"]], "Team options": [[41, "team-options"]], "Team roles": [[41, "team-roles"]], "Teams": [[41, "teams"]], "Text blocks": [[43, "text-blocks"]], "The Automatic Updater": [[6, null]], "The Dashboard": [[82, "the-dashboard"]], "The Nextcloud web interface": [[82, null]], "There Was A Warning About Changes In Synchronized Folders Not Being Tracked Reliably.": [[11, "there-was-a-warning-about-changes-in-synchronized-folders-not-being-tracked-reliably"]], "Third-party WebDAV clients": [[19, "third-party-webdav-clients"]], "Thread summary": [[43, "thread-summary"]], "Threaded messages": [[75, "threaded-messages"]], "Transcription and translation": [[63, null]], "Transfer ownership": [[36, null]], "Trash bin": [[40, "trash-bin"]], "Troubleshooting": [[48, "troubleshooting"]], "Troubleshooting: 2FA": [[50, "troubleshooting-2fa"]], "Troubleshooting: TLSv1.2": [[50, "troubleshooting-tlsv1-2"]], "Unified search": [[43, "unified-search"]], "Uninstallation": [[16, null]], "Universal access": [[79, null]], "Unsubscribe from a mailing list": [[43, "unsubscribe-from-a-mailing-list"]], "Update channels": [[17, null]], "Uploading and creating files": [[20, "uploading-and-creating-files"]], "Uploading conflicts (experimental)": [[9, "uploading-conflicts-experimental"]], "Uploading files": [[28, "uploading-files"]], "Usage": [[7, "usage"]], "Use Compact Mode": [[43, "use-compact-mode"]], "Using Markdown": [[65, "using-markdown"]], "Using client applications with two-factor authentication": [[80, "using-client-applications-with-two-factor-authentication"]], "Using encryption": [[25, "using-encryption"]], "Using end-to-end encryption": [[37, null]], "Using external storage": [[26, null]], "Using federation shares": [[27, null]], "Using server-side encryption": [[25, null]], "Using the Calendar app": [[40, null]], "Using the Command-Line Client": [[7, null]], "Using the Contacts app": [[41, null]], "Using the Ignored Files Editor": [[18, "using-the-ignored-files-editor"]], "Using the Mail app": [[43, null]], "Using the Network Window": [[18, "using-the-network-window"]], "Using the Synchronization Client": [[18, null]], "Using two-factor authentication": [[80, null]], "Using two-factor authentication with hardware tokens": [[80, "using-two-factor-authentication-with-hardware-tokens"]], "Version control": [[38, null]], "Video player": [[20, "video-player"]], "View all open conversations": [[77, "view-all-open-conversations"]], "Viewing a proposal progress": [[40, "viewing-a-proposal-progress"]], "Virtual Files on macOS": [[18, "virtual-files-on-macos"]], "Webinar and lobby": [[78, null]], "Web\u30d6\u30e9\u30a6\u30b6\u30fc\u306e\u8981\u4ef6": [[82, "web-browser-requirements"]], "What happens when shared files are deleted": [[23, "what-happens-when-shared-files-are-deleted"]], "What\u2019s next": [[1, "what-s-next"]], "Why use Collectives?": [[1, "why-use-collectives"]], "Windows": [[6, "windows"], [16, "windows"]], "Working with the booked appointment": [[40, "working-with-the-booked-appointment"]], "Zoom and responsiveness": [[79, "zoom-and-responsiveness"]], "macOS": [[6, "macos"], [16, "macos"]], "macOS Extensions conflict": [[14, "macos-extensions-conflict"]], "macOS Virtual Files Client": [[14, null]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u306e\u30d5\u30a3\u30eb\u30bf\u30fc": [[0, "filtering-activities"]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea\u306e\u4f7f\u7528": [[0, null]], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u8868\u793a": [[0, "viewing-your-activity-stream"]], "\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u76ee\u6b21": [[5, null]], "\u30d5\u30a1\u30a4\u30eb\u3068\u901a\u77e5": [[44, "files-and-notifications"]], "\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30a4\u30c9\u30d0\u30fc\u3067\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": [[0, "activity-in-the-files-sidebar"]], "\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30a2\u30af\u30bb\u30b9": [[21, null]], "\u30d5\u30a1\u30a4\u30eb\uff08Files\uff09\u3068\u540c\u671f": [[29, null]], "\u30e1\u30fc\u30eb\u901a\u77e5\u306e\u983b\u5ea6": [[0, "email-notification-frequency"]], "\u6bce\u65e5\u306e\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b5\u30de\u30ea\u30fc": [[0, "daily-activity-summary"]], "\u7d71\u5408\u691c\u7d22": [[82, "unified-search"]], "\u901a\u77e5\u8a2d\u5b9a": [[0, "notification-settings"]], "\u9023\u7d61\u5148\u3068\u30ab\u30ec\u30f3\u30c0\u30fc": [[44, "contacts-and-calendar"]]}, "docnames": ["activity", "collectives/getting_started", "collectives/index", "collectives/markdown_files", "collectives/onboard_your_team", "contents", "desktop/autoupdate", "desktop/commandline", "desktop/configfile", "desktop/conflicts", "desktop/envvars", "desktop/faq", "desktop/index", "desktop/installation", "desktop/macosvfs", "desktop/options", "desktop/uninstallation", "desktop/updatechannel", "desktop/usage", "files/access_webdav", "files/access_webgui", "files/accessing", "files/collaboration", "files/deleted_file_management", "files/desktop_mobile_sync", "files/encrypting_files", "files/external_storage", "files/federated_cloud_sharing", "files/file_drop", "files/index", "files/large_file_upload", "files/managing", "files/quota", "files/security", "files/sharing", "files/tagging", "files/transfer_ownership", "files/using_e2ee", "files/version_control", "groupware/absence", "groupware/calendar", "groupware/contacts", "groupware/index", "groupware/mail", "groupware/sync_android", "groupware/sync_gnome", "groupware/sync_ios", "groupware/sync_kde", "groupware/sync_osx", "groupware/sync_thunderbird", "groupware/sync_windows10", "groupware/user_migration", "index", "session_management", "talk/appearance", "talk/attachments", "talk/bots", "talk/breakout_rooms", "talk/calendar_integration", "talk/call", "talk/call_index", "talk/call_recording", "talk/call_screenshare", "talk/call_transcription", "talk/call_views", "talk/chat", "talk/chat_index", "talk/conversation_index", "talk/conversations", "talk/federation_index", "talk/files_integration", "talk/guest", "talk/index", "talk/matterbridge", "talk/message_integrations", "talk/messages", "talk/moderator_index", "talk/open_conversations", "talk/webinar", "universal_access", "user_2fa", "userpreferences", "webinterface"], "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": ["activity.rst", "collectives/getting_started.rst", "collectives/index.rst", "collectives/markdown_files.rst", "collectives/onboard_your_team.rst", "contents.rst", "desktop/autoupdate.rst", "desktop/commandline.rst", "desktop/configfile.rst", "desktop/conflicts.rst", "desktop/envvars.rst", "desktop/faq.rst", "desktop/index.rst", "desktop/installation.rst", "desktop/macosvfs.rst", "desktop/options.rst", "desktop/uninstallation.rst", "desktop/updatechannel.rst", "desktop/usage.rst", "files/access_webdav.rst", "files/access_webgui.rst", "files/accessing.rst", "files/collaboration.rst", "files/deleted_file_management.rst", "files/desktop_mobile_sync.rst", "files/encrypting_files.rst", "files/external_storage.rst", "files/federated_cloud_sharing.rst", "files/file_drop.rst", "files/index.rst", "files/large_file_upload.rst", "files/managing.rst", "files/quota.rst", "files/security.rst", "files/sharing.rst", "files/tagging.rst", "files/transfer_ownership.rst", "files/using_e2ee.rst", "files/version_control.rst", "groupware/absence.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/sync_android.rst", "groupware/sync_gnome.rst", "groupware/sync_ios.rst", "groupware/sync_kde.rst", "groupware/sync_osx.rst", "groupware/sync_thunderbird.rst", "groupware/sync_windows10.rst", "groupware/user_migration.rst", "index.rst", "session_management.rst", "talk/appearance.rst", "talk/attachments.rst", "talk/bots.rst", "talk/breakout_rooms.rst", "talk/calendar_integration.rst", "talk/call.rst", "talk/call_index.rst", "talk/call_recording.rst", "talk/call_screenshare.rst", "talk/call_transcription.rst", "talk/call_views.rst", "talk/chat.rst", "talk/chat_index.rst", "talk/conversation_index.rst", "talk/conversations.rst", "talk/federation_index.rst", "talk/files_integration.rst", "talk/guest.rst", "talk/index.rst", "talk/matterbridge.rst", "talk/message_integrations.rst", "talk/messages.rst", "talk/moderator_index.rst", "talk/open_conversations.rst", "talk/webinar.rst", "universal_access.rst", "user_2fa.rst", "userpreferences.rst", "webinterface.rst"], "indexentries": {"bandwidth": [[18, "index-0", false]], "exclude files": [[18, "index-1", false]], "ignored files": [[18, "index-1", false]], "limiting": [[18, "index-0", false]], "pattern": [[18, "index-1", false]], "proxy settings": [[18, "index-0", false]], "socks": [[18, "index-0", false]], "throttling": [[18, "index-0", false]]}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"!\u300d": 18, "\"$": 16, "\"%": 11, "\"*": 16, "\"<": 19, "\">": 19, "\"?": 19, "\"\\\"": 11, "##": 65, "$home": [6, 8, 16], "%.": 32, "%\\": [8, 16], "%appdata": [8, 16], "&arch": 7, "&keywords": 7, "&searchon": 7, "')": 19, "(calendar": 48, "(contacts": 48, "(default": 10, "(e": [7, 40], "(far": 82, "(for": 46, "(general": 18, "(kubuntu": 18, "(like": 80, "(of": 6, "(optional": 19, "(or": 3, "(replace": 46, "(s": [8, 41, 81], "(server": 49, "(top": 82, "(ubuntu": 18, "(windows": 19, "),": [9, 16, 18, 19, 40, 41, 43, 45, 49, 68, 80], ").": [1, 3, 6, 8, 9, 11, 15, 18, 19, 41, 43, 44, 46, 49, 57, 58, 63, 68, 80, 82], "):": [30, 40], ")\u3002": 44, ")\u300d": [40, 50], "**": 65, "*.": 7, "*bold": 65, "*\u300d": 43, "+%d": 19, ", for": 47, "-%": 19, "--": 65, "->": 47, "-account": 14, "-added": 11, "-administrator": 81, "-app": 40, "-authentication": 44, "-available": 19, "-background": 15, "-bar": [57, 61], "-based": [6, 7, 19, 56, 80], "-block": 65, "-busy": 40, "-by": [13, 46], "-bytes": 19, "-called": 81, "-catching": 18, "-changes": 11, "-circles": 18, "-click": [13, 14, 18, 19, 34, 47, 62], "-client": [7, 42], "-clients": 7, "-cmd": 7, "-compatibility": 11, "-compatible": [26, 40], "-confdir": 15, "-contact": 44, "-conversation": 59, "-dates": 11, "-day": 40, "-defined": 41, "-desktop": [7, 16], "-devs": 7, "-do": 68, "-document": 11, "-dot": [20, 26, 35, 59, 64], "-down": [11, 19], "-droid": 44, "-eml": 11, "-encrypted": [19, 48], "-end": [25, 29, 33], "-event": 40, "-exclude": [7, 18], "-explanatory": 41, "-facing": [59, 81], "-factor": [5, 45, 49, 50, 53, 81], "-file": 35, "-files": [11, 40], "-fill": 55, "-filled": 43, "-fledged": 49, "-focused": 13, "-free": 59, "-generated": [40, 43], "-get": 19, "-granular": 40, "-h": 7, "-header": 19, "-hierarchical": 1, "-hoc": 68, "-httpproxy": 7, "-in": [16, 19, 20, 25, 43, 45, 68, 81], "-indexer": 11, "-interactive": [7, 13], "-it": 50, "-knowledge": 11, "-level": [1, 15, 25], "-line": [5, 12, 13, 35], "-link": 20, "-locally": 8, "-logdebug": 15, "-logdir": 15, "-logexpire": 15, "-logfile": 15, "-logflush": 15, "-logwindow": 15, "-mail": 40, "-managed": [13, 26], "-management": 11, "-max": 7, "-modification": 11, "-n": 7, "-nextcloud": 18, "-non": 7, "-of": [5, 11, 42, 68], "-office": [5, 11, 42, 68], "-on": 40, "-one": [40, 65], "-only": [26, 37, 40, 41, 59, 76], "-open": 19, "-ordered": 43, "-out": [25, 43, 68], "-overhauls": 11, "-p": 7, "-party": [25, 40], "-password": [7, 47, 48], "-path": 7, "-performance": 63, "-populated": 18, "-protected": 19, "-related": 14, "-release": 11, "-releases": 17, "-requested": 19, "-retries": 7, "-rich": 49, "-s": 7, "-screen": [19, 59, 72], "-secured": 19, "-server": [27, 34], "-servers": 40, "-set": 40, "-share": [20, 25, 32], "-sharing": 28, "-side": [14, 26, 29, 33, 48], "-signed": [19, 48], "-silent": 7, "-solves": 11, "-source": 19, "-specific": [5, 14, 26, 80], "-ssl": 19, "-step": [13, 46], "-style": 42, "-sync": 7, "-talk": 59, "-term": 17, "-time": [40, 63, 80], "-to": [29, 33, 43, 59, 65], "-trust": 7, "-u": 7, "-unsyncedfolders": 7, "-up": 6, "-update": 6, "-updater": 6, "-updates": 41, "-url": [27, 34], "-use": 80, "-used": 19, "-user": [3, 7], "-view": 40, "-way": 24, "-wide": [9, 25, 35, 61], "-with": 19, "-write": 19, "-x": 16, ".)": [18, 23, 25, 26, 65], ".*": 15, ".,": [7, 46], "..": [43, 65, 68, 70, 71, 73, 74, 75], "...": 7, ".:": [7, 19], ".alpinelinux": 7, ".cfg": [6, 8, 11, 16], ".collectives": 3, ".com": [7, 11, 16, 19, 34, 40, 44, 46, 47, 48, 50, 69, 72], ".conf": 11, ".davfs": 19, ".db": 7, ".debian": 7, ".desktopclient": [8, 16], ".e": [1, 15, 19, 46], ".eml": 11, ".every": 40, ".example": [19, 34, 40, 44, 69], ".exe": [11, 19], ".fedoraproject": 7, ".g": [3, 7, 18, 19, 40, 44, 48], ".ics": 40, ".inotify": 11, ".jpg": 19, ".log": 19, ".lst": [7, 18], ".max": 11, ".net": 7, ".nextcloud": [8, 16], ".org": [7, 19, 46], ".pem": 19, ".php": [19, 23, 40, 44, 46], ".plist": 16, ".reddit": 50, ".txt": [9, 19], ".ubuntu": 7, ".wordpress": 11, ".y": 16, ".yourdomain": [19, 48], ".z": 16, ".\u300d": [11, 25, 43], "/#": 7, "/$": 19, "/+": 7, "/.": [6, 8, 16, 19], "/<": [7, 19, 40], "/>": 19, "/[": [7, 38], "/activity": 0, "/application": 16, "/apps": [0, 40], "/blog": 11, "/busy": [39, 40], "/caches": 16, "/calendar": 40, "/carddav": [42, 48], "/cifs": 26, "/client": 7, "/com": [8, 16], "/comments": 50, "/community": 7, "/contacts": 48, "/containers": [8, 16], "/crashreporter": 16, "/data": [8, 16], "/dav": [19, 44, 46], "/davfs": 19, "/debian": 18, "/disable": [18, 59], "/edge": 7, "/embed": 40, "/etc": [11, 19], "/event": 40, "/files": 19, "/folder": [23, 34], "/font": 79, "/fs": 11, "/fstab": 19, "/group": 16, "/help": 56, "/index": 40, "/inotify": 11, "/install": [7, 72], "/kfy": 19, "/launchagents": 16, "/library": [8, 16], "/macos": 50, "/max": 11, "/media": 7, "/music": 7, "/my": 7, "/mycertificate": 19, "/mynextcloud": 47, "/nextcloud": [6, 7, 8, 11, 16, 19, 50], "/nextcloudusername": 19, "/nkujuxuj": 16, "/ns": 19, "/package": 7, "/participant": 40, "/pkgs": 7, "/plain": 19, "/pop": 42, "/preferences": [8, 16, 40], "/principals": 46, "/public": 19, "/r": 50, "/recipient": 43, "/remote": [19, 44, 46], "/remove": 19, "/resume": 18, "/roll": 56, "/s": [19, 34], "/save": 45, "/search": 7, "/source": 19, "/ssl": 19, "/sys": 11, "/sysctl": 11, "/target": 19, "/team": 68, "/thread": 43, "/token": [45, 47, 48], "/ubuntu": [7, 19], "/unmute": 59, "/unset": 43, "/user": [7, 19], "/username": [19, 46], "/users": 46, "/using": 50, "/vcard": 41, "/video": 72, "/welcome": 19, "/wiki": 56, "/write": 40, "/x": 7, "/yxcfkrwbjqyyzp": 34, "/~": 7, "/\u2026": 11, "0f": 19, "0fee": 19, "0x": 19, "1f": 19, "1\u3064": 52, "1\u901a": 0, "2d": 19, "2f": 80, "2fa": [44, 45, 48, 80], "2nd": 80, "2\u3064": 44, "3a": 19, "3b": 16, "3rd": 40, "4gb": 19, "5e": 19, "5rcypb": 50, "5sm": 19, "9lek": 19, ":\"": 19, ":/": [7, 11, 19, 34, 40, 44, 46, 47, 48, 50], ":\\": 11, ":]": 7, ":collection": 19, ":d": 19, ":getcontentlength": 19, ":getcontenttype": 19, ":getetag": 19, ":getlastmodified": 19, ":href": 19, ":multistatus": 19, ":oc": 19, ":pass": 19, ":prop": 19, ":propstat": 19, ":quota": 19, ":resourcetype": 19, ":response": 19, ":s": 19, ":scan": 26, ":secret": 7, ":status": 19, ":youruser": 19, ";*": 15, "\n<": 19, ">\"": 19, ">-": 40, ">/": [19, 40], ">:": [7, 19], ">@": [7, 27, 34, 40], ">http": 19, ">text": 19, ">tue": 19, "?keywords": 7, "?suite": 7, "?\u300d": 43, "@=": 11, "@cloud": [34, 40, 69], "@pass": 7, "@server": 7, "@ssl": 19, "[general": [8, 11], "[nextcloud": 8, "[proxy": 8, "[x": 65, "\\\"": 11, "\\\\": [11, 19], "\\command": 11, "\\currentcontrolset": 19, "\\currentversion": 11, "\\dav": 19, "\\hkey": 11, "\\microsoft": 11, "\\nc": 11, "\\nextcloud": [6, 8, 16, 19], "\\open": 11, "\\parameters": 19, "\\policies": 6, "\\propertyhandlers": 11, "\\propertysystem": 11, "\\remote": 19, "\\services": 19, "\\shell": 11, "\\software": [6, 11], "\\system": 19, "\\webclient": 19, "\\windows": 11, "]/": 38, "]thumbs": 7, "_\"": 16, "_*": 7, "__": 65, "_address": 7, "_application": 50, "_been": 7, "_blacklist": 10, "_bytes": 10, "_chunk": 10, "_classes": 11, "_conflict": 9, "_created": 7, "_critical": 10, "_current": 6, "_files": 9, "_folder": 7, "_free": 10, "_has": 7, "_http": 10, "_local": [6, 11, 19], "_locks": 19, "_logging": 15, "_machine": [6, 11, 19], "_max": 10, "_min": 10, "_obligation": 23, "_openai": 43, "_parallel": 10, "_password": 7, "_path": 19, "_pp": 19, "_push": 14, "_retention": 23, "_root": 11, "_rules": 15, "_size": 10, "_space": 10, "_sync": 7, "_that": 7, "_the": 50, "_time": 10, "_timeout": 10, "_transcription": 63, "_upload": 9, "_user": [6, 7, 11], "_username": 19, "_versions": 38, "_watches": 11, "_windows": 50, "_with": 50, "``": [16, 65], "aa": 79, "aaa": 79, "ability": [11, 43], "able": [11, 18, 19, 25, 26, 35, 40, 41, 43, 44, 50, 55, 57, 79, 80, 81], "aborted": 10, "aborts": 10, "about": [4, 14, 18, 19, 20, 23, 25, 32, 36, 40, 41, 42, 58, 68, 69, 70, 72, 75], "above": [18, 19, 20, 34, 35, 40, 41, 46, 65, 69, 71, 75, 81], "absence": [39, 40, 43, 68], "absences": 40, "absent": 39, "accelerate": 14, "accept": [34, 36, 43, 69], "acceptance": [34, 36, 43], "accepted": [36, 40], "accepting": [40, 72], "access": [2, 5, 7, 13, 14, 18, 19, 20, 25, 30, 37, 40, 41, 43, 44, 45, 53, 56, 59, 61, 62, 68, 71, 73, 80, 81, 82], "accessed": [14, 73], "accessibility": [79, 82], "accessible": [4, 34, 38, 40, 68, 75], "accessibly": 4, "accessing": [21, 29, 68], "accidentally": 40, "according": [18, 43], "accordingly": [43, 61], "account": [8, 9, 11, 13, 14, 19, 25, 26, 28, 36, 40, 44, 45, 46, 48, 49, 50, 51, 53, 55, 71, 80, 82], "accounts": [19, 41, 43, 45, 46, 50], "across": [14, 16, 20, 24, 35, 40, 43, 69, 82], "action": [15, 20, 35, 40, 41, 43, 61], "actionable": 74, "actions": [35, 41, 55, 56, 65, 68, 75, 76, 82], "activate": [41, 79], "active": [19, 43, 64], "activities": [18, 58], "activity": [8, 11, 13, 18, 19, 53, 81, 82], "actual": 14, "ad": 68, "add": [1, 4, 6, 11, 16, 18, 19, 26, 27, 34, 35, 37, 39, 45, 46, 47, 48, 50, 55, 65, 68, 73, 75, 82], "added": [1, 11, 23, 26, 34, 40, 41, 43, 80, 81], "addflag": 43, "adding": [6, 19, 25, 40, 43, 68], "addition": [18, 19, 41, 75, 81], "additional": [12, 18, 19, 20, 40, 55, 59, 65, 68, 75], "additionally": [23, 68], "additions": 41, "address": [5, 6, 7, 8, 19, 26, 27, 40, 43, 44, 46, 48, 49, 50, 59, 68, 71, 82], "addressbook": 43, "addressbooks": [41, 50], "addresses": [40, 41, 59], "adds": [4, 40, 41, 43], "adjust": [8, 18, 19, 23, 81], "adjustable": 34, "adjusted": [10, 14, 38], "adjusting": [11, 34], "adjustments": 9, "adjusts": 8, "admin": [12, 13, 23, 41, 43], "administer": 81, "administration": [19, 26, 30, 35, 40, 56, 61, 63, 68, 73], "administrative": [6, 30, 34, 36], "administrator": [13, 20, 23, 25, 26, 28, 30, 32, 34, 35, 36, 37, 40, 41, 43, 56, 65, 69, 73, 79, 80, 81], "administrators": [6, 35, 56, 59, 61, 81], "admins": 35, "advanced": [13, 19, 40, 46, 49, 50], "advantage": 11, "advise": 13, "advising": 25, "affected": 43, "affecting": 43, "affects": 3, "after": [8, 11, 13, 14, 15, 18, 19, 25, 38, 40, 41, 43, 44, 46, 47, 56, 58, 59, 61, 68, 75, 80, 82], "afterwards": 4, "ag": 19, "again": [8, 11, 20, 23, 25, 38, 40, 43, 49, 53, 62, 71, 80], "against": [11, 17, 23, 32, 80], "age": 23, "agenda": [43, 56], "agendas": 56, "aggregate": 41, "aging": 32, "ai": 65, "aid": 79, "aim": 79, "airplanes": 56, "alias": 43, "aliases": [43, 51], "alice": 40, "align": 68, "alike": 68, "all": [1, 4, 8, 10, 11, 13, 14, 15, 16, 18, 19, 20, 25, 26, 27, 32, 34, 35, 36, 40, 41, 44, 45, 49, 50, 53, 55, 56, 57, 58, 59, 61, 63, 64, 65, 68, 75, 81, 82], "allocates": 23, "allow": [6, 11, 14, 19, 28, 32, 34, 40, 41, 43, 54, 55, 57, 59, 61, 62, 79, 81], "allowance": 41, "allowed": [7, 14, 19, 23, 41, 59, 61], "allowing": [34, 40, 43, 74], "allows": [6, 14, 19, 27, 34, 39, 40, 41, 42, 43, 56, 78, 81], "alma": 13, "almost": 80, "along": [7, 38, 51], "alpine": 7, "already": [1, 9, 13, 18, 30, 34, 40, 44, 49, 50, 59, 68, 71, 80], "also": [3, 7, 9, 10, 13, 14, 15, 16, 18, 19, 20, 26, 28, 34, 35, 36, 38, 40, 41, 43, 45, 55, 57, 58, 59, 62, 63, 64, 65, 68, 71, 73, 75, 76, 79, 80, 81, 82], "alter": [11, 37], "alternative": [19, 28], "alternatively": [1, 11, 13, 59], "always": [6, 14, 18, 19, 24, 40, 43, 49, 68, 80], "am": 40, "amazon": [19, 26], "amount": 11, "an": [1, 6, 7, 9, 11, 13, 14, 18, 19, 20, 25, 26, 28, 30, 34, 35, 39, 41, 42, 44, 45, 46, 47, 49, 50, 53, 55, 56, 58, 59, 62, 68, 72, 73, 75, 79, 81], "analyzed": 43, "and": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 36, 37, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 55, 57, 60, 61, 62, 64, 69, 70, 72, 73, 74, 75, 76, 77, 80, 81], "android": [5, 19, 24, 37, 42, 52, 72], "anonymous": [22, 29, 55], "anonymously": 19, "another": [11, 26, 34, 40, 41, 43, 59, 68, 75, 80], "answer": 4, "any": [6, 7, 13, 14, 18, 19, 20, 23, 25, 26, 27, 28, 32, 38, 40, 41, 43, 53, 56, 59, 61, 68, 69, 71, 77, 79, 82], "anyone": [65, 81], "anything": [11, 25, 47, 81], "anytime": [27, 61], "anywhere": [43, 45], "apache": 30, "app": [1, 3, 5, 6, 14, 18, 19, 20, 25, 28, 35, 37, 38, 39, 42, 44, 45, 47, 48, 49, 50, 51, 58, 59, 63, 68, 70, 73, 79, 80, 82], "apparent": 50, "appear": [1, 6, 14, 18, 19, 20, 26, 35, 40, 41, 43, 50, 58, 68, 69, 81], "appearance": [14, 43, 67, 72, 82], "appearing": 26, "appears": [14, 18, 20, 35, 43, 63, 65], "appimage": [11, 13, 16], "appimagelauncher": 11, "apple": [14, 19, 40, 48, 82], "applet": 47, "applicable": 9, "application": [6, 13, 15, 18, 19, 26, 40, 41, 45, 46, 59, 62, 71], "applications": [5, 16, 40, 41, 47, 48, 81], "applied": [18, 35, 43], "applies": [41, 68], "apply": [14, 35, 39, 43], "appointment": [47, 51], "appointments": 43, "appropriate": [19, 30, 50, 75], "approximately": 8, "apps": [14, 19, 32, 40, 42, 43, 45, 46, 65, 66, 72, 81, 82], "apt": [16, 19], "arbitrary": [18, 19], "archive": [7, 20], "archived": 68, "archives": 13, "are": [3, 6, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 20, 24, 25, 26, 27, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 47, 49, 50, 53, 55, 56, 57, 59, 63, 65, 68, 71, 75, 76, 79, 80, 81, 82], "area": [18, 40, 59], "around": [35, 41], "arrives": 43, "arrow": [14, 27, 38, 49, 65, 71, 79], "article": 19, "as": [1, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 25, 26, 27, 30, 32, 34, 35, 37, 39, 40, 41, 43, 44, 45, 46, 47, 48, 53, 55, 58, 61, 64, 65, 68, 69, 72, 75, 76, 79, 80, 81, 82], "ask": [8, 18, 20, 25, 26, 40, 43, 44, 49, 61, 65], "asked": [34, 36], "asking": 27, "asks": 39, "assign": [35, 57, 68], "assigned": [35, 43, 57], "assigning": [19, 20], "assignment": 57, "assistant": 65, "assistive": 79, "associated": 18, "assuming": 14, "asterisk": 18, "at": [3, 9, 13, 16, 17, 18, 19, 20, 32, 35, 38, 40, 43, 46, 48, 49, 53, 57, 59, 61, 63, 65, 68, 70, 78, 79, 82], "attach": 35, "attached": 43, "attachment": 40, "attachments": [28, 43, 66, 72], "attempt": [13, 43], "attempting": 9, "attempts": [43, 50], "attendee": 40, "attendees": 51, "attention": 9, "attribute": 81, "audio": [20, 61, 71, 72], "auth": 80, "authenticate": 19, "authenticates": 19, "authentication": [5, 19, 26, 45, 49, 50, 53, 81], "authenticator": 80, "author": 9, "authoring": 19, "authorities": 19, "auto": [6, 19, 40, 41, 43, 55], "autocompletion": 36, "automated": [35, 56], "automatic": [5, 12, 13, 14, 38, 49], "automatically": [4, 6, 8, 11, 13, 14, 19, 25, 26, 27, 34, 38, 40, 43, 46, 55, 57, 58, 61, 68], "autoresponder": 39, "autoupdater": 6, "availability": [18, 39, 68], "available": [6, 7, 8, 10, 13, 14, 16, 18, 19, 23, 25, 26, 34, 38, 39, 40, 41, 43, 45, 46, 49, 56, 57, 59, 62, 65, 68, 69, 71, 72, 73, 75, 81], "avatar": [18, 19, 40, 68], "avatars": [41, 43], "avoid": 14, "away": [18, 40, 47, 68], "back": [4, 13, 19, 20, 25, 38, 40, 43, 47, 61, 65, 70, 71, 82], "backend": [26, 53, 63], "background": [15, 18, 26, 59, 71, 79], "backing": 43, "backup": [18, 40, 80], "backups": 38, "bad": 18, "badge": [9, 20], "bandwidth": 18, "banned": 68, "banner": 25, "bar": [18, 19, 20, 40, 43, 47, 59, 63, 64, 68, 71, 75, 82], "base": [9, 44], "based": [43, 79, 80], "basic": [13, 19, 40, 41], "basicauthlevel": 19, "basics": 1, "basis": [14, 41], "batch": 41, "be": [1, 3, 4, 6, 7, 8, 9, 10, 11, 14, 16, 18, 19, 23, 26, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 73, 75, 79, 80, 81], "because": [6, 11, 14, 18, 19, 25, 37, 43, 45], "become": 9, "becomes": [41, 68], "becoming": 4, "been": [6, 7, 9, 11, 13, 14, 18, 19, 20, 24, 25, 30, 34, 40, 43, 56, 68, 80], "before": [11, 14, 16, 17, 18, 19, 26, 40, 43, 59, 61, 68, 71, 73], "beginning": [43, 46, 79], "behave": 18, "behavior": [6, 8, 9, 10, 18, 68], "behind": 73, "being": [6, 14, 18, 19, 36, 41, 59], "bell": 82, "belongs": 41, "below": [8, 9, 10, 16, 18, 19, 25, 32, 40, 41, 43, 50, 64], "beside": 18, "best": [9, 13, 17, 40, 82], "beta": 17, "better": 25, "between": [1, 5, 7, 8, 9, 12, 14, 19, 20, 41, 42, 43, 54, 64, 73, 79], "beyond": 16, "bidirectional": 24, "big": 40, "bin": [20, 23, 25, 32, 41], "binary": [7, 14], "bins": 23, "birthdays": 40, "bit": [11, 19], "bits": 13, "bitv": 79, "blacklisted": [10, 18], "block": 43, "blockquote": 65, "blocks": 40, "blue": [18, 40, 48], "blur": [59, 71], "boards": [1, 42], "bob": 34, "bodies": 43, "bold": 65, "book": [5, 40, 41, 46, 49], "bookable": 40, "books": [40, 49], "border": 26, "bot": 56, "both": [7, 9, 19, 23, 41, 43, 46, 47, 51, 54, 59], "bots": [72, 76], "bottom": [3, 19, 41, 43, 49, 50, 53, 59, 63, 64, 68, 82], "bounds": 8, "box": [18, 19, 43, 50, 61], "branded": 6, "breadcrumb": 20, "breakout": [72, 76], "bridge": 73, "bridges": 73, "brief": [4, 55], "brightness": 79, "bring": [7, 18, 40, 41, 71], "brings": 40, "broadcast": 57, "browse": [19, 20, 26, 81], "browser": [1, 6, 11, 13, 19, 20, 27, 34, 37, 50, 62, 71, 80, 82], "browsers": [5, 19, 80, 82], "browsing": 20, "bsd": 13, "bubble": 59, "bubbles": 54, "buckets": 26, "bug": 6, "bugs": [11, 17], "build": 13, "building": 41, "builds": 17, "built": [13, 16, 19, 20, 45], "bulk": 71, "bundle": [6, 42], "bundled": 6, "bundles": 14, "business": 43, "busy": 39, "but": [6, 9, 11, 13, 23, 25, 32, 40, 41, 43, 65, 68, 79, 80, 81], "button": [1, 4, 13, 18, 19, 20, 23, 27, 28, 40, 41, 43, 45, 49, 50, 59, 62, 65, 68, 71, 75, 77, 81, 82], "buttons": [20, 34, 40, 41, 64, 68, 71, 79], "by": [1, 4, 6, 7, 9, 11, 13, 14, 16, 18, 19, 20, 23, 25, 26, 27, 28, 30, 34, 36, 40, 41, 43, 45, 47, 49, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 71, 73, 75, 77, 79, 80, 81, 82], "bytes": [8, 10], "cache": 32, "caja": [18, 19], "calculated": 32, "calculates": 23, "calculations": 40, "caldav": [42, 46, 47, 48, 49, 50], "calendar": [5, 32, 39, 41, 42, 44, 45, 47, 48, 49, 51, 67, 68, 72, 82], "calendars": [1, 43, 44, 45, 47, 51], "call": [5, 40, 56, 57, 60, 68, 70, 72, 76, 78, 79], "called": [3, 9, 19, 37, 64], "calls": [5, 59, 68, 69, 72, 76], "camera": [44, 59, 62, 71], "can": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82], "cancel": 40, "cancellations": 40, "cannot": [18, 19, 20, 25, 28, 35, 40, 41, 43, 55, 81], "capabilities": 19, "capable": 19, "caption": 55, "captions": 75, "carddav": [41, 46, 47, 48, 49, 50], "cards": [41, 65, 74], "careful": 11, "carla": 7, "carries": 19, "carry": 14, "case": [6, 11, 13, 19, 25, 41, 44], "cases": [47, 61, 68, 81], "categories": 44, "cause": 18, "caused": 79, "causes": 79, "caution": 8, "cellular": 47, "center": 19, "centos": 19, "central": 68, "centres": 64, "certain": [10, 30, 41, 43, 75], "certificate": [7, 19, 46], "certificates": [19, 48], "certification": 19, "certs": 19, "chain": 20, "challenging": 40, "change": [3, 9, 13, 14, 18, 19, 24, 35, 36, 39, 40, 47, 50, 54, 57, 68, 71, 81, 82], "changed": [9, 11, 25, 26, 40, 50, 81], "changes": [5, 7, 8, 9, 14, 18, 20, 27, 28, 35, 40, 41, 43, 57, 79, 80], "changing": [11, 19, 40, 68, 81], "channels": [5, 12], "chapter": [13, 19], "character": [18, 43], "characters": [18, 43], "chart": 14, "chat": [5, 39, 41, 56, 58, 59, 61, 68, 69, 70, 72, 73, 75, 76, 79], "chats": [34, 54, 55, 68], "chatting": [65, 68], "check": [6, 11, 18, 19, 26, 35, 40, 41, 43, 59, 61, 68, 71], "checkbox": [18, 20, 35, 40, 43, 59, 61, 68], "checkboxes": [41, 43], "checked": [18, 40, 41], "checking": 8, "checklists": 68, "checkmark": [18, 40], "checks": [6, 23, 43], "chips": 82, "chmod": 19, "choice": [11, 36, 63], "choices": 55, "choose": [1, 4, 11, 14, 18, 19, 20, 25, 26, 28, 36, 40, 41, 43, 44, 47, 48, 49, 50, 51, 53, 54, 57, 58, 59, 62, 65, 71, 78, 80, 81], "choosing": [11, 44, 55, 59], "chose": 40, "chosen": [14, 36, 43], "chown": 19, "chrome": [19, 82], "chromium": [19, 82], "chronological": 20, "chronologically": 43, "chunk": [8, 10], "chunksize": 8, "cifs": 26, "cinnamon": 19, "circle": [14, 18, 68], "circles": 34, "circular": [38, 41], "circumstances": 8, "citrix": [8, 13], "clarity": 79, "classic": [14, 54], "classification": 43, "clean": 11, "cleaner": 43, "clear": [18, 19, 68], "cleared": 18, "clears": 15, "click": [1, 4, 6, 11, 13, 18, 19, 20, 26, 27, 28, 34, 35, 36, 38, 40, 41, 43, 44, 47, 48, 49, 50, 55, 57, 58, 59, 61, 62, 68, 71, 75, 81, 82], "clickable": 6, "clicked": 43, "clicking": [1, 6, 9, 13, 18, 19, 20, 23, 26, 27, 35, 40, 41, 43, 49, 51, 59, 61, 65, 68, 69, 71, 77, 82], "clicks": [40, 71], "client": [5, 6, 8, 9, 10, 11, 13, 15, 16, 17, 19, 24, 30, 37, 48, 49, 50, 53, 62, 72], "clients": [6, 13, 16, 40, 41, 53, 72, 80], "clipboard": [40, 50], "clock": [65, 80], "close": [4, 13, 19, 35, 40, 43, 45, 46, 55, 79], "closely": 81, "closing": 18, "cloud": [14, 19, 20, 34, 40], "cloudid": 69, "code": [13, 37, 40, 44, 65, 80], "codec": 20, "codes": 5, "cohesive": 4, "collaborate": 1, "collaboration": [5, 29, 41], "collaborative": 34, "collaboratively": [1, 2], "collapse": 43, "collapsed": [18, 79], "colleagues": 40, "collected": 40, "collective": [1, 4], "collectively": 4, "collectives": [3, 4, 5], "color": [40, 79], "colored": 26, "column": [20, 65], "columns": 59, "come": 79, "comes": [40, 43, 47], "command": [5, 12, 13, 16, 35, 56], "commands": [16, 72, 76], "comment": [20, 40], "commercial": 28, "common": 79, "communicate": 10, "communicating": 68, "communities": 2, "community": [13, 19, 40], "companies": 6, "compare": 9, "compatibility": [11, 20], "compatible": [10, 26, 40, 43, 80], "complete": [16, 19, 27, 41, 42, 44, 68], "completed": [13, 28, 65], "completely": [8, 61], "complex": 40, "compliance": 61, "compliant": 79, "complicated": 23, "component": 18, "components": 18, "compose": 79, "composed": 43, "compromised": 25, "computer": [12, 19, 20, 23, 24, 45], "computers": [4, 6], "concretize": 40, "conditions": 41, "conf": 19, "config": [6, 8, 16, 19, 23], "configuration": [5, 6, 10, 11, 12, 13, 15, 16, 18, 19, 20, 25, 26, 34, 35, 36, 41, 73, 81], "configurations": [10, 30, 51], "configure": [13, 18, 19, 26, 34, 40, 41, 43, 53, 56, 61, 68, 76, 78, 80, 81], "configured": [13, 14, 18, 23, 30, 32, 40, 43, 48, 58, 59, 68], "configures": 26, "configuring": [5, 19, 26, 44, 53], "confirm": [11, 27, 40, 41, 43, 46], "confirmation": [8, 18, 27, 40, 68], "confirmed": 40, "confirming": 40, "confirms": [26, 27, 40], "conflict": [9, 40], "conflicted": 9, "conflicting": 9, "conflicts": [5, 12, 40], "confusion": 9, "congratulations": [1, 4], "connect": [11, 13, 19, 20, 24, 26, 53, 80], "connected": [5, 14, 18, 25, 26, 40, 45, 80], "connecting": 19, "connection": [11, 14, 18, 19, 26, 27, 44, 47, 50, 73], "connections": [8, 10, 19, 26, 48, 53, 81], "connectivity": [14, 19], "consent": 59, "consider": [16, 19], "considerable": 11, "consideration": 16, "considerations": 5, "consistent": 14, "consisting": 42, "console": 19, "contact": [19, 26, 30, 40, 43, 44, 46, 79, 81, 82], "contacts": [5, 32, 40, 42, 44, 45, 47, 48, 51, 81, 82], "contain": [7, 9, 11, 40, 43], "contained": [18, 43], "containers": 16, "containing": [7, 9, 11, 18, 41, 43], "contains": [8, 9, 11, 18, 20, 38, 43, 59, 71], "content": [1, 4, 7, 11, 14, 19, 65, 68, 74, 75, 79], "contents": [9, 14, 24, 28, 34, 40], "context": [18, 40, 43, 55], "continually": 11, "continue": [9, 18, 43, 49], "continued": 68, "contrary": 7, "contrast": 79, "control": [19, 29, 31, 32, 35, 40, 56, 59, 68, 81], "controlled": [6, 10], "controlling": 6, "controls": 59, "convenience": 18, "conversation": [34, 43, 54, 56, 57, 58, 59, 61, 63, 65, 69, 70, 71, 73, 78], "conversations": [5, 34, 40, 41, 57, 58, 61, 65, 69, 72, 73, 74, 75, 76], "copied": [4, 43], "copies": 14, "copy": [9, 11, 19, 20, 23, 24, 40, 43, 50], "corner": 49, "correct": [19, 80], "correctly": [14, 19], "correctness": 18, "corresponding": [40, 43], "could": [25, 26, 40, 43], "couldn": 43, "count": [23, 32], "counted": [23, 32], "counter": 69, "country": 40, "counts": 32, "cover": 68, "covers": 41, "cowork": 1, "cp": 19, "create": [1, 9, 13, 14, 18, 19, 20, 24, 25, 27, 28, 32, 34, 35, 42, 44, 47, 50, 53, 55, 57, 58, 65, 68, 69, 73, 75, 76, 77], "created": [1, 4, 17, 18, 19, 25, 34, 35, 38, 39, 40, 43, 44, 50, 57, 58, 68, 70], "creates": [9, 11, 20, 38], "creating": [11, 18, 43, 53, 58, 81], "creation": [18, 35, 68, 75], "credentials": [19, 26, 48, 50], "cross": 41, "csv": [59, 71], "ctrl": [79, 82], "current": [3, 13, 14, 18, 19, 20, 24, 34, 43, 59], "currentcontrolset": 19, "currently": [14, 18, 23, 37, 38, 40, 41, 57, 59, 65], "cursor": [1, 40], "custom": [14, 18, 40, 43, 68, 79, 82], "customers": 17, "customisable": 82, "customise": [59, 82], "customize": [19, 43, 54], "customized": 40, "cutton": 18, "cycles": 11, "cycling": 18, "daily": [17, 40], "dangerous": 25, "dark": 79, "dashboard": 5, "data": [5, 11, 14, 16, 19, 25, 32, 37, 38, 39, 40, 41, 42, 47, 65], "database": [25, 32], "date": [11, 14, 18, 19, 34, 40, 43, 58, 65, 68, 75, 82], "dates": 40, "dav": [19, 47], "davdroid": 44, "davfs": 19, "davs": 19, "davx": 44, "day": [10, 38, 40, 68, 81], "daygridmonth": 40, "days": [23, 32, 38, 40, 43, 58, 82], "debian": [7, 19], "debug": 15, "decide": [4, 40, 43, 55], "decided": 4, "decides": 14, "decimal": 19, "deck": [41, 42, 65], "decline": [34, 43, 59, 69], "declined": 40, "declining": [40, 59], "decorations": [14, 65], "decrypt": [25, 37], "decrypted": 37, "decrypts": 25, "dedicated": [14, 19, 43, 44, 49, 68], "deemed": 18, "deeply": 11, "default": [3, 7, 8, 9, 11, 13, 14, 18, 19, 20, 23, 25, 27, 30, 34, 40, 41, 43, 47, 58, 59, 68, 81], "defaults": [7, 20, 40], "define": [18, 43], "defined": [14, 18, 40], "definition": 18, "del": 79, "delay": 14, "delete": [9, 16, 18, 20, 23, 26, 27, 35, 38, 41, 57, 65, 79], "deleted": [8, 20, 29, 31, 32, 40, 43, 58, 68], "deletes": [23, 38], "deleting": [8, 14, 16, 23, 40], "deletion": [40, 68], "deny": 53, "depend": [43, 81], "depending": [18, 20, 25, 26, 35, 43, 47, 59, 62, 71, 79, 80], "depends": [11, 16, 19, 20, 26, 40], "deployment": [6, 13, 17], "depth": 19, "descendants": 14, "describe": 6, "described": [40, 76], "describes": 10, "describing": 40, "description": [4, 40, 55, 58, 68, 71, 75], "deselect": 19, "design": 79, "designed": [2, 19, 43, 79], "desired": [11, 19, 40, 41, 43, 65], "desktop": [1, 5, 6, 9, 11, 13, 14, 15, 16, 17, 21, 29, 37, 42, 62, 72, 81], "destination": [19, 20], "detailed": 40, "details": [19, 23, 26, 32, 34, 35, 36, 38, 40, 41, 43, 51, 58, 68, 81], "detect": 40, "detected": [8, 43], "detection": 14, "detects": 43, "determine": [40, 43], "developer": 12, "development": [17, 79], "device": [5, 14, 19, 40, 59, 71, 80, 82], "devices": [5, 19, 37, 40, 59, 68, 71, 80], "df": 19, "dial": 68, "dialog": [8, 11, 13, 15, 18, 20, 27, 35, 41, 43, 45, 50, 54, 55, 57, 58, 59], "dialogs": 18, "dialogue": [1, 40], "dialogues": 45, "diaspora": 41, "dice": 56, "did": [11, 25, 43, 59], "difference": 40, "differences": [7, 9], "different": [6, 19, 20, 34, 40, 41, 43, 68, 69, 80], "differently": 18, "dig": 19, "digit": 34, "direct": [19, 27, 34, 40, 41, 65], "directly": [14, 18, 20, 25, 26, 35, 40, 41, 43, 55, 58, 59, 61, 73, 74], "directories": [7, 11, 18, 19, 28], "directory": [7, 11, 13, 15, 18, 19, 24, 27, 28, 34, 40], "disable": [6, 8, 20, 34, 40, 43, 46, 56, 59, 61, 63, 71], "disabled": [14, 19, 20, 40, 41, 43], "disables": 25, "disabling": 14, "disallow": 6, "disappears": 59, "disconnect": 53, "disconnections": 19, "discord": 73, "discover": [40, 68, 77], "discoverable": 58, "discovered": 40, "discovery": [8, 14, 46, 49], "discussion": [18, 75], "discussions": [43, 57, 59, 68, 75], "disk": [14, 19, 25, 32, 38], "dismiss": 78, "dismisses": 59, "display": [11, 19, 20, 37, 40, 50, 59, 65, 81], "displayed": [36, 41, 43, 45], "displaying": [15, 43], "displays": [14, 15, 18, 19, 20, 43], "distributed": [19, 40], "distribution": [13, 19, 61], "distributions": [6, 8, 13], "distro": 11, "disturb": [18, 40, 65, 68], "divide": [57, 59], "dividers": 65, "do": [6, 7, 11, 13, 16, 18, 23, 25, 27, 32, 35, 40, 43, 46, 59, 61, 62, 64, 68, 71, 80, 81], "document": [4, 11, 14, 20, 79], "documentation": [13, 19, 23, 30, 32, 34, 36, 56, 73], "documented": [19, 24, 79], "documents": [1, 7, 20, 45, 81], "does": [6, 7, 8, 11, 18, 19, 23, 24, 27, 41, 43, 47, 48, 53, 58, 80], "doesn": [19, 43, 45], "doing": [8, 43], "dolphin": 18, "domain": [19, 43, 46], "domains": 43, "don": [4, 25, 38, 40, 41, 65, 79], "done": [11, 37, 40, 45, 47, 50, 55, 65, 71], "dot": [3, 26, 40, 41], "dots": [18, 34, 43], "double": [11, 13, 62], "down": [19, 49, 68, 75], "download": [6, 9, 10, 11, 18, 19, 20, 24, 25, 26, 34, 38, 41, 51, 55, 61, 72], "downloaded": [6, 19], "downloading": [14, 18, 20, 34], "downloads": [6, 9, 10, 20, 59], "downward": 14, "draft": [43, 55], "drafts": 55, "drag": [20, 55], "drift": 80, "drive": [19, 35, 40], "driver": 19, "drop": [11, 19, 20, 34], "dropdown": [19, 26, 48, 81], "due": [11, 14, 34, 36], "duration": [8, 40], "durations": 68, "during": [18, 39, 40, 43, 50, 61, 63, 71], "dword": [6, 19], "dynamic": 8, "dynamically": 8, "dyslexia": 79, "each": [8, 13, 15, 16, 18, 20, 26, 34, 35, 40, 41, 43, 57, 59, 73, 81, 82], "earlier": 40, "earpiece": 59, "ease": 79, "easier": 65, "easily": [4, 43, 75], "easy": [1, 4, 19, 25], "echo": 11, "edge": [19, 82], "edit": [6, 18, 19, 20, 27, 37, 55, 65, 71, 75, 82], "editable": 41, "edited": [32, 40], "editing": [28, 34, 43, 68, 70], "editor": [1, 11, 14, 19, 20, 40, 43, 57], "editors": 79, "edits": 20, "effect": [27, 34], "effectively": 80, "efficient": 43, "either": [7, 11, 18, 34, 37, 40, 41, 46, 48, 59, 69, 75], "elapsed": 59, "element": [57, 59, 79], "elements": [65, 79], "eliminate": 40, "else": [9, 13, 59, 71], "elses": 41, "elsewhere": 41, "email": [28, 40, 41, 43, 44, 48, 50, 58, 59, 68, 72, 81, 82], "emails": [40, 43], "embed": [1, 40], "embedded": [40, 41], "embedding": 40, "emoji": [1, 4, 18, 59, 68], "emphasizes": 1, "empty": [1, 20, 37, 40, 41, 43], "enable": [3, 6, 8, 18, 19, 25, 28, 37, 40, 56, 59, 61, 63, 71, 80], "enabled": [10, 13, 14, 18, 19, 20, 25, 26, 27, 28, 32, 34, 37, 39, 40, 41, 43, 44, 45, 48, 50, 58, 59, 61, 63, 65, 69, 80, 81], "enables": [9, 18, 19, 24, 25, 41, 59], "enabling": [14, 43, 61], "encoding": 19, "encounter": 19, "encrypt": [25, 37], "encrypted": [19, 32, 37], "encryption": [5, 19, 26, 29, 32, 46], "end": [18, 19, 29, 33, 34, 40, 43, 61, 79], "ends": [39, 40, 56, 61, 68], "engaged": 40, "enhance": 65, "enough": 11, "ensure": [14, 19, 23, 40, 43, 79], "ensures": [6, 14], "enter": [1, 13, 19, 27, 34, 40, 43, 44, 45, 46, 47, 50, 53, 65, 71, 79, 80], "entered": 43, "entering": 45, "enterprise": [17, 52], "entire": [20, 40, 43], "entirely": [6, 10, 14, 30], "entities": 41, "entries": [18, 20], "entry": [1, 19, 20, 41, 81], "env": 15, "envelopes": 43, "environment": [5, 7, 9, 12, 19], "equivalent": 15, "erasing": 11, "error": [10, 18, 19, 43, 44, 46], "errors": [18, 50, 79], "esc": 59, "escape": 79, "especially": 14, "essential": 13, "etc": [19, 26, 34, 40, 65], "even": [1, 8, 9, 14, 40, 68, 70, 79, 81], "event": [25, 39, 41, 50, 58, 68], "events": [41, 51, 68, 82], "every": [8, 19, 20, 23, 25, 35, 38, 40, 41, 53, 59, 61, 80, 82], "everyone": [20, 40, 75], "everything": [13, 14, 17, 19, 79], "evicting": 14, "eviction": 14, "evolution": 45, "ex": 43, "exact": [20, 43], "exactly": [4, 43], "example": [14, 16, 18, 19, 25, 34, 40, 41, 43, 46, 47, 50, 78, 79, 80], "examples": [19, 56], "exceed": [23, 32, 38], "exceeds": 19, "excellent": 28, "except": [19, 68], "exchange": 40, "exclude": 18, "excluded": [11, 14, 32, 38], "excludes": 18, "excluding": 18, "exclusive": 43, "execute": [37, 56], "executed": 43, "execution": 43, "exist": [19, 58, 68], "existent": 40, "existing": [11, 14, 34, 40, 41, 43], "exists": [11, 68], "exit": [18, 19], "exits": 7, "expand": [19, 43], "expanded": 79, "expands": 18, "expected": [18, 43], "expects": 1, "experience": [17, 19, 43, 59, 82], "experimental": 8, "expiration": [23, 34, 38], "expires": 38, "explains": 19, "explicit": 61, "explicitly": [7, 26], "explorer": [9, 18], "export": [41, 51, 55], "exposed": 25, "extend": [65, 68], "extension": [11, 14, 19, 43], "external": [1, 21, 25, 29, 40, 53, 55, 56, 68, 76, 78], "externally": 26, "extra": 11, "eye": 18, "eyes": 79, "factor": [5, 44], "factors": 80, "fae": 19, "fail": [6, 11, 19], "failed": [11, 43], "fails": 19, "failure": [8, 11], "falls": [10, 19], "false": [8, 10], "faq": [5, 12], "far": 34, "fastest": 41, "fatal": 10, "favor": 56, "favorite": [20, 43, 79], "favorites": 20, "feasible": 13, "feature": [16, 17, 19, 20, 25, 39, 40, 41, 43, 49, 61, 69, 73, 78], "features": [1, 6, 8, 11, 17, 18, 20, 41, 43, 59, 69, 81], "federated": [20, 22, 29, 69, 81], "federation": [5, 22, 29, 72], "fedora": [7, 19], "feeds": 59, "fetch": 40, "few": [25, 41, 47, 61, 80], "fido": 80, "field": [1, 18, 19, 20, 27, 35, 36, 41, 43, 46, 50, 55, 65, 68, 71, 77, 79], "fields": [4, 26, 40, 43, 50], "figure": 35, "file": [5, 6, 7, 9, 10, 11, 12, 15, 16, 21, 22, 23, 24, 25, 27, 29, 32, 35, 36, 37, 38, 40, 41, 43, 45, 51, 55, 59, 61, 65, 70, 71, 75, 79], "fileinto": 43, "filename": [15, 18], "filenames": [25, 28], "files": [2, 5, 6, 7, 8, 9, 10, 12, 13, 16, 21, 24, 27, 30, 32, 34, 36, 37, 38, 40, 41, 45, 59, 61, 65, 67, 72, 82], "filesizelimitinbytes": 19, "filesystem": 19, "filing": 40, "fill": [4, 19, 26, 40, 43, 49], "filled": [14, 26, 40], "filter": [20, 35, 58, 82], "filtering": 68, "filters": [35, 43, 68, 75, 82], "final": 40, "finalize": 68, "finally": [19, 40], "find": [11, 13, 18, 19, 20, 23, 24, 34, 40, 41, 42, 46, 47, 49, 55, 56, 65, 68, 69, 71, 72, 73, 79, 80, 81], "finder": [16, 18, 19], "finding": 40, "finds": 36, "fine": [40, 47], "finish": 19, "finished": [4, 27, 40, 49, 51], "firefox": [19, 82], "first": [6, 11, 13, 14, 25, 27, 37, 38, 40, 41, 43, 47, 55, 59, 65, 70, 80, 81], "fit": [64, 79], "fix": [13, 47], "fixes": 6, "flag": 43, "flagged": 43, "fleeting": 18, "flexibility": 43, "flow": [8, 40], "flows": 24, "flushes": 15, "focus": [43, 79], "focused": [54, 57, 59], "folder": [3, 7, 9, 10, 13, 14, 16, 18, 19, 20, 23, 25, 26, 28, 32, 34, 35, 36, 40, 81], "folders": [7, 8, 13, 14, 16, 18, 24, 25, 26, 34, 35, 36, 37, 41, 43], "foldersync": 19, "follow": [4, 13, 17, 18, 19, 27, 34, 50, 79], "followed": [18, 19, 43], "following": [6, 7, 11, 15, 16, 18, 19, 20, 26, 39, 40, 41, 43, 45, 46, 47, 48, 51, 59, 80, 81], "follows": 8, "font": 79, "for": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 30, 32, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 59, 61, 63, 65, 68, 70, 72, 73, 75, 78, 79, 80, 81, 82], "force": 8, "forceloginv": 8, "forcesyncinterval": 8, "forever": 40, "forget": [4, 25], "form": [25, 27, 34, 43, 44], "formal": 41, "format": [1, 4, 8, 20, 40], "formats": [14, 20], "formatted": 43, "formatting": 4, "formerly": 44, "forth": 40, "forward": [68, 75], "forwarded": 40, "found": [19, 40, 43, 56, 71, 82], "four": 43, "fourth": 40, "framework": 6, "free": [10, 14, 19, 23, 38, 39, 40, 79], "freeing": 14, "frequent": 19, "friends": 40, "from": [1, 7, 9, 11, 13, 14, 16, 19, 20, 23, 25, 27, 32, 34, 35, 36, 37, 38, 40, 41, 45, 48, 50, 53, 54, 55, 57, 59, 61, 62, 65, 68, 69, 72, 75, 81, 82], "front": 59, "fs": 11, "ftp": [19, 26, 28], "ftps": 26, "full": [8, 11, 25, 40, 41, 43, 49, 56, 72, 81], "fulllocaldiscoveryinterval": 8, "fullscreen": 79, "fully": [14, 19, 24, 37, 79], "fun": 4, "function": [19, 28], "functionality": [6, 19, 41], "functions": 80, "further": [9, 19, 37, 40, 43, 81], "future": [9, 19, 43, 59, 61], "gallery": 25, "gateway": [7, 68], "gb": 10, "gear": [41, 50], "general": [6, 11, 40, 76], "generally": 40, "generate": [40, 44, 45, 47, 53, 65, 80], "generated": [40, 43, 48, 51, 53, 65], "generic": 44, "german": 79, "gestures": 62, "get": [19, 25, 40, 46, 50, 55, 62, 68, 71, 79, 80], "gets": [9, 23, 36, 38, 41, 80], "getting": [2, 5], "gifs": 65, "gigabytes": 11, "giphy": 65, "github": [24, 65, 73], "gitlab": 65, "give": [1, 4, 38, 40, 59, 61], "given": [34, 43, 59, 62], "gives": 53, "giving": 11, "glance": 35, "global": [5, 18, 75], "globe": 40, "gmbh": 6, "gmt": 19, "gnome": [5, 13, 19, 42], "go": [11, 13, 17, 18, 19, 27, 34, 40, 43, 44, 47, 49, 57, 70, 71, 80], "going": [26, 40, 51], "gone": 40, "google": [40, 44, 80, 82], "got": 17, "grant": [13, 44, 59, 62], "granted": 59, "gravatar": 41, "gray": [18, 40], "green": [18, 26, 59, 71], "grey": 18, "greyed": 59, "group": [6, 19, 40, 41, 43, 44, 57, 81], "grouped": [43, 82], "groups": [2, 25, 32, 40, 43, 44, 51, 55, 57, 59, 68], "groupware": [5, 40, 41, 47, 51], "guard": 11, "guest": [5, 55, 59, 68, 72], "guests": [40, 57, 58, 68, 78, 81], "gui": [7, 26, 44], "guidance": 30, "guide": [13, 46, 48], "guidelines": 79, "gvfs": 19, "had": 18, "halts": 43, "hand": [4, 18, 79], "handled": 43, "handler": 11, "hands": 59, "handy": 68, "happen": [9, 14, 40], "happens": [4, 14, 40], "happy": 18, "hard": [11, 19, 40], "harder": 34, "hardware": [5, 82], "has": [6, 7, 9, 11, 14, 17, 18, 19, 20, 24, 25, 26, 28, 32, 34, 35, 37, 38, 40, 43, 44, 45, 50, 55, 68, 71, 73, 79, 80, 82], "have": [6, 7, 9, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 25, 27, 30, 32, 34, 38, 40, 41, 43, 44, 45, 46, 48, 50, 53, 55, 56, 57, 58, 59, 62, 68, 70, 80, 81], "haven": 40, "having": [8, 14, 28, 40], "header": [19, 20, 40, 43, 57, 79], "heading": [1, 65], "headings": [1, 4, 65], "help": [10, 15, 17, 40, 41, 43, 56, 68, 79, 81, 82], "helpful": [32, 81], "helping": 40, "helps": [41, 56], "here": [1, 14, 43, 49, 65, 68, 71], "hesitate": 79, "hidden": [3, 7, 43], "hide": [28, 34, 43, 71], "hides": [34, 54], "hierarchy": 34, "high": [63, 79], "higher": 11, "highlighted": [61, 75], "history": [19, 20, 38], "hkey": [6, 11, 19], "holding": [41, 59], "home": [7, 13, 16, 19, 24, 40, 47], "horizontal": [1, 43], "host": 8, "hosted": 19, "hostname": 19, "hour": [38, 40, 68], "hours": [11, 15, 38, 68, 75], "hover": [1, 18, 43, 65, 75], "how": [1, 2, 5, 6, 14, 16, 19, 20, 32, 35, 40, 41, 59, 80], "however": [6, 9, 11, 18, 25, 40, 41, 43], "hr": 8, "html": 40, "http": [7, 8, 10, 11, 19, 48], "httpproxy": 7, "https": [7, 11, 19, 34, 40, 44, 46, 47, 48, 50], "hub": [40, 43, 68], "ical": 40, "icalendar": 40, "icloud": [40, 50], "icon": [9, 13, 14, 19, 20, 26, 27, 34, 35, 40, 41, 43, 44, 49, 50, 53, 59, 62, 64, 65, 71, 75, 81, 82], "icons": [8, 59], "ics": 43, "icsdroid": 44, "icsx": 44, "id": 81, "idea": 9, "ideal": 78, "ideally": 53, "ideas": 68, "ideation": 41, "identical": [25, 43], "identifier": [40, 59], "identify": [14, 18, 53], "identity": [69, 80], "if": [3, 5, 6, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 58, 59, 61, 62, 65, 68, 69, 71, 74, 75, 79, 81], "iframe": 40, "ignore": [7, 18], "ignored": [11, 40], "ignoring": 18, "illustrates": 23, "image": [20, 25, 59], "images": [20, 59], "imagine": 9, "imap": 42, "immediately": [9, 11, 13, 23, 26, 35, 41, 53, 61, 68], "implement": 19, "implementation": 19, "implemented": [24, 41], "implements": 43, "implicit": 19, "import": [11, 19, 41, 43, 51, 55], "importance": 43, "important": [1, 14, 19, 37, 43, 68, 75, 79, 80, 82], "imported": 40, "importing": [40, 43], "imposed": 14, "improve": [19, 43], "improved": 19, "in": [1, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 53, 54, 56, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 76, 78, 79, 82], "inactivity": 58, "include": [7, 19, 20, 40, 81], "included": 5, "includes": [9, 18, 25, 41, 43], "including": [7, 19, 40, 43, 51, 58, 59, 61], "incoming": [34, 36, 43], "incorrect": [8, 18], "increase": [19, 30], "increased": [14, 79], "increases": 19, "increasing": 10, "increment": 40, "increments": 40, "independent": [11, 40], "index": 25, "indicate": 18, "indicates": [18, 59], "indicating": 50, "indication": 19, "indicator": [18, 20, 26, 43, 61], "indicators": 68, "individual": [13, 18, 25, 26, 40, 53, 71], "individually": [41, 43, 53], "individuals": 25, "influence": [10, 40], "info": 35, "inform": [6, 40], "informal": 41, "information": [7, 10, 11, 12, 13, 14, 18, 19, 20, 32, 34, 40, 43, 45, 49, 50, 58, 59, 68, 69, 73, 80, 81, 82], "informational": 18, "informed": [36, 40, 58], "informing": 6, "informs": 61, "infos": 40, "inherited": 41, "inhibits": 7, "ini": 8, "initial": [34, 47], "initialized": 25, "initiated": 34, "inline": [35, 65], "inotify": 11, "input": [18, 55, 65, 79], "inputs": 40, "insert": [1, 65], "inserted": 43, "inserting": 71, "inside": [20, 23, 26, 40, 47, 58, 76, 79], "instagram": 41, "install": [6, 11, 16, 18, 19, 40, 44], "installation": [5, 12, 19, 47, 56], "installations": 27, "installed": [7, 13, 14, 16, 18, 19, 40, 41, 43, 51, 59, 73, 74, 82], "installer": 11, "installing": 19, "instance": [11, 13, 14, 19, 26, 34, 40, 41, 43, 44, 51, 56, 59, 65, 68, 81], "instances": [5, 26, 40, 42, 69, 81], "instant": [58, 68], "instantly": 68, "instead": [8, 11, 14, 19, 20, 40, 44, 50, 63], "instructions": [19, 20, 50, 56, 73], "integrate": [11, 14, 56, 74, 76], "integrated": [14, 45, 48, 72], "integrates": [18, 43, 45], "integrating": [66, 72], "integration": [18, 65, 67, 72, 73], "integrations": 65, "intelligent": 14, "intentionally": 11, "interacted": 43, "interacting": [66, 72], "interesting": 8, "interface": [5, 8, 14, 18, 19, 21, 23, 24, 29, 39, 43, 54, 72, 79, 81], "interfaces": 42, "interferes": 6, "internal": [18, 40, 68], "internet": [19, 47, 48], "interoperable": 40, "interruption": 68, "interval": [8, 11], "into": [6, 9, 11, 13, 14, 16, 19, 20, 23, 24, 25, 28, 34, 36, 40, 41, 43, 45, 49, 50, 57, 59, 65], "introduced": [18, 40], "introductory": 4, "intruder": 25, "invalid": [7, 53], "invisible": [18, 35, 40], "invitation": [40, 44, 71, 72], "invitations": 41, "invite": [41, 58, 69, 71], "invited": [40, 71], "invites": [41, 69], "inviting": 69, "invoke": 7, "involved": 79, "ios": [5, 19, 24, 37, 41, 42, 50, 52, 72], "ip": [7, 19, 68], "iphone": [19, 46], "irreversible": 40, "is": [2, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 58, 59, 61, 62, 63, 65, 68, 71, 72, 73, 74, 75, 78, 79, 80, 81, 82], "issue": [14, 24, 25, 79], "issues": [13, 43, 65, 79], "it": [1, 3, 4, 6, 7, 8, 9, 10, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 32, 35, 37, 38, 39, 40, 41, 43, 46, 47, 49, 51, 53, 55, 57, 58, 59, 61, 62, 63, 65, 68, 69, 71, 72, 73, 75, 79, 80, 81], "italicized": 65, "item": [7, 14, 20, 40, 47], "items": [14, 20, 40, 55, 61, 74, 75], "its": [6, 7, 8, 9, 10, 11, 14, 18, 19, 20, 24, 25, 40, 41, 43, 68, 73, 82], "itself": [6, 13, 19, 40, 75, 79], "jobs": 10, "john": 19, "join": [5, 57, 61, 68, 69, 70, 72, 77, 78, 79], "joinable": 57, "joined": [59, 68], "joining": [60, 61, 72], "joke": 41, "json": 55, "jump": [1, 20], "jumping": 14, "just": [1, 4, 11, 17, 19, 20, 23, 25, 26, 40, 44, 49, 65, 71, 79, 80], "kaddressbook": 47, "kalendar": 47, "kanban": 42, "kb": 19, "kde": [5, 18, 42], "keep": [1, 11, 13, 19, 24, 25, 37, 38, 40, 41, 43, 68, 75, 80], "keeping": 14, "keeps": [12, 38], "kept": [14, 25, 41, 43], "key": [6, 27, 40, 41, 45, 71, 80, 82], "keyboard": [5, 59, 71], "keychain": 48, "keynote": 14, "keyring": 13, "keys": [25, 32], "kfy": 19, "know": [19, 27, 40, 80], "knowledge": [1, 2], "known": [44, 80], "kontact": [5, 42], "korganizer": 47, "kwallet": 13, "label": [19, 27], "labeled": 50, "labelled": [40, 50], "labels": [27, 35], "landing": [1, 41], "language": [43, 63, 81], "languages": 43, "large": [21, 28, 29, 43, 64], "larger": [18, 30, 32], "last": [4, 18, 38, 43, 53, 54, 82], "later": [1, 4, 41, 43, 49, 53, 55, 68, 71, 75], "latest": [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, 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], "latter": 45, "launch": [6, 11, 13, 15, 18, 19, 50], "launchpad": [7, 16], "layout": [59, 60, 72], "ldap": 25, "leading": [3, 19], "learn": [1, 20, 23, 25, 41, 45, 47, 48], "learned": 1, "learns": 14, "least": [38, 41], "leave": [20, 39], "leaving": [19, 43], "left": [1, 4, 18, 19, 20, 26, 35, 40, 41, 43, 47, 49, 51, 59, 64, 65, 79, 82], "leftmost": 59, "legend": 40, "length": 40, "lengthier": 19, "less": [4, 10, 37], "let": [4, 6, 40, 59, 71, 78], "lets": [20, 26, 35, 51, 59, 61, 82], "letsencrypt": 46, "letter": 19, "level": [20, 34, 35, 40, 59, 61, 68, 79], "like": [4, 6, 14, 19, 20, 25, 34, 40, 41, 43, 46, 55, 56, 58, 59, 69, 73, 79, 80], "likely": [18, 25, 43], "liking": 79, "limit": [11, 18, 19, 23, 30, 38, 40, 68, 82], "limitation": 19, "limitations": 14, "limited": [11, 14, 30, 36, 41, 68], "limits": [19, 30], "line": [6, 7, 11, 16, 18, 35, 40, 65], "lines": 18, "link": [1, 11, 18, 19, 20, 27, 28, 40, 55, 58, 65, 68, 71], "linked": 27, "links": [13, 18, 24, 27, 34, 40, 43, 65, 79, 81], "linus": 40, "linux": [8, 12, 18, 24], "list": [1, 3, 9, 18, 19, 20, 34, 35, 37, 40, 41, 47, 48, 53, 56, 58, 65, 68, 69, 71, 73, 80, 81], "listday": 40, "listed": [11, 28, 40, 41, 59, 81], "listening": [7, 8], "listing": [28, 36, 56], "listmonth": 40, "lists": [18, 35, 40, 43, 65, 68], "listweek": 40, "little": [18, 23, 32, 55, 71], "live": 59, "llm": 43, "llms": 43, "load": [43, 79], "lobby": [72, 76], "local": [7, 8, 9, 13, 14, 18, 19, 20, 27, 40, 41, 43, 81], "locally": [9, 14, 55], "locate": [8, 18, 50], "located": [3, 16, 18, 43], "location": [7, 11, 14, 19, 20, 40, 43, 49, 58, 68], "lock": 81, "log": [7, 13, 15, 19, 20, 25, 50, 53, 79, 80, 82], "logged": [13, 43, 81], "logging": [5, 18, 19, 28, 82], "login": [7, 8, 13, 18, 19, 41, 43, 44, 45, 49, 53, 80, 81], "logins": 19, "logo": 82, "logs": [15, 19, 50], "long": [8, 14, 39, 40, 43], "longer": [40, 41, 68, 75, 80], "look": [32, 34, 37, 40, 41, 46, 54, 76, 80, 82], "looking": 43, "looks": [40, 56, 69, 82], "loops": 11, "lose": [5, 25, 37], "losing": 80, "lost": 18, "lot": 9, "loudspeaker": 59, "lower": 79, "lowest": 41, "lts": 13, "luminosity": 79, "mac": 18, "machine": [6, 7, 9], "machines": 7, "macos": [5, 8, 12, 24, 41, 42], "made": [40, 41, 46], "magic": [4, 23], "magically": 25, "mail": [5, 39, 40, 42, 49, 51, 79], "mailbox": 50, "mails": [43, 79], "main": [8, 13, 15, 18, 19, 25, 40, 43, 53, 68, 79, 82], "maintain": 41, "maintained": 13, "major": 13, "make": [11, 16, 19, 23, 24, 25, 28, 34, 38, 40, 41, 46, 48, 57, 59, 81], "makes": [4, 9, 19, 27, 65, 73], "making": [8, 18, 19, 22, 29, 40], "manage": [4, 5, 14, 20, 25, 35, 41, 43, 50, 56, 76, 80, 81], "managed": [40, 43], "management": [19, 23, 32, 35, 42], "manager": [4, 13, 16, 20, 45, 49, 55], "managers": [6, 13, 19], "managing": [5, 20, 29, 30], "mandatory": [44, 61], "manner": [7, 40], "manual": [6, 12, 13, 14, 24, 26, 35, 43, 47, 48], "manually": [6, 11, 19, 23, 28, 38, 43, 49, 57, 61, 78], "many": [11, 25, 40], "map": 19, "mapped": 19, "maps": 19, "mark": [18, 20, 43, 65], "markdown": [2, 5, 68], "marked": [14, 18, 20, 26, 43, 53, 76], "marketing": [40, 81], "marking": 43, "marks": 26, "master": 25, "mastodon": 41, "match": [11, 41, 43, 82], "matched": 18, "matches": [6, 43], "matching": 18, "mate": 19, "matrix": [40, 73], "matterbridge": [72, 76], "mature": 49, "maxchunksize": 8, "maximum": [7, 8, 10, 19, 23, 40], "may": [6, 10, 11, 13, 14, 16, 18, 19, 23, 25, 26, 28, 32, 34, 35, 36, 40, 47, 59, 61, 79], "maybe": 40, "mb": [8, 10], "mdn": 20, "me": 40, "mean": [25, 43, 80], "meaning": [8, 43], "means": [14, 18, 19, 26, 40, 43], "meanwhile": 41, "mechanism": 6, "media": [7, 20, 41, 59, 61, 68], "meet": 40, "meeting": [56, 58, 71, 82], "meetings": 68, "meets": [23, 38], "megabyte": 30, "member": [41, 68], "members": [1, 4, 19, 34], "membership": 41, "memberships": [41, 81], "memory": 23, "mentioned": [56, 68, 81], "mentioning": 68, "mentions": 68, "menu": [1, 11, 18, 19, 20, 26, 35, 40, 41, 43, 47, 48, 50, 57, 59, 61, 64, 65, 68, 70, 71, 73, 74, 75, 79, 81, 82], "menus": 79, "merge": 41, "merged": 41, "message": [18, 19, 25, 39, 40, 46, 50, 54, 55, 56, 57, 65, 68, 75, 79, 80], "messages": [5, 15, 18, 42, 56, 66, 72, 82], "met": 23, "metadata": [18, 32], "method": [6, 19, 26, 27, 44, 57, 80], "methods": [6, 19, 40, 41], "mib": 10, "microphone": [59, 71, 79], "microsoft": [8, 13, 82], "middle": 65, "might": [6, 8, 9, 13, 18, 19, 40, 41, 43, 59, 62, 81], "migrate": [5, 42], "migrated": 51, "migration": 51, "milliseconds": 8, "mime": 11, "min": 8, "minchunksize": 8, "mind": [19, 40], "minimal": 17, "minimized": 43, "minimum": [8, 10, 41, 82], "minute": [8, 38, 40], "minutes": [25, 26, 38, 47], "missing": 20, "mitigate": 79, "mkcol": 19, "mkdir": 19, "mmc": 19, "mobile": [1, 21, 29, 37, 40, 41, 44, 72, 80, 81], "modal": [40, 82], "modals": 79, "mode": [41, 59, 65, 68, 79], "model": 43, "moderation": 68, "moderator": [41, 55, 57, 59, 61, 68, 69, 73, 75, 76], "moderators": [5, 59, 61, 63, 68, 72], "modes": 43, "modification": [11, 18], "modifications": 41, "modified": [20, 41], "modify": [18, 19, 41, 59], "modifying": [18, 30], "monitor": [7, 11, 62, 71], "monitoring": 56, "monochrome": 18, "month": 40, "more": [1, 4, 6, 10, 11, 13, 19, 20, 23, 25, 32, 35, 38, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 54, 55, 57, 59, 68, 69, 72, 73, 80, 81, 82], "moreover": 40, "most": [17, 18, 25, 40, 43, 47, 73, 82], "mount": [19, 20, 26, 27, 34], "mounted": 19, "mounting": 19, "mounts": 26, "mouse": [1, 62, 79], "move": [19, 20, 23, 51, 57, 79], "moved": [8, 23, 43, 68], "moves": 43, "movetotrash": 8, "moving": 43, "mozilla": 82, "ms": [19, 73], "msi": [11, 13, 16], "msiexec": 16, "mtime": 18, "mtimes": 18, "much": [4, 25, 32, 81], "multiple": [18, 20, 34, 35, 40, 55, 57], "music": 7, "must": [7, 11, 13, 18, 19, 25, 26, 27, 37, 40, 41, 43, 50, 51, 61, 69, 73], "mute": [59, 71, 79], "muted": [59, 71], "mutes": 59, "mutually": 43, "my": [1, 7, 19], "mycertificate": 19, "mydata": 9, "mynextcloud": [19, 47], "name": [1, 3, 4, 6, 7, 9, 19, 20, 26, 34, 35, 36, 38, 40, 41, 44, 46, 47, 49, 50, 53, 59, 68, 71, 81, 82], "names": 59, "narrow": [75, 82], "native": 19, "natively": 49, "naturally": 41, "nautilus": [18, 45], "navigate": [19, 20, 34, 36, 41, 43, 48, 50, 79], "navigating": 5, "navigation": [35, 64, 68, 75, 79, 82], "navigator": 19, "nc": [7, 11, 34], "near": [20, 49], "nearly": 9, "necessary": [18, 19, 36, 40, 46, 53], "need": [1, 6, 8, 11, 13, 16, 19, 25, 40, 41, 43, 45, 47, 48, 49, 57, 63, 68, 75], "needed": [10, 34, 37, 40, 47, 68], "needing": 14, "needs": [9, 14, 19, 27, 40, 41, 69], "nemo": [18, 19], "nested": 11, "net": 19, "netrc": 7, "network": [8, 10, 14, 19, 26, 41, 49], "networking": 19, "networks": 41, "never": [25, 37, 38, 40, 68], "new": [1, 4, 6, 8, 11, 14, 15, 19, 20, 23, 25, 26, 35, 36, 38, 41, 47, 49, 50, 51, 53, 55, 58, 68, 75, 79, 81], "newer": [40, 41, 43, 79], "newest": 43, "newly": [11, 14, 40], "newsletters": 43, "next": [4, 6, 7, 8, 13, 14, 17, 26, 27, 35, 36, 40, 41, 43, 45, 46, 47, 49, 50, 55, 59, 61, 62, 65, 68, 77, 81, 82], "nextcloud": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 37, 38, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 59, 68, 69, 71, 72, 73, 79, 80, 81], "nextcloudcmd": 7, "nextcloudpassword": 19, "nextclouds": [27, 34], "nextcloudurl": 7, "nextcloudusername": 19, "nice": 4, "nick": 4, "night": 65, "nitrokey": 80, "no": [6, 8, 11, 14, 18, 19, 20, 25, 35, 40, 41, 43, 50, 68, 75, 80, 81], "noauto": 19, "nobody": [68, 81], "non": [1, 8, 13, 19, 48, 81], "none": [43, 46, 50], "normal": [6, 8, 18, 65], "normally": [25, 40, 43], "not": [1, 6, 7, 8, 9, 10, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 30, 32, 34, 35, 37, 39, 40, 41, 43, 44, 46, 47, 48, 49, 50, 53, 57, 58, 59, 61, 62, 64, 65, 68, 80, 81, 82], "note": [3, 34, 41, 43, 50, 75], "notes": [1, 40, 68], "nothing": 25, "notice": [9, 40], "notification": [6, 18, 34, 36, 40, 59, 61, 68, 69, 71, 75], "notificationrefreshinterval": 8, "notifications": [8, 9, 18, 59, 65, 75, 81, 82], "notified": [40, 68, 71, 75], "notifies": 9, "notify": [6, 9, 14, 59, 68], "notifying": 6, "now": [1, 4, 9, 13, 19, 28, 40, 43, 45, 46, 47, 65, 80], "number": [10, 18, 27, 34, 40, 43, 57, 59, 68], "numbers": [14, 41], "object": [26, 34], "obscured": 68, "observe": 13, "oc": 27, "occ": 26, "occur": 25, "occurred": [9, 19], "occurs": [40, 43], "oct": 19, "of": [1, 3, 4, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 27, 28, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 73, 74, 75, 79, 80, 81, 82], "off": [43, 79], "offer": [14, 34, 40, 79], "offers": [6, 18, 19, 20, 40, 43, 59, 72], "office": [19, 20, 40], "officially": 13, "offline": [14, 18, 19, 26], "often": 40, "ok": 19, "old": [8, 11, 25, 38, 40], "older": [8, 13, 15, 16, 19, 23, 27, 32, 79], "oldest": [23, 32, 38, 43], "omit": 19, "on": [1, 4, 6, 7, 8, 9, 14, 16, 20, 23, 24, 25, 26, 27, 30, 32, 34, 35, 36, 37, 38, 40, 41, 42, 44, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 64, 65, 68, 69, 71, 72, 73, 77, 79, 80, 81, 82], "onboard": [1, 2, 5], "onboards": 4, "once": [1, 14, 20, 26, 35, 40, 43, 50, 51, 53, 57, 68, 80, 82], "one": [1, 4, 6, 7, 9, 10, 11, 13, 18, 19, 20, 24, 34, 35, 37, 38, 40, 41, 43, 44, 55, 58, 59, 65, 69, 80, 81, 82], "ones": [7, 40, 58, 68], "ongoing": [61, 68], "online": [1, 18, 19, 45, 82], "only": [1, 3, 6, 13, 14, 18, 19, 23, 25, 26, 27, 30, 34, 35, 37, 38, 40, 41, 43, 45, 46, 53, 75, 80, 81, 82], "onto": [20, 51], "open": [1, 9, 11, 13, 14, 18, 19, 20, 25, 26, 27, 35, 37, 40, 41, 43, 44, 45, 46, 47, 57, 65, 67, 68, 71, 72, 75, 79, 81, 82], "opendyslexic": 79, "opened": [6, 14, 18, 68], "opening": [1, 14, 15, 40, 59], "opens": [9, 11, 14, 15, 18, 19, 20, 28, 36, 41, 43, 59, 82], "openstack": [19, 26], "opensuse": [13, 19], "opentasks": 44, "operating": [6, 11, 16, 19], "operation": 10, "operations": [18, 19], "operators": 43, "opportunity": 11, "opt": [8, 43], "optimized": 19, "option": [11, 15, 18, 19, 20, 25, 27, 32, 34, 35, 40, 41, 43, 44, 47, 55, 59, 61, 62, 71, 75], "optional": [19, 25, 39, 40, 43], "optionally": [40, 44], "options": [5, 6, 7, 8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 25, 34, 57, 59, 68, 71, 81, 82], "or": [1, 4, 5, 6, 7, 10, 11, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 27, 28, 30, 32, 34, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 54, 55, 57, 58, 61, 62, 63, 64, 65, 68, 69, 70, 72, 74, 75, 78, 79, 80, 81, 82], "order": [11, 34, 41], "ordered": 65, "organic": 41, "organise": 35, "organizations": 41, "organize": [1, 2], "organized": 75, "organizer": [40, 43], "organizing": 4, "original": [32, 43, 63], "os": 7, "other": [1, 3, 6, 7, 9, 10, 11, 13, 14, 15, 18, 19, 20, 23, 25, 26, 27, 28, 32, 34, 36, 40, 41, 43, 46, 47, 48, 59, 62, 64, 65, 68, 69, 70, 72, 73, 80, 81, 82], "others": [1, 18, 24, 39, 40, 43, 68, 73, 81], "otherwise": 14, "our": [13, 14, 41, 42, 43, 72, 79], "out": [4, 5, 18, 19, 25, 34, 38, 40, 42, 43, 56, 59, 62, 68, 72, 79, 80, 82], "outbound": 34, "outgoing": 43, "outlined": 14, "outlining": 56, "outlook": 40, "output": [7, 15], "outside": [13, 25, 35, 43, 81], "over": [1, 18, 23, 26, 40, 43, 48, 68, 75], "overall": 79, "overflow": [18, 26], "overflows": 64, "overhead": 19, "overlapping": 40, "override": [6, 23, 32], "overrides": [6, 7, 10], "overview": [1, 53, 56, 68, 82], "overwrite": [8, 40], "overwriting": 34, "own": [6, 7, 8, 9, 27, 34, 40, 41, 43, 54, 59, 73, 82], "owncloud": [9, 10, 26, 27, 34], "owner": [19, 23, 25, 32, 34, 36, 40, 41], "owners": 25, "ownership": [22, 29, 41], "owns": 40, "package": [6, 7, 13, 16, 18, 19], "packages": [7, 13], "page": [1, 6, 13, 20, 23, 24, 25, 27, 28, 32, 34, 40, 41, 53, 73, 79, 81, 82], "pages": [1, 3, 14, 34, 40, 76], "pane": [11, 43], "panel": [19, 35, 43, 49], "paperclip": 55, "parallel": [10, 14, 18], "parameters": [19, 51], "parent": [18, 20, 41, 57], "part": [4, 11, 19, 41, 43, 59, 68], "participant": [59, 61, 68, 69], "participants": [40, 55, 56, 57, 58, 61, 62, 63, 64, 65, 69, 70, 71, 76, 78], "participation": 40, "particular": 57, "parts": 1, "party": [11, 69], "passed": [7, 19, 38], "passkey": 82, "password": [5, 7, 13, 19, 34, 41, 44, 45, 46, 47, 48, 49, 50, 68, 80, 81, 82], "passwords": [5, 80], "past": 68, "paste": [40, 50], "path": [7, 18, 19, 26, 46, 47, 50], "pathtomountpoint": 19, "pattern": [7, 18, 38, 43], "patterns": 18, "pause": 18, "paused": 18, "pauses": 18, "pc": 19, "pdf": 20, "peers": 1, "pen": 40, "penalty": 19, "pending": 69, "people": [1, 23, 28, 40, 68, 81, 82], "per": [3, 7, 14, 40, 41, 44, 59], "perfectly": 17, "perform": [6, 8, 19, 41, 43], "performance": [19, 43], "performed": 43, "performs": 7, "period": [18, 23, 32, 40, 58, 68, 75, 82], "periodic": 26, "permanently": [3, 11, 14, 23, 40, 68], "permission": [56, 59, 62], "permissions": [19, 36, 41, 59, 68], "permit": 19, "persisted": 8, "persistent": 19, "persists": 26, "person": [9, 40, 68, 82], "personal": [19, 23, 24, 26, 32, 34, 37, 39, 40, 43, 45, 49, 51, 53, 68, 69, 75, 80, 81, 82], "petersteier": 11, "phone": [41, 44, 59, 68, 80, 81], "photo": 68, "photos": 79, "photothumb": 7, "php": 30, "physical": [19, 80], "pick": [36, 40, 45, 47, 55, 68, 79], "picked": 40, "picker": [20, 28, 35, 36], "picture": [4, 81, 82], "pictures": 41, "pie": 14, "pim": [45, 49], "pin": [14, 75], "pinned": 75, "pkgs": 7, "place": [1, 6, 19, 40, 41, 68], "placed": [7, 23], "places": [19, 64, 82], "plain": [20, 53], "plan": [19, 40, 47], "planning": 40, "plasma": 47, "platform": 16, "play": [20, 44, 61], "playback": 20, "please": [3, 19, 25, 40, 41, 43, 62, 79, 81], "plus": [40, 41], "point": [13, 19, 43, 44, 82], "pointing": [9, 26, 43], "policies": 6, "poll": [8, 14, 55], "pop": 6, "popover": 79, "popular": 40, "popup": 40, "port": [7, 8, 19, 43, 46], "portable": 19, "possibility": [19, 37], "possible": [6, 11, 14, 17, 18, 34, 37, 40, 41, 43, 57, 58, 61, 73, 75], "possibly": [19, 40], "post": 50, "posts": 56, "potential": 43, "power": 47, "powers": 23, "ppa": 7, "pre": [17, 18, 43, 65], "precaution": 43, "preconfiguration": 13, "predefined": [18, 40, 43, 59], "prefer": [13, 19, 43, 50], "preference": 40, "preferences": [5, 40, 43, 44, 51, 80], "preferred": [6, 19, 81], "preparation": [17, 40], "prepare": [40, 61], "prepared": 65, "preselected": 1, "present": [6, 26], "presentation": 20, "presenter": 62, "preserve": 18, "preserving": 20, "press": [1, 4, 13, 19, 27, 43, 45, 59, 82], "pressing": [4, 45, 65, 71], "pretty": 25, "prevent": [6, 23, 34, 40, 41, 81], "prevented": 68, "prevents": 6, "preview": [1, 20, 40, 43, 54, 59], "previews": [14, 20, 25], "previous": [11, 20, 38, 40, 49, 50], "previously": 43, "primary": [43, 79], "principals": 50, "prior": 6, "privacy": [37, 43, 61, 82], "private": [40, 81], "privately": 65, "privileges": 6, "pro": 80, "probably": 19, "problem": [11, 80], "problems": 10, "proc": 11, "procedure": 49, "proceed": 43, "process": [7, 11, 38, 40, 51], "processed": [43, 61], "processes": [7, 43], "produce": [8, 18], "produces": 20, "productivity": 42, "profile": [5, 8, 26, 40, 41, 43, 68], "program": [11, 13], "programs": 16, "progress": [14, 18, 59], "project": 42, "promote": 68, "promoted": 64, "prompt": [7, 8, 13, 19, 80], "promptdeleteallfiles": 8, "prompted": [13, 50, 59, 62, 71], "proofs": 80, "propagated": 34, "propagates": 7, "properly": [11, 19, 48], "properties": [19, 41], "propfind": 19, "proposal": 51, "proposes": 43, "protect": [25, 34, 80], "protected": 68, "protecting": 37, "protection": [34, 41], "protocol": [11, 19, 26, 46], "protocols": [49, 73], "provide": [6, 7, 11, 13, 14, 19, 40, 56, 68], "provided": [14, 30, 40, 43, 68, 69], "provider": [13, 14, 19, 25, 63], "providers": 25, "provides": [11, 13, 14, 18, 19, 20, 37, 40, 41, 68], "providing": [25, 54, 55], "provisioning": 13, "proxy": [7, 8, 18], "public": [20, 32, 35, 40, 55, 57, 68, 81], "publicly": 41, "published": [40, 81], "pull": 40, "purpose": 25, "purposes": 39, "push": [59, 79], "put": 68, "qr": [44, 80], "qt": 15, "quality": 79, "question": 18, "questions": 7, "quick": [1, 18, 65, 68, 75], "quicker": 79, "quickly": [4, 20, 43, 68, 82], "quiet": 16, "quit": 16, "quota": [23, 29, 31, 81], "quotas": 32, "quotes": 65, "radio": 41, "raise": 79, "raised": 10, "random": 34, "randomly": 43, "range": [19, 75, 82], "ranging": 11, "rate": [40, 47], "rather": [19, 49], "re": [19, 20, 25, 32, 40, 43], "reach": [39, 79], "reached": [26, 40, 43], "reaches": 68, "reaction": 59, "read": [7, 19, 25, 26, 34, 37, 40, 41, 43, 68, 81], "readers": 79, "reading": [14, 79], "reads": 8, "ready": [17, 26], "real": 63, "rearrange": 82, "reason": [46, 68], "reasons": 41, "reboot": 19, "reboots": 19, "receive": [19, 28, 40, 43, 59, 65, 69, 75, 80], "received": 71, "receives": [27, 36, 61], "receiving": [34, 43, 63, 69], "recent": [18, 19, 20, 43, 82], "recently": [20, 53], "recheck": 26, "recipient": [23, 27, 34, 40], "recipients": 43, "recognisable": 14, "recognize": 19, "recommend": [14, 19, 24, 30, 43], "recommended": 19, "reconnect": 19, "record": [61, 76], "recorded": [59, 61], "recording": [59, 72, 76], "recordings": 61, "recover": 25, "recoverable": 20, "recovery": 5, "recurrence": 40, "red": [18, 26, 59, 61], "reddit": 50, "redirected": [68, 71, 80], "redo": 49, "reduce": 10, "reduced": 79, "reducing": [14, 79], "refer": [13, 19, 30], "reference": [20, 61, 75], "references": 17, "reflect": 18, "reflected": [26, 34, 40], "refresh": [19, 47, 79], "refreshed": [40, 49], "reg": 11, "regardless": [40, 55], "regedit": 19, "region": 40, "register": [11, 13, 44], "registered": [11, 44, 59, 68, 77], "registering": 11, "registry": [6, 11, 19], "regular": [11, 19, 26, 35, 40, 41, 49, 59], "regularly": [10, 40], "regulations": 61, "reject": 36, "rejected": 40, "rejection": 36, "rejoining": 68, "related": [16, 40, 43, 46, 82], "relates": 43, "relative": 40, "release": [13, 17, 40], "releases": [13, 17], "relevant": [9, 40, 41, 43, 75], "remain": 43, "remaining": 10, "remains": 18, "remind": 43, "reminder": 40, "reminders": [68, 75], "remote": [7, 8, 9, 14, 16, 19, 20, 25, 26, 27, 34, 40, 46, 49], "remotely": 9, "remotepollinterval": 8, "removal": [11, 16], "removals": 41, "remove": [6, 11, 16, 18, 25, 26, 27, 35, 37, 40, 43, 68, 82], "removed": [18, 32, 40, 43, 56, 68], "removes": [15, 19], "removing": [16, 35], "rename": [20, 23, 35], "renamed": 43, "renames": 34, "render": 18, "reopen": 43, "repeat": [7, 50], "repeating": 40, "replace": [19, 40, 44, 50, 59], "replacement": [39, 68], "replies": [56, 68, 75], "reply": [43, 65], "report": [17, 43, 79], "reported": 19, "repositories": 7, "repository": [7, 8], "represents": 43, "reproduce": 17, "reproducible": 13, "request": [19, 30, 43], "requested": 44, "require": [30, 40], "required": [6, 7, 26, 40, 46, 59, 63], "requirements": 73, "requires": [7, 19, 30, 40, 61, 68], "requiring": [37, 43, 61, 80], "reschedule": 65, "reset": 39, "resetting": 40, "reshared": 40, "resharing": 34, "resizes": 59, "resolve": 9, "resolved": 9, "resolving": 9, "resource": [19, 40, 44, 45, 47], "resources": [41, 45, 47], "respective": [40, 41, 42, 48, 51, 57], "respond": [40, 43, 56], "responded": 40, "response": [40, 43], "responses": 40, "responsive": 79, "responsiveness": 5, "rest": [19, 24], "restart": 19, "restarts": 6, "restore": [23, 25, 38, 40], "restoring": 40, "restrict": [5, 35], "restricted": [19, 35], "restriction": 41, "result": [8, 14, 18], "resulting": 47, "results": [8, 82], "resume": [18, 43], "retention": [23, 32, 35, 43, 68], "retried": [10, 43], "retries": 7, "retrieve": [19, 41], "retrieved": 41, "retry": [26, 43], "retrying": [18, 26], "return": [20, 27, 59], "returned": 25, "revealed": 14, "revert": [34, 68], "review": [19, 40], "reviewed": 40, "revoked": 19, "rf": 16, "rfc": 40, "right": [14, 18, 19, 34, 38, 43, 47, 49, 59, 64, 65, 68, 79, 82], "rights": [34, 43], "ring": 59, "rising": 59, "risk": 17, "rm": 16, "roaming": 8, "role": [41, 81], "roll": [38, 56], "room": [23, 57], "rooms": [41, 72, 76], "root": [7, 14, 19, 34, 36, 40], "row": [20, 35, 64], "rows": 35, "rss": 5, "rule": 43, "rules": [35, 40, 43], "run": [7, 8, 19, 23, 25, 26, 38, 76], "running": [14, 16, 19, 25], "runs": 9, "rw": 19, "sabredav": 19, "safari": 82, "safe": [16, 37, 68, 80], "said": 6, "sales": 81, "samba": 26, "same": [4, 6, 7, 9, 13, 14, 18, 19, 26, 35, 40, 43, 49, 50, 51, 57, 61, 69, 80], "save": [11, 14, 19, 40, 41, 50, 53, 55, 61, 79, 81], "saved": [4, 19, 26, 35, 38, 40, 41, 43, 50, 61], "saves": 43, "saving": [46, 47], "say": 9, "says": [19, 25], "scan": [11, 26, 80], "scanned": 80, "scanner": 44, "scary": 4, "scenario": 23, "scenarios": 9, "schannel": 50, "schedule": [13, 40, 51, 65], "scheduled": [40, 58, 65, 68], "scheme": 11, "scope": [13, 81], "scoped": 43, "scopes": 81, "scp": 19, "screen": [13, 41, 44, 50, 60, 61, 63, 64, 72, 78, 79, 80], "screensharing": 62, "script": [19, 25, 43], "scripting": 19, "scripts": [16, 43], "scroll": [19, 43, 50, 64, 65], "seamless": 25, "seamlessly": 14, "search": [1, 20, 25, 35, 36, 45, 68, 71, 77, 79, 82], "searchable": 45, "searched": 43, "searches": [43, 82], "searching": [40, 43, 68, 81], "sec": 8, "second": [1, 5, 6, 38, 41, 43, 55, 65, 68], "seconds": [8, 10, 38, 47, 59, 61, 80], "secret": [7, 40, 80], "secrets": 19, "section": [6, 8, 10, 11, 19, 25, 35, 36, 39, 40, 41, 43, 51, 54, 61, 68, 71, 78], "sections": [6, 76], "secure": [19, 37], "security": [5, 19, 25, 29, 37, 44, 50, 82], "see": [1, 5, 8, 9, 11, 12, 13, 18, 19, 20, 23, 24, 25, 26, 27, 28, 32, 34, 35, 36, 39, 40, 41, 43, 55, 57, 58, 59, 61, 62, 68, 69, 71, 73, 80, 82], "seeing": [34, 81], "seen": [25, 50], "sees": 37, "select": [1, 4, 13, 14, 19, 20, 26, 28, 35, 40, 41, 43, 44, 45, 46, 48, 49, 50, 55, 58, 65, 68, 71, 75, 80], "selected": [14, 20, 35, 40, 41, 43], "selecting": [1, 13, 14, 40, 43, 55, 61], "selection": [35, 40, 43, 80], "selections": 40, "selective": 7, "selector": [40, 65], "self": [19, 41, 48, 75], "semi": 18, "send": [19, 28, 40, 43, 44, 57, 59, 65, 69, 75, 79], "sender": [43, 75], "senders": 43, "sending": [28, 43, 66, 72, 75], "sends": 43, "sense": 9, "sensitive": 68, "sent": [9, 27, 40, 43, 68], "separate": [40, 43, 81], "separately": [24, 41, 43, 48, 80], "server": [7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 33, 35, 37, 40, 42, 43, 45, 46, 47, 48, 49, 50, 52, 53, 61, 68, 69, 77, 80, 81, 82], "servercert": 19, "servers": [19, 20, 26, 27, 34, 40, 69, 81], "service": [19, 25, 26, 46], "services": [19, 25, 26, 28, 56, 73, 76], "session": [8, 19, 41], "sessions": 8, "set": [3, 8, 19, 25, 30, 32, 34, 39, 41, 43, 44, 47, 48, 50, 58, 61, 63, 68, 75, 76, 81, 82], "sets": 40, "setting": [3, 5, 9, 11, 15, 23, 34, 40, 42, 43, 47, 68, 80], "settings": [3, 5, 6, 8, 9, 14, 19, 26, 34, 35, 36, 37, 39, 40, 41, 45, 46, 47, 48, 50, 51, 53, 54, 55, 59, 61, 63, 68, 69, 72, 73, 78, 79, 80, 81], "settle": 40, "setup": [11, 40, 50, 57, 73], "setups": 10, "several": [43, 61, 65, 68, 74, 79], "sftp": [19, 26], "shall": 8, "share": [1, 18, 19, 23, 25, 26, 28, 32, 37, 40, 41, 42, 55, 61, 62, 72, 81], "shared": [1, 2, 14, 19, 20, 25, 26, 27, 32, 34, 40, 55, 61, 62, 68, 75, 81], "sharee": 34, "sharees": 34, "shares": [14, 20, 22, 23, 25, 26, 29, 40, 75, 81], "sharing": [5, 19, 27, 29, 36, 60, 69, 72], "shift": [41, 79], "short": [17, 39, 40, 41, 43], "shortcut": [19, 43, 59, 68], "shortcuts": [59, 71, 79, 82], "shortly": 61, "should": [4, 6, 8, 10, 13, 18, 19, 40, 43, 44, 45, 46, 47, 50, 68, 80], "show": [3, 8, 11, 18, 19, 20, 39, 40, 41, 43, 59, 78, 80, 82], "showexperimentaloptions": 8, "showing": [3, 9, 18, 20, 36, 40], "showmaindialogasnormalwindow": 8, "shown": [8, 18, 34, 35, 40, 41, 43, 45, 59, 68, 82], "shows": [9, 19, 20, 26, 34, 35, 40, 41, 43, 53, 59, 64, 82], "sick": 39, "side": [4, 9, 18, 19, 34, 37, 41, 49, 51, 54], "sidebar": [1, 4, 14, 19, 26, 27, 34, 35, 38, 40, 41, 43, 57, 59, 68, 70, 75, 79, 82], "sieve": 43, "sign": [18, 19, 41, 48], "signature": 43, "significant": [19, 43], "significantly": 19, "silent": [6, 59], "similar": [14, 18, 19, 39, 40, 41], "similarly": [43, 45], "simple": [4, 26, 28, 38, 40, 43], "simplified": 40, "simply": [16, 18, 24, 41, 43, 55, 75], "since": [19, 34, 38, 43, 49, 80], "single": [7, 18, 20, 35, 40, 41, 43, 62, 68, 71, 80], "singleton": 43, "sip": 68, "sits": 18, "situation": [9, 10], "size": [8, 10, 18, 19, 30, 32, 41, 79], "sizes": 30, "sizing": 8, "skip": [59, 79], "skipped": 10, "skipping": 59, "skipupdatecheck": 6, "slash": 18, "slot": 40, "slots": 40, "slow": 19, "small": [48, 62], "smaller": [57, 59], "smartphone": 80, "smb": 26, "smtp": 43, "snap": 19, "sni": 19, "snippets": 43, "snoozed": 43, "snoozing": 43, "so": [4, 6, 8, 11, 13, 14, 18, 19, 20, 25, 26, 28, 35, 40, 41, 43, 47, 53, 59, 62, 65, 68, 71, 79, 80, 81, 82], "social": [41, 81], "socks": 8, "software": [11, 13, 16, 79], "solely": 43, "solutions": [19, 34], "solve": 80, "solved": 11, "some": [4, 8, 9, 13, 18, 25, 26, 32, 34, 40, 43, 47, 56, 68, 79, 81], "somebody": 71, "someone": [9, 40, 41, 59, 68, 81], "something": 80, "sometimes": 40, "somewhere": 80, "soon": [14, 40], "soonest": 23, "sorting": 43, "source": [13, 19, 36, 37], "sourcedir": 7, "sources": 47, "space": [1, 2, 14, 18, 19, 32, 38, 43, 59, 71, 79], "spam": 43, "span": 40, "sparkle": 6, "speak": 71, "speaker": 61, "special": [14, 17, 25, 28, 50, 68], "specially": 16, "specific": [7, 16, 38, 40, 41, 43, 57, 58, 65, 75, 78, 82], "specifically": 11, "specified": [7, 15, 43], "specifies": [8, 10], "specify": [6, 7, 15, 19, 40, 41, 46, 57], "specifying": 41, "speech": [59, 63], "speed": 43, "speeds": 19, "split": 43, "spoken": 59, "spreadsheet": 20, "square": 41, "ssh": 26, "ssl": [7, 19, 46], "stable": [13, 17], "stacked": 43, "standard": [7, 13, 40], "standardized": 14, "standards": 79, "stands": 19, "star": 20, "starred": 20, "start": [11, 19, 37, 40, 43, 51, 57, 61, 68, 70, 71, 75], "started": [2, 5, 19, 59, 61, 68, 71], "starting": [8, 15, 40, 43, 72], "starts": [6, 39, 59, 78], "startup": [18, 19], "state": [7, 14, 18, 19, 43], "status": [6, 19, 24, 26, 39, 59, 68, 82], "stay": [19, 23, 40, 43, 58], "stdout": 15, "step": [11, 13, 35, 40, 46, 50, 68], "steps": [19, 27, 34, 43, 45, 47, 48, 49, 50], "still": [1, 8, 14, 20, 25, 32, 40, 41, 43, 46, 61, 68, 79], "stolen": 80, "stop": [18, 40, 43, 57, 61, 62], "stopping": 61, "stops": 80, "storage": [14, 19, 21, 25, 29, 31, 80], "store": [18, 19, 25, 32, 41, 44, 80], "stored": [3, 14, 19, 25, 38, 41, 43], "stores": [14, 19], "stream": [61, 71, 81], "strikethrough": [14, 40], "string": 18, "stripes": 40, "strongly": 19, "structure": [1, 2, 20, 41], "structures": 25, "sub": [23, 44], "subdirectory": 19, "subfolder": 7, "subfolders": 11, "subject": 43, "subjects": 43, "submenu": 75, "submit": 40, "subpage": 1, "subpages": 1, "subscribe": [49, 75], "subscribed": 75, "subscription": [40, 52], "subscriptions": 40, "subsequent": [14, 19], "substantially": 19, "substring": 43, "successful": [13, 26, 27, 40], "successfully": [6, 50], "such": [6, 9, 13, 18, 19, 25, 26, 32, 35, 40, 41, 43, 58, 61, 65, 68, 75, 79, 80, 81, 82], "sudo": 16, "suggested": [43, 49], "suit": 82, "suitable": 40, "summarizing": 43, "summary": 56, "superior": 34, "support": [13, 14, 16, 18, 19, 40, 41, 45, 48, 50, 80], "supported": [7, 15, 20, 40, 41, 43, 49, 65, 73, 82], "supporting": 40, "supports": [13, 14, 19, 38, 40, 41, 43, 49, 80], "sure": [11, 16, 19, 38, 40, 46, 48, 59, 80], "swift": [19, 26], "switch": [7, 9, 20, 59, 64, 79, 82], "switches": 7, "symbol": [40, 43], "symbolic": [11, 18], "sync": [7, 13, 16, 18, 19, 24, 40, 43, 44, 49, 50, 80], "synced": [11, 16, 18, 24, 40, 47], "synchronization": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 21, 29, 49, 50], "synchronizations": 7, "synchronize": [7, 10, 19, 40, 47, 49, 50], "synchronized": [9, 12, 18, 19, 49], "synchronizes": 49, "synchronizing": [5, 24, 42], "syncing": [18, 41, 46, 48], "syncs": 11, "syntactical": 18, "syntax": [18, 19, 65, 68], "sysctl": 11, "system": [6, 7, 8, 9, 11, 14, 16, 18, 19, 20, 29, 31, 38, 40, 41, 43, 48, 50, 59, 61, 63, 69], "systems": [6, 8, 13, 18, 19, 26], "tab": [11, 18, 19, 20, 34, 38, 40, 55, 62, 68, 71, 75, 79], "tabbed": 20, "tables": 65, "tabs": 18, "tackled": 68, "tag": [20, 43], "tagging": [35, 43], "tags": [20, 29, 31], "take": [1, 11, 16, 27, 40, 43, 47, 61, 68], "taken": 40, "takes": [8, 14, 25, 32, 41, 82], "taking": 40, "talk": [0, 5, 34, 39, 41, 43, 54, 56, 57, 62, 65, 67, 69, 71, 73, 74, 79, 82], "talking": 59, "tap": [44, 59], "tapping": 59, "target": [8, 14, 36, 40], "targetchunkuploadduration": 8, "targeting": 43, "targets": [34, 82], "task": [1, 42, 45, 65], "tasks": [19, 40, 43, 45, 47, 56, 68], "teach": 43, "team": [1, 2, 5, 26, 42, 68, 79], "teams": [68, 73], "technical": 14, "technically": 13, "telegram": 41, "telephone": 81, "tell": [18, 40, 43], "tells": 18, "templates": 4, "temporarily": [11, 19, 59], "temporary": 32, "ten": 26, "tentative": [40, 43], "tentatively": [40, 43], "terabytes": 11, "term": [40, 45], "test": [13, 19, 23, 47], "tested": [9, 11], "testers": 17, "testing": [8, 17], "tests": 43, "text": [1, 4, 9, 14, 18, 20, 25, 55, 65, 72, 79, 80], "than": [1, 15, 18, 19, 23, 30, 32, 38, 49, 55, 59, 65, 80], "thanks": 50, "that": [1, 3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23, 25, 27, 28, 30, 32, 34, 35, 37, 38, 39, 40, 41, 43, 46, 47, 49, 50, 56, 57, 58, 59, 61, 65, 68, 77, 80, 81, 82], "the": [1, 3, 4, 5, 8, 9, 10, 12, 13, 14, 15, 16, 17, 21, 24, 26, 27, 28, 29, 30, 32, 34, 35, 36, 38, 39, 42, 44, 46, 47, 48, 50, 51, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "their": [6, 8, 13, 14, 19, 20, 23, 25, 27, 34, 36, 40, 43, 50, 53, 57, 59, 68, 81], "them": [3, 4, 6, 7, 8, 9, 11, 13, 14, 20, 23, 25, 26, 27, 34, 35, 40, 41, 42, 48, 55, 57, 68, 79, 80], "theme": 79, "themes": 5, "theming": 79, "themselves": [57, 63], "then": [1, 4, 6, 7, 11, 13, 14, 18, 19, 23, 25, 27, 28, 32, 35, 40, 41, 43, 44, 47, 49, 50, 53, 61, 63, 68, 70, 75, 77, 80], "there": [1, 6, 9, 16, 18, 19, 23, 25, 34, 40, 41, 43, 61, 65, 68, 70, 71, 75], "therefore": [37, 46], "these": [9, 13, 14, 18, 20, 24, 25, 27, 30, 34, 40, 41, 43, 45, 47, 68, 80, 81, 82], "they": [4, 7, 9, 14, 18, 19, 23, 25, 27, 36, 39, 40, 41, 43, 55, 59, 61, 64, 68, 69, 71, 80], "thing": [18, 49], "think": [1, 40], "third": [11, 25], "this": [3, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 30, 32, 34, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 57, 58, 59, 61, 65, 68, 69, 71, 73, 77, 78, 79, 80, 81, 82], "those": [23, 24, 40, 41, 42, 49, 53], "though": [8, 11, 18, 19, 25], "thread": 75, "threaded": 43, "threads": [43, 75], "three": [13, 18, 20, 26, 34, 35, 40, 41, 43, 55, 57, 59, 64], "threshold": [10, 82], "through": [7, 11, 13, 14, 19, 25, 26, 30, 34, 40, 43, 57, 64], "throughout": 40, "throw": 44, "thumbnail": 20, "thumbnails": [25, 32], "thunderbird": [5, 40, 41, 42], "thus": 7, "tick": 61, "tile": 64, "tiles": 64, "time": [8, 9, 11, 13, 14, 18, 19, 23, 25, 34, 35, 38, 39, 40, 43, 47, 48, 56, 57, 58, 59, 61, 65, 68, 71, 75, 78, 80, 82], "timegridday": 40, "timegridweek": 40, "timeout": [8, 10], "timeouts": 25, "times": [7, 18, 19], "timestamp": [36, 38], "timestamps": 23, "timezone": 40, "timezones": 40, "title": [1, 4, 40, 43, 55, 58, 75], "tls": [19, 50], "tlsv": 19, "tmp": 7, "to": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 23, 24, 26, 27, 28, 30, 32, 36, 37, 38, 39, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 69, 70, 71, 73, 74, 75, 77, 78, 79, 80, 81, 82], "today": 82, "together": [1, 40, 48, 61, 81], "toggle": [20, 40, 43, 59, 64, 68, 71, 79], "token": [19, 34, 40, 53, 71, 80], "tokens": [5, 40, 53], "too": [40, 43], "tool": [1, 42, 80], "toolbar": [1, 4, 35, 43, 62, 71], "tools": [6, 16, 35, 42], "top": [1, 18, 19, 20, 35, 40, 41, 43, 57, 59, 61, 68, 70, 71, 82], "total": [32, 40], "totp": [19, 80], "touchpad": 62, "towards": 44, "tracker": 79, "trail": 20, "transcribes": 63, "transcription": [60, 72], "transfer": [19, 22, 26, 29, 40, 41], "transferred": [19, 36], "transferring": 40, "transfers": 19, "translate": 43, "translated": [3, 63], "translation": [60, 72], "translations": 43, "transparent": 40, "trash": [8, 20, 23, 25, 27, 32, 41, 53], "trashbin": 23, "trashed": 23, "travelling": 40, "tray": [8, 9, 13, 18], "tree": 18, "tried": 43, "tries": [7, 46, 68], "trigger": [26, 40, 43, 49], "triggered": [8, 13, 43], "triggering": 43, "trouble": 19, "troubleshooting": 46, "true": [15, 43], "trust": [7, 19, 37], "trusted": [19, 43, 81], "try": [13, 39, 46, 47], "trying": 25, "tt": 4, "tumblr": 41, "tunnel": 19, "turn": 74, "turned": [43, 49], "turning": 8, "two": [1, 5, 6, 9, 11, 16, 18, 24, 35, 38, 41, 43, 45, 49, 50, 53, 55, 59, 79, 81], "txt": 9, "type": [1, 6, 8, 13, 14, 18, 19, 20, 27, 35, 40, 46, 48, 49, 56, 59, 65, 79, 80], "typeface": 79, "types": [14, 20, 41, 65, 68], "typical": 18, "typically": [18, 56, 80], "typing": [1, 36, 43, 68], "ubuntu": [7, 13, 16], "ui": [8, 40], "umount": 19, "un": 25, "unable": [9, 10], "unaffected": 10, "unauthorized": 80, "unavailable": [14, 19, 26, 68], "unchanged": 43, "uncheck": [35, 40, 41], "uncomment": 19, "und": 4, "under": [6, 10, 19, 26, 35, 36, 43, 45, 50, 68, 69, 71, 78, 79, 80], "undergoing": 8, "understand": 32, "understanding": 43, "undesired": 18, "undo": 40, "undone": 14, "unencrypted": [19, 25, 32, 37], "unfocus": 79, "unfortunately": 19, "unified": [75, 82], "unifying": 4, "uninstall": 16, "uninstallation": [5, 12], "uninstalling": 16, "unintended": 8, "unique": [25, 40, 59, 81], "universal": [5, 11], "universities": 6, "unknown": 44, "unless": [7, 9, 11, 19, 40, 80], "unlike": 14, "unlinks": 27, "unlock": 80, "unlocking": 14, "unmonitored": 11, "unmount": 19, "unmute": [59, 71], "unmuted": [59, 71], "unmutes": 59, "unordered": 65, "unorthodox": 11, "unpin": 75, "unread": [43, 65, 68, 79, 82], "unresolved": 9, "unselect": 41, "unsent": 43, "unshare": [34, 40], "unshares": 40, "unsubscribed": 43, "unsuccessful": 43, "unsynced": 7, "unsynchronized": 14, "until": [8, 17, 19, 23, 26, 32, 38, 40, 43, 55, 71, 75, 78], "unusable": 18, "up": [8, 14, 18, 19, 32, 41, 44, 48, 50, 61, 63, 68, 75, 76, 80, 82], "upcoming": [50, 58, 68, 82], "update": [5, 6, 9, 12, 18, 40, 41, 44, 47], "updated": [9, 13, 19, 40, 53, 63], "updater": [5, 12, 13], "updates": [25, 41, 43], "updating": [6, 18], "upgraded": 27, "upload": [8, 9, 18, 19, 20, 26, 28, 30, 32, 34, 40, 41, 59], "uploaded": [8, 9, 10, 14, 32, 40, 61, 68], "uploaders": 28, "uploading": [30, 40, 71], "uploads": [8, 9, 20, 21, 22, 29, 32], "upon": [6, 19, 43, 68, 69], "upper": 49, "url": [7, 13, 18, 19, 27, 32, 34, 40, 44, 45, 47, 48, 49, 50, 82], "urls": 41, "us": [43, 79], "usable": 79, "usage": [23, 24, 81, 82], "use": [4, 6, 7, 8, 11, 14, 16, 18, 19, 20, 25, 26, 27, 39, 40, 41, 44, 46, 47, 48, 50, 53, 56, 59, 63, 64, 68, 69, 71, 74, 79, 80, 81, 82], "usebasicauth": 19, "used": [7, 8, 11, 15, 16, 18, 19, 32, 35, 37, 38, 39, 40, 41, 43, 50, 53, 79], "useful": [14, 19, 20, 30, 40, 43, 59, 71, 81], "user": [3, 7, 8, 9, 14, 16, 19, 23, 26, 27, 32, 34, 36, 37, 38, 39, 41, 43, 44, 46, 49, 50, 51, 53, 59, 68, 69, 77, 81], "usermod": 19, "username": [7, 13, 18, 19, 27, 34, 36, 44, 45, 46, 47, 48, 49, 50], "users": [6, 8, 9, 13, 14, 17, 18, 19, 23, 25, 27, 30, 32, 35, 36, 40, 41, 43, 55, 56, 57, 68, 69, 81, 82], "uses": [6, 7, 11, 15, 18, 19, 25, 38, 49, 59], "using": [5, 6, 8, 10, 12, 13, 16, 21, 22, 24, 28, 29, 33, 34, 39, 42, 44, 50, 53, 56, 61, 64, 68, 70, 71, 75, 81, 82], "usual": 25, "usually": [11, 43, 46], "utf": 19, "utilize": 43, "vacation": 39, "valid": [40, 43, 50], "validate": 49, "validated": 18, "value": [6, 10, 11, 15, 19, 23, 41, 43], "values": [8, 10, 18, 41], "var": 15, "variable": [8, 9, 10], "variables": [5, 12, 30, 40], "variety": [80, 81], "various": [40, 41], "vary": 79, "vcards": 41, "vcf": 41, "vendor": 6, "venue": 40, "verbose": 7, "verification": 68, "verify": [19, 40, 43], "version": [3, 6, 8, 9, 11, 13, 16, 17, 18, 19, 20, 29, 31, 32, 40, 41, 43, 48, 49, 51, 81, 82], "versioning": [19, 38], "versions": [6, 8, 16, 17, 19, 32, 38, 82], "vertical": 43, "very": [4, 11, 19, 41, 79], "via": [3, 5, 9, 14, 19, 20, 28, 32, 34, 38, 40, 43, 45, 49, 59, 68, 71], "vibrate": 59, "video": [61, 62, 68, 71, 79], "videos": 20, "view": [6, 13, 19, 26, 35, 40, 41, 43, 49, 55, 58, 59, 62, 65, 68, 75, 82], "viewable": 40, "viewed": 20, "viewer": [50, 79], "viewers": 79, "viewing": 34, "views": 20, "virtual": [16, 81], "visibility": [14, 36, 41, 68, 81], "visible": [3, 9, 18, 20, 26, 34, 35, 41, 43, 45, 46, 65, 68], "visit": [24, 43], "visitors": 4, "vista": 19, "visual": 79, "visualized": 14, "voice": 59, "volume": 7, "vote": 40, "voted": 55, "votes": 40, "vpn": 19, "wait": 17, "waiting": [18, 38, 43, 78], "want": [1, 3, 6, 13, 17, 18, 19, 25, 27, 28, 34, 40, 41, 43, 44, 47, 49, 51, 57, 59, 65, 68, 75, 79, 81], "wants": [4, 40], "warn": [11, 43], "warning": [18, 19, 25, 40, 43], "warnings": [18, 19], "was": [8, 34, 38, 40, 43, 80, 82], "watches": 11, "way": [1, 11, 14, 18, 19, 25, 37, 40, 41, 43, 46, 53, 58, 80], "ways": [16, 55, 61], "we": [1, 4, 11, 13, 14, 17, 19, 24, 25, 30, 38, 40, 42, 43, 79], "web": [5, 6, 13, 14, 18, 19, 21, 23, 24, 27, 29, 30, 37, 40, 42, 43, 44, 72, 79], "webauthn": 80, "webclient": 19, "webdav": [21, 26, 29, 45], "webflow": [44, 45], "webinar": [72, 76], "webinars": [76, 78], "website": [42, 72], "wednesday": 40, "week": [38, 40, 68, 81], "weekly": 41, "weeks": [41, 68], "well": [10, 13, 16, 39, 40, 43, 45, 47, 61, 79], "were": [8, 23, 40, 41, 50, 56, 69], "what": [4, 11, 18, 19, 25, 26, 32, 35, 40, 56, 81], "whatever": 50, "wheel": 62, "when": [1, 4, 6, 8, 9, 10, 13, 14, 18, 19, 20, 25, 26, 27, 28, 30, 32, 34, 38, 39, 40, 41, 43, 44, 47, 49, 50, 53, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 78, 81], "whenever": 25, "where": [4, 6, 7, 8, 9, 14, 18, 34, 36, 38, 40, 41, 55, 57, 59, 68, 71, 80, 82], "whereas": 6, "wherever": 24, "whether": [8, 17, 19, 26, 36, 40, 43, 55, 59], "which": [4, 6, 8, 9, 11, 13, 14, 18, 19, 20, 23, 25, 26, 35, 38, 40, 41, 42, 43, 45, 46, 47, 49, 51, 53, 55, 57, 59, 65, 68, 79, 80, 81, 82], "while": [9, 14, 19, 40, 41, 43, 45, 55, 59, 61, 65, 70, 79], "white": 18, "whiteboards": 1, "who": [4, 5, 20, 25, 27, 34, 40, 55, 61], "whole": [14, 25, 40], "whom": 40, "wide": 81, "wider": 81, "widget": 43, "widgets": [43, 82], "wiki": 73, "wildcards": [7, 18, 43], "will": [1, 4, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 23, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 57, 58, 59, 61, 62, 63, 65, 68, 69, 70, 71, 79, 80, 81], "window": [8, 9, 11, 14, 15, 19, 28, 45, 49, 59, 62, 71], "windows": [5, 7, 8, 12, 18, 24, 26, 42, 45], "wine": 19, "winhttp": 19, "wipe": [16, 40], "wish": [40, 43, 49, 59], "with": [1, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 20, 23, 24, 26, 27, 28, 32, 35, 39, 42, 43, 44, 51, 53, 54, 55, 56, 59, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 76, 78, 79, 81, 82], "within": [8, 14, 16, 41, 43, 50, 58, 68, 74, 75, 81], "without": [1, 3, 11, 13, 14, 15, 18, 19, 26, 28, 34, 38, 40, 41, 43, 59, 68, 71], "wizard": [11, 13, 18], "won": [9, 13, 19, 40, 80], "words": [4, 37], "work": [9, 14, 18, 19, 25, 35, 40, 43, 44, 47, 53, 80, 81], "workflow": 82, "workflows": [1, 35], "working": [1, 46, 80], "works": [19, 25, 26, 40, 43, 45, 80], "workshops": 41, "workspace": 8, "world": 81, "worry": 14, "would": [7, 10, 19, 25, 26, 40, 43, 59, 79, 80], "wow": 4, "writable": 41, "write": [1, 2, 15, 40, 68], "writes": 15, "writing": [19, 43, 48], "written": 40, "wrong": [11, 18], "www": 50, "xing": 41, "xml": 19, "xmlhttprequest": 19, "xmlns": 19, "xp": 19, "year": [40, 82], "yellow": [9, 18, 25, 26], "yes": [25, 35, 40], "yet": [13, 14, 24, 25, 40, 41, 45, 58, 59, 62], "you": [1, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 82], "your": [1, 2, 3, 5, 6, 9, 11, 12, 13, 14, 15, 16, 19, 21, 23, 24, 25, 27, 29, 30, 32, 35, 37, 39, 42, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 58, 59, 62, 63, 65, 69, 71, 75, 79, 82], "yourpassword": 19, "yourself": [19, 35, 40, 68, 75], "yum": 19, "zip": 20, "zoom": [5, 62], "~/": 19, "\u00b7\u00b7": 35, "\u2019d": [40, 55], "\u2019drop": 55, "\u2019ll": [1, 28, 40, 57], "\u2019n": 55, "\u2019re": [4, 11, 27, 40], "\u2019s": [3, 4, 6, 8, 13, 14, 16, 19, 20, 26, 32, 34, 36, 38, 40, 43, 44, 45, 46, 49, 57, 59, 61, 75, 80, 81, 82], "\u2019t": [4, 9, 13, 19, 25, 38, 40, 41, 43, 45, 65, 79, 80], "\u2019ve": [17, 19], "\u201cedit": 14, "\u201d.": 1, "\u2026)": 43, "\u2026.": 4, "\u2026\u300d": 19, "\u2026\u300f": 19, "\u2075,": 44, "\u2261)": 35, "\u3001*": 44, "\u3001\u300d": 44, "\u3002,": 44, "\u3002nextcloud": 52, "\u3002\u3057\u304b\u3057": 44, "\u3002\uff08": 0, "\u300c+": 44, "\u300cdecrypt": 25, "\u300d)": [15, 40, 50], "\u300d,": [4, 19, 40, 49, 50, 61], "\u300d.": [4, 11, 27, 40, 43, 50, 61], "\u300d:": 19, "\u300f,": 19, "\u300f.": 19, "\u3042\u3063": 0, "\u3042\u306a\u305f": [44, 52], "\u3042\u308a": [0, 44], "\u3042\u308b": 0, "\u3044\u308b": 0, "\u304a\u3088\u3073": [0, 52], "\u304a\u308a": 0, "\u304a\u6301\u3061": 44, "\u304a\u6c17": 0, "\u304b\u3064": 52, "\u304b\u3089": [0, 44, 52], "\u304c\u3044\u3064": 0, "\u304f\u3060": 44, "\u3053\u305d": 52, "\u3053\u3068": 0, "\u3053\u306e": 0, "\u3053\u308c": 44, "\u3054\u3068": 0, "\u3055\u3044": 44, "\u3059\u3050": 52, "\u3059\u3079": [0, 52], "\u3059\u3079\u3066": [0, 52], "\u3059\u308b": [0, 52], "\u305b\u308b": 44, "\u305d\u306e": [0, 44], "\u305d\u308c\u3089": [0, 44], "\u305f\u3044": 44, "\u305f\u304b": 0, "\u305f\u304f": 44, "\u305f\u3059\u3079\u3066": 0, "\u305f\u3081": [0, 44, 52], "\u3060\u3051": 0, "\u3060\u3055\u3044": [0, 44], "\u3067\u304d": [0, 44, 52], "\u3067\u304d\u308b": 0, "\u3067\u304f": [0, 44], "\u3067\u3057\u3087": 44, "\u3067\u3059": [44, 52], "\u3068\u3044\u3046": 44, "\u3068\u304d": 44, "\u3068\u3057\u3066": 0, "\u3069\u306e": 0, "\u306a\u3044": 0, "\u306a\u3057": 0, "\u306a\u3063": 0, "\u306a\u3069": 0, "\u306a\u308a": 0, "\u306a\u308b": 44, "\u306b\u3064\u3044\u3066": 0, "\u306b\u3088\u3063\u3066": 0, "\u306b\u95a2\u3059\u308b": 0, "\u306e\u3067": 44, "\u306e\u307f": 0, "\u306f\u3058\u3081": 5, "\u306f\u3059\u3079\u3066": 0, "\u3078\u3088\u3046": 52, "\u307e\u3059": [0, 44, 52], "\u307e\u305f": [0, 44, 52], "\u307e\u3067": 52, "\u307e\u3068\u3081": 0, "\u307e\u3068\u3081\u3066": 0, "\u3082\u306e": 44, "\u3088\u3046": 0, "\u308c\u308b": [0, 44], "\u3092\u901a\u3057": 44, "\u30a2\u30a4\u30b3\u30f3": [0, 44], "\u30a2\u30ab\u30a6\u30f3\u30c8": 44, "\u30a2\u30af\u30bb\u30b9": [0, 5, 29, 44], "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0": 5, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30bf\u30d6": 0, "\u30a2\u30c9\u30ec\u30b9": 44, "\u30a2\u30d7\u30ea": [0, 44, 52], "\u30a2\u30d7\u30ea\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": 44, "\u30a4\u30d9\u30f3\u30c8": 0, "\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9": 0, "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb": [0, 44], "\u30a6\u30a3\u30f3\u30c9\u30a6": 44, "\u30a8\u30f3\u30c8\u30ea": 0, "\u30aa\u30d5": 0, "\u30aa\u30d6\u30b8\u30a7\u30af\u30c8": 0, "\u30aa\u30d7\u30b7\u30e7\u30f3": 0, "\u30aa\u30f3": 0, "\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9": 52, "\u30ab\u30c6\u30b4\u30ea\u30fc": 0, "\u30ab\u30ec\u30f3\u30c0": 44, "\u30ab\u30ec\u30f3\u30c0\u30fc": 0, "\u30ab\u30ec\u30f3\u30c0\u30fc\u30a2\u30d7\u30ea": 44, "\u30af\u30e9\u30a4\u30a2\u30f3\u30c8": 52, "\u30af\u30ea\u30c3\u30af": 0, "\u30b0\u30eb\u30fc\u30d7": 0, "\u30b3\u30d4\u30fc": 0, "\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u30fc": 52, "\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9": 52, "\u30b5\u30a4\u30c9\u30d0\u30fc": 5, "\u30b5\u30dd\u30fc\u30c8": 52, "\u30b5\u30de\u30ea\u30fc": 0, "\u30b5\u30de\u30ea\u30fc\u30e1\u30fc\u30eb": 0, "\u30b5\u30fc\u30d0\u30fc": [44, 52], "\u30b5\u30fc\u30d3\u30b9\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc": 52, "\u30b9\u30c6\u30c3\u30d7": 44, "\u30b9\u30c8\u30ea\u30fc\u30e0": 0, "\u30bb\u30ad\u30e5\u30a2": 52, "\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2": 52, "\u30bd\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3": 52, "\u30bf\u30b0": 0, "\u30bf\u30b9\u30af": [0, 44], "\u30bf\u30c3\u30d7": 44, "\u30bf\u30d6": 0, "\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8": 0, "\u30c1\u30a7\u30c3\u30af": 0, "\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9": 0, "\u30c7\u30a3\u30ec\u30af\u30c8\u30ea": 52, "\u30c7\u30b9\u30af\u30c8\u30c3\u30d7": [0, 52], "\u30c7\u30d0\u30a4\u30b9": 52, "\u30c7\u30d5\u30a9\u30eb\u30c8": 0, "\u30c7\u30fc\u30bf": [44, 52], "\u30c8\u30b0\u30eb": 0, "\u30c8\u30fc\u30af\u30f3": 0, "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3\u30d0\u30fc": 0, "\u30d0\u30fc\u30b8\u30e7\u30f3": 40, "\u30d1\u30b9\u30ef\u30fc\u30c9": 44, "\u30d5\u30a1\u30a4\u30eb": [5, 52], "\u30d5\u30a3\u30fc\u30c9": 5, "\u30d5\u30a3\u30fc\u30c9\u30ea\u30fc\u30c0\u30fc": 0, "\u30d5\u30a9\u30eb\u30c0": 0, "\u30d5\u30a9\u30eb\u30c0\u30fc": [0, 52], "\u30d6\u30e9\u30a6\u30b6": 0, "\u30d6\u30e9\u30a6\u30b6\u30fc": 5, "\u30d7\u30c3\u30b7\u30e5": 0, "\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8": 52, "\u30dc\u30bf\u30f3": 44, "\u30de\u30c8\u30ea\u30c3\u30af\u30b9": 0, "\u30e2\u30d0\u30a4\u30eb": [0, 44], "\u30e6\u30fc\u30b6": [0, 44], "\u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb": 5, "\u30ea\u30b9\u30c8": 44, "\u30ea\u30f3\u30af": 0, "\u30ed\u30b0\u30a4\u30f3": 44, "\u30ed\u30fc\u30ab\u30eb": 52, "\u4e0a\u8a18": 0, "\u4e0a\u90e8": 0, "\u4e0b\u90e8": 0, "\u4ed8\u3051": 0, "\u4ed8\u4e0e": 44, "\u4efb\u610f": 0, "\u4f5c\u6210": [0, 44], "\u4f7f\u7528": [5, 52], "\u4fbf\u5229": 0, "\u500b\u4eba": [0, 52], "\u5165\u308a": 0, "\u5165\u308c\u308b": 0, "\u5165\u529b": 44, "\u5171\u6709": [0, 52], "\u518d\u5ea6": 44, "\u5229\u7528": 0, "\u524a\u9664": 0, "\u524d\u65e5": 0, "\u5354\u529b": 52, "\u53d6\u308b": 0, "\u53d7\u3051": 0, "\u53d7\u3051\u308b": 52, "\u53ef\u80fd": 44, "\u540c\u671f": [5, 42, 52], "\u540d\u524d": 0, "\u542b\u307e": 0, "\u5834\u5408": 0, "\u5834\u6240": 52, "\u5909\u66f4": [0, 40], "\u5927\u4f01\u696d": 52, "\u5b89\u5168": 52, "\u5b8c\u4e86": 44, "\u5b9f\u884c": 0, "\u5bfe\u5fdc": 0, "\u5de6\u5074": 0, "\u5f71\u97ff": 0, "\u5fc5\u8981": 44, "\u60c5\u5831": 44, "\u624b\u4f5c\u696d": 44, "\u62bc\u4e0b": 44, "\u63d0\u4f9b": [0, 52], "\u6574\u7406": 0, "\u65b0\u3057\u3044": 44, "\u65b9\u6cd5": 44, "\u65e5\u4ed8": 0, "\u65e9\u304f": 0, "\u6642\u7cfb": 0, "\u6642\u9593": 0, "\u66f4\u65b0": 0, "\u6700\u8fd1": 0, "\u6709\u52b9": 0, "\u691c\u7d22": 5, "\u6982\u8981": 0, "\u6a5f\u5668": 44, "\u6a5f\u80fd": 0, "\u6bce\u671d": 0, "\u6bce\u9031": 0, "\u6e96\u62e0": 52, "\u7121\u52b9": 0, "\u7121\u6599": 52, "\u7279\u5b9a": 0, "\u72ec\u7acb": 0, "\u7528\u901a": 0, "\u753b\u9762": 44, "\u76f4\u5f8c": 0, "\u76f4\u63a5": 0, "\u77e5\u8a2d": 0, "\u78ba\u8a8d": [0, 44], "\u79d8\u5bc6": 0, "\u79fb\u52d5": 0, "\u7a2e\u985e": 0, "\u7acb\u3061\u4e0a\u3052\u308b": 44, "\u7ba1\u7406": 52, "\u7d5e\u308a\u8fbc\u3080": 0, "\u7d71\u5408": 5, "\u7d9a\u3051": 44, "\u7f6e\u304f": 52, "\u7ffb\u8a33": 52, "\u81ea\u5206": 0, "\u81ea\u5b85": 52, "\u884c\u3044": 0, "\u884c\u304d": 44, "\u8868\u793a": [5, 44], "\u8907\u6570": 52, "\u8981\u4ef6": 5, "\u8981\u6c42": 44, "\u8a18\u8f09": 0, "\u8a18\u9332": 0, "\u8a2d\u5b9a": [5, 44], "\u8a31\u53ef": 44, "\u8a8d\u8a3c": 0, "\u8cc7\u683c": 44, "\u8cfc\u8aad": 44, "\u8d77\u304d": 0, "\u8d77\u52d5": 44, "\u8ffd\u52a0": 0, "\u8ffd\u8de1": 0, "\u9001\u4fe1": 0, "\u901a\u77e5": 5, "\u9023\u7d61": [0, 44], "\u9023\u7d61\u5148": 0, "\u9031\u9593": 0, "\u904b\u7528": 52, "\u9078\u3093": 44, "\u9078\u629e": [0, 44], "\u9589\u3058": 44, "\u958b\u3044": 0, "\u958b\u304d": [0, 44], "\u95a2\u9023": 0, "\uff08\u4f8b": 0, "\uff11\u3064\u3081": 44}, "titles": ["\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea\u306e\u4f7f\u7528", "Getting started", "Collectives", "Access Markdown files", "How to onboard your team", "\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u76ee\u6b21", "The Automatic Updater", "Using the Command-Line Client", "Configuration File", "Conflicts", "Environment Variables", "FAQ", "Desktop Client", "Installation", "macOS Virtual Files Client", "Command-Line Options", "Uninstallation", "Update channels", "Using the Synchronization Client", "Accessing Nextcloud files using WebDAV", "Accessing your files using the Nextcloud web interface", "\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30a2\u30af\u30bb\u30b9", "Sharing & collaboration", "Managing deleted files", "Desktop and mobile synchronization", "Using server-side encryption", "Using external storage", "Using federation shares", "Making anonymous uploads", "\u30d5\u30a1\u30a4\u30eb\uff08Files\uff09\u3068\u540c\u671f", "Large file uploads", "Managing your files", "Storage quota", "Security & encryption", "File sharing", "System tags", "Transfer ownership", "Using end-to-end encryption", "Version control", "Setting out-of-office messages", "Using the Calendar app", "Using the Contacts app", "Groupware", "Using the Mail app", "Android \u3068\u306e\u540c\u671f", "Synchronizing with the GNOME desktop", "Synchronizing with iOS", "Synchronizing with KDE Kontact", "Synchronizing with macOS", "Synchronizing with Thunderbird", "Synchronizing with Windows 10", "Migrate data between instances", "Nextcloud latest \u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb \u306f\u3058\u3081\u306b", "Manage connected browsers and devices", "Appearance", "Attachments", "Bots and commands", "Breakout rooms", "Calendar integration with Talk", "Joining a call", "Calls", "Call recording", "Screen sharing", "Transcription and translation", "Call layout", "Sending messages", "Chat", "Conversations", "Conversations", "Federation", "Files integration", "Join a call or chat as guest", "Talk", "Matterbridge", "Apps integrating with messages", "Interacting with messages", "For moderators", "Open conversations", "Webinar and lobby", "Universal access", "Using two-factor authentication", "Setting your preferences", "The Nextcloud web interface"], "titleterms": {"-directories": 11, "-end": 37, "-factor": 80, "-line": [7, 15], "-of": 39, "-office": 39, "-on": 49, "-one": 68, "-party": 19, "-screen": 71, "-side": 25, "-specific": 53, "-to": [37, 68], "-up": 43, "/add": 40, "2ee": 37, "2fa": 50, "about": 11, "accepting": 69, "access": [3, 34, 35, 79], "accessing": [19, 20, 26], "account": [18, 43], "accounts": [18, 48], "actions": [14, 43], "activity": 20, "add": [40, 41, 43, 49], "adding": [18, 26, 34, 37, 41], "address": [41, 81], "addresses": 43, "advanced": 43, "ai": 43, "alias": 14, "all": [43, 77], "alternative": 49, "an": [4, 37, 40, 43, 69, 71, 77], "and": [13, 19, 20, 24, 34, 35, 40, 41, 43, 53, 56, 58, 59, 63, 65, 68, 71, 78, 79, 82], "android": 44, "anonymous": 28, "answer": 19, "app": [23, 40, 41, 43], "appearance": 54, "applications": 80, "appointment": 40, "appointments": 40, "apps": 74, "archive": 68, "are": [11, 23], "as": 71, "assign": 40, "assigning": 35, "at": 41, "attachments": [40, 55], "attempting": 11, "attendees": 40, "audio": 59, "authentication": 80, "automated": 40, "automatic": [6, 43], "automation": 43, "autoresponder": 43, "autoresponders": 43, "availability": 40, "backends": 26, "background": 25, "backgrounds": 59, "ban": 68, "basic": 6, "be": 25, "being": 11, "between": 51, "bin": 40, "birthday": 40, "blocks": 43, "body": 43, "book": 81, "booked": 40, "booking": 40, "books": 41, "bots": 56, "breakout": [57, 59], "browser": 59, "browsers": 53, "browsing": 35, "busy": 40, "by": 35, "calendar": [40, 43, 46, 50, 58], "calendars": [40, 49], "call": [59, 61, 63, 64, 71], "calls": 60, "can": [25, 81], "card": 74, "cardbook": 49, "change": [11, 25, 26, 43], "changes": [11, 53], "channels": 17, "chat": [54, 55, 65, 66, 71, 74], "checking": 40, "client": [7, 12, 14, 18, 59, 80], "clients": [19, 24, 59], "cloud": 27, "codes": 80, "collaboration": 22, "collectives": [1, 2], "color": 43, "command": [7, 15, 19], "commands": 56, "comments": 20, "compact": [43, 54], "compose": 43, "composer": 43, "conditions": 43, "configuration": [8, 14, 40], "configure": 57, "configuring": [18, 80], "conflict": 14, "conflicts": 9, "connected": 53, "connecting": 20, "consent": 61, "considerations": 80, "contact": 41, "contacts": [41, 43, 46, 49, 50], "context": 14, "continuously": 11, "control": 38, "controlling": 59, "controls": 20, "conversation": [40, 68, 75, 77], "conversations": [54, 67, 68, 77], "create": [4, 40, 41, 43, 74], "creates": 4, "creating": [19, 20, 27, 34, 35, 40, 68, 77], "credential": 7, "credits": 50, "curl": 19, "cyberduck": 19, "dashboard": [43, 68, 82], "data": [51, 81], "deck": 74, "deeper": 11, "delegation": 43, "delete": [40, 43], "deleted": 23, "deleting": 38, "deletion": 43, "desktop": [12, 18, 19, 24, 45, 59], "details": 20, "detection": [26, 43], "device": [37, 53], "devices": 53, "disable": 25, "disabled": 25, "disk": 10, "display": 43, "displaying": 37, "disposable": 68, "dolphin": 19, "download": [13, 59], "downloaded": 14, "drives": 19, "drop": 28, "duplicate": [40, 41], "during": 59, "edit": [11, 40, 41, 43], "editing": [40, 75], "editor": 18, "email": [27, 71], "emoji": 65, "enable": [11, 43], "enabling": 37, "encrypted": 25, "encrypting": 37, "encryption": [25, 33, 37], "end": 37, "envelope": 43, "environment": 10, "environments": 6, "even": 11, "event": [40, 43], "events": [40, 58], "everyone": 4, "example": [7, 9], "exclude": 7, "experimental": 9, "expiration": 68, "explorer": 19, "export": 40, "extensions": 14, "external": 26, "factor": 80, "faq": [11, 25], "favorites": 43, "features": 14, "federated": [27, 34, 40], "federation": [20, 27, 34, 69], "file": [8, 14, 18, 19, 20, 26, 28, 30, 34], "files": [3, 11, 14, 18, 19, 20, 23, 25, 26, 28, 29, 31, 35, 55, 70], "filter": [43, 68], "filtering": [20, 43], "finder": 14, "first": [1, 4], "folder": [11, 37, 43], "folders": [11, 20], "follow": 43, "for": [40, 43, 76], "from": [18, 26, 43, 58, 70, 74], "full": [59, 71], "functionality": 11, "general": [16, 18], "getting": 1, "global": 81, "gnome": 45, "grid": [20, 64], "group": [25, 68], "groups": [34, 41], "groupware": 42, "guest": 71, "hand": 59, "handling": 7, "happens": 23, "hardware": 80, "holiday": 40, "hours": 40, "how": [4, 11, 23, 25, 43], "icon": 18, "icons": [18, 20], "ics": 40, "if": 80, "ignored": 18, "immediately": 59, "import": 40, "importing": 41, "in": [6, 11, 43, 55, 75, 80, 81], "inbox": 43, "inboxes": 43, "included": 79, "indicators": 14, "info": 43, "information": 41, "initial": 13, "inserting": 65, "install": [7, 13], "installation": 13, "instances": 51, "instructions": 16, "integrating": 74, "integration": [14, 43, 58, 70], "interacting": 75, "interface": [11, 20, 82], "internal": [34, 43], "into": 74, "introduction": 4, "introductions": 4, "invitation": [43, 69], "invitations": [40, 43], "invite": 40, "ios": 46, "is": 25, "issues": [14, 19], "it": [11, 25], "items": 41, "job": 25, "join": [59, 71], "joining": [59, 71], "junk": 43, "kde": [19, 47], "keep": 14, "key": 25, "keyboard": [43, 79], "known": [14, 19], "kontact": 47, "language": 11, "large": 30, "latest": 52, "layout": [43, 64], "levels": 35, "like": 11, "line": 19, "link": 34, "linux": [6, 11, 13, 16, 19], "list": [7, 43, 54, 59], "live": 63, "lobby": 78, "local": 11, "locally": 11, "locking": 14, "logging": 80, "login": 25, "lose": 80, "low": 10, "macos": [6, 13, 14, 16, 18, 19, 48], "mail": 43, "mailing": 43, "making": 28, "manage": [53, 57, 61], "manager": [18, 19], "manages": 23, "managing": [23, 31, 35, 40, 41, 43, 53, 68], "manually": 41, "mapping": 19, "markdown": [3, 65], "matterbridge": 73, "meeting": [40, 43], "meetings": 58, "members": 41, "mention": 43, "menu": 14, "merging": 41, "message": [43, 74], "messages": [39, 43, 54, 65, 68, 74, 75], "method": 49, "microsoft": 19, "migrate": 51, "minimize": 43, "mnemonic": 37, "mobile": [19, 24, 59], "modal": 43, "mode": 43, "moderators": 76, "modified": 11, "more": 65, "mounts": 19, "move": [11, 25, 43], "moving": 20, "multiple": 41, "my": 11, "naming": 38, "nautilus": 19, "navigating": [20, 79, 82], "network": 18, "new": [18, 27, 34, 40, 43], "next": [1, 25], "nextcloud": [18, 19, 20, 34, 44, 52, 82], "not": [11, 25], "note": 68, "notifications": [40, 68], "of": [11, 54], "official": 19, "on": [11, 13, 18, 19, 43, 75], "onboard": 4, "one": 68, "only": 49, "open": 77, "operation": 43, "options": [15, 40, 41], "or": [20, 25, 40, 41, 59, 71], "order": 43, "organize": 41, "other": 71, "others": 34, "our": 4, "out": 39, "outbox": 43, "over": 19, "overlay": 18, "overview": 9, "own": [4, 26, 28], "ownership": 36, "page": 4, "parent": 4, "participants": [59, 68], "password": [25, 53], "passwords": 53, "phishing": 43, "picker": 65, "picture": 41, "pinning": 75, "planned": 25, "player": 20, "polls": 55, "possible": 25, "preferences": 81, "preventing": 6, "previewing": 20, "priority": 43, "privacy": 68, "private": [25, 68], "problem": 19, "problems": 19, "profile": [81, 82], "progress": 40, "project": 4, "proposal": 40, "proposals": 40, "proposed": 40, "public": [19, 34], "publishing": 40, "quick": 43, "quota": 32, "quotas": 23, "raise": 59, "reactions": 59, "recipient": 43, "recommended": 49, "record": 59, "recording": 61, "recovery": [25, 80], "recurring": 40, "refresh": 43, "reliably": 11, "reminder": 75, "reminders": [40, 43], "remove": 41, "replies": 43, "replying": 65, "requirements": 13, "resources": 40, "responding": 40, "responsiveness": 79, "restrict": 81, "roles": 41, "room": 40, "rooms": [40, 57, 59], "rss": 0, "schedule": 58, "scheduled": 43, "scheduling": 65, "screen": [59, 62, 71], "search": [43, 75], "searching": 20, "second": 80, "security": [33, 43], "see": 81, "selecting": 20, "self": 68, "sending": [65, 69], "server": [11, 13, 25], "set": [18, 40, 59], "setting": [28, 39, 75, 81], "settings": [18, 43, 71, 82], "setup": [13, 48], "share": [20, 27, 34, 71, 74], "shared": [23, 41, 43], "shares": [19, 27, 34], "sharing": [14, 18, 20, 22, 25, 26, 34, 40, 55, 62, 81], "shortcuts": 43, "sidebar": 20, "silent": 65, "smart": [43, 65], "snooze": 43, "solution": 19, "some": 11, "sort": 43, "space": [10, 23], "speaker": 64, "start": 59, "started": 1, "starting": [59, 71], "status": [14, 18, 20, 40], "step": 4, "steps": 1, "stops": 11, "storage": [23, 26, 32], "sub": 11, "subfolder": 43, "subscribe": 40, "summary": [43, 65], "supported": [13, 14, 26], "switch": 43, "sync": [11, 14], "synchronization": [18, 24], "synchronized": 11, "synchronizing": [45, 46, 47, 48, 49, 50], "syncing": 11, "system": [13, 35], "systray": 18, "tag": 35, "tags": [35, 43], "talk": [40, 58, 59, 68, 70, 72], "task": 43, "tasks": 74, "team": [4, 41], "teams": 41, "template": 4, "text": 43, "than": 11, "the": [6, 7, 11, 18, 19, 20, 23, 25, 37, 40, 41, 43, 45, 49, 59, 81, 82], "their": 4, "themes": 79, "there": 11, "they": 11, "third": 19, "this": 25, "thread": 43, "threaded": 75, "thunderbird": 49, "time": 41, "times": 40, "tlsv": 50, "to": [4, 11, 20, 25, 34, 35, 40, 41, 43, 65, 68], "together": 4, "tokens": 80, "tracked": 11, "transcription": 63, "transfer": 36, "translation": [43, 63], "transparency": 40, "trash": [40, 43], "troubleshooting": [48, 50], "two": 80, "unified": 43, "uninstallation": 16, "universal": 79, "unsubscribe": 43, "up": [28, 40, 43, 59], "update": 17, "updater": 6, "updates": 6, "uploaded": 11, "uploading": [9, 20, 28], "uploads": [28, 30], "usage": 7, "use": [1, 43], "user": [11, 18, 25, 40], "users": 34, "using": [7, 18, 19, 20, 25, 26, 27, 37, 40, 41, 43, 49, 65, 80], "variables": 10, "version": 38, "versions": 13, "via": [27, 79], "video": [20, 59], "view": [20, 54, 64, 77], "viewing": 40, "virtual": [14, 18, 41], "want": 11, "warning": 11, "was": 11, "web": [20, 82], "webdav": 19, "webinar": 78, "what": [1, 23], "when": [11, 23], "who": 81, "why": 1, "widget": 40, "window": 18, "windows": [6, 11, 13, 16, 19, 50], "winscp": 19, "with": [19, 25, 34, 40, 41, 45, 46, 47, 48, 49, 50, 58, 74, 75, 80], "without": 25, "workflow": 6, "working": 40, "works": 11, "would": 11, "you": 80, "your": [4, 18, 20, 26, 28, 31, 34, 40, 41, 43, 48, 68, 80, 81], "zoom": 79, "\u2019s": [1, 25], "\u201d-": 4, "\u3059\u308b": 44, "\u306a\u3044": 44, "\u306f\u3058\u3081": 52, "\u30a2\u30af\u30bb\u30b9": 21, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30a2\u30d7\u30ea": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b5\u30de\u30ea\u30fc": 0, "\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u30b9\u30c8\u30ea\u30fc\u30e0": 0, "\u30ab\u30ec\u30f3\u30c0\u30fc": 44, "\u30b3\u30f3\u30c6\u30f3\u30c4": 5, "\u30b5\u30a4\u30c9\u30d0\u30fc": 0, "\u30d5\u30a1\u30a4\u30eb": [0, 21, 29, 44], "\u30d5\u30a3\u30eb\u30bf\u30fc": 0, "\u30d5\u30a3\u30fc\u30c9": 0, "\u30d6\u30e9\u30a6\u30b6\u30fc": 82, "\u30e1\u30fc\u30eb": 0, "\u30e2\u30d0\u30a4\u30eb\u30a2\u30d7\u30ea": 44, "\u30e6\u30fc\u30b6\u30fc\u30de\u30cb\u30e5\u30a2\u30eb": 52, "\u4f7f\u7528": 0, "\u5229\u7528": 44, "\u540c\u671f": [29, 44], "\u5834\u5408": 44, "\u691c\u7d22": 82, "\u6bce\u65e5": 0, "\u76ee\u6b21": 5, "\u7d71\u5408": 82, "\u8868\u793a": 0, "\u8981\u4ef6": 82, "\u8a2d\u5b9a": 0, "\u901a\u77e5": [0, 44], "\u9023\u7d61\u5148": 44, "\u983b\u5ea6": 0}}) \ No newline at end of file diff --git a/server/latest/user_manual/ja_JP/session_management.html b/server/latest/user_manual/ja_JP/session_management.html index 79a2b24f76b..25f8073292f 100644 --- a/server/latest/user_manual/ja_JP/session_management.html +++ b/server/latest/user_manual/ja_JP/session_management.html @@ -73,7 +73,7 @@
                                                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                                                  • Talk
                                                                                                                                                                                                                                  • Collectives
                                                                                                                                                                                                                                  • diff --git a/server/latest/user_manual/ja_JP/talk/appearance.html b/server/latest/user_manual/ja_JP/talk/appearance.html index b059f671ecd..9843c39c688 100644 --- a/server/latest/user_manual/ja_JP/talk/appearance.html +++ b/server/latest/user_manual/ja_JP/talk/appearance.html @@ -74,7 +74,7 @@
                                                                                                                                                                                                                                  • Nextcloud latest ユーザーマニュアル はじめに
                                                                                                                                                                                                                                  • The Nextcloud web interface
                                                                                                                                                                                                                                  • アクティビティアプリの使用
                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                  • Files & synchronization
                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                  • ファイル(Files)と同期
                                                                                                                                                                                                                                  • Groupware
                                                                                                                                                                                                                                  • Talk
                                                                                                                                                                                                  -

                                                                                                                                                                                                  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/latest/user_manual/pt_BR/groupware/sync_ios.html b/server/latest/user_manual/pt_BR/groupware/sync_ios.html index ebdbab607a4..0f7545ad822 100644 --- a/server/latest/user_manual/pt_BR/groupware/sync_ios.html +++ b/server/latest/user_manual/pt_BR/groupware/sync_ios.html @@ -185,7 +185,7 @@

                                                ContatosNota

                                                If you select CalDAV only calendar syncing will be made available.

                                                -

                                                Se ainda não estiver funcionando, dê uma olhada em Solução de problemas de Contatos e 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 e Calendário ou Resolução de problemas de descoberta de serviços.

                                                diff --git a/server/latest/user_manual/zh_HK/groupware/sync_ios.html b/server/latest/user_manual/zh_HK/groupware/sync_ios.html index 28664cd1a53..6c702833530 100644 --- a/server/latest/user_manual/zh_HK/groupware/sync_ios.html +++ b/server/latest/user_manual/zh_HK/groupware/sync_ios.html @@ -185,7 +185,7 @@

                                                聯絡人Note

                                                If you select CalDAV only calendar syncing will be made available.

                                              -

                                              如果仍然無法正常運行,請查看 聯絡人與日曆故障排除服務發現故障排除

                                              +

                                              如果仍然無法正常運行,請查看 聯絡人與日曆故障排除服務發現故障排除