NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
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
Open commit View diff
1 <?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()
Open commit View diff
2 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
{
Open commit View diff
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 {
Open commit View diff
4 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;
Open commit View diff
5 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
Open commit View diff
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";
Open commit View diff
7 $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
Open commit View diff
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'");
Open commit View diff
9 $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));
Open commit View diff
10 $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) {
Open commit View diff
11 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'");
Open commit View diff
12 $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) {
Open commit View diff
13 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;
Open commit View diff
14 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
      }
Open commit View diff
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'))) {
Open commit View diff
16 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(
Open commit View diff
17 $_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',
Open commit View diff
18 '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__),
Open commit View diff
19 '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.'
Open commit View diff
20 '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
        );
Open commit View diff
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;
Open commit View diff
22 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
      }
Open commit View diff
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
    }
Open commit View diff
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
Open commit View diff
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(
Open commit View diff
26 $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
Open commit View diff
27 "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
Open commit View diff
28 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
Open commit View diff
29 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'
Open commit View diff
30 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'
Open commit View diff
31 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 '@%'
Open commit View diff
32 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;",
Open commit View diff
33 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
Open commit View diff
34 // 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
Open commit View diff
35 // 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
Open commit View diff
36 // 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
Open commit View diff
37 "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
Open commit View diff
38 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 '@%'
Open commit View diff
39 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;",
Open commit View diff
40 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
Open commit View diff
41 // 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
Open commit View diff
42 "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
Open commit View diff
43 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'
Open commit View diff
44 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;",
Open commit View diff
45 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
Open commit View diff
46 "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
Open commit View diff
47 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
Open commit View diff
48 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;",
Open commit View diff
49 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
Open commit View diff
50 "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
Open commit View diff
51 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';",
Open commit View diff
52 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
Open commit View diff
53 "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
Open commit View diff
54 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';"
Open commit View diff
55 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
    );
Open commit View diff
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
Open commit View diff
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(
Open commit View diff
58 $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(
Open commit View diff
59 "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(
Open commit View diff
60 "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",
Open commit View diff
61 "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",
Open commit View diff
62 "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)",
Open commit View diff
63 "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
        ),
Open commit View diff
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(
Open commit View diff
65 "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(
Open commit View diff
66 "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")
Open commit View diff
67 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
70 "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
      ),
Open commit View diff
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(
Open commit View diff
72 "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(
Open commit View diff
73 "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",
Open commit View diff
74 "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",
Open commit View diff
75 "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'",
Open commit View diff
76 "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)",
Open commit View diff
77 "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)",
Open commit View diff
78 "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'",
Open commit View diff
79 "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"
Open commit View diff
80 "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
        ),
Open commit View diff
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(
Open commit View diff
82 "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(
Open commit View diff
83 "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")
Open commit View diff
84 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
87 "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
      ),
Open commit View diff
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(
Open commit View diff
89 "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(
Open commit View diff
90 "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",
Open commit View diff
91 "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)",
Open commit View diff
92 "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",
Open commit View diff
93 "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",
Open commit View diff
94 "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",
Open commit View diff
95 "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"
Open commit View diff
96 // 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",
Open commit View diff
97 "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)",
Open commit View diff
98 "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)",
Open commit View diff
99 "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",
Open commit View diff
100 "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",
Open commit View diff
101 "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",
Open commit View diff
102 "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)",
Open commit View diff
103 "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)",
Open commit View diff
104 "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'"
Open commit View diff
105 "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
        ),
Open commit View diff
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"
Open commit View diff
107 "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
      ),
Open commit View diff
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(
Open commit View diff
109 "_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(
Open commit View diff
110 "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",
Open commit View diff
111 "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",
Open commit View diff
112 "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",
Open commit View diff
113 "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 ''",
Open commit View diff
114 "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)",
Open commit View diff
115 "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)",
Open commit View diff
116 "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)",
Open commit View diff
117 "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)",
Open commit View diff
118 "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)",
Open commit View diff
119 "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",
Open commit View diff
120 "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
Open commit View diff
121 // 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",
Open commit View diff
122 "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 ''",
Open commit View diff
123 "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 ''",
Open commit View diff
124 "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 ''",
Open commit View diff
125 "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"
Open commit View diff
126 "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
        ),
Open commit View diff
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(
Open commit View diff
128 "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(
Open commit View diff
129 "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")
Open commit View diff
130 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
132 "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")
Open commit View diff
133 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
136 "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
      ),
Open commit View diff
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(
Open commit View diff
138 "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(
Open commit View diff
139 "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",
Open commit View diff
140 "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",
Open commit View diff
141 "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",
Open commit View diff
142 "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",
Open commit View diff
143 "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'"
Open commit View diff
144 "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
        ),
Open commit View diff
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(
Open commit View diff
146 "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(
Open commit View diff
147 "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")
Open commit View diff
148 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
150 "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")
Open commit View diff
151 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
154 "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
      ),
Open commit View diff
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(
Open commit View diff
156 "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(
Open commit View diff
157 "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",
Open commit View diff
158 "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",
Open commit View diff
159 "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",
Open commit View diff
160 "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 ''",
Open commit View diff
161 "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 ''",
Open commit View diff
162 "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'",
Open commit View diff
163 "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'"
Open commit View diff
164 "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
        ),
Open commit View diff
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(
Open commit View diff
166 "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(
Open commit View diff
167 "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")
Open commit View diff
168 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
170 "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"),
Open commit View diff
171 "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"),
Open commit View diff
172 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
175 "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
      ),
Open commit View diff
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(
Open commit View diff
177 "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(
Open commit View diff
178 "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",
Open commit View diff
179 "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",
Open commit View diff
180 "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",
Open commit View diff
181 "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",
Open commit View diff
182 "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)",
Open commit View diff
183 "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",
Open commit View diff
184 "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",
Open commit View diff
185 "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",
Open commit View diff
186 "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'",
Open commit View diff
187 "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'",
Open commit View diff
188 "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'",
Open commit View diff
189 "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'"
Open commit View diff
190 "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
        ),
Open commit View diff
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(
Open commit View diff
192 "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(
Open commit View diff
193 "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")
Open commit View diff
194 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
196 "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")
Open commit View diff
197 "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
          ),
Open commit View diff
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(
Open commit View diff
199 "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")
Open commit View diff
200 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
203 "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
      ),
