From e1645f6903c6c574bcd7434648ce8bccef485df5 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Wed, 18 May 2022 08:41:58 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B03169=20-=20Add=20feature=20to=20connect?= =?UTF-8?q?=20Gsuite=20mail=20box=20with=20OAuth=20N=C2=B02504=20-=20Add?= =?UTF-8?q?=20feature=20to=20connect=20Office=20mail=20box=20with=20OAuth2?= =?UTF-8?q?=20for=20Microsoft=20Graph=20N=C2=B05102=20-=20Allow=20to=20sen?= =?UTF-8?q?d=20emails=20(eg.=20notifications)=20using=20GSuite=20SMTP=20an?= =?UTF-8?q?d=20OAuth=20=20*=20Config=20messages=20=20*=20Fix=20unit=20test?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/config.class.inc.php | 10 +++++----- sources/Composer/iTopComposer.php | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index 7c3743388..8aac1721b 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -557,7 +557,7 @@ class Config ), 'email_transport_smtp.oauth.provider' => [ 'type' => 'string', - 'description' => 'TODO', + 'description' => 'Email OAuth provider', 'default' => '', 'value' => '', 'source_of_value' => '', @@ -565,7 +565,7 @@ class Config ], 'email_transport_smtp.oauth.client_id' => [ 'type' => 'string', - 'description' => 'TODO', + 'description' => 'Email OAuth client id', 'default' => '', 'value' => '', 'source_of_value' => '', @@ -573,7 +573,7 @@ class Config ], 'email_transport_smtp.oauth.client_secret' => [ 'type' => 'string', - 'description' => 'TODO', + 'description' => 'Email OAuth client secret', 'default' => '', 'value' => '', 'source_of_value' => '', @@ -581,7 +581,7 @@ class Config ], 'email_transport_smtp.oauth.access_token' => [ 'type' => 'string', - 'description' => 'TODO', + 'description' => 'Email OAuth access token', 'default' => '', 'value' => '', 'source_of_value' => '', @@ -589,7 +589,7 @@ class Config ], 'email_transport_smtp.oauth.refresh_token' => [ 'type' => 'string', - 'description' => 'TODO', + 'description' => 'Email OAuth refresh token', 'default' => '', 'value' => '', 'source_of_value' => '', diff --git a/sources/Composer/iTopComposer.php b/sources/Composer/iTopComposer.php index c45d5f7d7..d9994e2ab 100644 --- a/sources/Composer/iTopComposer.php +++ b/sources/Composer/iTopComposer.php @@ -138,6 +138,8 @@ class iTopComposer $APPROOT_WITH_SLASHES.'lib/twig/twig/src/Test', $APPROOT_WITH_SLASHES.'lib/twig/twig/lib/Twig/Test', $APPROOT_WITH_SLASHES.'lib/twig/twig/doc/tests', + + $APPROOT_WITH_SLASHES.'lib/laminas/laminas-servicemanager/src/Test', ); }