Compare commits
5 Commits
e3719fb7b9
...
1.2.1
Author | SHA1 | Date | |
---|---|---|---|
375b922537 | |||
c400020425 | |||
a76ab77757 | |||
db95b12985 | |||
8648f5a62e |
@ -5,7 +5,7 @@ UI_PATH=./ui
|
||||
COMPOSE_PROJECT_NAME=emails
|
||||
COMPOSE_PATH_SEPARATOR=:
|
||||
COMPOSE_FILE=./docker-compose.yml:${CLI_PATH}/docker-compose.yml:${API_PATH}/docker-compose.yml:${UI_PATH}/docker-compose.yml
|
||||
COMPOSE_PROFILES=api,ui,cli
|
||||
COMPOSE_PROFILES=api,ui
|
||||
|
||||
ATT_PATH=./attachments
|
||||
LOGS_PATH=./logs
|
||||
|
@ -2,4 +2,5 @@ EMAIL_HOST=imap.gmail.com
|
||||
EMAIL_PORT=993
|
||||
EMAIL_USERNAME=@gmail.com
|
||||
EMAIL_PASSWORD=
|
||||
ATTACHMENTS_FOLDER=/attachments
|
||||
EMAIL_FOLDER=
|
||||
ATTACHMENTS_FOLDER=/attachments
|
@ -1,2 +0,0 @@
|
||||
ADMINER_DESIGN=dracula
|
||||
ADMINER_PLUGINS="tables-filter table-indexes-structure table-structure struct-comments json-column edit-calendar edit-textarea dump-bz2 dump-date dump-json dump-php enum-option"
|
@ -1,4 +0,0 @@
|
||||
MYSQL_ROOT_PASSWORD=
|
||||
MYSQL_DATABASE=
|
||||
MYSQL_USER=
|
||||
MYSQL_PASSWORD=
|
@ -1,2 +0,0 @@
|
||||
PASSWORDS_SEPARATOR=,
|
||||
PASSWORDS=
|
@ -8,11 +8,6 @@ Monolog\ErrorHandler::register($app->getContainer()->get(Psr\Log\LoggerInterface
|
||||
try {
|
||||
$app->run();
|
||||
} catch (Error | Exception $e) {
|
||||
$logger = $app->getContainer()->get(Psr\Log\LoggerInterface::class);
|
||||
if (isset($_REQUEST)) {
|
||||
$logger->debug(Safe\json_encode(compact('_REQUEST')));
|
||||
}
|
||||
$logger->debug(Safe\json_encode(compact('_SERVER')));
|
||||
$logger->error($e);
|
||||
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
|
||||
throw $e;
|
||||
}
|
||||
|
@ -1 +0,0 @@
|
||||
API_URI=http://proxy:8080
|
@ -8,8 +8,6 @@ Monolog\ErrorHandler::register($app->getContainer()->get(Psr\Log\LoggerInterface
|
||||
try {
|
||||
$app->run();
|
||||
} catch (Error | Exception $e) {
|
||||
$logger = $app->getContainer()->get(Psr\Log\LoggerInterface::class);
|
||||
$logger->debug(Safe\json_encode(compact('_SERVER')));
|
||||
$logger->error($e);
|
||||
$app->getContainer()->get(\Psr\Log\LoggerInterface::class)->error($e);
|
||||
throw $e;
|
||||
}
|
||||
|
@ -1 +0,0 @@
|
||||
API_URI=http://proxy:8080
|
@ -8,11 +8,7 @@ Monolog\ErrorHandler::register($app->getContainer()->get(Psr\Log\LoggerInterface
|
||||
try {
|
||||
$app->run();
|
||||
} catch (Error | Exception $e) {
|
||||
$logger = $app->getContainer()->get(Psr\Log\LoggerInterface::class);
|
||||
if (isset($_REQUEST)) {
|
||||
$logger->debug(Safe\json_encode(compact('_REQUEST')));
|
||||
}
|
||||
$logger->debug(Safe\json_encode(compact('_SERVER')));
|
||||
$logger->error($e);
|
||||
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->debug(json_encode(compact('_REQUEST')));
|
||||
$app->getContainer()->get(Psr\Log\LoggerInterface::class)->error($e);
|
||||
throw $e;
|
||||
}
|
||||
|
Reference in New Issue
Block a user