Open commit View diff
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(
Open commit View diff
205 "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(
Open commit View diff
206 "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",
Open commit View diff
207 "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",
Open commit View diff
208 "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'",
Open commit View diff
209 "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)",
Open commit View diff
210 "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)",
Open commit View diff
211 "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'",
Open commit View diff
212 "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'"
Open commit View diff
213 "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
        ),
Open commit View diff
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(
Open commit View diff
215 "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(
Open commit View diff
216 "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")
Open commit View diff
217 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
220 "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
      ),
Open commit View diff
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(
Open commit View diff
222 "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(
Open commit View diff
223 "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",
Open commit View diff
224 "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",
Open commit View diff
225 "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",
Open commit View diff
226 "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'"
Open commit View diff
227 "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
        ),
Open commit View diff
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(
Open commit View diff
229 "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(
Open commit View diff
230 "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")
Open commit View diff
231 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
234 "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
      ),
Open commit View diff
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(
Open commit View diff
236 "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(
Open commit View diff
237 "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",
Open commit View diff
238 "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",
Open commit View diff
239 "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",
Open commit View diff
240 "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",
Open commit View diff
241 "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)",
Open commit View diff
242 "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"
Open commit View diff
243 "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
        ),
Open commit View diff
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(
Open commit View diff
245 "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(
Open commit View diff
246 "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")
Open commit View diff
247 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
250 "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
      ),
Open commit View diff
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(
Open commit View diff
252 "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
Open commit View diff
253 // 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(
Open commit View diff
254 "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",
Open commit View diff
255 "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)",
Open commit View diff
256 "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'",
Open commit View diff
257 "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'",
Open commit View diff
258 "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'",
Open commit View diff
259 "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'",
Open commit View diff
260 "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'",
Open commit View diff
261 "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'",
Open commit View diff
262 "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'",
Open commit View diff
263 "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'",
Open commit View diff
264 "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'",
Open commit View diff
265 "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'",
Open commit View diff
266 "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)",
Open commit View diff
267 "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",
Open commit View diff
268 "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'"
Open commit View diff
269 "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
        ),
Open commit View diff
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(
Open commit View diff
271 "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(
Open commit View diff
272 "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")
Open commit View diff
273 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
276 "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
      ),
Open commit View diff
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(
Open commit View diff
278 "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(
Open commit View diff
279 "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",
Open commit View diff
280 "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",
Open commit View diff
281 "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",
Open commit View diff
282 "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 ('[]')",
Open commit View diff
283 "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 ('[]')",
Open commit View diff
284 "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'"
Open commit View diff
285 "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
        ),
Open commit View diff
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(
Open commit View diff
287 "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(
Open commit View diff
288 "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")
Open commit View diff
289 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
292 "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
      ),
Open commit View diff
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(
Open commit View diff
294 "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(
Open commit View diff
295 "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",
Open commit View diff
296 "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"
Open commit View diff
297 "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
        ),
Open commit View diff
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(
Open commit View diff
299 "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(
Open commit View diff
300 "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(
Open commit View diff
301 "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",
Open commit View diff
302 "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",
Open commit View diff
303 "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",
Open commit View diff
304 "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"
Open commit View diff
305 "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
            )
Open commit View diff
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
          ),
Open commit View diff
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(
Open commit View diff
308 "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")
Open commit View diff
309 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
312 "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
      ),
Open commit View diff
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(
Open commit View diff
314 "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(
Open commit View diff
315 "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",
Open commit View diff
316 "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",
Open commit View diff
317 "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",
Open commit View diff
318 "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 ''",
Open commit View diff
319 "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)",
Open commit View diff
320 "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",
Open commit View diff
321 "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'"
Open commit View diff
322 "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
        ),
Open commit View diff
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(
Open commit View diff
324 "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(
Open commit View diff
325 "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")
Open commit View diff
326 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
328 "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")
Open commit View diff
329 "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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
332 "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
      ),
Open commit View diff
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(
Open commit View diff
334 "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(
Open commit View diff
335 "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",
Open commit View diff
336 "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",
Open commit View diff
337 "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)",
Open commit View diff
338 "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)",
Open commit View diff
339 "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)",
Open commit View diff
340 "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'",
Open commit View diff
341 "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",
Open commit View diff
342 "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",
Open commit View diff
343 "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'",
Open commit View diff
344 "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)",
Open commit View diff
345 "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",
Open commit View diff
346 "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)",
Open commit View diff
347 "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'",
Open commit View diff
348 "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)",
Open commit View diff
349 "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'",
Open commit View diff
350 "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)",
Open commit View diff
351 "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
        ),
Open commit View diff
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(
Open commit View diff
353 "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(
Open commit View diff
354 "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")
Open commit View diff
355 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
357 "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")
Open commit View diff
358 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
361 "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
      ),
Open commit View diff
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(
Open commit View diff
363 "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(
Open commit View diff
364 "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",
Open commit View diff
365 "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",
Open commit View diff
366 "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)",
Open commit View diff
367 "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)",
Open commit View diff
368 "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/
Open commit View diff
369 // 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/'",
Open commit View diff
370 "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'",
Open commit View diff
371 "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",
Open commit View diff
372 "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",
Open commit View diff
373 "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",
Open commit View diff
374 "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 ('{}')",
Open commit View diff
375 "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 ''",
Open commit View diff
376 "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",
Open commit View diff
377 "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'",
Open commit View diff
378 "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)",
Open commit View diff
379 "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",
Open commit View diff
380 "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'"
Open commit View diff
381 "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
        ),
Open commit View diff
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(
Open commit View diff
383 "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(
Open commit View diff
384 "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")
Open commit View diff
385 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
387 "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"),
Open commit View diff
388 "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")
Open commit View diff
389 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
392 "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
      ),
Open commit View diff
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(
Open commit View diff
394 "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(
Open commit View diff
395 "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",
Open commit View diff
396 "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"
Open commit View diff
397 "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
        ),
Open commit View diff
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(
Open commit View diff
399 "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(
Open commit View diff
400 "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(
Open commit View diff
401 "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",
Open commit View diff
402 "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",
Open commit View diff
403 "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",
Open commit View diff
404 "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"
Open commit View diff
405 "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
            )
Open commit View diff
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
          ),
Open commit View diff
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(
Open commit View diff
408 "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")
Open commit View diff
409 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
412 "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
      ),
