Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/control-panel/settings/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ The username used to log in to your SMTP server. Not all SMTP servers require yo

The password used to log in to your SMTP server. Not all SMTP servers require you to _authenticate_, but many of them do. In those cases you will need to specify the username (above) and password.

### Connection type

Cryptographic protocol for SMTP. Can be set to Unencrypted (not recommended), SSL or TLS

### TLS version

When using TLS, provide the version that you can find in the instructions from your SMTP provider. Version 1.2 is the most commonly used

### Mail format

When you send email via the Communicate section of your Control Panel, you are able to send HTML formatted emails. This preference sets whether the Communicate section has "Plain text" or "HTML" selected by default.
Expand Down
16 changes: 16 additions & 0 deletions docs/general/system-configuration-overrides.md
Original file line number Diff line number Diff line change
Expand Up @@ -3062,6 +3062,22 @@ Example Usage:

**Also found in CP:** `Settings --> Access Throttling`: [Time Interval](control-panel/settings/throttling.md#time-interval)

### `tls_crypto_method`

Stream encryption method, when using TLS for sending emails over SMTP.

| Value | Behavior |
| ------------------------------------------ | -------------------------- |
| STREAM_CRYPTO_METHOD_TLSv1_0_CLIENT | TLS v1.0 |
| STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT | TLS v1.1 |
| STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT | TLS v1.2 (default) |
| STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT | TLS v1.3 (as of PHP 7.4.0) |


Example Usage:

$config['tls_crypto_method'] = STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT;

### `un_min_len`

Set the minimum number of characters allowed for member usernames.
Expand Down