1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Fixed Doctor SMTP check

This commit is contained in:
Eldad Fux 2020-11-19 11:00:24 +02:00
parent 4f0903db79
commit 3828a8deae
3 changed files with 11 additions and 0 deletions

View file

@ -138,6 +138,7 @@ $cli
Console::success('SMTP................connected 👍'); Console::success('SMTP................connected 👍');
} catch (\Throwable $th) { } catch (\Throwable $th) {
Console::error('SMTP.............disconnected 👎'); Console::error('SMTP.............disconnected 👎');
var_dump($th);
} }
$host = App::getEnv('_APP_STATSD_HOST', 'telegraf'); $host = App::getEnv('_APP_STATSD_HOST', 'telegraf');

View file

@ -67,6 +67,11 @@ services:
- _APP_DB_SCHEMA - _APP_DB_SCHEMA
- _APP_DB_USER - _APP_DB_USER
- _APP_DB_PASS - _APP_DB_PASS
- _APP_SMTP_HOST
- _APP_SMTP_PORT
- _APP_SMTP_SECURE
- _APP_SMTP_USERNAME
- _APP_SMTP_PASSWORD
- _APP_INFLUXDB_HOST - _APP_INFLUXDB_HOST
- _APP_INFLUXDB_PORT - _APP_INFLUXDB_PORT
- _APP_STORAGE_LIMIT - _APP_STORAGE_LIMIT

View file

@ -82,6 +82,11 @@ services:
- _APP_DB_SCHEMA - _APP_DB_SCHEMA
- _APP_DB_USER - _APP_DB_USER
- _APP_DB_PASS - _APP_DB_PASS
- _APP_SMTP_HOST
- _APP_SMTP_PORT
- _APP_SMTP_SECURE
- _APP_SMTP_USERNAME
- _APP_SMTP_PASSWORD
- _APP_INFLUXDB_HOST - _APP_INFLUXDB_HOST
- _APP_INFLUXDB_PORT - _APP_INFLUXDB_PORT
- _APP_STORAGE_LIMIT - _APP_STORAGE_LIMIT