Open commit View diff
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(
Open commit View diff
414 "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(
Open commit View diff
415 "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",
Open commit View diff
416 "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",
Open commit View diff
417 "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",
Open commit View diff
418 "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')",
Open commit View diff
419 "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",
Open commit View diff
420 "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')",
Open commit View diff
421 "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)",
Open commit View diff
422 "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"
Open commit View diff
423 "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
        ),
Open commit View diff
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(
Open commit View diff
425 "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(
Open commit View diff
426 "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")
Open commit View diff
427 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
429 "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"),
Open commit View diff
430 "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")
Open commit View diff
431 "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
          ),
Open commit View diff
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(
Open commit View diff
433 "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(
Open commit View diff
434 "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",
Open commit View diff
435 "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",
Open commit View diff
436 "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",
Open commit View diff
437 "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"
Open commit View diff
438 "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
            )
Open commit View diff
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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
442 "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
      ),
Open commit View diff
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(
Open commit View diff
444 "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(
Open commit View diff
445 "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",
Open commit View diff
446 "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",
Open commit View diff
447 "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",
Open commit View diff
448 "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",
Open commit View diff
449 "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",
Open commit View diff
450 "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)",
Open commit View diff
451 "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",
Open commit View diff
452 "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'",
Open commit View diff
453 "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'",
Open commit View diff
454 "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'",
Open commit View diff
455 "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'",
Open commit View diff
456 "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'",
Open commit View diff
457 "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'",
Open commit View diff
458 "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'"
Open commit View diff
459 "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
        ),
Open commit View diff
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(
Open commit View diff
461 "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(
Open commit View diff
462 "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")
Open commit View diff
463 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
465 "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"),
Open commit View diff
466 "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"),
Open commit View diff
467 "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"),
Open commit View diff
468 "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
          ),
Open commit View diff
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(
Open commit View diff
470 "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(
Open commit View diff
471 "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",
Open commit View diff
472 "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",
Open commit View diff
473 "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",
Open commit View diff
474 "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"
Open commit View diff
475 "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
            )
Open commit View diff
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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
479 "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
      ),
Open commit View diff
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(
Open commit View diff
481 "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(
Open commit View diff
482 "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",
Open commit View diff
483 "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",
Open commit View diff
484 "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",
Open commit View diff
485 "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",
Open commit View diff
486 "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",
Open commit View diff
487 "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",
Open commit View diff
488 "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'"
Open commit View diff
489 "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
        ),
Open commit View diff
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(
Open commit View diff
491 "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(
Open commit View diff
492 "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")
Open commit View diff
493 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
496 "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
      ),
Open commit View diff
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(
Open commit View diff
498 "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(
Open commit View diff
499 "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",
Open commit View diff
500 "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'",
Open commit View diff
501 "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'",
Open commit View diff
502 "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'",
Open commit View diff
503 "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'",
Open commit View diff
504 "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'",
Open commit View diff
505 "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'",
Open commit View diff
506 "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'",
Open commit View diff
507 "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'",
Open commit View diff
508 "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'",
Open commit View diff
509 "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
Open commit View diff
510 // 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'",
Open commit View diff
511 "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'",
Open commit View diff
512 "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'",
Open commit View diff
513 "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'",
Open commit View diff
514 "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'",
Open commit View diff
515 "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'",
Open commit View diff
516 "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
        ),
Open commit View diff
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(
Open commit View diff
518 "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(
Open commit View diff
519 "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")
Open commit View diff
520 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
522 "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(
Open commit View diff
523 "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",
Open commit View diff
524 "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",
Open commit View diff
525 "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",
Open commit View diff
526 "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"
Open commit View diff
527 "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
            )
Open commit View diff
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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
531 "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
      ),
Open commit View diff
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(
Open commit View diff
533 "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(
Open commit View diff
534 "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",
Open commit View diff
535 "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",
Open commit View diff
536 "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)",
Open commit View diff
537 "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",
Open commit View diff
538 "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'"
Open commit View diff
539 "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
        ),
Open commit View diff
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(
Open commit View diff
541 "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(
Open commit View diff
542 "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")
Open commit View diff
543 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
545 "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"),
Open commit View diff
546 "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")
Open commit View diff
547 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
550 "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
      ),
Open commit View diff
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(
Open commit View diff
552 "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(
Open commit View diff
553 "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",
Open commit View diff
554 "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",
Open commit View diff
555 "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",
Open commit View diff
556 "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)",
Open commit View diff
557 "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",
Open commit View diff
558 "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)",
Open commit View diff
559 "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'"
Open commit View diff
560 "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
        ),
Open commit View diff
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(
Open commit View diff
562 "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(
Open commit View diff
563 "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")
Open commit View diff
564 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
567 "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
      ),
Open commit View diff
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(
Open commit View diff
569 "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(
Open commit View diff
570 "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 ''",
Open commit View diff
571 "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 ''",
Open commit View diff
572 "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 ''",
Open commit View diff
573 "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)",
Open commit View diff
574 "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",
Open commit View diff
575 "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"
Open commit View diff
576 "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
        ),
Open commit View diff
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(
Open commit View diff
578 "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(
Open commit View diff
579 "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")
Open commit View diff
580 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
582 "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")
Open commit View diff
583 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
586 "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
      ),
Open commit View diff
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(
Open commit View diff
588 "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(
Open commit View diff
589 "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",
Open commit View diff
590 "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",
Open commit View diff
591 "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",
Open commit View diff
592 "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)",
Open commit View diff
593 "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",
Open commit View diff
594 "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'"
Open commit View diff
595 "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
        ),
Open commit View diff
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(
Open commit View diff
597 "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(
Open commit View diff
598 "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")
Open commit View diff
599 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
602 "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
      ),
Open commit View diff
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(
Open commit View diff
604 "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(
Open commit View diff
605 "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",
Open commit View diff
606 "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",
Open commit View diff
607 "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)",
Open commit View diff
608 "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"
Open commit View diff
609 "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
        ),
Open commit View diff
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(
Open commit View diff
611 "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(
Open commit View diff
612 "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")
Open commit View diff
613 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
616 "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
      ),
Open commit View diff
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(
Open commit View diff
618 "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(
Open commit View diff
619 "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",
Open commit View diff
620 "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'",
Open commit View diff
621 "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 ''",
Open commit View diff
622 "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",
Open commit View diff
623 "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",
Open commit View diff
624 "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",
Open commit View diff
625 "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",
Open commit View diff
626 "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",
Open commit View diff
627 "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"
Open commit View diff
628 "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
        ),
