N°3169 - Add feature to connect Gsuite mail box with OAuth

N°2504 - Add feature to connect Office mail box with OAuth2 for Microsoft Graph
N°5102 - Allow to send emails (eg. notifications) using GSuite SMTP and OAuth
 * Config messages
 * Fix unit tests
This commit is contained in:
Eric Espie
2022-05-18 08:41:58 +02:00
parent 44eda676a3
commit e1645f6903
2 changed files with 7 additions and 5 deletions

View File

@@ -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' => '',

View File

@@ -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',
);
}