diff --git a/docs/integrations/builtin/credentials/nextcloud.md b/docs/integrations/builtin/credentials/nextcloud.md index 4a0ece71d..381e2bf10 100644 --- a/docs/integrations/builtin/credentials/nextcloud.md +++ b/docs/integrations/builtin/credentials/nextcloud.md @@ -26,13 +26,13 @@ Refer to [Nextcloud's user manual](https://docs.nextcloud.com/server/stable/user To configure this credential, you'll need a [Nextcloud](https://nextcloud.com/) account and: -- Your **Web DAV URL** +- Your **WebDAV URL** - Your **User** name - Your **Password** or an app password To set it up: -1. To create your **Web DAV URL**: If Nextcloud is in the root of your domain: Enter the URL you use to access Nextcloud and add `/remote.php/webdav/`. For example, if you access Nextcloud at `https://cloud.n8n.com`, your WebDAV URL is `https://cloud.n8n.com/remote.php/webdav`. +1. To create your **WebDAV URL**: If Nextcloud is in the root of your domain: Enter the URL you use to access Nextcloud and add `/remote.php/webdav/`. For example, if you access Nextcloud at `https://cloud.n8n.com`, your WebDAV URL is `https://cloud.n8n.com/remote.php/webdav`. - If you have Nextcloud installed in a subdirectory, enter the URL you use to access Nextcloud and add `//remote.php/webdav/`. Replace `` with the subdirectory Nextcloud's installed in. - Refer to Nextcloud's [Third-party WebDAV clients](https://docs.nextcloud.com/server/stable/user_manual/en/files/access_webdav.html#third-party-webdav-clients) documentation for more information on constructing your WebDAV URL. 2. Enter your **User** name. @@ -49,7 +49,7 @@ To configure this credential, you'll need a [Nextcloud](https://nextcloud.com/) - An **Authorization URL** and **Access Token URL**: These depend on the URL you use to access Nextcloud. - A **Client ID**: Generated once you add an OAuth2 client application in **Administrator Security Settings**. - A **Client Secret**: Generated once you add an OAuth2 client application in **Administrator Security Settings**. -- A **Web DAV URL**: This depends on the URL you use to access Nextcloud. +- A **WebDAV URL**: This depends on the URL you use to access Nextcloud. To set it up: @@ -67,7 +67,7 @@ To set it up: 8. Copy the Nextcloud **Client Identifier** for your OAuth2 client and enter it as the **Client ID** in n8n. 9. Copy the Nextcloud **Secret** and enter it as the **Client Secret** in n8n. -10. In n8n, to create your **Web DAV URL**: If Nextcloud is in the root of your domain, enter the URL you use to access Nextcloud and add `/remote.php/webdav/`. For example, if you access Nextcloud at `https://cloud.n8n.com`, your WebDAV URL is `https://cloud.n8n.com/remote.php/webdav`. +10. In n8n, to create your **WebDAV URL**: If Nextcloud is in the root of your domain, enter the URL you use to access Nextcloud and add `/remote.php/webdav/`. For example, if you access Nextcloud at `https://cloud.n8n.com`, your WebDAV URL is `https://cloud.n8n.com/remote.php/webdav`. - If you have Nextcloud installed in a subdirectory, enter the URL you use to access Nextcloud and add `//remote.php/webdav/`. Replace `` with the subdirectory Nextcloud's installed in. - Refer to Nextcloud's [Third-party WebDAV clients](https://docs.nextcloud.com/server/stable/user_manual/en/files/access_webdav.html#third-party-webdav-clients) documentation for more information on constructing your WebDAV URL. diff --git a/docs/integrations/builtin/credentials/sendemail/index.md b/docs/integrations/builtin/credentials/sendemail/index.md index dcb586db5..955939a63 100644 --- a/docs/integrations/builtin/credentials/sendemail/index.md +++ b/docs/integrations/builtin/credentials/sendemail/index.md @@ -31,8 +31,15 @@ To configure this credential, you'll need: - A **User** email address - A **Password**: This may be the user's password or an app password. Refer to the documentation for your email provider. - The **Host**: The SMTP host address for your email provider, often formatted as `smtp..com`. Check with your provider. -- A **Port** number: The default is port `465`, commonly used for SSL. Other common ports are `587` for TLS or `25` for no encryption. Check with your provider. -- **SSL/TLS**: When turned on, SMTP will use SSL/TLS. +- A **Port** number: The port depends on the encryption method: + - Port `465` for SSL/TLS (implicit encryption) + - Port `587` for STARTTLS (explicit encryption) + - Port `25` for no encryption (not recommended) + Check with your email provider for their specific requirements. +- **SSL/TLS**: This toggle controls the encryption method: + - Turn **ON** for port `465` (uses implicit SSL/TLS encryption) + - Turn **OFF** for port `587` (uses STARTTLS explicit encryption) + - Turn **OFF** for port `25` (no encryption) - **Disable STARTTLS**: When SSL/TLS is disabled, the SMTP server can still try to [upgrade the TCP connection using STARTTLS](https://en.wikipedia.org/wiki/Opportunistic_TLS). Turning this on prevents that behaviour. - **Client Host Name**: If needed by your provider, add a client host name. This name identifies the client to the server.