5 Commits

Author SHA1 Message Date
375b922537 v1.2.1 2022-12-01 14:17:05 -03:00
c400020425 v1.2.0 2022-11-30 20:54:24 -03:00
a76ab77757 v1.1.1 2022-11-30 11:48:55 -03:00
db95b12985 v1.1.0 2022-11-30 10:42:48 -03:00
8648f5a62e v1.0.0 2022-11-29 11:12:35 -03:00
10 changed files with 7 additions and 27 deletions

View File

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

View File

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

View File

@ -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"

View File

@ -1,4 +0,0 @@
MYSQL_ROOT_PASSWORD=
MYSQL_DATABASE=
MYSQL_USER=
MYSQL_PASSWORD=

View File

@ -1,2 +0,0 @@
PASSWORDS_SEPARATOR=,
PASSWORDS=

View File

@ -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;
}

View File

@ -1 +0,0 @@
API_URI=http://proxy:8080

View File

@ -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;
}

View File

@ -1 +0,0 @@
API_URI=http://proxy:8080

View File

@ -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;
}