Open commit View diff
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(
Open commit View diff
630 "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(
Open commit View diff
631 "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")
Open commit View diff
632 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
635 "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
      ),
Open commit View diff
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(
Open commit View diff
637 "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(
Open commit View diff
638 "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 ''",
Open commit View diff
639 "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",
Open commit View diff
640 "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",
Open commit View diff
641 "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",
Open commit View diff
642 "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)"
Open commit View diff
643 "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
        ),
Open commit View diff
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(
Open commit View diff
645 "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(
Open commit View diff
646 "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")
Open commit View diff
647 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
649 "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"),
Open commit View diff
650 "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"),
Open commit View diff
651 "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"),
Open commit View diff
652 "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")
Open commit View diff
653 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
656 "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
      ),
Open commit View diff
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(
Open commit View diff
658 "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(
Open commit View diff
659 "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",
Open commit View diff
660 "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'",
Open commit View diff
661 "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'"
Open commit View diff
662 "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
        ),
Open commit View diff
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(
Open commit View diff
664 "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(
Open commit View diff
665 "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")
Open commit View diff
666 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
669 "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
      ),
Open commit View diff
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(
Open commit View diff
671 "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(
Open commit View diff
672 "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",
Open commit View diff
673 "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'",
Open commit View diff
674 "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'"
Open commit View diff
675 "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
        ),
Open commit View diff
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(
Open commit View diff
677 "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(
Open commit View diff
678 "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")
Open commit View diff
679 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
682 "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
      ),
Open commit View diff
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(
Open commit View diff
684 "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(
Open commit View diff
685 "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",
Open commit View diff
686 "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",
Open commit View diff
687 "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",
Open commit View diff
688 "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)",
Open commit View diff
689 "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'"
Open commit View diff
690 "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
        ),
Open commit View diff
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(
Open commit View diff
692 "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(
Open commit View diff
693 "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")
Open commit View diff
694 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
696 "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")
Open commit View diff
697 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
700 "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
      ),
Open commit View diff
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(
Open commit View diff
702 "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(
Open commit View diff
703 "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",
Open commit View diff
704 "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'",
Open commit View diff
705 "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'",
Open commit View diff
706 "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'",
Open commit View diff
707 "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'",
Open commit View diff
708 "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'",
Open commit View diff
709 "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'",
Open commit View diff
710 "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'",
Open commit View diff
711 "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'",
Open commit View diff
712 "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'",
Open commit View diff
713 "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'",
Open commit View diff
714 "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'",
Open commit View diff
715 "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'",
Open commit View diff
716 "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'",
Open commit View diff
717 "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'",
Open commit View diff
718 "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'",
Open commit View diff
719 "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'",
Open commit View diff
720 "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'",
Open commit View diff
721 "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'"
Open commit View diff
722 "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
        ),
Open commit View diff
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(
Open commit View diff
724 "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(
Open commit View diff
725 "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")
Open commit View diff
726 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
729 "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
      ),
Open commit View diff
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(
Open commit View diff
731 "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(
Open commit View diff
732 "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",
Open commit View diff
733 "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",
Open commit View diff
734 "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)",
Open commit View diff
735 "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
        ),
Open commit View diff
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(
Open commit View diff
737 "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(
Open commit View diff
738 "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")
Open commit View diff
739 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
742 "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
      ),
Open commit View diff
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(
Open commit View diff
744 "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(
Open commit View diff
745 "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",
Open commit View diff
746 "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",
Open commit View diff
747 "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)",
Open commit View diff
748 "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
        ),
Open commit View diff
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(
Open commit View diff
750 "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(
Open commit View diff
751 "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")
Open commit View diff
752 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
755 "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
      ),
Open commit View diff
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(
Open commit View diff
757 "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(
Open commit View diff
758 "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",
Open commit View diff
759 "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",
Open commit View diff
760 "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",
Open commit View diff
761 "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'",
Open commit View diff
762 "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 ''",
Open commit View diff
763 "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",
Open commit View diff
764 "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 ''",
Open commit View diff
765 "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 ''",
Open commit View diff
766 "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",
Open commit View diff
767 "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",
Open commit View diff
768 "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 ''",
Open commit View diff
769 "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'",
Open commit View diff
770 "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'",
Open commit View diff
771 "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'",
Open commit View diff
772 "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",
Open commit View diff
773 "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'",
Open commit View diff
774 "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'",
Open commit View diff
775 "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'",
Open commit View diff
776 "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'",
Open commit View diff
777 "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'",
Open commit View diff
778 "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'",
Open commit View diff
779 "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 ''",
Open commit View diff
780 "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'",
Open commit View diff
781 "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'",
Open commit View diff
782 "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'",
Open commit View diff
783 "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'",
Open commit View diff
784 "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'",
Open commit View diff
785 "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",
Open commit View diff
786 "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",
Open commit View diff
787 "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",
Open commit View diff
788 "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",
Open commit View diff
789 "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)",
Open commit View diff
790 "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",
Open commit View diff
791 "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'"
Open commit View diff
792 "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
        ),
Open commit View diff
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(
Open commit View diff
794 "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(
Open commit View diff
795 "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")
Open commit View diff
796 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
799 "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
      ),
Open commit View diff
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(
Open commit View diff
801 "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(
Open commit View diff
802 "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",
Open commit View diff
803 "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",
Open commit View diff
804 "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",
Open commit View diff
805 "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",
Open commit View diff
806 "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')",
Open commit View diff
807 "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)",
Open commit View diff
808 "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",
Open commit View diff
809 "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'"
Open commit View diff
810 "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
        ),
Open commit View diff
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(
Open commit View diff
812 "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(
Open commit View diff
813 "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")
Open commit View diff
814 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
816 "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"),
Open commit View diff
817 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
820 "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
      ),
Open commit View diff
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(
Open commit View diff
822 "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(
Open commit View diff
823 "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",
Open commit View diff
824 "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",
Open commit View diff
825 "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",
Open commit View diff
826 "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)",
Open commit View diff
827 "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",
Open commit View diff
828 "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'"
Open commit View diff
829 "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
        ),
Open commit View diff
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(
Open commit View diff
831 "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(
Open commit View diff
832 "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")
Open commit View diff
833 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
835 "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"),
Open commit View diff
836 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
839 "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
      ),
