Typo fix and SSL clarification (#3776)

This commit is contained in:
Kartik Balasubramanian 2025-10-17 07:00:32 +01:00 committed by GitHub
parent 1d93e3c56c
commit 191ce0978f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 6 deletions

View File

@ -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 `/<subdirectory>/remote.php/webdav/`. Replace `<subdirectory>` 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 `/<subdirectory>/remote.php/webdav/`. Replace `<subdirectory>` 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.

View File

@ -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.<provider>.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.