/usr/share/akonadi/accountwizard/kolab/kolabwizard.es is in kdepim-runtime 4:17.12.3-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | /*
Copyright (c) 2014 Sandro Knauß <knauss@kolabsys.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
// add this function to trim user input of whitespace when needed
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };
var page = Dialog.addPage("kolabwizard.ui", qsTr("Personal Settings"));
var page2 = Dialog.addPage("kolabwizard2.ui", qsTr("Autoconfiguration"));
var userChangedServerAddress = false;
page.widget().nameEdit.text = SetupManager.name()
page.widget().emailEdit.text = SetupManager.email()
page.widget().passwordEdit.password = SetupManager.password()
function guessServerName()
{
var email = page.widget().emailEdit.text;
var pos = email.indexOf("@");
if (pos >= 0 && (pos + 1) < email.length) {
var server = email.slice(pos + 1, email.length);
return server;
}
}
function validateInput()
{
if (page.widget().emailEdit.text.trim() == "" || page.widget().passwordEdit.password.trim() == "") {
page.setValid(false);
} else {
page.setValid(true);
}
}
//Server test
servertest_running = false;
//0 = not running, 1=submission, 2 = smtp, 3 = imap
servertest_mode = 0;
function testResultFail()
{
testOk( -1 );
}
var imapRes;
function testOk( arg )
{
print("testOk arg =", arg);
if (servertest_mode < 3) { // submission & smtp
if (arg == "tls" ) { // tls is really STARTTLS
smtp.setEncryption("TLS");
if (servertest_mode == 1) { //submission port 587
smtp.setPort(587);
} else {
smtp.setPort(25);
}
} else if ( arg == "ssl" ) { //only possible as smtps
smtp.setPort(465);
smtp.setEncryption("SSL");
} else if (servertest_mode == 2) { //test submission and smtp failed or only possible unencrypted -> set to standard value and open editor
smtp.setPort(587);
smtp.setEncryption("TLS");
smtp.setEditMode(true);
} else if (servertest_mode == 1) { // submission test failed -> start smtp request
servertest_mode = 2;
ServerTest.test(page2.widget().lineEditSmtp.text, "smtp");
return;
}
// start imap test
servertest_mode = 3;
if (page2.widget().lineEditImap.text) {
SetupManager.setupInfo(qsTr("Probing IMAP server..."));
ServerTest.test(page2.widget().lineEditImap.text, "imap");
} else {
SetupManager.execute();
}
} else if (servertest_mode == 3) { //imap
if ( arg == "ssl" ) {
// The ENUM used for authentication (in the kolab resource only)
kolabRes.setOption( "Safety", "SSL" ); // SSL/TLS
kolabRes.setOption( "ImapPort", 993 );
} else if ( arg == "tls" ) { // tls is really STARTTLS
kolabRes.setOption( "Safety", "STARTTLS" ); // STARTTLS
kolabRes.setOption( "ImapPort", 143 );
} else {
// safe default fallback in case server test failed
kolabRes.setOption( "Safety", "STARTTLS" );
kolabRes.setOption( "ImapPort", 143 );
kolabRes.setEditMode(true);
}
SetupManager.execute();
} else {
print ("Unknown servertest_mode = ", servertest_mode);
}
}
var identity; // global so it can be accesed in setup and testOk
var kolabRes;
var smtp;
var imapRes;
var ac_mail;
var ac_freebusy;
var ac_ldap;
var ac_mail_stat;
var ac_freebusy_stat;
var ac_ldap_stat;
function checkAutoconfig()
{
ac_mail_stat = false;
ac_freebusy_stat = false;
ac_ldap_stat = false;
page2.widget().lineEditImap.text = guessServerName();
page2.widget().lineEditSmtp.text = guessServerName();
page2.widget().lineEditImap.visible = false;
page2.widget().lineEditSmtp.visible = false;
page2.widget().lineEditImapLabel.visible = false;
page2.widget().lineEditSmtpLabel.visible = false;
page2.widget().checkBoxFreebusyEdit.text = qsTr("Create");
page2.widget().checkBoxLdapEdit.text = qsTr("Create");
ac_mail = SetupManager.ispDB('autoconfigkolabmail');
ac_mail.ispdbFinished.connect(mail_finished);
ac_mail.info.connect(mail_text);
ac_mail.setEmail(page.widget().emailEdit.text);
ac_mail.setPassword(page.widget().passwordEdit.password);
ac_mail.start();
ac_freebusy = SetupManager.ispDB('autoconfigkolabfreebusy');
ac_freebusy.ispdbFinished.connect(freebusy_finished);
ac_freebusy.info.connect(freebusy_text);
ac_freebusy.setEmail(page.widget().emailEdit.text);
ac_freebusy.setPassword(page.widget().passwordEdit.password);
ac_freebusy.start();
ac_ldap = SetupManager.ispDB('autoconfigkolabldap');
ac_ldap.ispdbFinished.connect(ldap_finished);
ac_ldap.info.connect(ldap_text);
ac_ldap.setEmail(page.widget().emailEdit.text);
ac_ldap.setPassword(page.widget().passwordEdit.password);
ac_ldap.start();
}
function mail_finished(stat) {
ac_mail_stat = stat;
if (stat) {
page2.widget().lineEditImap.visible = false;
page2.widget().lineEditSmtp.visible = false;
page2.widget().lineEditImapLabel.visible = false;
page2.widget().lineEditSmtpLabel.visible = false;
} else {
page2.widget().lineEditImap.visible = true;
page2.widget().lineEditSmtp.visible = true;
page2.widget().lineEditImapLabel.visible = true;
page2.widget().lineEditSmtpLabel.visible = true;
}
}
function mail_text(text) {
page2.widget().labelImapSearch.text = text;
page2.widget().labelSmtpSearch.text = text;
}
function freebusy_finished(stat) {
ac_freebusy_stat = stat;
if (stat) {
page2.widget().checkBoxFreebusyEdit.text = qsTr("Manual Edit");
}
}
function freebusy_text(text) {
page2.widget().labelFreebusySearch.text = text;
}
function ldap_finished(stat) {
ac_ldap_stat = stat;
if (stat) {
page2.widget().checkBoxLdapEdit.text = qsTr("Manual Edit");
}
}
function ldap_text(text) {
page2.widget().labelLdapSearch.text = text;
}
function setup()
{
SetupManager.openWallet();
smtp = SetupManager.createTransport("smtp");
smtp.setEditMode(page2.widget().checkBoxSmtpEdit.checked);
smtp.setPassword(page.widget().passwordEdit.password);
if (ac_mail_stat) {
ac_mail.fillSmtpServer(0, smtp);
} else if (page2.widget().lineEditSmtp.text) {
var serverAddress = page2.widget().lineEditSmtp.text;
servertest_running = true;
servertest_mode = 1;
smtp.setName(serverAddress);
smtp.setHost(serverAddress);
smtp.setUsername(page.widget().emailEdit.text);
smtp.setAuthenticationType("plain");
SetupManager.setupInfo(qsTr("Probing SMTP server..."));
ServerTest.test( serverAddress, "submission" ); //probe port and encryption
}
for (i = 0; i < ac_mail.countIdentities(); i++) {
var j = SetupManager.createIdentity();
j.setTransport(smtp);
//templates
//drafts
//fcc
ac_mail.fillIdentitiy(i,j);
if (i == ac_mail.defaultIdentity()) {
identity = j;
}
}
if (ac_mail.countIdentities() == 0) {
identity = SetupManager.createIdentity();
identity.setEmail(page.widget().emailEdit.text);
identity.setRealName(page.widget().nameEdit.text);
identity.setTransport(smtp);
}
kolabRes = SetupManager.createResource("akonadi_kolab_resource");
kolabRes.setEditMode(page2.widget().checkBoxImapEdit.checked);
kolabRes.setOption("Password", page.widget().passwordEdit.password);
kolabRes.setOption("UseDefaultIdentity", false);
kolabRes.setOption("AccountIdentity", identity.uoid());
kolabRes.setOption("DisconnectedModeEnabled", true);
kolabRes.setOption("IntervalCheckTime", 60);
kolabRes.setOption("SubscriptionEnabled", true);
kolabRes.setOption("SieveSupport", true);
if (ac_mail_stat) {
ac_mail.fillImapServer(0, kolabRes);
} else if (page2.widget().lineEditImap.text) {
var serverAddress = page2.widget().lineEditImap.text;
kolabRes.setOption("ImapServer", serverAddress);
kolabRes.setOption("UserName", page.widget().emailEdit.text.trim());
if (!servertest_running) {
servertest_mode = 2;
servertest_running = true;
SetupManager.setupInfo(qsTr("Probing IMAP server..."));
ServerTest.test(serverAddress, "imap");
} kolabRes.setOption("Authentication", 7);
}
if (ac_ldap_stat) {
for (i = 0; i < ac_ldap.countLdapServers(); i++) {
var ldap = SetupManager.createLdap();
ldap.setEditMode(page2.widget().checkBoxLdapEdit.checked);
ac_ldap.fillLdapServer(i,ldap);
}
} else if (page2.widget().checkBoxLdapEdit.checked) {
var ldap = SetupManager.createLdap();
ldap.setEditMode(page2.widget().checkBoxLdapEdit.checked);
ldap.setPassword(page.widget().passwordEdit.password);
ldap.setUser(page.widget().emailEdit.text);
ldap.setServer(guessServerName());
}
if (ac_freebusy_stat) {
var korganizer = SetupManager.createConfigFile("akonadi-calendarrc");
korganizer.setEditMode(page2.widget().checkBoxFreebusyEdit.checked);
korganizer.setEditName("freebusy");
korganizer.setName("korganizer");
ac_freebusy.fillFreebusyServer(0,korganizer);
} else if (page2.widget().checkBoxFreebusyEdit.checked) {
var korganizer = SetupManager.createConfigFile("akonadi-calendarrc");
korganizer.setEditMode(page2.widget().checkBoxFreebusyEdit.checked);
korganizer.setEditName("freebusy");
korganizer.setName( "korganizer" );
korganizer.setConfig( "FreeBusy Retrieve", "FreeBusyFullDomainRetrieval","true");
korganizer.setConfig( "FreeBusy Retrieve", "FreeBusyRetrieveAuto", "true" );
korganizer.setConfig( "FreeBusy Retrieve", "FreeBusyRetrieveUrl", "https://" + guessServerName() + "/freebusy/" );
}
if (!servertest_running) {
SetupManager.execute();
}
}
try {
ServerTest.testFail.connect(testResultFail);
ServerTest.testResult.connect(testOk);
page.widget().emailEdit.textChanged.connect(validateInput);
page.widget().passwordEdit.passwordChanged.connect(validateInput);
page.pageLeftNext.connect(checkAutoconfig);
page2.pageLeftNext.connect(setup);
} catch (e) {
print(e);
}
validateInput();
|