public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/inc/init_db.inc.php
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
init_db.inc.php
on main
Author
Date
Commit
Line
Code
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1
<?php
<?php
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 2
function init_db_schema()
function init_db_schema()
same change
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 3
{
{
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 4
try {
try {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 5
global $pdo;
global $pdo;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 6
FreddleSpl0it
5 months ago
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 7
$db_version = "19022026_1220";
$db_version = "19022026_1220";
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 8
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 9
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 10
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 11
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 12
$stmt = $pdo->query("SELECT `version` FROM `versions` WHERE `application` = 'db_schema'");
$stmt = $pdo->query("SELECT `version` FROM `versions` WHERE `application` = 'db_schema'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 13
if ($stmt->fetch(PDO::FETCH_ASSOC)['version'] == $db_version) {
if ($stmt->fetch(PDO::FETCH_ASSOC)['version'] == $db_version) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 14
return true;
return true;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 15
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 16
if (!preg_match('/y|yes/i', getenv('MASTER'))) {
if (!preg_match('/y|yes/i', getenv('MASTER'))) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 17
$_SESSION['return'][] = array(
$_SESSION['return'][] = array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 18
'type' => 'warning',
'type' => 'warning',
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 19
'log' => array(__FUNCTION__),
'log' => array(__FUNCTION__),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 20
'msg' => 'Database not initialized: not running db_init on slave.'
'msg' => 'Database not initialized: not running db_init on slave.'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 21
);
);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 22
return true;
return true;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 23
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 24
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 25
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 26
$views = array(
$views = array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 27
"grouped_mail_aliases" => "CREATE VIEW grouped_mail_aliases (username, aliases) AS
"grouped_mail_aliases" => "CREATE VIEW grouped_mail_aliases (username, aliases) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 28
SELECT goto, IFNULL(GROUP_CONCAT(address ORDER BY address SEPARATOR ' '), '') AS address FROM alias
SELECT goto, IFNULL(GROUP_CONCAT(address ORDER BY address SEPARATOR ' '), '') AS address FROM alias
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 29
WHERE address!=goto
WHERE address!=goto
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 30
AND active = '1'
AND active = '1'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 31
AND sogo_visible = '1'
AND sogo_visible = '1'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 32
AND address NOT LIKE '@%'
AND address NOT LIKE '@%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 33
GROUP BY goto;",
GROUP BY goto;",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 34
// START
// START
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 35
// Unused at the moment - we cannot allow to show a foreign mailbox as sender address in SOGo, as SOGo does not like this
// Unused at the moment - we cannot allow to show a foreign mailbox as sender address in SOGo, as SOGo does not like this
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 36
// We need to create delegation in SOGo AND set a sender_acl in mailcow to allow to send as user X
// We need to create delegation in SOGo AND set a sender_acl in mailcow to allow to send as user X
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 37
"grouped_sender_acl" => "CREATE VIEW grouped_sender_acl (username, send_as_acl) AS
"grouped_sender_acl" => "CREATE VIEW grouped_sender_acl (username, send_as_acl) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 38
SELECT logged_in_as, IFNULL(GROUP_CONCAT(send_as SEPARATOR ' '), '') AS send_as_acl FROM sender_acl
SELECT logged_in_as, IFNULL(GROUP_CONCAT(send_as SEPARATOR ' '), '') AS send_as_acl FROM sender_acl
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 39
WHERE send_as NOT LIKE '@%'
WHERE send_as NOT LIKE '@%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 40
GROUP BY logged_in_as;",
GROUP BY logged_in_as;",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 41
// END
// END
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 42
"grouped_sender_acl_external" => "CREATE VIEW grouped_sender_acl_external (username, send_as_acl) AS
"grouped_sender_acl_external" => "CREATE VIEW grouped_sender_acl_external (username, send_as_acl) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 43
SELECT logged_in_as, IFNULL(GROUP_CONCAT(send_as SEPARATOR ' '), '') AS send_as_acl FROM sender_acl
SELECT logged_in_as, IFNULL(GROUP_CONCAT(send_as SEPARATOR ' '), '') AS send_as_acl FROM sender_acl
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 44
WHERE send_as NOT LIKE '@%' AND external = '1'
WHERE send_as NOT LIKE '@%' AND external = '1'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 45
GROUP BY logged_in_as;",
GROUP BY logged_in_as;",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 46
"grouped_domain_alias_address" => "CREATE VIEW grouped_domain_alias_address (username, ad_alias) AS
"grouped_domain_alias_address" => "CREATE VIEW grouped_domain_alias_address (username, ad_alias) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 47
SELECT username, IFNULL(GROUP_CONCAT(local_part, '@', alias_domain SEPARATOR ' '), '') AS ad_alias FROM mailbox
SELECT username, IFNULL(GROUP_CONCAT(local_part, '@', alias_domain SEPARATOR ' '), '') AS ad_alias FROM mailbox
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 48
LEFT OUTER JOIN alias_domain ON target_domain=domain
LEFT OUTER JOIN alias_domain ON target_domain=domain
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 49
GROUP BY username;",
GROUP BY username;",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 50
"sieve_before" => "CREATE VIEW sieve_before (id, username, script_name, script_data) AS
"sieve_before" => "CREATE VIEW sieve_before (id, username, script_name, script_data) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 51
SELECT md5(script_data), username, script_name, script_data FROM sieve_filters
SELECT md5(script_data), username, script_name, script_data FROM sieve_filters
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 52
WHERE filter_type = 'prefilter';",
WHERE filter_type = 'prefilter';",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 53
"sieve_after" => "CREATE VIEW sieve_after (id, username, script_name, script_data) AS
"sieve_after" => "CREATE VIEW sieve_after (id, username, script_name, script_data) AS
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 54
SELECT md5(script_data), username, script_name, script_data FROM sieve_filters
SELECT md5(script_data), username, script_name, script_data FROM sieve_filters
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 55
WHERE filter_type = 'postfilter';"
WHERE filter_type = 'postfilter';"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 56
);
);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 57
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 58
$tables = array(
$tables = array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 59
"versions" => array(
"versions" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 60
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 61
"application" => "VARCHAR(255) NOT NULL",
"application" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 62
"version" => "VARCHAR(100) NOT NULL",
"version" => "VARCHAR(100) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 63
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 64
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 65
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 66
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 67
"" => array("application")
"" => array("application")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 68
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 69
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 70
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 71
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 72
"admin" => array(
"admin" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 73
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 74
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 75
"password" => "VARCHAR(255) NOT NULL",
"password" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 76
"superadmin" => "TINYINT(1) NOT NULL DEFAULT '0'",
"superadmin" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 77
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 78
"modified" => "DATETIME ON UPDATE NOW(0)",
"modified" => "DATETIME ON UPDATE NOW(0)",
FreddleSpl0it
5 months ago
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 79
"active" => "TINYINT(1) NOT NULL DEFAULT '1'",
"active" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 80
"attributes" => "JSON"
"attributes" => "JSON"
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 81
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 82
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 83
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 84
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 85
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 86
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 87
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 88
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 89
"fido2" => array(
"fido2" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 90
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 91
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 92
"friendlyName" => "VARCHAR(255)",
"friendlyName" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 93
"rpId" => "VARCHAR(255) NOT NULL",
"rpId" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 94
"credentialPublicKey" => "TEXT NOT NULL",
"credentialPublicKey" => "TEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 95
"certificateChain" => "TEXT",
"certificateChain" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 96
// Can be null for format "none"
// Can be null for format "none"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 97
"certificate" => "TEXT",
"certificate" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 98
"certificateIssuer" => "VARCHAR(255)",
"certificateIssuer" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 99
"certificateSubject" => "VARCHAR(255)",
"certificateSubject" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 100
"signatureCounter" => "INT",
"signatureCounter" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 101
"AAGUID" => "BLOB",
"AAGUID" => "BLOB",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 102
"credentialId" => "BLOB NOT NULL",
"credentialId" => "BLOB NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 103
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 104
"modified" => "DATETIME ON UPDATE NOW(0)",
"modified" => "DATETIME ON UPDATE NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 105
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 106
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 107
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 108
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 109
"_sogo_static_view" => array(
"_sogo_static_view" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 110
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 111
"c_uid" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 112
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 113
"c_name" => "VARCHAR(255) NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 114
"c_password" => "VARCHAR(255) NOT NULL DEFAULT ''",
"c_password" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 115
"c_cn" => "VARCHAR(255)",
"c_cn" => "VARCHAR(255)",
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 116
"c_l" => "VARCHAR(255)",
"c_l" => "VARCHAR(255)",
same change
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 117
"c_o" => "VARCHAR(255)",
"c_o" => "VARCHAR(255)",
same change
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 118
"c_ou" => "VARCHAR(255)",
"c_ou" => "VARCHAR(255)",
same change
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 119
"c_telephonenumber" => "VARCHAR(255)",
"c_telephonenumber" => "VARCHAR(255)",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 120
"mail" => "VARCHAR(255) NOT NULL",
"mail" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 121
// TODO -> use TEXT and check if SOGo login breaks on empty aliases
// TODO -> use TEXT and check if SOGo login breaks on empty aliases
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 122
"aliases" => "TEXT NOT NULL",
"aliases" => "TEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 123
"ad_aliases" => "VARCHAR(6144) NOT NULL DEFAULT ''",
"ad_aliases" => "VARCHAR(6144) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 124
"ext_acl" => "VARCHAR(6144) NOT NULL DEFAULT ''",
"ext_acl" => "VARCHAR(6144) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 125
"kind" => "VARCHAR(100) NOT NULL DEFAULT ''",
"kind" => "VARCHAR(100) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 126
"multiple_bookings" => "INT NOT NULL DEFAULT -1"
"multiple_bookings" => "INT NOT NULL DEFAULT -1"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 127
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 128
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 129
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 130
"" => array("c_uid")
"" => array("c_uid")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 131
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 132
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 133
"domain" => array("domain")
"domain" => array("domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 134
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 135
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 136
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 137
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 138
"relayhosts" => array(
"relayhosts" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 139
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 140
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 141
"hostname" => "VARCHAR(255) NOT NULL",
"hostname" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 142
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 143
"password" => "VARCHAR(255) NOT NULL",
"password" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 144
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 145
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 146
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 147
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 148
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 149
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 150
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 151
"hostname" => array("hostname")
"hostname" => array("hostname")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 152
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 153
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 154
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 155
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 156
"transports" => array(
"transports" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 157
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 158
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 159
"destination" => "VARCHAR(255) NOT NULL",
"destination" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 160
"nexthop" => "VARCHAR(255) NOT NULL",
"nexthop" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 161
"username" => "VARCHAR(255) NOT NULL DEFAULT ''",
"username" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 162
"password" => "VARCHAR(255) NOT NULL DEFAULT ''",
"password" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 163
"is_mx_based" => "TINYINT(1) NOT NULL DEFAULT '0'",
"is_mx_based" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 164
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 165
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 166
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 167
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 168
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 169
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 170
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 171
"destination" => array("destination"),
"destination" => array("destination"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 172
"nexthop" => array("nexthop"),
"nexthop" => array("nexthop"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 173
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 174
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 175
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 176
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 177
"alias" => array(
"alias" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 178
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 179
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 180
"address" => "VARCHAR(255) NOT NULL",
"address" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 181
"goto" => "TEXT NOT NULL",
"goto" => "TEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 182
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 183
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 184
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 185
"private_comment" => "TEXT",
"private_comment" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 186
"public_comment" => "TEXT",
"public_comment" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 187
"sogo_visible" => "TINYINT(1) NOT NULL DEFAULT '1'",
"sogo_visible" => "TINYINT(1) NOT NULL DEFAULT '1'",
FreddleSpl0it
11 months ago
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 188
"internal" => "TINYINT(1) NOT NULL DEFAULT '0'",
"internal" => "TINYINT(1) NOT NULL DEFAULT '0'",
FreddleSpl0it
6 months ago
c06112b
[Postfix] Configurable send permissions for alias addresses
- Full commit hash
c06112b26e6f41c7f9d5c2ea2549b266e66a44e3- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 189
"sender_allowed" => "TINYINT(1) NOT NULL DEFAULT '1'",
"sender_allowed" => "TINYINT(1) NOT NULL DEFAULT '1'",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 190
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 191
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 192
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 193
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 194
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 195
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 196
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 197
"address" => array("address")
"address" => array("address")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 198
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 199
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 200
"domain" => array("domain")
"domain" => array("domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 201
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 202
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 203
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 204
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 205
"api" => array(
"api" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 206
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 207
"api_key" => "VARCHAR(255) NOT NULL",
"api_key" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 208
"allow_from" => "VARCHAR(512) NOT NULL",
"allow_from" => "VARCHAR(512) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 209
"skip_ip_check" => "TINYINT(1) NOT NULL DEFAULT '0'",
"skip_ip_check" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 210
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 211
"modified" => "DATETIME ON UPDATE NOW(0)",
"modified" => "DATETIME ON UPDATE NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 212
"access" => "ENUM('ro', 'rw') NOT NULL DEFAULT 'rw'",
"access" => "ENUM('ro', 'rw') NOT NULL DEFAULT 'rw'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 213
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 214
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 215
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 216
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 217
"" => array("api_key")
"" => array("api_key")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 218
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 219
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 220
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 221
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 222
"sender_acl" => array(
"sender_acl" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 223
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 224
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 225
"logged_in_as" => "VARCHAR(255) NOT NULL",
"logged_in_as" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 226
"send_as" => "VARCHAR(255) NOT NULL",
"send_as" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 227
"external" => "TINYINT(1) NOT NULL DEFAULT '0'"
"external" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 228
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 229
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 230
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 231
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 232
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 233
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 234
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 235
),
),
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 236
"templates" => array(
"templates" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 237
"cols" => array(
"cols" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 238
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 239
"template" => "VARCHAR(255) NOT NULL",
"template" => "VARCHAR(255) NOT NULL",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 240
"type" => "VARCHAR(255) NOT NULL",
"type" => "VARCHAR(255) NOT NULL",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 241
"attributes" => "JSON",
"attributes" => "JSON",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 242
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 243
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 244
),
),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 245
"keys" => array(
"keys" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 246
"primary" => array(
"primary" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 247
"" => array("id")
"" => array("id")
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 248
)
)
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 249
),
),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 250
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 251
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 252
"domain" => array(
"domain" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 253
// Todo: Move some attributes to json
// Todo: Move some attributes to json
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 254
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 255
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 256
"description" => "VARCHAR(255)",
"description" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 257
"aliases" => "INT(10) NOT NULL DEFAULT '0'",
"aliases" => "INT(10) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 258
"mailboxes" => "INT(10) NOT NULL DEFAULT '0'",
"mailboxes" => "INT(10) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 259
"defquota" => "BIGINT(20) NOT NULL DEFAULT '3072'",
"defquota" => "BIGINT(20) NOT NULL DEFAULT '3072'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 260
"maxquota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
"maxquota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 261
"quota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
"quota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 262
"relayhost" => "VARCHAR(255) NOT NULL DEFAULT '0'",
"relayhost" => "VARCHAR(255) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 263
"backupmx" => "TINYINT(1) NOT NULL DEFAULT '0'",
"backupmx" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 264
"gal" => "TINYINT(1) NOT NULL DEFAULT '1'",
"gal" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 265
"relay_all_recipients" => "TINYINT(1) NOT NULL DEFAULT '0'",
"relay_all_recipients" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 266
"relay_unknown_only" => "TINYINT(1) NOT NULL DEFAULT '0'",
"relay_unknown_only" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 267
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 268
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 269
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 270
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 271
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 272
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 273
"" => array("domain")
"" => array("domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 274
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 275
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 276
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 277
),
),
FreddleSpl0it
over 2 years ago
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 278
"domain_wide_footer" => array(
"domain_wide_footer" => array(
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 279
"cols" => array(
"cols" => array(
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 280
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 281
"html" => "LONGTEXT",
"html" => "LONGTEXT",
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 282
"plain" => "LONGTEXT",
"plain" => "LONGTEXT",
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 283
"mbox_exclude" => "JSON NOT NULL DEFAULT ('[]')",
"mbox_exclude" => "JSON NOT NULL DEFAULT ('[]')",
FreddleSpl0it
over 2 years ago
86ba019
[Rspamd] apply domain wide footer to alias domains
- Full commit hash
86ba019ca09b7e09c59ec8a1e4f562493947510a- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 284
"alias_domain_exclude" => "JSON NOT NULL DEFAULT ('[]')",
"alias_domain_exclude" => "JSON NOT NULL DEFAULT ('[]')",
FreddleSpl0it
over 2 years ago
efab117
add option to skip footer on reply e-mails
- Full commit hash
efab11720dd144d800ca0bf127c3410516e6bbb3- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 285
"skip_replies" => "TINYINT(1) NOT NULL DEFAULT '0'"
"skip_replies" => "TINYINT(1) NOT NULL DEFAULT '0'"
FreddleSpl0it
over 2 years ago
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 286
),
),
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 287
"keys" => array(
"keys" => array(
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 288
"primary" => array(
"primary" => array(
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 289
"" => array("domain")
"" => array("domain")
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 290
)
)
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 291
),
),
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 292
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 293
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 294
"tags_domain" => array(
"tags_domain" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 295
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 296
"tag_name" => "VARCHAR(255) NOT NULL",
"tag_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 297
"domain" => "VARCHAR(255) NOT NULL"
"domain" => "VARCHAR(255) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 298
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 299
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 300
"fkey" => array(
"fkey" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 301
"fk_tags_domain" => array(
"fk_tags_domain" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 302
"col" => "domain",
"col" => "domain",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 303
"ref" => "domain.domain",
"ref" => "domain.domain",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 304
"delete" => "CASCADE",
"delete" => "CASCADE",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 305
"update" => "NO ACTION"
"update" => "NO ACTION"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 306
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 307
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 308
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 309
"tag_name" => array("tag_name", "domain")
"tag_name" => array("tag_name", "domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 310
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 311
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 312
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 313
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 314
"tls_policy_override" => array(
"tls_policy_override" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 315
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 316
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 317
"dest" => "VARCHAR(255) NOT NULL",
"dest" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 318
"policy" => "ENUM('none', 'may', 'encrypt', 'dane', 'dane-only', 'fingerprint', 'verify', 'secure') NOT NULL",
"policy" => "ENUM('none', 'may', 'encrypt', 'dane', 'dane-only', 'fingerprint', 'verify', 'secure') NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 319
"parameters" => "VARCHAR(255) DEFAULT ''",
"parameters" => "VARCHAR(255) DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 320
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 321
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 322
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 323
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 324
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 325
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 326
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 327
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 328
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 329
"dest" => array("dest")
"dest" => array("dest")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 330
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 331
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 332
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 333
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 334
"quarantine" => array(
"quarantine" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 335
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 336
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 337
"qid" => "VARCHAR(30) NOT NULL",
"qid" => "VARCHAR(30) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 338
"subject" => "VARCHAR(500)",
"subject" => "VARCHAR(500)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 339
"score" => "FLOAT(8,2)",
"score" => "FLOAT(8,2)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 340
"ip" => "VARCHAR(50)",
"ip" => "VARCHAR(50)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 341
"action" => "CHAR(20) NOT NULL DEFAULT 'unknown'",
"action" => "CHAR(20) NOT NULL DEFAULT 'unknown'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 342
"symbols" => "JSON",
"symbols" => "JSON",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 343
"fuzzy_hashes" => "JSON",
"fuzzy_hashes" => "JSON",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 344
"sender" => "VARCHAR(255) NOT NULL DEFAULT 'unknown'",
"sender" => "VARCHAR(255) NOT NULL DEFAULT 'unknown'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 345
"rcpt" => "VARCHAR(255)",
"rcpt" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 346
"msg" => "LONGTEXT",
"msg" => "LONGTEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 347
"domain" => "VARCHAR(255)",
"domain" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 348
"notified" => "TINYINT(1) NOT NULL DEFAULT '0'",
"notified" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 349
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 350
"user" => "VARCHAR(255) NOT NULL DEFAULT 'unknown'",
"user" => "VARCHAR(255) NOT NULL DEFAULT 'unknown'",
DerLinkman
12 months ago
2b93b59
db: change qhash varchar to 64 instead of 255
- Full commit hash
2b93b59cdd006b973b52cdace418b139b72d6940- Author
- DerLinkman <[email protected]>
- Date
- 12 months ago
- Selected line
- 351
"qhash" => "VARCHAR(64)",
"qhash" => "VARCHAR(64)",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 352
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 353
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 354
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 355
"" => array("id")
"" => array("id")
Christoph Lechleitner
12 months ago
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 356
),
),
same change
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 357
"key" => array(
"key" => array(
same change
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 358
"qhash" => array("qhash")
"qhash" => array("qhash")
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 359
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 360
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 361
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 362
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 363
"mailbox" => array(
"mailbox" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 364
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 365
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 366
"password" => "VARCHAR(255) NOT NULL",
"password" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 367
"name" => "VARCHAR(255)",
"name" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 368
"description" => "VARCHAR(255)",
"description" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 369
// mailbox_path_prefix is followed by domain/local_part/
// mailbox_path_prefix is followed by domain/local_part/
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 370
"mailbox_path_prefix" => "VARCHAR(150) DEFAULT '/var/vmail/'",
"mailbox_path_prefix" => "VARCHAR(150) DEFAULT '/var/vmail/'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 371
"quota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
"quota" => "BIGINT(20) NOT NULL DEFAULT '102400'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 372
"local_part" => "VARCHAR(255) NOT NULL",
"local_part" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 373
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 374
"attributes" => "JSON",
"attributes" => "JSON",
FreddleSpl0it
over 2 years ago
d2e3867
[Web][Rspamd] implement custom mailbox attributes and improve domain wide footer
- Full commit hash
d2e38678936158637fae1f9518248cc10099bf7f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 375
"custom_attributes" => "JSON NOT NULL DEFAULT ('{}')",
"custom_attributes" => "JSON NOT NULL DEFAULT ('{}')",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 376
"kind" => "VARCHAR(100) NOT NULL DEFAULT ''",
"kind" => "VARCHAR(100) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 377
"multiple_bookings" => "INT NOT NULL DEFAULT -1",
"multiple_bookings" => "INT NOT NULL DEFAULT -1",
FreddleSpl0it
over 2 years ago
a06c783
[Web] add ldap idp
- Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 378
"authsource" => "ENUM('mailcow', 'keycloak', 'generic-oidc', 'ldap') DEFAULT 'mailcow'",
"authsource" => "ENUM('mailcow', 'keycloak', 'generic-oidc', 'ldap') DEFAULT 'mailcow'",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 379
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 380
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 381
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 382
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 383
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 384
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 385
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 386
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 387
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 388
"domain" => array("domain"),
"domain" => array("domain"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 389
"kind" => array("kind")
"kind" => array("kind")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 390
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 391
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 392
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 393
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 394
"tags_mailbox" => array(
"tags_mailbox" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 395
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 396
"tag_name" => "VARCHAR(255) NOT NULL",
"tag_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 397
"username" => "VARCHAR(255) NOT NULL"
"username" => "VARCHAR(255) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 398
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 399
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 400
"fkey" => array(
"fkey" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 401
"fk_tags_mailbox" => array(
"fk_tags_mailbox" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 402
"col" => "username",
"col" => "username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 403
"ref" => "mailbox.username",
"ref" => "mailbox.username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 404
"delete" => "CASCADE",
"delete" => "CASCADE",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 405
"update" => "NO ACTION"
"update" => "NO ACTION"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 406
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 407
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 408
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 409
"tag_name" => array("tag_name", "username")
"tag_name" => array("tag_name", "username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 410
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 411
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 412
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 413
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 414
"sieve_filters" => array(
"sieve_filters" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 415
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 416
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 417
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 418
"script_desc" => "VARCHAR(255) NOT NULL",
"script_desc" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 419
"script_name" => "ENUM('active','inactive')",
"script_name" => "ENUM('active','inactive')",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 420
"script_data" => "TEXT NOT NULL",
"script_data" => "TEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 421
"filter_type" => "ENUM('postfilter','prefilter')",
"filter_type" => "ENUM('postfilter','prefilter')",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 422
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 423
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 424
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 425
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 426
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 427
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 428
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 429
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 430
"username" => array("username"),
"username" => array("username"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 431
"script_desc" => array("script_desc")
"script_desc" => array("script_desc")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 432
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 433
"fkey" => array(
"fkey" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 434
"fk_username_sieve_global_before" => array(
"fk_username_sieve_global_before" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 435
"col" => "username",
"col" => "username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 436
"ref" => "mailbox.username",
"ref" => "mailbox.username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 437
"delete" => "CASCADE",
"delete" => "CASCADE",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 438
"update" => "NO ACTION"
"update" => "NO ACTION"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 439
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 440
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 441
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 442
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 443
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 444
"app_passwd" => array(
"app_passwd" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 445
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 446
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 447
"name" => "VARCHAR(255) NOT NULL",
"name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 448
"mailbox" => "VARCHAR(255) NOT NULL",
"mailbox" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 449
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 450
"password" => "VARCHAR(255) NOT NULL",
"password" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 451
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 452
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 453
"imap_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"imap_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 454
"smtp_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"smtp_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 455
"dav_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"dav_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 456
"eas_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"eas_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 457
"pop3_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"pop3_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 458
"sieve_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"sieve_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 459
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 460
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 461
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 462
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 463
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 464
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 465
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 466
"mailbox" => array("mailbox"),
"mailbox" => array("mailbox"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 467
"password" => array("password"),
"password" => array("password"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 468
"domain" => array("domain"),
"domain" => array("domain"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 469
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 470
"fkey" => array(
"fkey" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 471
"fk_username_app_passwd" => array(
"fk_username_app_passwd" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 472
"col" => "mailbox",
"col" => "mailbox",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 473
"ref" => "mailbox.username",
"ref" => "mailbox.username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 474
"delete" => "CASCADE",
"delete" => "CASCADE",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 475
"update" => "NO ACTION"
"update" => "NO ACTION"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 476
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 477
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 478
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 479
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 480
),
),
DerLinkman
11 months ago
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 481
"mta_sts" => array(
"mta_sts" => array(
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 482
"cols" => array(
"cols" => array(
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 483
"id" => "BIGINT NOT NULL",
"id" => "BIGINT NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 484
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 485
"version" => "VARCHAR(255) NOT NULL",
"version" => "VARCHAR(255) NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 486
"mode" => "VARCHAR(255) NOT NULL",
"mode" => "VARCHAR(255) NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 487
"mx" => "VARCHAR(255) NOT NULL",
"mx" => "VARCHAR(255) NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 488
"max_age" => "VARCHAR(255) NOT NULL",
"max_age" => "VARCHAR(255) NOT NULL",
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 489
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 490
),
),
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 491
"keys" => array(
"keys" => array(
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 492
"primary" => array(
"primary" => array(
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 493
"" => array("domain")
"" => array("domain")
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 494
)
)
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 495
),
),
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 496
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
c39712a
pf/php: add mta-sts support (outbound) (#6686)
- Full commit hash
c39712af671cc150595e6aadc7c31868eef14408- Author
- DerLinkman <[email protected]>
- Date
- 11 months ago
- Selected line
- 497
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 498
"user_acl" => array(
"user_acl" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 499
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 500
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 501
"spam_alias" => "TINYINT(1) NOT NULL DEFAULT '1'",
"spam_alias" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 502
"tls_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
"tls_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 503
"spam_score" => "TINYINT(1) NOT NULL DEFAULT '1'",
"spam_score" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 504
"spam_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
"spam_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 505
"delimiter_action" => "TINYINT(1) NOT NULL DEFAULT '1'",
"delimiter_action" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 506
"syncjobs" => "TINYINT(1) NOT NULL DEFAULT '0'",
"syncjobs" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 507
"eas_reset" => "TINYINT(1) NOT NULL DEFAULT '1'",
"eas_reset" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 508
"sogo_profile_reset" => "TINYINT(1) NOT NULL DEFAULT '0'",
"sogo_profile_reset" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 509
"pushover" => "TINYINT(1) NOT NULL DEFAULT '1'",
"pushover" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 510
// quarantine is for quarantine actions, todo: rename
// quarantine is for quarantine actions, todo: rename
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 511
"quarantine" => "TINYINT(1) NOT NULL DEFAULT '1'",
"quarantine" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 512
"quarantine_attachments" => "TINYINT(1) NOT NULL DEFAULT '1'",
"quarantine_attachments" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 513
"quarantine_notification" => "TINYINT(1) NOT NULL DEFAULT '1'",
"quarantine_notification" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 514
"quarantine_category" => "TINYINT(1) NOT NULL DEFAULT '1'",
"quarantine_category" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 515
"app_passwds" => "TINYINT(1) NOT NULL DEFAULT '1'",
"app_passwds" => "TINYINT(1) NOT NULL DEFAULT '1'",
FreddleSpl0it
almost 2 years ago
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 516
"pw_reset" => "TINYINT(1) NOT NULL DEFAULT '1'",
"pw_reset" => "TINYINT(1) NOT NULL DEFAULT '1'",
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 517
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 518
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 519
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 520
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 521
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 522
"fkey" => array(
"fkey" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 523
"fk_username" => array(
"fk_username" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 524
"col" => "username",
"col" => "username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 525
"ref" => "mailbox.username",
"ref" => "mailbox.username",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 526
"delete" => "CASCADE",
"delete" => "CASCADE",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 527
"update" => "NO ACTION"
"update" => "NO ACTION"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 528
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 529
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 530
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 531
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 532
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 533
"alias_domain" => array(
"alias_domain" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 534
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 535
"alias_domain" => "VARCHAR(255) NOT NULL",
"alias_domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 536
"target_domain" => "VARCHAR(255) NOT NULL",
"target_domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 537
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 538
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 539
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 540
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 541
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 542
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 543
"" => array("alias_domain")
"" => array("alias_domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 544
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 545
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 546
"active" => array("active"),
"active" => array("active"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 547
"target_domain" => array("target_domain")
"target_domain" => array("target_domain")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 548
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 549
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 550
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 551
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 552
"spamalias" => array(
"spamalias" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 553
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 554
"address" => "VARCHAR(255) NOT NULL",
"address" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 555
"goto" => "TEXT NOT NULL",
"goto" => "TEXT NOT NULL",
Filip Marek
almost 2 years ago
60ca250
add temporary email description
- Full commit hash
60ca25026dd194ae8f2681df761070fa9b1ce414- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 556
"description" => "TEXT NOT NULL",
"description" => "TEXT NOT NULL",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 557
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 558
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
Josh
8 months ago
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 559
"validity" => "INT(11)",
"validity" => "INT(11)",
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 560
"permanent" => "TINYINT(1) NOT NULL DEFAULT '0'"
"permanent" => "TINYINT(1) NOT NULL DEFAULT '0'"
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 561
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 562
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 563
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 564
"" => array("address")
"" => array("address")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 565
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 566
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 567
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 568
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 569
"filterconf" => array(
"filterconf" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 570
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 571
"object" => "VARCHAR(255) NOT NULL DEFAULT ''",
"object" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 572
"option" => "VARCHAR(50) NOT NULL DEFAULT ''",
"option" => "VARCHAR(50) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 573
"value" => "VARCHAR(100) NOT NULL DEFAULT ''",
"value" => "VARCHAR(100) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 574
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 575
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 576
"prefid" => "INT(11) NOT NULL AUTO_INCREMENT"
"prefid" => "INT(11) NOT NULL AUTO_INCREMENT"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 577
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 578
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 579
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 580
"" => array("prefid")
"" => array("prefid")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 581
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 582
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 583
"object" => array("object")
"object" => array("object")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 584
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 585
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 586
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 587
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 588
"settingsmap" => array(
"settingsmap" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 589
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 590
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 591
"desc" => "VARCHAR(255) NOT NULL",
"desc" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 592
"content" => "LONGTEXT NOT NULL",
"content" => "LONGTEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 593
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 594
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 595
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 596
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 597
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 598
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 599
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 600
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 601
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 602
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 603
),
),
FreddleSpl0it
over 3 years ago
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 604
"identity_provider" => array(
"identity_provider" => array(
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 605
"cols" => array(
"cols" => array(
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 606
"key" => "VARCHAR(255) NOT NULL",
"key" => "VARCHAR(255) NOT NULL",
FreddleSpl0it
over 3 years ago
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 607
"value" => "TEXT NOT NULL",
"value" => "TEXT NOT NULL",
FreddleSpl0it
over 3 years ago
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 608
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 609
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP"
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 610
),
),
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 611
"keys" => array(
"keys" => array(
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 612
"primary" => array(
"primary" => array(
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 613
"" => array("key")
"" => array("key")
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 614
)
)
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 615
),
),
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 616
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
f6869da
[Web] manage keycloak identity provider
- Full commit hash
f6869da3a02b937d8f498476be1d7e95ab418e33- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 617
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 618
"logs" => array(
"logs" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 619
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 620
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 621
"task" => "CHAR(32) NOT NULL DEFAULT '000000'",
"task" => "CHAR(32) NOT NULL DEFAULT '000000'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 622
"type" => "VARCHAR(32) DEFAULT ''",
"type" => "VARCHAR(32) DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 623
"msg" => "TEXT",
"msg" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 624
"call" => "TEXT",
"call" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 625
"user" => "VARCHAR(64) NOT NULL",
"user" => "VARCHAR(64) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 626
"role" => "VARCHAR(32) NOT NULL",
"role" => "VARCHAR(32) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 627
"remote" => "VARCHAR(39) NOT NULL",
"remote" => "VARCHAR(39) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 628
"time" => "INT(11) NOT NULL"
"time" => "INT(11) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 629
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 630
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 631
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 632
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 633
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 634
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 635
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 636
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 637
"sasl_log" => array(
"sasl_log" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 638
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 639
"service" => "VARCHAR(32) NOT NULL DEFAULT ''",
"service" => "VARCHAR(32) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 640
"app_password" => "INT",
"app_password" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 641
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 642
"real_rip" => "VARCHAR(64) NOT NULL",
"real_rip" => "VARCHAR(64) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 643
"datetime" => "DATETIME(0) NOT NULL DEFAULT NOW(0)"
"datetime" => "DATETIME(0) NOT NULL DEFAULT NOW(0)"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 644
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 645
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 646
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 647
"" => array("service", "real_rip", "username")
"" => array("service", "real_rip", "username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 648
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 649
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 650
"username" => array("username"),
"username" => array("username"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 651
"service" => array("service"),
"service" => array("service"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 652
"datetime" => array("datetime"),
"datetime" => array("datetime"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 653
"real_rip" => array("real_rip")
"real_rip" => array("real_rip")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 654
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 655
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 656
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 657
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 658
"quota2" => array(
"quota2" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 659
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 660
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 661
"bytes" => "BIGINT(20) NOT NULL DEFAULT '0'",
"bytes" => "BIGINT(20) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 662
"messages" => "BIGINT(20) NOT NULL DEFAULT '0'"
"messages" => "BIGINT(20) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 663
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 664
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 665
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 666
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 667
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 668
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 669
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 670
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 671
"quota2replica" => array(
"quota2replica" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 672
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 673
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 674
"bytes" => "BIGINT(20) NOT NULL DEFAULT '0'",
"bytes" => "BIGINT(20) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 675
"messages" => "BIGINT(20) NOT NULL DEFAULT '0'"
"messages" => "BIGINT(20) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 676
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 677
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 678
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 679
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 680
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 681
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 682
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 683
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 684
"domain_admins" => array(
"domain_admins" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 685
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 686
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 687
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 688
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 689
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 690
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 691
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 692
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 693
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 694
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 695
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 696
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 697
"username" => array("username")
"username" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 698
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 699
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 700
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 701
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 702
"da_acl" => array(
"da_acl" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 703
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 704
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 705
"syncjobs" => "TINYINT(1) NOT NULL DEFAULT '1'",
"syncjobs" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 706
"quarantine" => "TINYINT(1) NOT NULL DEFAULT '1'",
"quarantine" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 707
"login_as" => "TINYINT(1) NOT NULL DEFAULT '1'",
"login_as" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 708
"sogo_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"sogo_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 709
"app_passwds" => "TINYINT(1) NOT NULL DEFAULT '1'",
"app_passwds" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 710
"bcc_maps" => "TINYINT(1) NOT NULL DEFAULT '1'",
"bcc_maps" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 711
"pushover" => "TINYINT(1) NOT NULL DEFAULT '0'",
"pushover" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 712
"filters" => "TINYINT(1) NOT NULL DEFAULT '1'",
"filters" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 713
"ratelimit" => "TINYINT(1) NOT NULL DEFAULT '1'",
"ratelimit" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 714
"spam_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
"spam_policy" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 715
"extend_sender_acl" => "TINYINT(1) NOT NULL DEFAULT '0'",
"extend_sender_acl" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 716
"unlimited_quota" => "TINYINT(1) NOT NULL DEFAULT '0'",
"unlimited_quota" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 717
"protocol_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"protocol_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 718
"smtp_ip_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
"smtp_ip_access" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 719
"alias_domains" => "TINYINT(1) NOT NULL DEFAULT '0'",
"alias_domains" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 720
"mailbox_relayhost" => "TINYINT(1) NOT NULL DEFAULT '1'",
"mailbox_relayhost" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 721
"domain_relayhost" => "TINYINT(1) NOT NULL DEFAULT '1'",
"domain_relayhost" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 722
"domain_desc" => "TINYINT(1) NOT NULL DEFAULT '0'"
"domain_desc" => "TINYINT(1) NOT NULL DEFAULT '0'"
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 723
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 724
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 725
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 726
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 727
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 728
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 729
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 730
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 731
"da_sso" => array(
"da_sso" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 732
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 733
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 734
"token" => "VARCHAR(255) NOT NULL",
"token" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 735
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 736
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 737
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 738
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 739
"" => array("token", "created")
"" => array("token", "created")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 740
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 741
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 742
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 743
),
),
FreddleSpl0it
almost 2 years ago
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 744
"reset_password" => array(
"reset_password" => array(
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 745
"cols" => array(
"cols" => array(
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 746
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 747
"token" => "VARCHAR(255) NOT NULL",
"token" => "VARCHAR(255) NOT NULL",
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 748
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 749
),
),
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 750
"keys" => array(
"keys" => array(
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 751
"primary" => array(
"primary" => array(
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 752
"" => array("token", "created")
"" => array("token", "created")
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 753
),
),
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 754
),
),
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 755
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
2208d7e
[Web] add function to reset user passwords
- Full commit hash
2208d7e6fb2864e2ddc672104b61b2a496fc1e02- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 756
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 757
"imapsync" => array(
"imapsync" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 758
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 759
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 760
"user2" => "VARCHAR(255) NOT NULL",
"user2" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 761
"host1" => "VARCHAR(255) NOT NULL",
"host1" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 762
"authmech1" => "ENUM('PLAIN','LOGIN','CRAM-MD5') DEFAULT 'PLAIN'",
"authmech1" => "ENUM('PLAIN','LOGIN','CRAM-MD5') DEFAULT 'PLAIN'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 763
"regextrans2" => "VARCHAR(255) DEFAULT ''",
"regextrans2" => "VARCHAR(255) DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 764
"authmd51" => "TINYINT(1) NOT NULL DEFAULT 0",
"authmd51" => "TINYINT(1) NOT NULL DEFAULT 0",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 765
"domain2" => "VARCHAR(255) NOT NULL DEFAULT ''",
"domain2" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 766
"subfolder2" => "VARCHAR(255) NOT NULL DEFAULT ''",
"subfolder2" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 767
"user1" => "VARCHAR(255) NOT NULL",
"user1" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 768
"password1" => "VARCHAR(255) NOT NULL",
"password1" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 769
"exclude" => "VARCHAR(500) NOT NULL DEFAULT ''",
"exclude" => "VARCHAR(500) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 770
"maxage" => "SMALLINT NOT NULL DEFAULT '0'",
"maxage" => "SMALLINT NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 771
"mins_interval" => "SMALLINT UNSIGNED NOT NULL DEFAULT '0'",
"mins_interval" => "SMALLINT UNSIGNED NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 772
"maxbytespersecond" => "VARCHAR(50) NOT NULL DEFAULT '0'",
"maxbytespersecond" => "VARCHAR(50) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 773
"port1" => "SMALLINT UNSIGNED NOT NULL",
"port1" => "SMALLINT UNSIGNED NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 774
"enc1" => "ENUM('TLS','SSL','PLAIN') DEFAULT 'TLS'",
"enc1" => "ENUM('TLS','SSL','PLAIN') DEFAULT 'TLS'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 775
"delete2duplicates" => "TINYINT(1) NOT NULL DEFAULT '1'",
"delete2duplicates" => "TINYINT(1) NOT NULL DEFAULT '1'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 776
"delete1" => "TINYINT(1) NOT NULL DEFAULT '0'",
"delete1" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 777
"delete2" => "TINYINT(1) NOT NULL DEFAULT '0'",
"delete2" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 778
"automap" => "TINYINT(1) NOT NULL DEFAULT '0'",
"automap" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 779
"skipcrossduplicates" => "TINYINT(1) NOT NULL DEFAULT '0'",
"skipcrossduplicates" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 780
"custom_params" => "VARCHAR(512) NOT NULL DEFAULT ''",
"custom_params" => "VARCHAR(512) NOT NULL DEFAULT ''",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 781
"timeout1" => "SMALLINT NOT NULL DEFAULT '600'",
"timeout1" => "SMALLINT NOT NULL DEFAULT '600'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 782
"timeout2" => "SMALLINT NOT NULL DEFAULT '600'",
"timeout2" => "SMALLINT NOT NULL DEFAULT '600'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 783
"subscribeall" => "TINYINT(1) NOT NULL DEFAULT '1'",
"subscribeall" => "TINYINT(1) NOT NULL DEFAULT '1'",
DerLinkman
over 2 years ago
547d2ca
Add Dry Mode Option for ImapSyncs (Button)
- Full commit hash
547d2ca3087a9a3b1e383c8edd6c38fd02c455b9- Author
- DerLinkman <[email protected]>
- Date
- over 2 years ago
- Selected line
- 784
"dry" => "TINYINT(1) NOT NULL DEFAULT '0'",
"dry" => "TINYINT(1) NOT NULL DEFAULT '0'",
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 785
"is_running" => "TINYINT(1) NOT NULL DEFAULT '0'",
"is_running" => "TINYINT(1) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 786
"returned_text" => "LONGTEXT",
"returned_text" => "LONGTEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 787
"last_run" => "TIMESTAMP NULL DEFAULT NULL",
"last_run" => "TIMESTAMP NULL DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 788
"success" => "TINYINT(1) UNSIGNED DEFAULT NULL",
"success" => "TINYINT(1) UNSIGNED DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 789
"exit_status" => "VARCHAR(50) DEFAULT NULL",
"exit_status" => "VARCHAR(50) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 790
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 791
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 792
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 793
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 794
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 795
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 796
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 797
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 798
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 799
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 800
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 801
"bcc_maps" => array(
"bcc_maps" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 802
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 803
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 804
"local_dest" => "VARCHAR(255) NOT NULL",
"local_dest" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 805
"bcc_dest" => "VARCHAR(255) NOT NULL",
"bcc_dest" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 806
"domain" => "VARCHAR(255) NOT NULL",
"domain" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 807
"type" => "ENUM('sender','rcpt')",
"type" => "ENUM('sender','rcpt')",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 808
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 809
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 810
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 811
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 812
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 813
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 814
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 815
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 816
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 817
"local_dest" => array("local_dest"),
"local_dest" => array("local_dest"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 818
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 819
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 820
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 821
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 822
"recipient_maps" => array(
"recipient_maps" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 823
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 824
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 825
"old_dest" => "VARCHAR(255) NOT NULL",
"old_dest" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 826
"new_dest" => "VARCHAR(255) NOT NULL",
"new_dest" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 827
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
"created" => "DATETIME(0) NOT NULL DEFAULT NOW(0)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 828
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
"modified" => "DATETIME ON UPDATE CURRENT_TIMESTAMP",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 829
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 830
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 831
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 832
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 833
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 834
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 835
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 836
"local_dest" => array("old_dest"),
"local_dest" => array("old_dest"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 837
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 838
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 839
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 840
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 841
"tfa" => array(
"tfa" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 842
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 843
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 844
"key_id" => "VARCHAR(255) NOT NULL",
"key_id" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 845
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 846
"authmech" => "ENUM('yubi_otp', 'u2f', 'hotp', 'totp', 'webauthn')",
"authmech" => "ENUM('yubi_otp', 'u2f', 'hotp', 'totp', 'webauthn')",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 847
"secret" => "VARCHAR(255) DEFAULT NULL",
"secret" => "VARCHAR(255) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 848
"keyHandle" => "VARCHAR(1023) DEFAULT NULL",
"keyHandle" => "VARCHAR(1023) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 849
"publicKey" => "VARCHAR(4096) DEFAULT NULL",
"publicKey" => "VARCHAR(4096) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 850
"counter" => "INT NOT NULL DEFAULT '0'",
"counter" => "INT NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 851
"certificate" => "TEXT",
"certificate" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 852
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
"active" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 853
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 854
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 855
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 856
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 857
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 858
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 859
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 860
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 861
"forwarding_hosts" => array(
"forwarding_hosts" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 862
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 863
"host" => "VARCHAR(255) NOT NULL",
"host" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 864
"source" => "VARCHAR(255) NOT NULL",
"source" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 865
"filter_spam" => "TINYINT(1) NOT NULL DEFAULT '0'"
"filter_spam" => "TINYINT(1) NOT NULL DEFAULT '0'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 866
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 867
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 868
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 869
"" => array("host")
"" => array("host")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 870
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 871
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 872
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 873
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 874
"sogo_acl" => array(
"sogo_acl" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 875
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 876
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 877
"c_folder_id" => "INT NOT NULL",
"c_folder_id" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 878
"c_object" => "VARCHAR(255) NOT NULL",
"c_object" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 879
"c_uid" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 880
"c_role" => "VARCHAR(80) NOT NULL"
"c_role" => "VARCHAR(80) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 881
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 882
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 883
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 884
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 885
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 886
"key" => array(
"key" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 887
"sogo_acl_c_folder_id_idx" => array("c_folder_id"),
"sogo_acl_c_folder_id_idx" => array("c_folder_id"),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 888
"sogo_acl_c_uid_idx" => array("c_uid")
"sogo_acl_c_uid_idx" => array("c_uid")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 889
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 890
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 891
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 892
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 893
"sogo_alarms_folder" => array(
"sogo_alarms_folder" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 894
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 895
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 896
"c_path" => "VARCHAR(255) NOT NULL",
"c_path" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 897
"c_name" => "VARCHAR(255) NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 898
"c_uid" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 899
"c_recurrence_id" => "INT(11) DEFAULT NULL",
"c_recurrence_id" => "INT(11) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 900
"c_alarm_number" => "INT(11) NOT NULL",
"c_alarm_number" => "INT(11) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 901
"c_alarm_date" => "INT(11) NOT NULL"
"c_alarm_date" => "INT(11) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 902
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 903
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 904
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 905
"" => array("id")
"" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 906
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 907
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 908
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 909
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 910
"sogo_cache_folder" => array(
"sogo_cache_folder" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 911
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 912
"c_uid" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 913
"c_path" => "VARCHAR(255) NOT NULL",
"c_path" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 914
"c_parent_path" => "VARCHAR(255) DEFAULT NULL",
"c_parent_path" => "VARCHAR(255) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 915
"c_type" => "TINYINT(3) unsigned NOT NULL",
"c_type" => "TINYINT(3) unsigned NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 916
"c_creationdate" => "INT(11) NOT NULL",
"c_creationdate" => "INT(11) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 917
"c_lastmodified" => "INT(11) NOT NULL",
"c_lastmodified" => "INT(11) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 918
"c_version" => "INT(11) NOT NULL DEFAULT '0'",
"c_version" => "INT(11) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 919
"c_deleted" => "TINYINT(4) NOT NULL DEFAULT '0'",
"c_deleted" => "TINYINT(4) NOT NULL DEFAULT '0'",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 920
"c_content" => "LONGTEXT"
"c_content" => "LONGTEXT"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 921
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 922
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 923
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 924
"" => array("c_uid", "c_path")
"" => array("c_uid", "c_path")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 925
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 926
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 927
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 928
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 929
"sogo_folder_info" => array(
"sogo_folder_info" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 930
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 931
"c_folder_id" => "BIGINT(20) unsigned NOT NULL AUTO_INCREMENT",
"c_folder_id" => "BIGINT(20) unsigned NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 932
"c_path" => "VARCHAR(255) NOT NULL",
"c_path" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 933
"c_path1" => "VARCHAR(255) NOT NULL",
"c_path1" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 934
"c_path2" => "VARCHAR(255) DEFAULT NULL",
"c_path2" => "VARCHAR(255) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 935
"c_path3" => "VARCHAR(255) DEFAULT NULL",
"c_path3" => "VARCHAR(255) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 936
"c_path4" => "VARCHAR(255) DEFAULT NULL",
"c_path4" => "VARCHAR(255) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 937
"c_foldername" => "VARCHAR(255) NOT NULL",
"c_foldername" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 938
"c_location" => "VARCHAR(2048) DEFAULT NULL",
"c_location" => "VARCHAR(2048) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 939
"c_quick_location" => "VARCHAR(2048) DEFAULT NULL",
"c_quick_location" => "VARCHAR(2048) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 940
"c_acl_location" => "VARCHAR(2048) DEFAULT NULL",
"c_acl_location" => "VARCHAR(2048) DEFAULT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 941
"c_folder_type" => "VARCHAR(255) NOT NULL"
"c_folder_type" => "VARCHAR(255) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 942
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 943
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 944
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 945
"" => array("c_path")
"" => array("c_path")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 946
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 947
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 948
"c_folder_id" => array("c_folder_id")
"c_folder_id" => array("c_folder_id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 949
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 950
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 951
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 952
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 953
"sogo_quick_appointment" => array(
"sogo_quick_appointment" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 954
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 955
"c_folder_id" => "INT NOT NULL",
"c_folder_id" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 956
"c_name" => "VARCHAR(255) NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 957
"c_uid" => "VARCHAR(1000) NOT NULL",
"c_uid" => "VARCHAR(1000) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 958
"c_startdate" => "INT",
"c_startdate" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 959
"c_enddate" => "INT",
"c_enddate" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 960
"c_cycleenddate" => "INT",
"c_cycleenddate" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 961
"c_title" => "VARCHAR(1000) NOT NULL",
"c_title" => "VARCHAR(1000) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 962
"c_participants" => "TEXT",
"c_participants" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 963
"c_isallday" => "INT",
"c_isallday" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 964
"c_iscycle" => "INT",
"c_iscycle" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 965
"c_cycleinfo" => "TEXT",
"c_cycleinfo" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 966
"c_classification" => "INT NOT NULL",
"c_classification" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 967
"c_isopaque" => "INT NOT NULL",
"c_isopaque" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 968
"c_status" => "INT NOT NULL",
"c_status" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 969
"c_priority" => "INT",
"c_priority" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 970
"c_location" => "VARCHAR(255)",
"c_location" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 971
"c_orgmail" => "VARCHAR(255)",
"c_orgmail" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 972
"c_partmails" => "TEXT",
"c_partmails" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 973
"c_partstates" => "TEXT",
"c_partstates" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 974
"c_category" => "VARCHAR(255)",
"c_category" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 975
"c_sequence" => "INT",
"c_sequence" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 976
"c_component" => "VARCHAR(10) NOT NULL",
"c_component" => "VARCHAR(10) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 977
"c_nextalarm" => "INT",
"c_nextalarm" => "INT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 978
"c_description" => "TEXT"
"c_description" => "TEXT"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 979
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 980
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 981
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 982
"" => array("c_folder_id", "c_name")
"" => array("c_folder_id", "c_name")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 983
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 984
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 985
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 986
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 987
"sogo_quick_contact" => array(
"sogo_quick_contact" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 988
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 989
"c_folder_id" => "INT NOT NULL",
"c_folder_id" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 990
"c_name" => "VARCHAR(255) NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 991
"c_givenname" => "VARCHAR(255)",
"c_givenname" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 992
"c_cn" => "VARCHAR(255)",
"c_cn" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 993
"c_sn" => "VARCHAR(255)",
"c_sn" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 994
"c_screenname" => "VARCHAR(255)",
"c_screenname" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 995
"c_l" => "VARCHAR(255)",
"c_l" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 996
"c_mail" => "TEXT",
"c_mail" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 997
"c_o" => "VARCHAR(500)",
"c_o" => "VARCHAR(500)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 998
"c_ou" => "VARCHAR(255)",
"c_ou" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 999
"c_telephonenumber" => "VARCHAR(255)",
"c_telephonenumber" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1000
"c_categories" => "VARCHAR(255)",
"c_categories" => "VARCHAR(255)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1001
"c_component" => "VARCHAR(10) NOT NULL",
"c_component" => "VARCHAR(10) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1002
"c_hascertificate" => "INT4 DEFAULT 0"
"c_hascertificate" => "INT4 DEFAULT 0"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1003
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1004
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1005
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1006
"" => array("c_folder_id", "c_name")
"" => array("c_folder_id", "c_name")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1007
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1008
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1009
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1010
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1011
"sogo_sessions_folder" => array(
"sogo_sessions_folder" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1012
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1013
"c_id" => "VARCHAR(255) NOT NULL",
"c_id" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1014
"c_value" => "VARCHAR(4096) NOT NULL",
"c_value" => "VARCHAR(4096) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1015
"c_creationdate" => "INT(11) NOT NULL",
"c_creationdate" => "INT(11) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1016
"c_lastseen" => "INT(11) NOT NULL"
"c_lastseen" => "INT(11) NOT NULL"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1017
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1018
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1019
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1020
"" => array("c_id")
"" => array("c_id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1021
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1022
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1023
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1024
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1025
"sogo_store" => array(
"sogo_store" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1026
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1027
"c_folder_id" => "INT NOT NULL",
"c_folder_id" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1028
"c_name" => "VARCHAR(255) NOT NULL",
"c_name" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1029
"c_content" => "MEDIUMTEXT NOT NULL",
"c_content" => "MEDIUMTEXT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1030
"c_creationdate" => "INT NOT NULL",
"c_creationdate" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1031
"c_lastmodified" => "INT NOT NULL",
"c_lastmodified" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1032
"c_version" => "INT NOT NULL",
"c_version" => "INT NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1033
"c_deleted" => "INT"
"c_deleted" => "INT"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1034
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1035
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1036
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1037
"" => array("c_folder_id", "c_name")
"" => array("c_folder_id", "c_name")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1038
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1039
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1040
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1041
),
),
FreddleSpl0it
about 2 years ago
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1042
"sogo_admin" => array(
"sogo_admin" => array(
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1043
"cols" => array(
"cols" => array(
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1044
"c_key" => "VARCHAR(255) NOT NULL DEFAULT ''",
"c_key" => "VARCHAR(255) NOT NULL DEFAULT ''",
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1045
"c_content" => "mediumtext NOT NULL",
"c_content" => "mediumtext NOT NULL",
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1046
),
),
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1047
"keys" => array(
"keys" => array(
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1048
"primary" => array(
"primary" => array(
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1049
"" => array("c_key")
"" => array("c_key")
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1050
)
)
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1051
),
),
same change
f7ae2a6
[Nightly][SOGo] Update 5.10.0
- Full commit hash
f7ae2a6162958907bbfdd2df5237f343564080c8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1052
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1053
),
),
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1054
"pushover" => array(
"pushover" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1055
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1056
"username" => "VARCHAR(255) NOT NULL",
"username" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1057
"key" => "VARCHAR(255) NOT NULL",
"key" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1058
"token" => "VARCHAR(255) NOT NULL",
"token" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1059
"attributes" => "JSON",
"attributes" => "JSON",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1060
"title" => "TEXT",
"title" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1061
"text" => "TEXT",
"text" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1062
"senders" => "TEXT",
"senders" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1063
"senders_regex" => "TEXT",
"senders_regex" => "TEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1064
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
"active" => "TINYINT(1) NOT NULL DEFAULT '1'"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1065
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1066
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1067
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1068
"" => array("username")
"" => array("username")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1069
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1070
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1071
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1072
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1073
"sogo_user_profile" => array(
"sogo_user_profile" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1074
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1075
"c_uid" => "VARCHAR(255) NOT NULL",
"c_uid" => "VARCHAR(255) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1076
"c_defaults" => "LONGTEXT",
"c_defaults" => "LONGTEXT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1077
"c_settings" => "LONGTEXT"
"c_settings" => "LONGTEXT"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1078
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1079
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1080
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1081
"" => array("c_uid")
"" => array("c_uid")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1082
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1083
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1084
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1085
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1086
"oauth_clients" => array(
"oauth_clients" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1087
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1088
"id" => "INT NOT NULL AUTO_INCREMENT",
"id" => "INT NOT NULL AUTO_INCREMENT",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1089
"client_id" => "VARCHAR(80) NOT NULL",
"client_id" => "VARCHAR(80) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1090
"client_secret" => "VARCHAR(80)",
"client_secret" => "VARCHAR(80)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1091
"redirect_uri" => "VARCHAR(2000)",
"redirect_uri" => "VARCHAR(2000)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1092
"grant_types" => "VARCHAR(80)",
"grant_types" => "VARCHAR(80)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1093
"scope" => "VARCHAR(4000)",
"scope" => "VARCHAR(4000)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1094
"user_id" => "VARCHAR(80)"
"user_id" => "VARCHAR(80)"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1095
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1096
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1097
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1098
"" => array("client_id")
"" => array("client_id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1099
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1100
"unique" => array(
"unique" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1101
"id" => array("id")
"id" => array("id")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1102
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1103
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1104
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1105
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1106
"oauth_access_tokens" => array(
"oauth_access_tokens" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1107
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1108
"access_token" => "VARCHAR(40) NOT NULL",
"access_token" => "VARCHAR(40) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1109
"client_id" => "VARCHAR(80) NOT NULL",
"client_id" => "VARCHAR(80) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1110
"user_id" => "VARCHAR(80)",
"user_id" => "VARCHAR(80)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1111
"expires" => "TIMESTAMP NOT NULL",
"expires" => "TIMESTAMP NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1112
"scope" => "VARCHAR(4000)"
"scope" => "VARCHAR(4000)"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1113
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1114
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1115
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1116
"" => array("access_token")
"" => array("access_token")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1117
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1118
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1119
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1120
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1121
"oauth_authorization_codes" => array(
"oauth_authorization_codes" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1122
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1123
"authorization_code" => "VARCHAR(40) NOT NULL",
"authorization_code" => "VARCHAR(40) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1124
"client_id" => "VARCHAR(80) NOT NULL",
"client_id" => "VARCHAR(80) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1125
"user_id" => "VARCHAR(80)",
"user_id" => "VARCHAR(80)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1126
"redirect_uri" => "VARCHAR(2000)",
"redirect_uri" => "VARCHAR(2000)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1127
"expires" => "TIMESTAMP NOT NULL",
"expires" => "TIMESTAMP NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1128
"scope" => "VARCHAR(4000)",
"scope" => "VARCHAR(4000)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1129
"id_token" => "VARCHAR(1000)"
"id_token" => "VARCHAR(1000)"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1130
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1131
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1132
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1133
"" => array("authorization_code")
"" => array("authorization_code")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1134
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1135
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1136
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1137
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1138
"oauth_refresh_tokens" => array(
"oauth_refresh_tokens" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1139
"cols" => array(
"cols" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1140
"refresh_token" => "VARCHAR(40) NOT NULL",
"refresh_token" => "VARCHAR(40) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1141
"client_id" => "VARCHAR(80) NOT NULL",
"client_id" => "VARCHAR(80) NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1142
"user_id" => "VARCHAR(80)",
"user_id" => "VARCHAR(80)",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1143
"expires" => "TIMESTAMP NOT NULL",
"expires" => "TIMESTAMP NOT NULL",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1144
"scope" => "VARCHAR(4000)"
"scope" => "VARCHAR(4000)"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1145
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1146
"keys" => array(
"keys" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1147
"primary" => array(
"primary" => array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1148
"" => array("refresh_token")
"" => array("refresh_token")
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1149
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1150
),
),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1151
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
"attr" => "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC"
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1152
)
)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1153
);
);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1154
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1155
foreach ($tables as $table => $properties) {
foreach ($tables as $table => $properties) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1156
// Migrate to quarantine
// Migrate to quarantine
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1157
if ($table == 'quarantine') {
if ($table == 'quarantine') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1158
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantaine'");
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantaine'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1159
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1160
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1161
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantine'");
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantine'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1162
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1163
if ($num_results == 0) {
if ($num_results == 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1164
$pdo->query("RENAME TABLE `quarantaine` TO `quarantine`");
$pdo->query("RENAME TABLE `quarantaine` TO `quarantine`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1165
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1166
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1167
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1168
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1169
// Migrate tls_enforce_* options
// Migrate tls_enforce_* options
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1170
if ($table == 'mailbox') {
if ($table == 'mailbox') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1171
$stmt = $pdo->query("SHOW TABLES LIKE 'mailbox'");
$stmt = $pdo->query("SHOW TABLES LIKE 'mailbox'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1172
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1173
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1174
$stmt = $pdo->query("SHOW COLUMNS FROM `mailbox` LIKE '%tls_enforce%'");
$stmt = $pdo->query("SHOW COLUMNS FROM `mailbox` LIKE '%tls_enforce%'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1175
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1176
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1177
$stmt = $pdo->query("SELECT `username`, `tls_enforce_in`, `tls_enforce_out` FROM `mailbox`");
$stmt = $pdo->query("SELECT `username`, `tls_enforce_in`, `tls_enforce_out` FROM `mailbox`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1178
$tls_options_rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
$tls_options_rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1179
while ($row = array_shift($tls_options_rows)) {
while ($row = array_shift($tls_options_rows)) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1180
$tls_options[$row['username']] = array('tls_enforce_in' => $row['tls_enforce_in'], 'tls_enforce_out' => $row['tls_enforce_out']);
$tls_options[$row['username']] = array('tls_enforce_in' => $row['tls_enforce_in'], 'tls_enforce_out' => $row['tls_enforce_out']);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1181
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1182
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1183
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1184
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1185
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1186
$stmt = $pdo->query("SHOW TABLES LIKE '" . $table . "'");
$stmt = $pdo->query("SHOW TABLES LIKE '" . $table . "'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1187
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1188
if ($num_results != 0) {
if ($num_results != 0) {
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1189
$stmt = $pdo->prepare("SELECT CONCAT('ALTER TABLE `', `table_schema`, '`.', `table_name`, ' DROP FOREIGN KEY ', `constraint_name`, ';') AS `FKEY_DROP` FROM `information_schema`.`table_constraints`
$stmt = $pdo->prepare("SELECT CONCAT('ALTER TABLE `', `table_schema`, '`.', `table_name`, ' DROP FOREIGN KEY ', `constraint_name`, ';') AS `FKEY_DROP` FROM `information_schema`.`table_constraints`
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1190
WHERE `constraint_type` = 'FOREIGN KEY' AND `table_name` = :table;");
WHERE `constraint_type` = 'FOREIGN KEY' AND `table_name` = :table;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1191
$stmt->execute(array(':table' => $table));
$stmt->execute(array(':table' => $table));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1192
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1193
while ($row = array_shift($rows)) {
while ($row = array_shift($rows)) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1194
$pdo->query($row['FKEY_DROP']);
$pdo->query($row['FKEY_DROP']);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1195
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1196
foreach ($properties['cols'] as $column => $type) {
foreach ($properties['cols'] as $column => $type) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1197
$stmt = $pdo->query("SHOW COLUMNS FROM `" . $table . "` LIKE '" . $column . "'");
$stmt = $pdo->query("SHOW COLUMNS FROM `" . $table . "` LIKE '" . $column . "'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1198
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1199
if ($num_results == 0) {
if ($num_results == 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1200
if (strpos($type, 'AUTO_INCREMENT') !== false) {
if (strpos($type, 'AUTO_INCREMENT') !== false) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1201
$type = $type . ' PRIMARY KEY ';
$type = $type . ' PRIMARY KEY ';
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1202
// Adding an AUTO_INCREMENT key, need to drop primary keys first, if exists
// Adding an AUTO_INCREMENT key, need to drop primary keys first, if exists
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1203
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1204
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1205
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1206
$pdo->query("ALTER TABLE `" . $table . "` DROP PRIMARY KEY");
$pdo->query("ALTER TABLE `" . $table . "` DROP PRIMARY KEY");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1207
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1208
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1209
$pdo->query("ALTER TABLE `" . $table . "` ADD `" . $column . "` " . $type);
$pdo->query("ALTER TABLE `" . $table . "` ADD `" . $column . "` " . $type);
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1210
} else {
} else {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1211
$pdo->query("ALTER TABLE `" . $table . "` MODIFY COLUMN `" . $column . "` " . $type);
$pdo->query("ALTER TABLE `" . $table . "` MODIFY COLUMN `" . $column . "` " . $type);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1212
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1213
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1214
foreach ($properties['keys'] as $key_type => $key_content) {
foreach ($properties['keys'] as $key_type => $key_content) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1215
if (strtolower($key_type) == 'primary') {
if (strtolower($key_type) == 'primary') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1216
foreach ($key_content as $key_values) {
foreach ($key_content as $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1217
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1218
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1219
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1220
$is_drop = ($num_results != 0) ? "DROP PRIMARY KEY, " : "";
$is_drop = ($num_results != 0) ? "DROP PRIMARY KEY, " : "";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1221
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD PRIMARY KEY (" . $fields . ")");
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD PRIMARY KEY (" . $fields . ")");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1222
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1223
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1224
if (strtolower($key_type) == 'key') {
if (strtolower($key_type) == 'key') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1225
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1226
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1227
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1228
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1229
$is_drop = ($num_results != 0) ? "DROP INDEX `" . $key_name . "`, " : "";
$is_drop = ($num_results != 0) ? "DROP INDEX `" . $key_name . "`, " : "";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1230
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD KEY `" . $key_name . "` (" . $fields . ")");
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD KEY `" . $key_name . "` (" . $fields . ")");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1231
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1232
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1233
if (strtolower($key_type) == 'unique') {
if (strtolower($key_type) == 'unique') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1234
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1235
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1236
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1237
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1238
$is_drop = ($num_results != 0) ? "DROP INDEX `" . $key_name . "`, " : "";
$is_drop = ($num_results != 0) ? "DROP INDEX `" . $key_name . "`, " : "";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1239
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD UNIQUE KEY `" . $key_name . "` (" . $fields . ")");
$pdo->query("ALTER TABLE `" . $table . "` " . $is_drop . "ADD UNIQUE KEY `" . $key_name . "` (" . $fields . ")");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1240
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1241
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1242
if (strtolower($key_type) == 'fkey') {
if (strtolower($key_type) == 'fkey') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1243
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1244
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1245
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = '" . $key_name . "'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1246
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1247
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1248
$pdo->query("ALTER TABLE `" . $table . "` DROP INDEX `" . $key_name . "`");
$pdo->query("ALTER TABLE `" . $table . "` DROP INDEX `" . $key_name . "`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1249
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1250
@list($table_ref, $field_ref) = explode('.', $key_values['ref']);
@list($table_ref, $field_ref) = explode('.', $key_values['ref']);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1251
$pdo->query("ALTER TABLE `" . $table . "` ADD FOREIGN KEY `" . $key_name . "` (" . $key_values['col'] . ") REFERENCES `" . $table_ref . "` (`" . $field_ref . "`)
$pdo->query("ALTER TABLE `" . $table . "` ADD FOREIGN KEY `" . $key_name . "` (" . $key_values['col'] . ") REFERENCES `" . $table_ref . "` (`" . $field_ref . "`)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1252
ON DELETE " . $key_values['delete'] . " ON UPDATE " . $key_values['update']);
ON DELETE " . $key_values['delete'] . " ON UPDATE " . $key_values['update']);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1253
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1254
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1255
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1256
// Drop all vanished columns
// Drop all vanished columns
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1257
$stmt = $pdo->query("SHOW COLUMNS FROM `" . $table . "`");
$stmt = $pdo->query("SHOW COLUMNS FROM `" . $table . "`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1258
$cols_in_table = $stmt->fetchAll(PDO::FETCH_ASSOC);
$cols_in_table = $stmt->fetchAll(PDO::FETCH_ASSOC);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1259
while ($row = array_shift($cols_in_table)) {
while ($row = array_shift($cols_in_table)) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1260
if (!array_key_exists($row['Field'], $properties['cols'])) {
if (!array_key_exists($row['Field'], $properties['cols'])) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1261
$pdo->query("ALTER TABLE `" . $table . "` DROP COLUMN `" . $row['Field'] . "`;");
$pdo->query("ALTER TABLE `" . $table . "` DROP COLUMN `" . $row['Field'] . "`;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1262
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1263
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1264
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1265
// Step 1: Get all non-primary keys, that currently exist and those that should exist
// Step 1: Get all non-primary keys, that currently exist and those that should exist
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1266
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE `Key_name` != 'PRIMARY'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE `Key_name` != 'PRIMARY'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1267
$keys_in_table = $stmt->fetchAll(PDO::FETCH_ASSOC);
$keys_in_table = $stmt->fetchAll(PDO::FETCH_ASSOC);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1268
$keys_to_exist = array();
$keys_to_exist = array();
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1269
if (isset($properties['keys']['unique']) && is_array($properties['keys']['unique'])) {
if (isset($properties['keys']['unique']) && is_array($properties['keys']['unique'])) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1270
foreach ($properties['keys']['unique'] as $key_name => $key_values) {
foreach ($properties['keys']['unique'] as $key_name => $key_values) {
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1271
$keys_to_exist[] = $key_name;
$keys_to_exist[] = $key_name;
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1272
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1273
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1274
if (isset($properties['keys']['key']) && is_array($properties['keys']['key'])) {
if (isset($properties['keys']['key']) && is_array($properties['keys']['key'])) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1275
foreach ($properties['keys']['key'] as $key_name => $key_values) {
foreach ($properties['keys']['key'] as $key_name => $key_values) {
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1276
$keys_to_exist[] = $key_name;
$keys_to_exist[] = $key_name;
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1277
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1278
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1279
// Index for foreign key must exist
// Index for foreign key must exist
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1280
if (isset($properties['keys']['fkey']) && is_array($properties['keys']['fkey'])) {
if (isset($properties['keys']['fkey']) && is_array($properties['keys']['fkey'])) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1281
foreach ($properties['keys']['fkey'] as $key_name => $key_values) {
foreach ($properties['keys']['fkey'] as $key_name => $key_values) {
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1282
$keys_to_exist[] = $key_name;
$keys_to_exist[] = $key_name;
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1283
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1284
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1285
// Step 2: Drop all vanished indexes
// Step 2: Drop all vanished indexes
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1286
while ($row = array_shift($keys_in_table)) {
while ($row = array_shift($keys_in_table)) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1287
if (!in_array($row['Key_name'], $keys_to_exist)) {
if (!in_array($row['Key_name'], $keys_to_exist)) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1288
$pdo->query("ALTER TABLE `" . $table . "` DROP INDEX `" . $row['Key_name'] . "`");
$pdo->query("ALTER TABLE `" . $table . "` DROP INDEX `" . $row['Key_name'] . "`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1289
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1290
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1291
// Step 3: Drop all vanished primary keys
// Step 3: Drop all vanished primary keys
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1292
if (!isset($properties['keys']['primary'])) {
if (!isset($properties['keys']['primary'])) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1293
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
$stmt = $pdo->query("SHOW KEYS FROM `" . $table . "` WHERE Key_name = 'PRIMARY'");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1294
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1295
if ($num_results != 0) {
if ($num_results != 0) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1296
$pdo->query("ALTER TABLE `" . $table . "` DROP PRIMARY KEY");
$pdo->query("ALTER TABLE `" . $table . "` DROP PRIMARY KEY");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1297
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1298
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1299
} else {
} else {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1300
// Create table if it is missing
// Create table if it is missing
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1301
$sql = "CREATE TABLE IF NOT EXISTS `" . $table . "` (";
$sql = "CREATE TABLE IF NOT EXISTS `" . $table . "` (";
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1302
foreach ($properties['cols'] as $column => $type) {
foreach ($properties['cols'] as $column => $type) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1303
$sql .= "`" . $column . "` " . $type . ",";
$sql .= "`" . $column . "` " . $type . ",";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1304
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1305
foreach ($properties['keys'] as $key_type => $key_content) {
foreach ($properties['keys'] as $key_type => $key_content) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1306
if (strtolower($key_type) == 'primary') {
if (strtolower($key_type) == 'primary') {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1307
foreach ($key_content as $key_values) {
foreach ($key_content as $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1308
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1309
$sql .= "PRIMARY KEY (" . $fields . ")" . ",";
$sql .= "PRIMARY KEY (" . $fields . ")" . ",";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1310
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1311
} elseif (strtolower($key_type) == 'key') {
} elseif (strtolower($key_type) == 'key') {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1312
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1313
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1314
$sql .= "KEY `" . $key_name . "` (" . $fields . ")" . ",";
$sql .= "KEY `" . $key_name . "` (" . $fields . ")" . ",";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1315
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1316
} elseif (strtolower($key_type) == 'unique') {
} elseif (strtolower($key_type) == 'unique') {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1317
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1318
$fields = "`" . implode("`, `", $key_values) . "`";
$fields = "`" . implode("`, `", $key_values) . "`";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1319
$sql .= "UNIQUE KEY `" . $key_name . "` (" . $fields . ")" . ",";
$sql .= "UNIQUE KEY `" . $key_name . "` (" . $fields . ")" . ",";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1320
}
}
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1321
} elseif (strtolower($key_type) == 'fkey') {
} elseif (strtolower($key_type) == 'fkey') {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1322
foreach ($key_content as $key_name => $key_values) {
foreach ($key_content as $key_name => $key_values) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1323
@list($table_ref, $field_ref) = explode('.', $key_values['ref']);
@list($table_ref, $field_ref) = explode('.', $key_values['ref']);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1324
$sql .= "FOREIGN KEY `" . $key_name . "` (" . $key_values['col'] . ") REFERENCES `" . $table_ref . "` (`" . $field_ref . "`)
$sql .= "FOREIGN KEY `" . $key_name . "` (" . $key_values['col'] . ") REFERENCES `" . $table_ref . "` (`" . $field_ref . "`)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1325
ON DELETE " . $key_values['delete'] . " ON UPDATE " . $key_values['update'] . ",";
ON DELETE " . $key_values['delete'] . " ON UPDATE " . $key_values['update'] . ",";
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1326
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1327
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1328
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1329
$sql = rtrim($sql, ",");
$sql = rtrim($sql, ",");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1330
$sql .= ") " . $properties['attr'];
$sql .= ") " . $properties['attr'];
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1331
$pdo->query($sql);
$pdo->query($sql);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1332
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1333
// Reset table attributes
// Reset table attributes
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1334
$pdo->query("ALTER TABLE `" . $table . "` " . $properties['attr'] . ";");
$pdo->query("ALTER TABLE `" . $table . "` " . $properties['attr'] . ";");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1335
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1336
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1337
// Recreate SQL views
// Recreate SQL views
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1338
foreach ($views as $view => $create) {
foreach ($views as $view => $create) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1339
$pdo->query("DROP VIEW IF EXISTS `" . $view . "`;");
$pdo->query("DROP VIEW IF EXISTS `" . $view . "`;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1340
$pdo->query($create);
$pdo->query($create);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1341
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1342
FreddleSpl0it
10 months ago
c294873
[Web] clear old app_passwd log entries
- Full commit hash
c2948735f233eec177dd4aab194f71956f1b8661- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1343
// Clear old app_passwd log entries
// Clear old app_passwd log entries
FreddleSpl0it
10 months ago
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1344
$pdo->exec("DELETE FROM logs
$pdo->exec("DELETE FROM logs
same change
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1345
WHERE role != 'unauthenticated'
WHERE role != 'unauthenticated'
same change
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1346
AND JSON_EXTRACT(`call`, '$[0]') = 'app_passwd'
AND JSON_EXTRACT(`call`, '$[0]') = 'app_passwd'
same change
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1347
AND JSON_EXTRACT(`call`, '$[1]') = 'edit'
AND JSON_EXTRACT(`call`, '$[1]') = 'edit'
same change
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1348
AND (JSON_CONTAINS_PATH(`call`, 'one', '$[2].password')
AND (JSON_CONTAINS_PATH(`call`, 'one', '$[2].password')
same change
455ef08
[Web] clear old app_passwd log entries
- Full commit hash
455ef084b4a4af4173b471d671a1d77b397aefe2- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1349
OR JSON_CONTAINS_PATH(`call`, 'one', '$[2].password2'));");
OR JSON_CONTAINS_PATH(`call`, 'one', '$[2].password2'));");
FreddleSpl0it
10 months ago
c294873
[Web] clear old app_passwd log entries
- Full commit hash
c2948735f233eec177dd4aab194f71956f1b8661- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1350
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1351
// Mitigate imapsync argument injection issue
// Mitigate imapsync argument injection issue
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1352
$pdo->query("UPDATE `imapsync` SET `custom_params` = ''
$pdo->query("UPDATE `imapsync` SET `custom_params` = ''
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1353
WHERE `custom_params` LIKE '%pipemess%'
WHERE `custom_params` LIKE '%pipemess%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1354
OR custom_params LIKE '%skipmess%'
OR custom_params LIKE '%skipmess%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1355
OR custom_params LIKE '%delete2foldersonly%'
OR custom_params LIKE '%delete2foldersonly%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1356
OR custom_params LIKE '%delete2foldersbutnot%'
OR custom_params LIKE '%delete2foldersbutnot%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1357
OR custom_params LIKE '%regexflag%'
OR custom_params LIKE '%regexflag%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1358
OR custom_params LIKE '%pipemess%'
OR custom_params LIKE '%pipemess%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1359
OR custom_params LIKE '%regextrans2%'
OR custom_params LIKE '%regextrans2%'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1360
OR custom_params LIKE '%maxlinelengthcmd%';");
OR custom_params LIKE '%maxlinelengthcmd%';");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1361
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1362
// Migrate webauthn tfa
// Migrate webauthn tfa
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1363
$stmt = $pdo->query("ALTER TABLE `tfa` MODIFY COLUMN `authmech` ENUM('yubi_otp', 'u2f', 'hotp', 'totp', 'webauthn')");
$stmt = $pdo->query("ALTER TABLE `tfa` MODIFY COLUMN `authmech` ENUM('yubi_otp', 'u2f', 'hotp', 'totp', 'webauthn')");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1364
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1365
// Inject admin if not exists
// Inject admin if not exists
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1366
$stmt = $pdo->query("SELECT NULL FROM `admin`");
$stmt = $pdo->query("SELECT NULL FROM `admin`");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1367
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1368
if ($num_results == 0) {
if ($num_results == 0) {
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1369
$pdo->query("INSERT INTO `admin` (`username`, `password`, `superadmin`, `created`, `modified`, `active`)
$pdo->query("INSERT INTO `admin` (`username`, `password`, `superadmin`, `created`, `modified`, `active`)
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1370
VALUES ('admin', '{SSHA256}K8eVJ6YsZbQCfuJvSUbaQRLr0HPLz5rC9IAp0PAFl0tmNDBkMDc0NDAyOTAxN2Rk', 1, NOW(), NOW(), 1)");
VALUES ('admin', '{SSHA256}K8eVJ6YsZbQCfuJvSUbaQRLr0HPLz5rC9IAp0PAFl0tmNDBkMDc0NDAyOTAxN2Rk', 1, NOW(), NOW(), 1)");
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1371
$pdo->query("INSERT INTO `domain_admins` (`username`, `domain`, `created`, `active`)
$pdo->query("INSERT INTO `domain_admins` (`username`, `domain`, `created`, `active`)
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1372
SELECT `username`, 'ALL', NOW(), 1 FROM `admin`
SELECT `username`, 'ALL', NOW(), 1 FROM `admin`
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1373
WHERE superadmin='1' AND `username` NOT IN (SELECT `username` FROM `domain_admins`);");
WHERE superadmin='1' AND `username` NOT IN (SELECT `username` FROM `domain_admins`);");
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1374
$pdo->query("DELETE FROM `admin` WHERE `username` NOT IN (SELECT `username` FROM `domain_admins`);");
$pdo->query("DELETE FROM `admin` WHERE `username` NOT IN (SELECT `username` FROM `domain_admins`);");
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1375
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1376
// Insert new DB schema version
// Insert new DB schema version
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1377
$pdo->query("REPLACE INTO `versions` (`application`, `version`) VALUES ('db_schema', '" . $db_version . "');");
$pdo->query("REPLACE INTO `versions` (`application`, `version`) VALUES ('db_schema', '" . $db_version . "');");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1378
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1379
// Fix dangling domain admins
// Fix dangling domain admins
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1380
$pdo->query("DELETE FROM `admin` WHERE `superadmin` = 0 AND `username` NOT IN (SELECT `username`FROM `domain_admins`);");
$pdo->query("DELETE FROM `admin` WHERE `superadmin` = 0 AND `username` NOT IN (SELECT `username`FROM `domain_admins`);");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1381
$pdo->query("DELETE FROM `da_acl` WHERE `username` NOT IN (SELECT `username`FROM `domain_admins`);");
$pdo->query("DELETE FROM `da_acl` WHERE `username` NOT IN (SELECT `username`FROM `domain_admins`);");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1382
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1383
// Migrate attributes
// Migrate attributes
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1384
// pushover
// pushover
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1385
$pdo->query("UPDATE `pushover` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
$pdo->query("UPDATE `pushover` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1386
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.evaluate_x_prio', \"0\") WHERE JSON_VALUE(`attributes`, '$.evaluate_x_prio') IS NULL;");
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.evaluate_x_prio', \"0\") WHERE JSON_VALUE(`attributes`, '$.evaluate_x_prio') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1387
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.only_x_prio', \"0\") WHERE JSON_VALUE(`attributes`, '$.only_x_prio') IS NULL;");
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.only_x_prio', \"0\") WHERE JSON_VALUE(`attributes`, '$.only_x_prio') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1388
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.sound', \"pushover\") WHERE JSON_VALUE(`attributes`, '$.sound') IS NULL;");
$pdo->query("UPDATE `pushover` SET `attributes` = JSON_SET(`attributes`, '$.sound', \"pushover\") WHERE JSON_VALUE(`attributes`, '$.sound') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1389
// mailbox
// mailbox
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1390
$pdo->query("UPDATE `mailbox` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1391
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.passwd_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.passwd_update') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.passwd_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.passwd_update') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1392
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.relayhost', \"0\") WHERE JSON_VALUE(`attributes`, '$.relayhost') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.relayhost', \"0\") WHERE JSON_VALUE(`attributes`, '$.relayhost') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1393
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.force_pw_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_pw_update') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.force_pw_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_pw_update') IS NULL;");
FreddleSpl0it
5 months ago
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1394
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.force_tfa', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_tfa') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.force_tfa', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_tfa') IS NULL;");
same change
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1395
// admin attributes
// admin attributes
same change
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1396
$pdo->query("UPDATE `admin` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
$pdo->query("UPDATE `admin` SET `attributes` = '{}' WHERE `attributes` = '' OR `attributes` IS NULL;");
same change
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1397
$pdo->query("UPDATE `admin` SET `attributes` = JSON_SET(`attributes`, '$.force_tfa', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_tfa') IS NULL;");
$pdo->query("UPDATE `admin` SET `attributes` = JSON_SET(`attributes`, '$.force_tfa', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_tfa') IS NULL;");
same change
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1398
$pdo->query("UPDATE `admin` SET `attributes` = JSON_SET(`attributes`, '$.force_pw_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_pw_update') IS NULL;");
$pdo->query("UPDATE `admin` SET `attributes` = JSON_SET(`attributes`, '$.force_pw_update', \"0\") WHERE JSON_VALUE(`attributes`, '$.force_pw_update') IS NULL;");
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1399
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.sieve_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.sieve_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.sieve_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.sieve_access') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1400
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.sogo_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.sogo_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.sogo_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.sogo_access') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1401
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.imap_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.imap_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.imap_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.imap_access') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1402
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.pop3_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.pop3_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.pop3_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.pop3_access') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1403
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.smtp_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.smtp_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.smtp_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.smtp_access') IS NULL;");
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1404
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.eas_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.eas_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.eas_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.eas_access') IS NULL;");
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1405
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.dav_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.dav_access') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.dav_access', \"1\") WHERE JSON_VALUE(`attributes`, '$.dav_access') IS NULL;");
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1406
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.mailbox_format', \"maildir:\") WHERE JSON_VALUE(`attributes`, '$.mailbox_format') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.mailbox_format', \"maildir:\") WHERE JSON_VALUE(`attributes`, '$.mailbox_format') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1407
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.quarantine_notification', \"never\") WHERE JSON_VALUE(`attributes`, '$.quarantine_notification') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.quarantine_notification', \"never\") WHERE JSON_VALUE(`attributes`, '$.quarantine_notification') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1408
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.quarantine_category', \"reject\") WHERE JSON_VALUE(`attributes`, '$.quarantine_category') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.quarantine_category', \"reject\") WHERE JSON_VALUE(`attributes`, '$.quarantine_category') IS NULL;");
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1409
foreach ($tls_options as $tls_user => $tls_options) {
foreach ($tls_options as $tls_user => $tls_options) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1410
$stmt = $pdo->prepare("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_in', :tls_enforce_in),
$stmt = $pdo->prepare("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_in', :tls_enforce_in),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1411
`attributes` = JSON_SET(`attributes`, '$.tls_enforce_out', :tls_enforce_out)
`attributes` = JSON_SET(`attributes`, '$.tls_enforce_out', :tls_enforce_out)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1412
WHERE `username` = :username");
WHERE `username` = :username");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1413
$stmt->execute(array(':tls_enforce_in' => $tls_options['tls_enforce_in'], ':tls_enforce_out' => $tls_options['tls_enforce_out'], ':username' => $tls_user));
$stmt->execute(array(':tls_enforce_in' => $tls_options['tls_enforce_in'], ':tls_enforce_out' => $tls_options['tls_enforce_out'], ':username' => $tls_user));
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1414
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1415
// Set tls_enforce_* if still missing (due to deleted attrs for example)
// Set tls_enforce_* if still missing (due to deleted attrs for example)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1416
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_out', \"1\") WHERE JSON_VALUE(`attributes`, '$.tls_enforce_out') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_out', \"1\") WHERE JSON_VALUE(`attributes`, '$.tls_enforce_out') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1417
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_in', \"1\") WHERE JSON_VALUE(`attributes`, '$.tls_enforce_in') IS NULL;");
$pdo->query("UPDATE `mailbox` SET `attributes` = JSON_SET(`attributes`, '$.tls_enforce_in', \"1\") WHERE JSON_VALUE(`attributes`, '$.tls_enforce_in') IS NULL;");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1418
// Fix ACL
// Fix ACL
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1419
$pdo->query("INSERT INTO `user_acl` (`username`) SELECT `username` FROM `mailbox` WHERE `kind` = '' AND NOT EXISTS (SELECT `username` FROM `user_acl`);");
$pdo->query("INSERT INTO `user_acl` (`username`) SELECT `username` FROM `mailbox` WHERE `kind` = '' AND NOT EXISTS (SELECT `username` FROM `user_acl`);");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1420
$pdo->query("INSERT INTO `da_acl` (`username`) SELECT DISTINCT `username` FROM `domain_admins` WHERE `username` != 'admin' AND NOT EXISTS (SELECT `username` FROM `da_acl`);");
$pdo->query("INSERT INTO `da_acl` (`username`) SELECT DISTINCT `username` FROM `domain_admins` WHERE `username` != 'admin' AND NOT EXISTS (SELECT `username` FROM `da_acl`);");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1421
// Fix domain_admins
// Fix domain_admins
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1422
$pdo->query("DELETE FROM `domain_admins` WHERE `domain` = 'ALL';");
$pdo->query("DELETE FROM `domain_admins` WHERE `domain` = 'ALL';");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1423
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1424
// add default templates
// add default templates
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1425
$default_domain_template = array(
$default_domain_template = array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1426
"template" => "Default",
"template" => "Default",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1427
"type" => "domain",
"type" => "domain",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1428
"attributes" => array(
"attributes" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1429
"tags" => array(),
"tags" => array(),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1430
"max_num_aliases_for_domain" => 400,
"max_num_aliases_for_domain" => 400,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1431
"max_num_mboxes_for_domain" => 10,
"max_num_mboxes_for_domain" => 10,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1432
"def_quota_for_mbox" => 3072 * 1048576,
"def_quota_for_mbox" => 3072 * 1048576,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1433
"max_quota_for_mbox" => 10240 * 1048576,
"max_quota_for_mbox" => 10240 * 1048576,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1434
"max_quota_for_domain" => 10240 * 1048576,
"max_quota_for_domain" => 10240 * 1048576,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1435
"rl_frame" => "s",
"rl_frame" => "s",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1436
"rl_value" => "",
"rl_value" => "",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1437
"active" => 1,
"active" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1438
"gal" => 1,
"gal" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1439
"backupmx" => 0,
"backupmx" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1440
"relay_all_recipients" => 0,
"relay_all_recipients" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1441
"relay_unknown_only" => 0,
"relay_unknown_only" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1442
"dkim_selector" => "dkim",
"dkim_selector" => "dkim",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1443
"key_size" => 2048,
"key_size" => 2048,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1444
"max_quota_for_domain" => 10240 * 1048576,
"max_quota_for_domain" => 10240 * 1048576,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1445
)
)
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1446
);
);
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1447
$default_mailbox_template = array(
$default_mailbox_template = array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1448
"template" => "Default",
"template" => "Default",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1449
"type" => "mailbox",
"type" => "mailbox",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1450
"attributes" => array(
"attributes" => array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1451
"tags" => array(),
"tags" => array(),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1452
"quota" => 0,
"quota" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1453
"quarantine_notification" => strval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['quarantine_notification']),
"quarantine_notification" => strval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['quarantine_notification']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1454
"quarantine_category" => strval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['quarantine_category']),
"quarantine_category" => strval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['quarantine_category']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1455
"rl_frame" => "s",
"rl_frame" => "s",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1456
"rl_value" => "",
"rl_value" => "",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1457
"force_pw_update" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['force_pw_update']),
"force_pw_update" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['force_pw_update']),
FreddleSpl0it
5 months ago
ad5b94a
[Web] Add forced 2FA setup and password update enforcement
- Full commit hash
ad5b94af5e48297631629c2a118e7f163a044a07- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 1458
"force_tfa" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['force_tfa']),
"force_tfa" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['force_tfa']),
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1459
"sogo_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['sogo_access']),
"sogo_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['sogo_access']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1460
"active" => 1,
"active" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1461
"tls_enforce_in" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['tls_enforce_in']),
"tls_enforce_in" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['tls_enforce_in']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1462
"tls_enforce_out" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['tls_enforce_out']),
"tls_enforce_out" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['tls_enforce_out']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1463
"imap_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['imap_access']),
"imap_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['imap_access']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1464
"pop3_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['pop3_access']),
"pop3_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['pop3_access']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1465
"smtp_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['smtp_access']),
"smtp_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['smtp_access']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1466
"sieve_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['sieve_access']),
"sieve_access" => intval($GLOBALS['MAILBOX_DEFAULT_ATTRIBUTES']['sieve_access']),
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1467
"acl_spam_alias" => 1,
"acl_spam_alias" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1468
"acl_tls_policy" => 1,
"acl_tls_policy" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1469
"acl_spam_score" => 1,
"acl_spam_score" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1470
"acl_spam_policy" => 1,
"acl_spam_policy" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1471
"acl_delimiter_action" => 1,
"acl_delimiter_action" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1472
"acl_syncjobs" => 0,
"acl_syncjobs" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1473
"acl_eas_reset" => 1,
"acl_eas_reset" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1474
"acl_sogo_profile_reset" => 0,
"acl_sogo_profile_reset" => 0,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1475
"acl_pushover" => 1,
"acl_pushover" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1476
"acl_quarantine" => 1,
"acl_quarantine" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1477
"acl_quarantine_attachments" => 1,
"acl_quarantine_attachments" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1478
"acl_quarantine_notification" => 1,
"acl_quarantine_notification" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1479
"acl_quarantine_category" => 1,
"acl_quarantine_category" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1480
"acl_app_passwds" => 1,
"acl_app_passwds" => 1,
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1481
)
)
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1482
);
);
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1483
$stmt = $pdo->prepare("SELECT id FROM `templates` WHERE `type` = :type AND `template` = :template");
$stmt = $pdo->prepare("SELECT id FROM `templates` WHERE `type` = :type AND `template` = :template");
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1484
$stmt->execute(array(
$stmt->execute(array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1485
":type" => "domain",
":type" => "domain",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1486
":template" => $default_domain_template["template"]
":template" => $default_domain_template["template"]
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1487
));
));
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1488
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$row = $stmt->fetch(PDO::FETCH_ASSOC);
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1489
if (empty($row)) {
if (empty($row)) {
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1490
$stmt = $pdo->prepare("INSERT INTO `templates` (`type`, `template`, `attributes`)
$stmt = $pdo->prepare("INSERT INTO `templates` (`type`, `template`, `attributes`)
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1491
VALUES (:type, :template, :attributes)");
VALUES (:type, :template, :attributes)");
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1492
$stmt->execute(array(
$stmt->execute(array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1493
":type" => "domain",
":type" => "domain",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1494
":template" => $default_domain_template["template"],
":template" => $default_domain_template["template"],
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1495
":attributes" => json_encode($default_domain_template["attributes"])
":attributes" => json_encode($default_domain_template["attributes"])
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1496
));
));
same change
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1497
}
}
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1498
$stmt = $pdo->prepare("SELECT id FROM `templates` WHERE `type` = :type AND `template` = :template");
$stmt = $pdo->prepare("SELECT id FROM `templates` WHERE `type` = :type AND `template` = :template");
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1499
$stmt->execute(array(
$stmt->execute(array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1500
":type" => "mailbox",
":type" => "mailbox",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1501
":template" => $default_mailbox_template["template"]
":template" => $default_mailbox_template["template"]
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1502
));
));
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1503
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$row = $stmt->fetch(PDO::FETCH_ASSOC);
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1504
if (empty($row)) {
if (empty($row)) {
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1505
$stmt = $pdo->prepare("INSERT INTO `templates` (`type`, `template`, `attributes`)
$stmt = $pdo->prepare("INSERT INTO `templates` (`type`, `template`, `attributes`)
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1506
VALUES (:type, :template, :attributes)");
VALUES (:type, :template, :attributes)");
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1507
$stmt->execute(array(
$stmt->execute(array(
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1508
":type" => "mailbox",
":type" => "mailbox",
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1509
":template" => $default_mailbox_template["template"],
":template" => $default_mailbox_template["template"],
same change
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1510
":attributes" => json_encode($default_mailbox_template["attributes"])
":attributes" => json_encode($default_mailbox_template["attributes"])
FreddleSpl0it
over 1 year ago
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1511
));
));
same change
d08b9ae
[Web] Add additional columns to _sogo_static_view
- Full commit hash
d08b9aec32ca0d901e5ded54954ed20655aec4c9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1512
}
}
Niklas Meyer
over 3 years ago
38291d1
[DB] Fix espacing of special db names during upgrade
- Full commit hash
38291d123fe3af0769fbb5a48b7d9011da8b0aa5- Author
- Niklas Meyer <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1513
FreddleSpl0it
almost 3 years ago
a53ef2e
[SOGo] remove sogo_view and triggers
- Full commit hash
a53ef2ed7a536fbfe3e910912e496f793c37749e- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1514
// remove old sogo views and triggers
// remove old sogo views and triggers
same change
a53ef2e
[SOGo] remove sogo_view and triggers
- Full commit hash
a53ef2ed7a536fbfe3e910912e496f793c37749e- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1515
$pdo->query("DROP TRIGGER IF EXISTS sogo_update_password");
$pdo->query("DROP TRIGGER IF EXISTS sogo_update_password");
same change
a53ef2e
[SOGo] remove sogo_view and triggers
- Full commit hash
a53ef2ed7a536fbfe3e910912e496f793c37749e- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1516
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1517
if (php_sapi_name() == "cli") {
if (php_sapi_name() == "cli") {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1518
echo "DB initialization completed" . PHP_EOL;
echo "DB initialization completed" . PHP_EOL;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1519
} else {
} else {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1520
$_SESSION['return'][] = array(
$_SESSION['return'][] = array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1521
'type' => 'success',
'type' => 'success',
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1522
'log' => array(__FUNCTION__),
'log' => array(__FUNCTION__),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1523
'msg' => 'db_init_complete'
'msg' => 'db_init_complete'
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1524
);
);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1525
}
}
Christoph Lechleitner
12 months ago
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 1526
same change
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 1527
// fill quarantine.qhash
// fill quarantine.qhash
same change
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 1528
$pdo->query("UPDATE `quarantine` SET `qhash` = SHA2(CONCAT(`id`, `qid`), 256) WHERE ISNULL(`qhash`)");
$pdo->query("UPDATE `quarantine` SET `qhash` = SHA2(CONCAT(`id`, `qid`), 256) WHERE ISNULL(`qhash`)");
same change
2b2da16
[DB][Web] optimize qhandler by keeping SHA2 in new column qhash (#6556)
- Full commit hash
2b2da1679e7f05a61c268db208c5e1fbacb70a78- Author
- Christoph Lechleitner <[email protected]>
- Date
- 12 months ago
- Selected line
- 1529
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1530
} catch (PDOException $e) {
} catch (PDOException $e) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1531
if (php_sapi_name() == "cli") {
if (php_sapi_name() == "cli") {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1532
echo "DB initialization failed: " . print_r($e, true) . PHP_EOL;
echo "DB initialization failed: " . print_r($e, true) . PHP_EOL;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1533
} else {
} else {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1534
$_SESSION['return'][] = array(
$_SESSION['return'][] = array(
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1535
'type' => 'danger',
'type' => 'danger',
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1536
'log' => array(__FUNCTION__),
'log' => array(__FUNCTION__),
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1537
'msg' => array('mysql_error', $e)
'msg' => array('mysql_error', $e)
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1538
);
);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1539
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1540
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1541
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1542
if (php_sapi_name() == "cli") {
if (php_sapi_name() == "cli") {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1543
include '/web/inc/vars.inc.php';
include '/web/inc/vars.inc.php';
FreddleSpl0it
almost 3 years ago
a53ef2e
[SOGo] remove sogo_view and triggers
- Full commit hash
a53ef2ed7a536fbfe3e910912e496f793c37749e- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1544
include '/web/inc/functions.inc.php';
include '/web/inc/functions.inc.php';
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1545
include '/web/inc/functions.docker.inc.php';
include '/web/inc/functions.docker.inc.php';
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1546
// $now = new DateTime();
// $now = new DateTime();
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1547
// $mins = $now->getOffset() / 60;
// $mins = $now->getOffset() / 60;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1548
// $sgn = ($mins < 0 ? -1 : 1);
// $sgn = ($mins < 0 ? -1 : 1);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1549
// $mins = abs($mins);
// $mins = abs($mins);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1550
// $hrs = floor($mins / 60);
// $hrs = floor($mins / 60);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1551
// $mins -= $hrs * 60;
// $mins -= $hrs * 60;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1552
// $offset = sprintf('%+d:%02d', $hrs*$sgn, $mins);
// $offset = sprintf('%+d:%02d', $hrs*$sgn, $mins);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1553
$dsn = $database_type . ":unix_socket=" . $database_sock . ";dbname=" . $database_name;
$dsn = $database_type . ":unix_socket=" . $database_sock . ";dbname=" . $database_name;
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1554
$opt = [
$opt = [
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1555
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1556
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1557
PDO::ATTR_EMULATE_PREPARES => false,
PDO::ATTR_EMULATE_PREPARES => false,
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1558
//PDO::MYSQL_ATTR_INIT_COMMAND => "SET time_zone = '" . $offset . "', group_concat_max_len = 3423543543;",
//PDO::MYSQL_ATTR_INIT_COMMAND => "SET time_zone = '" . $offset . "', group_concat_max_len = 3423543543;",
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1559
];
];
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1560
$pdo = new PDO($dsn, $database_user, $database_pass, $opt);
$pdo = new PDO($dsn, $database_user, $database_pass, $opt);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1561
$stmt = $pdo->query("SELECT COUNT('OK') AS OK_C FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'sogo_view' OR TABLE_NAME = '_sogo_static_view';");
$stmt = $pdo->query("SELECT COUNT('OK') AS OK_C FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'sogo_view' OR TABLE_NAME = '_sogo_static_view';");
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1562
$res = $stmt->fetch(PDO::FETCH_ASSOC);
$res = $stmt->fetch(PDO::FETCH_ASSOC);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1563
if (intval($res['OK_C']) === 2) {
if (intval($res['OK_C']) === 2) {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1564
// Be more precise when replacing into _sogo_static_view, col orders may change
// Be more precise when replacing into _sogo_static_view, col orders may change
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1565
try {
try {
FreddleSpl0it
almost 3 years ago
a53ef2e
[SOGo] remove sogo_view and triggers
- Full commit hash
a53ef2ed7a536fbfe3e910912e496f793c37749e- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1566
update_sogo_static_view();
update_sogo_static_view();
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1567
echo "Fixed _sogo_static_view" . PHP_EOL;
echo "Fixed _sogo_static_view" . PHP_EOL;
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1568
} catch (Exception $e) {
} catch (Exception $e) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1569
// Dunno
// Dunno
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1570
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1571
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1572
try {
try {
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1573
$m = new Memcached();
$m = new Memcached();
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1574
$m->addServer('memcached', 11211);
$m->addServer('memcached', 11211);
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1575
$m->flush();
$m->flush();
Filip Marek
almost 2 years ago
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1576
echo "Cleaned up memcached" . PHP_EOL;
echo "Cleaned up memcached" . PHP_EOL;
same change
0d635e2
increase migrations verion
- Full commit hash
0d635e26587a07556e82453720e5199df77f0161- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1577
} catch (Exception $e) {
} catch (Exception $e) {
Kristian Feldsam
over 3 years ago
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1578
// Dunno
// Dunno
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1579
}
}
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1580
init_db_schema();
init_db_schema();
same change
5bf6248
[Web] Implemented SSO for domain admins
- Full commit hash
5bf62481d51d0dcd7b8202f65fc73d2e6d349f93- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1581
}
}