Open commit View diff
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(
Open commit View diff
841 "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(
Open commit View diff
842 "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",
Open commit View diff
843 "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",
Open commit View diff
844 "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",
Open commit View diff
845 "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')",
Open commit View diff
846 "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",
Open commit View diff
847 "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",
Open commit View diff
848 "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",
Open commit View diff
849 "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'",
Open commit View diff
850 "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",
Open commit View diff
851 "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'"
Open commit View diff
852 "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
        ),
Open commit View diff
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(
Open commit View diff
854 "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(
Open commit View diff
855 "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")
Open commit View diff
856 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
859 "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
      ),
Open commit View diff
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(
Open commit View diff
861 "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(
Open commit View diff
862 "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",
Open commit View diff
863 "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",
Open commit View diff
864 "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'"
Open commit View diff
865 "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
        ),
Open commit View diff
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(
Open commit View diff
867 "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(
Open commit View diff
868 "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")
Open commit View diff
869 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
872 "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
      ),
Open commit View diff
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(
Open commit View diff
874 "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(
Open commit View diff
875 "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",
Open commit View diff
876 "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",
Open commit View diff
877 "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",
Open commit View diff
878 "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",
Open commit View diff
879 "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"
Open commit View diff
880 "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
        ),
Open commit View diff
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(
Open commit View diff
882 "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(
Open commit View diff
883 "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")
Open commit View diff
884 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
886 "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"),
Open commit View diff
887 "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")
Open commit View diff
888 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
891 "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
      ),
Open commit View diff
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(
Open commit View diff
893 "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(
Open commit View diff
894 "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",
Open commit View diff
895 "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",
Open commit View diff
896 "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",
Open commit View diff
897 "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",
Open commit View diff
898 "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",
Open commit View diff
899 "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",
Open commit View diff
900 "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"
Open commit View diff
901 "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
        ),
Open commit View diff
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(
Open commit View diff
903 "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(
Open commit View diff
904 "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")
Open commit View diff
905 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
908 "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
      ),
Open commit View diff
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(
Open commit View diff
910 "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(
Open commit View diff
911 "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",
Open commit View diff
912 "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",
Open commit View diff
913 "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",
Open commit View diff
914 "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",
Open commit View diff
915 "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",
Open commit View diff
916 "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",
Open commit View diff
917 "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'",
Open commit View diff
918 "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'",
Open commit View diff
919 "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"
Open commit View diff
920 "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
        ),
Open commit View diff
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(
Open commit View diff
922 "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(
Open commit View diff
923 "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")
Open commit View diff
924 "" => 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
          ),
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
927 "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
      ),
Open commit View diff
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(
Open commit View diff
929 "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(
Open commit View diff
930 "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",
Open commit View diff
931 "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",
Open commit View diff
932 "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",
Open commit View diff
933 "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",
Open commit View diff
934 "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",
Open commit View diff
935 "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",
Open commit View diff
936 "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",
Open commit View diff
937 "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",
Open commit View diff
938 "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",
Open commit View diff
939 "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",
Open commit View diff
940 "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"
Open commit View diff
941 "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
        ),
Open commit View diff
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(
Open commit View diff
943 "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(
Open commit View diff
944 "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")
Open commit View diff
945 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
947 "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")
Open commit View diff
948 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
951 "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
      ),
Open commit View diff
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(
Open commit View diff
953 "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(
Open commit View diff
954 "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",
Open commit View diff
955 "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",
Open commit View diff
956 "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",
Open commit View diff
957 "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",
Open commit View diff
958 "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",
Open commit View diff
959 "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",
Open commit View diff
960 "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",
Open commit View diff
961 "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",
Open commit View diff
962 "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",
Open commit View diff
963 "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",
Open commit View diff
964 "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",
Open commit View diff
965 "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",
Open commit View diff
966 "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",
Open commit View diff
967 "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",
Open commit View diff
968 "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",
Open commit View diff
969 "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)",
Open commit View diff
970 "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)",
Open commit View diff
971 "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",
Open commit View diff
972 "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",
Open commit View diff
973 "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)",
Open commit View diff
974 "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",
Open commit View diff
975 "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",
Open commit View diff
976 "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",
Open commit View diff
977 "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"
Open commit View diff
978 "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
        ),
Open commit View diff
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(
Open commit View diff
980 "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(
Open commit View diff
981 "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")
Open commit View diff
982 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
985 "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
      ),
Open commit View diff
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(
Open commit View diff
987 "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(
Open commit View diff
988 "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",
Open commit View diff
989 "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",
Open commit View diff
990 "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)",
Open commit View diff
991 "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)",
Open commit View diff
992 "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)",
Open commit View diff
993 "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)",
Open commit View diff
994 "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)",
Open commit View diff
995 "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",
Open commit View diff
996 "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)",
Open commit View diff
997 "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)",
Open commit View diff
998 "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)",
Open commit View diff
999 "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)",
Open commit View diff
1000 "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",
Open commit View diff
1001 "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"
Open commit View diff
1002 "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
        ),
Open commit View diff
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(
Open commit View diff
1004 "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(
Open commit View diff
1005 "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")
Open commit View diff
1006 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1009 "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
      ),
Open commit View diff
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(
Open commit View diff
1011 "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(
Open commit View diff
1012 "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",
Open commit View diff
1013 "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",
Open commit View diff
1014 "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",
Open commit View diff
1015 "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"
Open commit View diff
1016 "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
        ),
Open commit View diff
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(
Open commit View diff
1018 "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(
Open commit View diff
1019 "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")
Open commit View diff
1020 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1023 "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
      ),
Open commit View diff
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(
Open commit View diff
1025 "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(
Open commit View diff
1026 "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",
Open commit View diff
1027 "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",
Open commit View diff
1028 "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",
Open commit View diff
1029 "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",
Open commit View diff
1030 "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",
Open commit View diff
1031 "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",
Open commit View diff
1032 "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"
Open commit View diff
1033 "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
        ),
Open commit View diff
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(
Open commit View diff
1035 "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(
Open commit View diff
1036 "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")
Open commit View diff
1037 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1040 "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
      ),
Open commit View diff
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(
Open commit View diff
1042 "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(
Open commit View diff
1043 "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 ''",
Open commit View diff
1044 "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",
Open commit View diff
1045 "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
        ),
Open commit View diff
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(
Open commit View diff
1047 "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(
Open commit View diff
1048 "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")
Open commit View diff
1049 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1052 "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
      ),
