This file is indexed.

/usr/share/kde4/apps/akonadi/accountwizard/tine20/tine20wizard.es is in kdepim-runtime 4:4.13.0-0ubuntu1.

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
/*
    Copyright (c) 2012 Volker Krause <vkrause@kde.org>
    Copyright (c) 2010 Casey Link <unnamedrambler@gmail.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( "tine20wizard.ui", qsTr("Personal Settings") );
var userChangedServerAddress = false;

page.widget().nameEdit.text = SetupManager.name()
page.widget().emailEdit.text = SetupManager.email()
page.widget().passwordEdit.text = SetupManager.password()
guessServerName();

if ( SetupManager.personalDataAvailable() ) {
  page.widget().nameEdit.visible = false;
  page.widget().nameLabel.visible = false;
  page.widget().emailEdit.visible = false;
  page.widget().emailLabel.visible = false;
  page.widget().passwordEdit.visible = false;
  page.widget().passwordLabel.visible = false;
}


function guessServerName()
{
  if ( userChangedServerAddress == true ) {
    return;
  }

  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 );
    page.widget().serverAddress.text = server;
  }

  userChangedServerAddress = false;
}

function emailChanged( arg )
{
  validateInput();
  guessServerName();
}

function serverChanged( arg )
{
  validateInput();
  if ( arg == "" ) {
    userChangedServerAddress = false;
  } else {
    userChangedServerAddress = true;
  }
}

function validateInput()
{
  if ( page.widget().serverAddress.text.trim() == "" || page.widget().emailEdit.text.trim() == "" ) {
    page.setValid( false );
  } else {
    page.setValid( true );
  }
}

// stage 1, setup identity and run imap server test
// stage 2, smtp setup (no server test) and Dav resources
var stage = 1;
var identity; // global so it can be accesed in setup and testOk

function setup()
{
  print("setup() "  + stage);
  var serverAddress = page.widget().serverAddress.text.trim();
  if ( stage == 1 ) {
    SetupManager.openWallet();

    identity = SetupManager.createIdentity();
    identity.setEmail( page.widget().emailEdit.text );
    identity.setRealName( page.widget().nameEdit.text );

    ServerTest.test( serverAddress, "imap" );
  } else { // stage 2
    var smtp = SetupManager.createTransport( "smtp" );
    smtp.setName( serverAddress );
    smtp.setHost( serverAddress );
    smtp.setPort( 25 );
    smtp.setEncryption( "TLS" );
    smtp.setAuthenticationType( "plain" );
    smtp.setUsername( page.widget().emailEdit.text );
    smtp.setPassword( page.widget().passwordEdit.text );
    identity.setTransport( smtp );

    var dav = SetupManager.createResource( "akonadi_davgroupware_resource" );
    print("dav: " + dav );
    try {
    dav.setName( "Tine 2.0" );
    dav.setOption( "DisplayName", "Tine 2.0" );
    dav.setOption( "RefreshInterval", 60 );
    dav.setOption( "RemoteUrls", ["$default$|CalDav|https://" + page.widget().serverAddress.text.trim() + "/calendars", 
                    "$default$|CardDav|https://" + page.widget().serverAddress.text.trim() + "/addressbooks"] );
    dav.setOption( "DefaultUsername", page.widget().emailEdit.text.trim() );
    } catch (e) { print(e); }

    print("pre-exec");
    SetupManager.execute();
    print("post-exec");
  }
}

function testResultFail()
{
  testOk( -1 );
}

function testOk( arg )
{
    print("testOk arg =", arg);
    var imapRes = SetupManager.createResource( "akonadi_imap_resource" );
    imapRes.setName( page.widget().serverAddress.text.trim() );
    imapRes.setOption( "ImapServer", page.widget().serverAddress.text.trim() );
    imapRes.setOption( "UserName", page.widget().emailEdit.text.trim() );
    imapRes.setOption( "Password", page.widget().passwordEdit.text.trim() );
    imapRes.setOption( "UseDefaultIdentity", false );
    imapRes.setOption( "AccountIdentity", identity.uoid() );
    imapRes.setOption( "DisconnectedModeEnabled", true );
    imapRes.setOption( "IntervalCheckTime", 60 );
    imapRes.setOption( "SubscriptionEnabled", true );
    imapRes.setOption( "SieveSupport", false );
    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 in case server test failed
      imapRes.setOption( "Safety", "STARTTLS" );
      imapRes.setOption( "ImapPort", 143 );
    }
    stage = 2;
    setup();
}

try {
  ServerTest.testFail.connect(testResultFail);
  ServerTest.testResult.connect(testOk);
  page.widget().emailEdit.textChanged.connect(emailChanged);
  page.widget().serverAddress.textChanged.connect(serverChanged);
  page.pageLeftNext.connect(setup);
} catch (e) {
  print(e);
}

validateInput();