fix(auth): 🔧 Add ignoreTLS option for SMTP creds
This commit is contained in:
@ -46,6 +46,7 @@ Used for sending email notifications and authentication
|
||||
| SMTP_PORT | 25 | SMTP port |
|
||||
| NEXT_PUBLIC_SMTP_FROM | - | From name and email (i.e. `'Typebot Notifications' <notifications@host.com>`) |
|
||||
| SMTP_AUTH_DISABLED | false | To disable the authentication by email but still use the provided config for notifications |
|
||||
| SMTP_IGNORE_TLS | false | Don't use TLS even if the server supports STARTTLS extension |
|
||||
|
||||
</p></details>
|
||||
|
||||
@ -265,13 +266,14 @@ These can also be added to the `viewer` environment
|
||||
|
||||
Used for sending email notifications and authentication
|
||||
|
||||
| Parameter | Default | Description |
|
||||
| ------------- | ------- | ------------------------------------------------------------------------------- |
|
||||
| SMTP_USERNAME | -- | SMTP username |
|
||||
| SMTP_PASSWORD | -- | SMTP password |
|
||||
| SMTP_HOST | -- | SMTP host. (i.e. `smtp.host.com`) |
|
||||
| SMTP_PORT | 25 | SMTP port |
|
||||
| SMTP_FROM | - | From name and email (i.e. `'Typebot Notifications' <notifications@typebot.io>`) |
|
||||
| Parameter | Default | Description |
|
||||
| --------------- | ------- | ------------------------------------------------------------------------------- |
|
||||
| SMTP_USERNAME | -- | SMTP username |
|
||||
| SMTP_PASSWORD | -- | SMTP password |
|
||||
| SMTP_HOST | -- | SMTP host. (i.e. `smtp.host.com`) |
|
||||
| SMTP_PORT | 25 | SMTP port |
|
||||
| SMTP_FROM | - | From name and email (i.e. `'Typebot Notifications' <notifications@typebot.io>`) |
|
||||
| SMTP_IGNORE_TLS | false | Don't use TLS even if the server supports STARTTLS extension |
|
||||
|
||||
</p></details>
|
||||
|
||||
|
@ -104,7 +104,8 @@ services:
|
||||
- '80:80'
|
||||
- '443:443'
|
||||
depends_on:
|
||||
- typebot
|
||||
- typebot-builder
|
||||
- typebot-viewer
|
||||
|
||||
typebot-builder:
|
||||
labels:
|
||||
@ -112,7 +113,7 @@ services:
|
||||
virtual.port: '8080'
|
||||
virtual.tls-email: 'admin@example.com' # change to your email
|
||||
|
||||
typebot-builder:
|
||||
typebot-viewer:
|
||||
labels:
|
||||
virtual.host: 'bot.domain.com' # change to your domain name
|
||||
virtual.port: '8081'
|
||||
|
Reference in New Issue
Block a user