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/conf/sogo/custom-sogo.js

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

custom-sogo.js on main
Author Date Commit Line Code
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
1
// redirect to mailcow login form
Open commit View diff
1 // redirect to mailcow login form
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
2
document.addEventListener('DOMContentLoaded', function () {
Open commit View diff
2 document.addEventListener('DOMContentLoaded', function () {
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
3
    var loginForm = document.forms.namedItem("loginForm");
Open commit View diff
3 var loginForm = document.forms.namedItem("loginForm");
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
4
    if (loginForm) {
Open commit View diff
4 if (loginForm) {
FreddleSpl0it over 1 year ago ccc8595

[SOGo] redirect to /user if unauthenticated

Full commit hash
ccc8595665ea28ba92c3e6d66bd40b2d65890eca
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
5
        window.location.href = '/user';
Open commit View diff
5 window.location.href = '/user';
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
6
    }
Open commit View diff
6 }
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
7
});
Open commit View diff
7 });
FreddleSpl0it over 1 year ago f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
8
// logout function
Open commit View diff
8 // logout function
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
9
function mc_logout() {
Open commit View diff
9 function mc_logout() {
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
10
    fetch("/", {
Open commit View diff
10 fetch("/", {
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
11
        method: "POST",
Open commit View diff
11 method: "POST",
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
12
        headers: {
Open commit View diff
12 headers: {
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
13
          "Content-Type": "application/x-www-form-urlencoded"
Open commit View diff
13 "Content-Type": "application/x-www-form-urlencoded"
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
14
        },
Open commit View diff
14 },
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
15
        body: "logout=1"
Open commit View diff
15 body: "logout=1"
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
16
    }).then(() => window.location.href = '/');
Open commit View diff
16 }).then(() => window.location.href = '/');
same change f37961b

[SOGo] Use JS for mailcow logout

Full commit hash
f37961b7d06b1e0f0fdb2f893f5dfa295c00f86f
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
17
}
Open commit View diff
17 }
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
18
Open commit View diff
18
andryyy over 7 years ago 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
19
// Custom SOGo JS
Open commit View diff
19 // Custom SOGo JS
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
20
Open commit View diff
20
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
21
// Change the visible font-size in the editor, this does not change the font of a html message by default
Open commit View diff
21 // Change the visible font-size in the editor, this does not change the font of a html message by default
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
22
CKEDITOR.addCss("body {font-size: 16px !important}");
Open commit View diff
22 CKEDITOR.addCss("body {font-size: 16px !important}");
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
23
Open commit View diff
23
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
24
// Enable scayt by default
Open commit View diff
24 // Enable scayt by default
same change 1d9f820

[SOGo] Include custom-sogo.js to dynamically add JS to SOGo, increase textarea font of CKeditor by default

Full commit hash
1d9f820b028153ebe664dfc3c913e52646833382
Author
andryyy <[email protected]>
Date
over 7 years ago
Selected line
25
//CKEDITOR.config.scayt_autoStartup = true;
Open commit View diff
25 //CKEDITOR.config.scayt_autoStartup = true;
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
26
Open commit View diff
26