Open commit View diff
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(
Open commit View diff
1054 "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(
Open commit View diff
1055 "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",
Open commit View diff
1056 "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",
Open commit View diff
1057 "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",
Open commit View diff
1058 "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",
Open commit View diff
1059 "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",
Open commit View diff
1060 "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",
Open commit View diff
1061 "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",
Open commit View diff
1062 "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",
Open commit View diff
1063 "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'"
Open commit View diff
1064 "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
        ),
Open commit View diff
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(
Open commit View diff
1066 "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(
Open commit View diff
1067 "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")
Open commit View diff
1068 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1071 "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
      ),
Open commit View diff
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(
Open commit View diff
1073 "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(
Open commit View diff
1074 "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",
Open commit View diff
1075 "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",
Open commit View diff
1076 "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"
Open commit View diff
1077 "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
        ),
Open commit View diff
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(
Open commit View diff
1079 "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(
Open commit View diff
1080 "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")
Open commit View diff
1081 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1084 "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
      ),
Open commit View diff
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(
Open commit View diff
1086 "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(
Open commit View diff
1087 "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",
Open commit View diff
1088 "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",
Open commit View diff
1089 "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)",
Open commit View diff
1090 "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)",
Open commit View diff
1091 "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)",
Open commit View diff
1092 "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)",
Open commit View diff
1093 "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)"
Open commit View diff
1094 "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
        ),
Open commit View diff
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(
Open commit View diff
1096 "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(
Open commit View diff
1097 "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")
Open commit View diff
1098 "" => 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
          ),
Open commit View diff
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(
Open commit View diff
1100 "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")
Open commit View diff
1101 "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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1104 "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
      ),
Open commit View diff
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(
Open commit View diff
1106 "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(
Open commit View diff
1107 "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",
Open commit View diff
1108 "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",
Open commit View diff
1109 "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)",
Open commit View diff
1110 "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",
Open commit View diff
1111 "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)"
Open commit View diff
1112 "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
        ),
Open commit View diff
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(
Open commit View diff
1114 "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(
Open commit View diff
1115 "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")
Open commit View diff
1116 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1119 "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
      ),
Open commit View diff
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(
Open commit View diff
1121 "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(
Open commit View diff
1122 "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",
Open commit View diff
1123 "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",
Open commit View diff
1124 "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)",
Open commit View diff
1125 "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)",
Open commit View diff
1126 "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",
Open commit View diff
1127 "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)",
Open commit View diff
1128 "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)"
Open commit View diff
1129 "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
        ),
Open commit View diff
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(
Open commit View diff
1131 "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(
Open commit View diff
1132 "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")
Open commit View diff
1133 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1136 "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
      ),
Open commit View diff
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(
Open commit View diff
1138 "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(
Open commit View diff
1139 "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",
Open commit View diff
1140 "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",
Open commit View diff
1141 "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)",
Open commit View diff
1142 "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",
Open commit View diff
1143 "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)"
Open commit View diff
1144 "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
        ),
Open commit View diff
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(
Open commit View diff
1146 "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(
Open commit View diff
1147 "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")
Open commit View diff
1148 "" => 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
          )
Open commit View diff
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
        ),
Open commit View diff
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"
Open commit View diff
1151 "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
      )
Open commit View diff
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
    );
Open commit View diff
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
Open commit View diff
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) {
Open commit View diff
1155 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
Open commit View diff
1156 // 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') {
Open commit View diff
1157 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'");
Open commit View diff
1158 $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));
Open commit View diff
1159 $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) {
Open commit View diff
1160 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'");
Open commit View diff
1161 $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));
Open commit View diff
1162 $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) {
Open commit View diff
1163 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`");
Open commit View diff
1164 $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
          }
Open commit View diff
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
        }
Open commit View diff
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
      }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1169 // 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') {
Open commit View diff
1170 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'");
Open commit View diff
1171 $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));
Open commit View diff
1172 $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) {
Open commit View diff
1173 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%'");
Open commit View diff
1174 $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));
Open commit View diff
1175 $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) {
Open commit View diff
1176 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`");
Open commit View diff
1177 $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);
Open commit View diff
1178 $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)) {
Open commit View diff
1179 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']);
Open commit View diff
1180 $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
            }
Open commit View diff
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
          }
Open commit View diff
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
        }
Open commit View diff
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
      }
Open commit View diff
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
Open commit View diff
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 . "'");
Open commit View diff
1186 $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));
Open commit View diff
1187 $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) {
Open commit View diff
1188 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`
Open commit View diff
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`
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;");
Open commit View diff
1190 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));
Open commit View diff
1191 $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);
Open commit View diff
1192 $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)) {
Open commit View diff
1193 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']);
Open commit View diff
1194 $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
        }
Open commit View diff
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) {
Open commit View diff
1196 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 . "'");
Open commit View diff
1197 $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));
Open commit View diff
1198 $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) {
Open commit View diff
1199 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) {
Open commit View diff
1200 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 ';
Open commit View diff
1201 $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
Open commit View diff
1202 // 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'");
Open commit View diff
1203 $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));
Open commit View diff
1204 $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) {
Open commit View diff
1205 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");
Open commit View diff
1206 $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
              }
Open commit View diff
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
            }
Open commit View diff
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);
Open commit View diff
1209 $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 {
Open commit View diff
1210 } 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);
Open commit View diff
1211 $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
          }
Open commit View diff
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
        }
Open commit View diff
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) {
Open commit View diff
1214 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') {
Open commit View diff
1215 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) {
Open commit View diff
1216 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) . "`";
Open commit View diff
1217 $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'");
Open commit View diff
1218 $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));
Open commit View diff
1219 $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, " : "";
Open commit View diff
1220 $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 . ")");
Open commit View diff
1221 $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
            }
Open commit View diff
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
          }
Open commit View diff
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') {
Open commit View diff
1224 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) {
Open commit View diff
1225 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) . "`";
Open commit View diff
1226 $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 . "'");
Open commit View diff
1227 $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));
Open commit View diff
1228 $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 . "`, " : "";
Open commit View diff
1229 $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 . ")");
Open commit View diff
1230 $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
            }
Open commit View diff
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
          }
Open commit View diff
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') {
Open commit View diff
1233 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) {
Open commit View diff
1234 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) . "`";
Open commit View diff
1235 $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 . "'");
Open commit View diff
1236 $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));
Open commit View diff
1237 $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 . "`, " : "";
Open commit View diff
1238 $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 . ")");
Open commit View diff
1239 $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
            }
