first commit
This commit is contained in:
commit
098f59b644
3632 changed files with 518046 additions and 0 deletions
16
mailcow/data/conf/sogo/custom-sogo.js
Normal file
16
mailcow/data/conf/sogo/custom-sogo.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// redirect to mailcow login form
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
var loginForm = document.forms.namedItem("loginForm");
|
||||
if (loginForm) {
|
||||
window.location.href = '/user';
|
||||
}
|
||||
});
|
||||
|
||||
// Custom SOGo JS
|
||||
|
||||
// Change the visible font-size in the editor, this does not change the font of a html message by default
|
||||
CKEDITOR.addCss("body {font-size: 16px !important}");
|
||||
|
||||
// Enable scayt by default
|
||||
//CKEDITOR.config.scayt_autoStartup = true;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue