1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-01-07 14:09:19 +00:00

[Web] add log messages to verify-sso function

This commit is contained in:
FreddleSpl0it
2023-10-30 10:04:43 +01:00
committed by DerLinkman
parent 24c4ea6f9e
commit 9521a50dfb

View File

@@ -2378,8 +2378,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
clear_session();
$_SESSION['return'][] = array(
'type' => 'danger',
'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
'msg' => 'login_failed'
'log' => array(__FUNCTION__, $info['email']),
'msg' => array('login_failed', 'empty attribute mapping or missing template attribute')
);
return false;
}
@@ -2390,8 +2390,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
clear_session();
$_SESSION['return'][] = array(
'type' => 'danger',
'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
'msg' => 'login_failed'
'log' => array(__FUNCTION__, $info['email']),
'msg' => array('login_failed', 'specified template not found')
);
return false;
}
@@ -2407,8 +2407,8 @@ function identity_provider($_action, $_data = null, $_extra = null) {
clear_session();
$_SESSION['return'][] = array(
'type' => 'danger',
'log' => array(__FUNCTION__, $_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role']),
'msg' => 'login_failed'
'log' => array(__FUNCTION__, $info['email']),
'msg' => array('login_failed', 'mailbox creation failed')
);
return false;
}