Open commit View diff
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
          }
Open commit View diff
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') {
Open commit View diff
1242 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) {
Open commit View diff
1243 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) . "`";
Open commit View diff
1244 $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 . "'");
Open commit View diff
1245 $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));
Open commit View diff
1246 $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) {
Open commit View diff
1247 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 . "`");
Open commit View diff
1248 $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
              }
Open commit View diff
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']);
Open commit View diff
1250 @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 . "`)
Open commit View diff
1251 $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']);
Open commit View diff
1252 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
            }
Open commit View diff
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
          }
Open commit View diff
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
        }
Open commit View diff
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
Open commit View diff
1256 // 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 . "`");
Open commit View diff
1257 $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);
Open commit View diff
1258 $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)) {
Open commit View diff
1259 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'])) {
Open commit View diff
1260 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'] . "`;");
Open commit View diff
1261 $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
          }
Open commit View diff
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
        }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1265 // 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'");
Open commit View diff
1266 $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);
Open commit View diff
1267 $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();
Open commit View diff
1268 $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'])) {
Open commit View diff
1269 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) {
Open commit View diff
1270 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;
Open commit View diff
1271 $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
          }
Open commit View diff
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
        }
Open commit View diff
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'])) {
Open commit View diff
1274 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) {
Open commit View diff
1275 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;
Open commit View diff
1276 $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
          }
Open commit View diff
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
        }
Open commit View diff
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
Open commit View diff
1279 // 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'])) {
Open commit View diff
1280 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) {
Open commit View diff
1281 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;
Open commit View diff
1282 $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
          }
Open commit View diff
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
        }
Open commit View diff
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
Open commit View diff
1285 // 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)) {
Open commit View diff
1286 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)) {
Open commit View diff
1287 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'] . "`");
Open commit View diff
1288 $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
          }
Open commit View diff
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
        }
Open commit View diff
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
Open commit View diff
1291 // 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'])) {
Open commit View diff
1292 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'");
Open commit View diff
1293 $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));
Open commit View diff
1294 $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) {
Open commit View diff
1295 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");
Open commit View diff
1296 $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
          }
Open commit View diff
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
        }
Open commit View diff
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 {
Open commit View diff
1299 } 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
Open commit View diff
1300 // 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 . "` (";
Open commit View diff
1301 $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) {
Open commit View diff
1302 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 . ",";
Open commit View diff
1303 $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
        }
Open commit View diff
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) {
Open commit View diff
1305 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') {
Open commit View diff
1306 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) {
Open commit View diff
1307 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) . "`";
Open commit View diff
1308 $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 . ")" . ",";
Open commit View diff
1309 $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
            }
Open commit View diff
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') {
Open commit View diff
1311 } 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) {
Open commit View diff
1312 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) . "`";
Open commit View diff
1313 $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 . ")" . ",";
Open commit View diff
1314 $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
            }
Open commit View diff
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') {
Open commit View diff
1316 } 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) {
Open commit View diff
1317 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) . "`";
Open commit View diff
1318 $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 . ")" . ",";
Open commit View diff
1319 $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
            }
Open commit View diff
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') {
Open commit View diff
1321 } 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) {
Open commit View diff
1322 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']);
Open commit View diff
1323 @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 . "`)
Open commit View diff
1324 $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'] . ",";
Open commit View diff
1325 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
            }
Open commit View diff
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
          }
Open commit View diff
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
        }
Open commit View diff
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, ",");
Open commit View diff
1329 $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'];
Open commit View diff
1330 $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);
Open commit View diff
1331 $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
      }
Open commit View diff
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
Open commit View diff
1333 // 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'] . ";");
Open commit View diff
1334 $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
    }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1337 // 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) {
Open commit View diff
1338 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 . "`;");
Open commit View diff
1339 $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);
Open commit View diff
1340 $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
    }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1343 // 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
Open commit View diff
1344 $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'
Open commit View diff
1345 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'
Open commit View diff
1346 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'
Open commit View diff
1347 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')
Open commit View diff
1348 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'));");
Open commit View diff
1349 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
Open commit View diff
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
Open commit View diff
1351 // 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` = ''
Open commit View diff
1352 $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%'
Open commit View diff
1353 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%'
Open commit View diff
1354 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%'
Open commit View diff
1355 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%'
Open commit View diff
1356 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%'
Open commit View diff
1357 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%'
Open commit View diff
1358 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%'
Open commit View diff
1359 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%';");
Open commit View diff
1360 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
Open commit View diff
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
Open commit View diff
1362 // 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')");
Open commit View diff
1363 $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
Open commit View diff
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
Open commit View diff
1365 // 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`");
Open commit View diff
1366 $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));
Open commit View diff
1367 $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) {
Open commit View diff
1368 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`)
Open commit View diff
1369 $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)");
Open commit View diff
1370 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`)
Open commit View diff
1371 $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`
Open commit View diff
1372 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`);");
Open commit View diff
1373 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`);");
Open commit View diff
1374 $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
    }
Open commit View diff
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
Open commit View diff
1376 // 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 . "');");
Open commit View diff
1377 $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
Open commit View diff
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
Open commit View diff
1379 // 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`);");
Open commit View diff
1380 $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`);");
Open commit View diff
1381 $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
Open commit View diff
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
Open commit View diff
1383 // 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
Open commit View diff
1384 // 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;");
Open commit View diff
1385 $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;");
Open commit View diff
1386 $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;");
Open commit View diff
1387 $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;");
Open commit View diff
1388 $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
Open commit View diff
1389 // 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;");
Open commit View diff
1390 $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;");
Open commit View diff
1391 $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;");
Open commit View diff
1392 $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;");
Open commit View diff
1393 $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;");
Open commit View diff
1394 $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
Open commit View diff
1395 // 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;");
Open commit View diff
1396 $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;");
Open commit View diff
1397 $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;");
Open commit View diff
1398 $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;");
Open commit View diff
1399 $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;");
Open commit View diff
1400 $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;");
Open commit View diff
1401 $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;");
Open commit View diff
1402 $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;");
Open commit View diff
1403 $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;");
Open commit View diff
1404 $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;");
Open commit View diff
1405 $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;");
Open commit View diff
1406 $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;");
Open commit View diff
1407 $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;");
Open commit View diff
1408 $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) {
Open commit View diff
1409 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),
Open commit View diff
1410 $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)
Open commit View diff
1411 `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");
Open commit View diff
1412 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));
Open commit View diff
1413 $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
    }
