2007-04-15 18:29:13 +02:00
|
|
|
var tab = new Tabs(4,'activetab','inactivetab','tab','tabcontent','','','tabpage');
|
|
|
|
var smtp = new Tabs(5,'activetab','inactivetab','smtp','smtpcontent','smtpselector','','');
|
|
|
|
var imap = new Tabs(6,'activetab','inactivetab','imap','imapcontent','imapselector','','');
|
|
|
|
|
|
|
|
function initAll() {
|
|
|
|
tab.init();
|
|
|
|
smtp.init();
|
|
|
|
imap.init();
|
2007-06-04 08:43:09 +02:00
|
|
|
var imapType = document.getElementsByName("imapsettings[imapType]")[0];
|
|
|
|
var v=imapType.value; imap.display(imapType.value); imapType.value=v;
|
2007-04-15 18:29:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function ea_setIMAPDefaults(_imapType) {
|
|
|
|
var currentInput = document.getElementsByName("imapsettings[" + _imapType + "][imapPort]")[0];
|
|
|
|
|
|
|
|
if(_imapType > 1) {
|
|
|
|
// imap
|
|
|
|
if(currentInput.value == '110') {
|
|
|
|
currentInput.value = '143';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// pop3
|
|
|
|
if(currentInput.value == '143') {
|
|
|
|
currentInput.value = '110';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|