From 92c665436a4f1d6ae7db095d176210dd92d58e90 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Mon, 8 Oct 2018 20:58:21 +0200 Subject: [PATCH] updated admin lte theme bundle (#350) --- composer.lock | 17 +++++++++-------- var/docs/emails.md | 8 +++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/composer.lock b/composer.lock index 9cba6d63..8382e8c4 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a26c523a27230af927eae4b468daadda", + "content-hash": "e24287fc499f226174a891c385faddd9", "packages": [ { "name": "beberlei/DoctrineExtensions", @@ -1840,16 +1840,16 @@ }, { "name": "kevinpapst/adminlte-bundle", - "version": "2.1", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/kevinpapst/AdminLTEBundle.git", - "reference": "43840776d45cb86a4dbcb915efa582eb41c5a564" + "reference": "8460d414056348ec0f7a79a12f051e649ae3958d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/kevinpapst/AdminLTEBundle/zipball/43840776d45cb86a4dbcb915efa582eb41c5a564", - "reference": "43840776d45cb86a4dbcb915efa582eb41c5a564", + "url": "https://api.github.com/repos/kevinpapst/AdminLTEBundle/zipball/8460d414056348ec0f7a79a12f051e649ae3958d", + "reference": "8460d414056348ec0f7a79a12f051e649ae3958d", "shasum": "" }, "require": { @@ -1896,8 +1896,8 @@ "homepage": "https://www.kevinpapst.de" } ], - "description": "Admin Theme based on the AdminLTE 2.4.8 for easy integration with Symfony 4", - "time": "2018-09-02T17:21:38+00:00" + "description": "Admin theme bundle for Symfony 4 based on AdminLTE 2.4.8 with FOSUserBundle support", + "time": "2018-10-07T22:12:27+00:00" }, { "name": "markbaker/complex", @@ -4578,6 +4578,7 @@ ], "description": "Enforces Long Term Supported versions of Symfony components", "homepage": "https://symfony.com", + "abandoned": "symfony/flex", "time": "2018-04-03T05:04:16+00:00" }, { @@ -9101,7 +9102,7 @@ "php": "^7.1.3", "ext-intl": "*", "ext-pdo": "*", - "ext-pdo_sqlite": "*" + "ext-zip": "*" }, "platform-dev": [] } diff --git a/var/docs/emails.md b/var/docs/emails.md index 26768dd3..762dc5b5 100644 --- a/var/docs/emails.md +++ b/var/docs/emails.md @@ -42,12 +42,14 @@ app.ERROR: Exception occurred while flushing email queue: Expected response code ``` you might suffer from a wrong configuration (read the documentation linked above) and try a full featured SMTP URL with a dedicated user account for authentication: ``` -MAILER_URL=smtp://kimai@example.compassword@mx.example.com:587?encryption=tls&auth_mode=plain +MAILER_URL=smtp://username:password@mx.example.com:587?encryption=tls&auth_mode=plain ``` +Password should not contain URL characters like '&@:', which can cause problems parsing the SMTP URL. +If you have to use one of these characters, you need to adjust the swiftmailer configuration at `config/packages/swiftmailer.yaml`. -If that still doesn't help , try to set a `local_domain` in the file `config/packages/local.yaml`: +If that still doesn't help, try to set a `local_domain` in the file `config/packages/local.yaml`: ```yaml swiftmailer: local_domain: 'kimai.local' ``` -This `local_domain` will be used for the `HELO` command when SwiftMailer contacts your SMTP. \ No newline at end of file +This `local_domain` will be used for the `HELO` command when SwiftMailer contacts your SMTP.