Open commit View diff
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)
Open commit View diff
1415 // 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;");
Open commit View diff
1416 $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;");
Open commit View diff
1417 $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
Open commit View diff
1418 // 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`);");
Open commit View diff
1419 $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`);");
Open commit View diff
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`);");
same 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
Open commit View diff
1421 // 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';");
Open commit View diff
1422 $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
Open commit View diff
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
Open commit View diff
1424 // 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(
Open commit View diff
1425 $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",
Open commit View diff
1426 "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",
Open commit View diff
1427 "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(
Open commit View diff
1428 "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(),
Open commit View diff
1429 "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,
Open commit View diff
1430 "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,
Open commit View diff
1431 "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,
Open commit View diff
1432 "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,
Open commit View diff
1433 "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,
Open commit View diff
1434 "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",
Open commit View diff
1435 "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" => "",
Open commit View diff
1436 "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,
Open commit View diff
1437 "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,
Open commit View diff
1438 "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,
Open commit View diff
1439 "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,
Open commit View diff
1440 "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,
Open commit View diff
1441 "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",
Open commit View diff
1442 "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,
Open commit View diff
1443 "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,
Open commit View diff
1444 "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
      )
Open commit View diff
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
    );
Open commit View diff
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(
Open commit View diff
1447 $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",
Open commit View diff
1448 "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",
Open commit View diff
1449 "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(
Open commit View diff
1450 "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(),
Open commit View diff
1451 "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,
Open commit View diff
1452 "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']),
Open commit View diff
1453 "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']),
Open commit View diff
1454 "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",
Open commit View diff
1455 "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" => "",
Open commit View diff
1456 "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']),
Open commit View diff
1457 "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']),
Open commit View diff
1458 "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']),
Open commit View diff
1459 "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,
Open commit View diff
1460 "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']),
Open commit View diff
1461 "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']),
Open commit View diff
1462 "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']),
Open commit View diff
1463 "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']),
Open commit View diff
1464 "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']),
Open commit View diff
1465 "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']),
Open commit View diff
1466 "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,
Open commit View diff
1467 "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,
Open commit View diff
1468 "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,
Open commit View diff
1469 "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,
Open commit View diff
1470 "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,
Open commit View diff
1471 "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,
Open commit View diff
1472 "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,
Open commit View diff
1473 "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,
Open commit View diff
1474 "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,
Open commit View diff
1475 "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,
Open commit View diff
1476 "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,
Open commit View diff
1477 "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,
Open commit View diff
1478 "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,
Open commit View diff
1479 "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,
Open commit View diff
1480 "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
      )
Open commit View diff
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
    );
Open commit View diff
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");
Open commit View diff
1483 $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(
Open commit View diff
1484 $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",
Open commit View diff
1485 ":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"]
Open commit View diff
1486 ":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
    ));
Open commit View diff
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);
Open commit View diff
1488 $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)) {
Open commit View diff
1489 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`)
Open commit View diff
1490 $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)");
Open commit View diff
1491 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(
Open commit View diff
1492 $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",
Open commit View diff
1493 ":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"],
Open commit View diff
1494 ":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"])
Open commit View diff
1495 ":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
      ));
Open commit View diff
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
    }
Open commit View diff
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");
Open commit View diff
1498 $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(
Open commit View diff
1499 $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",
Open commit View diff
1500 ":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"]
Open commit View diff
1501 ":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
    ));
Open commit View diff
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);
Open commit View diff
1503 $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)) {
Open commit View diff
1504 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`)
Open commit View diff
1505 $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)");
Open commit View diff
1506 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(
Open commit View diff
1507 $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",
Open commit View diff
1508 ":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"],
Open commit View diff
1509 ":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"])
Open commit View diff
1510 ":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
      ));
Open commit View diff
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
    }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1514 // 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");
Open commit View diff
1515 $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
Open commit View diff
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") {
Open commit View diff
1517 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;
Open commit View diff
1518 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 {
Open commit View diff
1519 } 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(
Open commit View diff
1520 $_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',
Open commit View diff
1521 '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__),
Open commit View diff
1522 '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'
Open commit View diff
1523 '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
      );
Open commit View diff
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
    }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
1527 // 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`)");
Open commit View diff
1528 $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
Open commit View diff
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) {
Open commit View diff
1530 } 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") {
Open commit View diff
1531 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;
Open commit View diff
1532 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 {
Open commit View diff
1533 } 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(
Open commit View diff
1534 $_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',
Open commit View diff
1535 '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__),
Open commit View diff
1536 '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)
Open commit View diff
1537 '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
      );
Open commit View diff
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
    }
Open commit View diff
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
  }
Open commit View diff
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
}
Open commit View diff
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") {
Open commit View diff
1542 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';
Open commit View diff
1543 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';
Open commit View diff
1544 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';
Open commit View diff
1545 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();
Open commit View diff
1546 // $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;
Open commit View diff
1547 // $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);
Open commit View diff
1548 // $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);
Open commit View diff
1549 // $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);
Open commit View diff
1550 // $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;
Open commit View diff
1551 // $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);
Open commit View diff
1552 // $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;
Open commit View diff
1553 $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 = [
Open commit View diff
1554 $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,
Open commit View diff
1555 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,
Open commit View diff
1556 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,
Open commit View diff
1557 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;",
Open commit View diff
1558 //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
  ];
Open commit View diff
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);
Open commit View diff
1560 $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';");
Open commit View diff
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';");
same 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);
Open commit View diff
1562 $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) {
Open commit View diff
1563 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
Open commit View diff
1564 // 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 {
Open commit View diff
1565 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();
Open commit View diff
1566 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;
Open commit View diff
1567 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) {
Open commit View diff
1568 } 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
Open commit View diff
1569 // 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
    }
Open commit View diff
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
  }
Open commit View diff
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 {
Open commit View diff
1572 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();
Open commit View diff
1573 $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);
Open commit View diff
1574 $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();
Open commit View diff
1575 $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;
Open commit View diff
1576 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) {
Open commit View diff
1577 } 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
Open commit View diff
1578 // 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
  }
Open commit View diff
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();
Open commit View diff
1580 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
}
Open commit View diff
1581 }