/usr/share/akonadi/accountwizard/imap/imapwizard.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 | /*
Copyright (c) 2009 Montel Laurent <montel@kde.org>
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( "imapwizard.ui", qsTr("Personal Settings") );
// try to guess some defaults
var emailAddr = SetupManager.email();
var pos = emailAddr.indexOf( "@" );
if ( pos >= 0 && (pos + 1) < emailAddr.length ) {
var server = emailAddr.slice( pos + 1, emailAddr.length );
page.widget().incommingAddress.text = server;
page.widget().outgoingAddress.text = server;
// We must not strip the server from the user identifier.
// Otherwise the 'user' will be kdabtest1 instead of kdabtest1@demo.kolab.org
// which fails,
//var user = emailAddr.slice( 0, pos );
page.widget().userName.text = emailAddr;
}
function validateInput()
{
if ( page.widget().incommingAddress.text.trim() == "" ) {
page.setValid( false );
} else {
page.setValid( true );
}
}
var stage = 1;
var identity;
function setup()
{
if ( stage == 1 ) {
identity = SetupManager.createIdentity();
identity.setEmail( SetupManager.email() );
identity.setRealName( SetupManager.name() );
ServerTest.test( page.widget().incommingAddress.text.trim(), "imap" );
} else {
ServerTest.test( page.widget().outgoingAddress.text.trim(), "smtp" );
}
}
function testResultFail()
{
testOk( -1 );
}
function testOk( arg )
{
if (stage == 1) {
SetupManager.openWallet();
var imapRes = SetupManager.createResource( "akonadi_imap_resource" );
var server = page.widget().incommingAddress.text.trim();
imapRes.setOption( "ImapServer", server );
imapRes.setOption( "UserName", page.widget().userName.text );
imapRes.setOption( "Password", SetupManager.password() );
imapRes.setOption( "DisconnectedModeEnabled", page.widget().disconnectedMode.checked );
imapRes.setOption( "UseDefaultIdentity", false );
imapRes.setOption( "AccountIdentity", identity.uoid() );
if ( server == "imap.gmail.com" ) {
imapRes.setOption( "Authentication", 9 ); // XOAuth2
arg = "ssl";
} else {
imapRes.setOption( "Authentication", 7 ); // ClearText
}
if ( arg == "ssl" ) {
// The ENUM used for authentication (in the imap resource only)
imapRes.setOption( "Safety", "SSL"); // SSL/TLS
imapRes.setOption( "ImapPort", 993 );
} else if ( arg == "tls" ) { // tls is really STARTTLS
imapRes.setOption( "Safety", "STARTTLS"); // STARTTLS
imapRes.setOption( "ImapPort", 143 );
} else if ( arg == "none" ) {
imapRes.setOption( "Safety", "NONE" ); // No encryption
imapRes.setOption( "ImapPort", 143 );
} else {
// safe default fallback when servertest failed
imapRes.setOption( "Safety", "STARTTLS");
imapRes.setOption( "ImapPort", 143 );
}
imapRes.setOption( "IntervalCheckTime", 60 );
imapRes.setOption( "SubscriptionEnabled", true );
stage = 2;
setup();
} else {
var smtp = SetupManager.createTransport( "smtp" );
smtp.setName( page.widget().outgoingAddress.text.trim() );
smtp.setHost( page.widget().outgoingAddress.text.trim() );
if ( arg == "ssl" ) {
smtp.setEncryption( "SSL" );
} else if ( arg == "tls" ) {
smtp.setEncryption( "TLS" );
} else {
smtp.setEncryption( "None" );
}
smtp.setUsername( page.widget().userName.text );
smtp.setPassword( SetupManager.password() );
identity.setTransport( smtp );
SetupManager.execute();
}
}
try {
ServerTest.testFail.connect( testResultFail );
ServerTest.testResult.connect( testOk );
page.widget().incommingAddress.textChanged.connect( validateInput );
page.pageLeftNext.connect( setup );
} catch ( e ) {
print( e );
}
validateInput();
|