1 <chapter id="groupware-with-kontact">
7 <firstname>Marco</firstname>
8 <surname>Menardi</surname>
10 <email>gnu@kde.org</email>
14 <!-- TRANS:ROLES_OF_TRANSLATORS -->
17 <title>Sharing data with &kontact; via <acronym>IMAP</acronym></title>
19 <sect1 id="kontact-imap-intro">
20 <title>Introduction</title>
22 <para>For my small office, I was looking for a long time for a
23 <acronym>PIM</acronym> solution that let me share data, so my secretary and
24 I can share contacts, appointments and so on. Being a &kde; user, I've heard
25 about the Kroupware project and wait its completion. But when I saw how
26 complicated is the architecture and setup of the
27 <application>Kolab</application> server 1.0 (the server side of the
28 project), I gave up, waiting for an easier to deploy
29 <application>Kolab</application> 2.0. In any case, the
30 <application>Kolab</application> stuff was clearly too much for my
31 needs. Fortunately in the &kde; wiki I've found some piece of
32 <acronym>IRC</acronym> conversation where they were talking about sharing
33 data without the <application>Kolab</application> infrastructure... mmm so
36 <para>For small offices and needs, you can have &kontact; use shared data
37 without the need of installing the <application>Kolab</application> server
38 or another groupware backend. It can work with just an
39 <acronym>IMAP</acronym> server, that can be easily set up.</para>
41 <para>My scenario is a server with Debian unstable and &kde; 3.4. I access
42 &kontact; and other fabulous GNU/Linux apps from windows using Cygwin/X,
43 while waiting Wine project to be able to run the last Windows programs I
44 need (and that are not available under GNU/Linux). I want to share contacts,
45 events, todo, notes with my secretary.</para>
49 <sect1 id="kontact-imap-whatis">
50 <title>What is <acronym>IMAP</acronym></title>
52 <para>This definition is from the <ulink
53 url="http://computeruser.com">ComputerUser.com High-Tech Dictionary:</ulink>
54 <blockquote><para>Internet Message Access Protocol. A protocol that allows a
55 user to perform certain electronic mail functions on a remote server rather
56 than on a local computer. Through IMAP the user can create, delete, or
57 rename mailboxes; get new messages; delete messages; and perform search
58 functions on mail. A separate protocol is required for sending mail. Also
59 called Internet Mail Access Protocol.</para></blockquote> </para>
61 <para>So it can be considered a data storage. To use it you you need an
62 <acronym>IMAP</acronym> server, such as <application>Cyrus</application>,
63 <application>Courier</application> or <application>UW</application>.</para>
67 <sect1 id="kontact-kolab-or-imap">
68 <title><application>Kolab</application> or <acronym>IMAP</acronym>?</title>
70 <para><application>Kolab</application> brings the ability to share data
71 between different clients. It makes possible for your secretary to use
72 <application>Outlook</application> and you use &kontact;, for
75 <para>You will have a configuration interface which does user management, mail
76 account setup, a central <acronym>LDAP</acronym> config data and addressbook
77 server, spam and virus filtering, vacation scripts, free busy list handling,
78 resource handling (rooms, cars), groups, distribution lists, automatic
79 invitation handling, &etc;</para>
81 <para>But that can cause initial setup troubles. For a newbie like me it
82 means: a long long frustrating nightmare, and too much complexity to manage
83 once working. So no, thanks, I'll go to simple
84 <acronym>IMAP</acronym>.</para>
88 <sect1 id="kontact-imap-cyrus">
89 <title>How to set up <acronym>IMAP</acronym> server <application>Cyrus</application></title>
91 <para>My choice is <application>Cyrus</application>, that is part of the
92 <application>Kolab</application> set of software, so if l will go for
93 <application>Kolab</application> in the future, at least I'm acquainted with
94 it.</para> <para>Let's start the installation and the setup!</para>
96 <para>Become <systemitem class="username">root</systemitem>.</para>
98 <screen># <userinput><command>apt-get</command> <command>install</command> cyrus21-imapd cyrus21-common cyrus21-admin cyrus21-client sasl-bin sasl2-bin</userinput>
99 <computeroutput>Installing cyrus21-imapd...</computeroutput><lineannotation>The installer asks something I've not understood about an search address... I just pressed <keycap>Enter</keycap></lineannotation>.</screen>
101 <para>The installer also created the user <systemitem
102 class="username">cyrus</systemitem> that is in the (automatically created)
103 group <systemitem class="groupname">sasl</systemitem>, that is the
104 <quote>owner</quote> of all cyrus files. At the end with <command>ps
105 <option>-A</option></command> you can find the new processes:
106 <command>cyrmaster</command> and <command>notifyd</command>.</para>
108 <para>The real problem in setting up <application>Cyrus</application> is the
109 authentication, just because it's not trivial and I'm a newbie, with limited
110 knowledge about what I'm doing.</para>
112 <para><application>Cyrus</application> can use different
113 <acronym>SASL</acronym> (Simple Authentication and Security Layer)
114 mechanisms, the default being sasldb (it stores usernames and passwords in
115 the SASL secrets file <filename>sasldb</filename>), but also getpwent,
116 kerberos4, kerberos5, PAM, rimap, shadow and LDAP are supported.</para>
118 <para> Since I don't want to define users/passwords different than the ones
119 that access my &Linux; box I choose then <quote>shadow</quote> mechanism so
120 <application>Cyrus</application> will use &Linux; passwords for
123 <para>To do so we have to tell sasl to use <command>saslauthd</command> as
124 password authentication method, and then setup <command>saslauthd</command>
125 to use <quote>shadow</quote> (or <quote>getpwent</quote>) as the
126 authentication mechanism.</para>
128 <para>OK, let's start!</para>
130 <para>As <systemitem class="username">root</systemitem>, change the Linux
131 password of <systemitem class="username">cyrus</systemitem> user:</para>
133 <screen># <userinput><command>passwd <option>cyrus</option></command></userinput></screen>
135 <para>Enter the password you like (and you will remember) we will use for
136 this example <quote>cyrus</quote> as the <application>cyrus</application>
137 administrator password.</para>
139 <screen># <command>vi</command> <filename>/etc/imapd.conf</filename></screen>
141 <programlisting>sasl_pwcheck_method: <userinput>saslauthd</userinput> <lineannotation>instead of the default <literal>auxprop</literal></lineannotation></programlisting>
143 <para>remove the <literal>#</literal> remark from the line:</para>
145 <programlisting>#admins: cyrus</programlisting>
147 <para>this way you can administer <application>cyrus</application> logging
148 in as <systemitem class="username">cyrus</systemitem> user (what a fantasy I
151 <screen># <userinput><command>vi</command> <filename>/etc/default/saslauthd</filename></userinput></screen>
153 <para>Uncomment the line:</para>
155 <programlisting># START=yes</programlisting>
157 <para>(otherwise the <application>saslauthd</application> will not start at
158 boot time, even if referenced in some <filename
159 class="directory">/etc/rcx.d</filename>!)</para>
161 <para>and instead of <literal>MECHANISMS="pam"</literal> put
162 <userinput>MECHANISMS="shadow"</userinput> this way at the boot a
163 <command>saslauthd</command> <option>-a
164 <parameter>shadow</parameter></option> will be executed.</para>
166 <para>Once exited from your editor, restart <application>sasl</application>
167 and <application>cyrus</application>.</para>
169 <para>To test <acronym>IMAP</acronym>:</para>
171 <screen> <userinput><command>su</command> <option>cyrus</option></userinput>
172 $ <userinput><command>imtest</command> <option>-m login -p imap localhost</option></userinput></screen>
174 <para>You are prompted for the <systemitem
175 class="username">cyrus</systemitem> (user) password, so enter it.</para>
177 <para>If the user <systemitem class="username">cyrus</systemitem> is
178 correctly authenticated, the following lines will appear:</para>
180 <screen><computeroutput>S: L01 OK User logged in
181 Authenticated.</computeroutput></screen>
182 <para>To exit type <userinput>. logout</userinput> (&ie; dot space <quote>logout</quote>)</para>
184 <para>Now add a user named <systemitem
185 class="username">groupware</systemitem> and set a password for it, using
186 your usual system tools. It should be in an unprivileged group such as
187 <systemitem class="groupname">nobody</systemitem> and does not require a
188 login shell or a home directory.</para>
190 <para>Now I have to create the user and an <acronym>IMAP</acronym> in
191 <application>cyrus</application> also:</para>
193 <screen># <userinput><command>cyradm</command> <option>--user cyrus localhost</option></userinput>
194 after entering the password for the admin user <systemitem class="username">cyrus</systemitem>, you get the prompt <prompt>localhost></prompt>
195 <prompt>localhost></prompt> <userinput><command>cm</command> <option>user.groupware</option></userinput>
196 <prompt>localhost></prompt> <userinput><command>lm</command></userinput> <lineannotation>lists the mailbox only just created</lineannotation>
197 <computeroutput>user.groupware (\HasNoChildren))</computeroutput>
198 <prompt>localhost></prompt> <userinput><command>quit</command></userinput></screen>
200 <para>You can type <userinput><command>help</command></userinput> for a list
201 of available commands.</para>
203 <para>You can check what has happened with:</para>
205 <screen># <userinput><command>ls</command> <option>-l</option> <filename class="directory">/var/spool/cyrus/mail/g/user/groupware</filename></userinput>
206 <computeroutput>total 12
207 -rw------- 1 cyrus mail 4 Oct 29 20:55 cyrus.cache
208 -rw------- 1 cyrus mail 155 Oct 29 20:55 cyrus.header
209 -rw------- 1 cyrus mail 76 Oct 29 20:55 cyrus.index</computeroutput></screen>
211 <para>Now you should be able to connect with an <acronym>IMAP</acronym> client
212 as the <systemitem class="username">groupware</systemitem> user and see the
213 <literal>INBOX</literal>.</para>
214 <note><para>In the <acronym>IMAP</acronym> protocol, selecting the mailbox
215 <literal>INBOX</literal> is a magic word, a sort of <quote>alias</quote> for
216 the above directory structure. The client sees <literal>INBOX</literal>, and
217 the <acronym>IMAP</acronym> server maps it in the <filename
218 class="directory">/var/spool/cyrus/mail/...</filename> folder and file
219 structure.</para></note>
223 <sect1 id="kontact-imap-clients">
224 <title>How to setup &kontact; clients</title>
226 <para>I connect to my GNU/Linux office server PC (a sort of "black box"
227 without monitor and keyboard) from 2 &Windows; 2000 PC with
228 <application>Cygwin/X</application>, using them as a X-Window server (in the
229 near future I hope to replace both with 2 mini-itx thin clients using the
230 LTSP). With this setup every user runs &kontact; on the same machine where
231 <application>Cyrus</application> is installed and running
234 <para>To have &kontact; work with <acronym>IMAP</acronym>, there are these
235 steps to complete:</para>
239 <step><para>Create an <acronym>IMAP</acronym> account on the
240 <application>Cyrus</application> for fake <systemitem
241 class="username">groupware</systemitem> user (already previously
244 <step><para>Create/configure an <acronym>IMAP</acronym> account in &kmail;
245 for login as that user</para></step> <step><para>Use kresources to make
246 &kontact; components work with data taken from <acronym>IMAP</acronym>
249 <step><para>Enable groupware functionality and make related subfolders of
250 that <acronym>IMAP</acronym> <literal>INBOX</literal> (if not
251 already)</para></step>
253 <step><para>Enjoy &kontact; and shared data through
254 <application>Cyrus</application> IMAP</para></step>
258 <para>So login to &kde; with the first <quote>real user</quote> account you
259 want to provide groupware functionality to.</para>
261 <para>Let's create the IMAP account in &kmail;.</para>
263 <para>Run &kontact; and select <guilabel>Mail</guilabel> (the &kmail;
264 component). From the menu choose
265 <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure KMail
266 </guimenuitem><guilabel>Accounts</guilabel><guilabel>Receiving</guilabel></menuchoice> tab, press the <guibutton>Add...</guibutton> button. You will then be
267 prompted for the type of your email account, and select
268 <guilabel>disconnected IMAP</guilabel> (not just
269 <guilabel>IMAP</guilabel>). Then in the <guilabel>General</guilabel> tab
270 enter the following data:</para>
274 <term><guilabel>Account Name:</guilabel> <userinput>office_gwdata</userinput></term>
276 <para>A name that will be used for the <quote>local</quote> folder that
277 points to this <acronym>IMAP</acronym> account.</para>
281 <term><guilabel>Login:</guilabel> <userinput>groupware</userinput></term>
283 <para>The <application>Cyrus</application> user we have chosen as
284 <quote>owner</quote> of all of the office data</para>
287 <varlistentry><term><guilabel>Password:</guilabel></term>
289 <para>The password of the <systemitem
290 class="username">groupware</systemitem> user.</para>
294 <term><guilabel>Host:</guilabel> <userinput>localhost</userinput></term>
296 <para>Remember for our example, the &kontact; client runs on the same
297 computer as the <acronym>IMAP</acronym> server</para>
301 <term><guilabel>Port:</guilabel> <userinput>143</userinput></term>
303 <para>The default</para>
308 <para>Check <guilabel>store IMAP password</guilabel>
309 so you will not be asked for it next time you run &kontact;. Check the
310 <guilabel>Enable interval mail checking</guilabel> and set a value in
313 <para>Note that we have checked the <guilabel>disconnected IMAP</guilabel>
314 type account. This has the effect that a copy of the groupware data is
315 stored <quote>locally</quote> to the client (under the home folder), and it
316 is synchronized every time the client connects. This seems very inefficient,
317 since your data is duplicated many times (&ie; if you have 10 users that use
318 &kontact;, you have 10+1 times the data), but it is the only way to make
319 things run fast, because at every connection &kontact; has to fetch all data
320 and have &korganizer; and &kaddressbook; interpret it. If you use
321 <quote>disconnected IMAP</quote> data is cached locally, and only the
322 <quote>delta</quote> (&ie; the data that has changed) is sent.</para>
324 <para>On the other end, if your users run &korganizer; on the same PC that
325 runs the <acronym>IMAP</acronym> server, it seems reasonable to use
326 <acronym>IMAP</acronym> (that is called <quote>online IMAP</quote>) to save
327 space, since transfer speed should not be an issue. But unfortunately this
328 does not work because &kontact; does not update automatically the
329 <guilabel>Calendar</guilabel> folder in <quote>online IMAP</quote>, so you
330 are not updated when someone adds events (you must manually switch to
331 &kmail; application and click on the <guilabel>Calendar</guilabel>
332 folder). In addition, at start up when it does read
333 <guilabel>Calendar</guilabel> folders, you may see a tremendous flicker and
334 slow data updates.</para>
336 <para>Now we have to tell &kontact; to use <acronym>IMAP</acronym> as the
337 data source for its various components. From the &kmenu;, choose
338 <guimenuitem>Run command</guimenuitem>, run <userinput><command>kcmshell4
339 kresources</command></userinput>. In the combo box select
340 <guilabel>Contacts</guilabel>, then press the <guibutton>Add...</guibutton>
341 button, and choose <guilabel>Addressbook on IMAP Server via KMail</guilabel>. Then select that new line and
342 press <guibutton>Use as Standard</guibutton> button. Do the same for
343 <guilabel>Calendar</guilabel> and <guilabel>Notes</guilabel>.</para>
345 <para>Now we have to enable the &kmail; (and as a consequence, the whole
346 &kontact;) groupware functionality:</para>
350 <para>Choose from the menu
351 <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
352 KMail</guimenuitem><guilabel>Misc</guilabel><guilabel>Groupware</guilabel></menuchoice></para>
355 <para>Check <guilabel>Enable IMAP resource functionality</guilabel></para>
358 <para>Choose <guilabel>English</guilabel> as <guilabel>Language of the
359 groupware folders</guilabel> (this is in case you already have the folders
360 in the <acronym>IMAP</acronym> server created by a different program in a
361 different language).</para>
364 <para>Now move to <guilabel>Resource folder are in account</guilabel> and
365 select the <guilabel>Inbox</guilabel> subfolder of the
366 <guilabel>office_gwdata</guilabel> folder.</para>
367 <para>Leave <guilabel>Hide groupware folders</guilabel> unchecked for now,
368 so we can see that happens. You can return here and check it once everything
372 <para>When you press OK you are prompted with:
373 <computeroutput>&kmail; will now create the required folders for the IMAP
374 resource as subfolders of Inbox</computeroutput> </para>
375 <para>If you do not want this, press <guibutton>No</guibutton>, and the
376 <acronym>IMAP</acronym> resource will be disabled. Press
377 <guibutton>Yes</guibutton> (this happens only the first time with the first
378 <quote>real user</quote>). You will immediately see that in the &kmail;
380 <menuchoice><guilabel>office_gwdata</guilabel><guilabel>Inbox</guilabel></menuchoice>
381 these subfolders are created:</para>
383 <member>Calendar</member>
384 <member>Contacts</member>
385 <member>Notes</member>
386 <member>Tasks</member>
387 <member>Journal</member>
389 <para>if you now do a:</para>
390 <screen># <command>ls</command> <option>-l /var/spool/cyrus/mail/g/user/groupware/</option>
391 <computeroutput>drwx------ 2 cyrus mail 144 Oct 31 16:36 Calendar
392 drwx------ 2 cyrus mail 144 Oct 31 16:36 Contacts
393 drwx------ 2 cyrus mail 144 Oct 31 16:36 Journal
394 drwx------ 2 cyrus mail 144 Oct 31 16:36 Notes
395 drwx------ 2 cyrus mail 144 Oct 31 16:36 Tasks
396 -rw------- 1 cyrus mail 4 Oct 31 15:28 cyrus.cache
397 -rw------- 1 cyrus mail 155 Oct 29 20:55 cyrus.header
398 -rw------- 1 cyrus mail 76 Oct 31 15:28 cyrus.index</computeroutput></screen>
400 <para>As you see, the <guilabel>office_gwdata Inbox</guilabel> is stored not
401 local to the &kontact; current user home, but in the <acronym>IMAP</acronym>
402 <systemitem class="username">groupware</systemitem> user's folders.</para>
406 <para>Now &kontact; is ready to work and store data there. In the calendar
407 application, if &kmail; <acronym>IMAP</acronym> account was of type
408 <quote>disconnected</quote>, the <guilabel>resource</guilabel> window should
409 display the item <guilabel>Imap resource</guilabel> with 3 subitems, that
410 are paths to local home files. Instead, the <guilabel>Contacts</guilabel>
411 application does not show subitems below the <guilabel>Imap
412 resource</guilabel>.</para>
414 <para>You can now login to &kde; with a different username and set up
415 his/her &kontact; client in a very similar manner:</para>
419 <para>Open &kontact; and in the <guilabel>Mail</guilabel> component add an
420 <acronym>IMAP</acronym> account specifying as <guilabel>host</guilabel> the
421 computer where <application>Cyrus</application> server runs (in my case:
422 <literal>192.168.1.3</literal>).</para>
424 <para>Remember to check the <guilabel>Enable interval mail
425 checking</guilabel> and set a value in minutes. When you confirm, you are
426 not prompted for the subfolder creation (since they are found in the
427 <acronym>IMAP</acronym> server), and you see them in the folder tree.</para>
430 <para>Activate the groupware functionality to be able to save data in the
431 <acronym>IMAP</acronym> server.</para>
434 <para>Beware that in <quote>disconnected <acronym>IMAP</acronym></quote>,
435 data are transmitted from a client to <acronym>IMAP</acronym> server only
436 when the clients connects to check for new mail. So if you have your
437 &kontact; clients with an <guilabel>interval mail checking</guilabel> of,
438 for instance, 5 minutes, in the worst case you have a 10 minutes delay
439 between the event being written and its appearance to the other
442 <sect1 id="kontact-imap-readonly">
443 <title>How to have Read Only Access</title>
445 <note><para>Beware that I've been confirmed that Notes
446 <acronym>IMAP</acronym> implementation in &kontact; prior to version 1.01 is
447 broken, so this setup will not work for them, so you want to use them, you
448 need to use the previous setup.</para></note>
450 <para>In the previous setup, we have the same <quote>fake</quote> user, named
451 <systemitem class="username">groupware</systemitem>, that is used by all the
452 <quote>real</quote> &kontact; users (&ie; <systemitem
453 class="username">tony</systemitem>, <systemitem
454 class="username">rohn</systemitem>, <systemitem
455 class="username">amanda</systemitem>, &etc;) through the
456 <acronym>IMAP</acronym> account with its login and password. But this way
457 every real user has the same read/write permissions of the others, since
458 everyone connects as the user <systemitem
459 class="username">groupware</systemitem> to the <acronym>IMAP</acronym>
462 <para>To limit access to some users (typically, providing read-only access),
463 we can use the <acronym>ACL</acronym> (Access Control Lists).</para>
465 <para>Select in &kmail; a subfolder of <guilabel>office_gwdata</guilabel>
466 inbox, for instance <guilabel>Calendar</guilabel>, and right click the
467 mouse. Select <guilabel>Properties</guilabel><guilabel>Access
468 Control</guilabel> tab. Here you can enter the users you want give access to
469 this folder and what they can do.</para>
471 <para>Just to experiment trying to exchange events, we give
472 <quote>All</quote> permission to the user <systemitem
473 class="username">mary</systemitem></para>
475 <para>At <application>cyrus</application> level (in the
476 <acronym>PC</acronym> that runs <acronym>IMAP</acronym> server cyrus, with
477 <application>cyrus</application> tools), we first need to add the user
478 <systemitem class="username">mary</systemitem>, so it's an
479 <acronym>IMAP</acronym> recognized user, and create an
480 <acronym>IMAP</acronym> folder for her.</para>
482 <para>Then we login to GNU/Linux as <systemitem
483 class="username">mary</systemitem> and enter &kontact;. As previously shown,
484 we will setup an <acronym>IMAP</acronym> account in &kmail; with the same
485 data but the one of the user (instead of the fake user <systemitem
486 class="username">groupware</systemitem> and its password, we will use
487 <systemitem class="username">mary</systemitem> and her password).</para>
489 <para>In &kmail; folder tree, this time you will see this structure:
490 <menuchoice><guimenu>office_gwdata</guimenu><guisubmenu>user</guisubmenu>
491 <guisubmenu>groupware</guisubmenu><guimenuitem>Calendar and
492 Tasks</guimenuitem></menuchoice>. Check the mail
493 (<menuchoice><guimenu>File</guimenu><guimenuitem>Check
494 Mail</guimenuitem></menuchoice>) and you will also have an
495 <quote>inbox</quote> folder under <quote>office_gwdata</quote>.</para>
497 <para>Now enable &kmail; groupware functionality, and in <guilabel>Resource
498 folders are subfolders of</guilabel> put the
499 <guimenuitem>inbox</guimenuitem> that is subfolder of
500 <quote>office_gwdata</quote>.</para>
502 <para>Now enable &kmail; groupware functionality, and in <guilabel>Resource
503 folders are subfolders of</guilabel> put the
504 <guimenuitem>inbox</guimenuitem> that is subfolder of
505 <guisubmenu>office_gwdata</guisubmenu>.</para>
507 <para>Now you have two branches of folder under
508 <quote>office_gwdata</quote>:</para>
512 <para><quote>inbox</quote> with Calendar, Contacts, Notes, Tasks and
513 Journal, that are saved on <systemitem class="username">mary</systemitem>
514 <acronym>IMAP</acronym> folders on the <acronym>IMAP</acronym> server</para>
517 <para><quote>user</quote>, with the subfolder <quote>groupware</quote> and
518 the subfolders to which <systemitem class="username">mary</systemitem> has
519 access to (in this example, Calendar and Tasks)</para>
522 <para>&RMB; click on the <quote>user</quote> <quote>Calendar</quote> and
523 check if it's of type Calendar (if not, set it to be), and also if
524 <quote>user</quote><quote>Tasks</quote> is of type Tasks.</para>
525 <para>Now in Calendar you have two available <acronym>IMAP</acronym>
526 resources to write against, so if you create a new event, you are prompted
527 which one use (or if you left the local resources available, you have
529 <para>You have go to the lower left small window in Calendar, the one that
530 shows available resources, and uncheck the ones that don't point to
531 <guilabel>.groupware.directory</guilabel> path (see the tail part of each
532 resource path).</para>
536 <sect1 id="kontact-imap-credits">
537 <title>Credits</title>
539 <para>I'm a newbie, and for this howto I've only provided my time and my
540 will. For the knowledge I have really to thank some guys in freenode
541 channels for their competence, patience and helpfulness.</para>
544 <title>Special thanks to:</title>
546 <para>For the <application>Cyrus</application> <acronym>IMAP</acronym> part
547 in #cyrus channel:</para>
550 <para>[protagonist] Andy Morgan <email>morgan@orst.edu</email></para>
553 <para>[plixed] Okke Timm <email>okke.timm@web.de</email></para>
558 <para>For the &kontact; part in #kontact channel:</para>
561 <para>[till] Till Adam <email>adam@kde.org</email></para>
564 <para>[dfaure] David Faure <email>faure@kde.org</email></para>
567 <para>[mdouhan] Matt Douhan <email>matt@fruitsalad.org</email></para>
573 <para>Thank a lot guys!</para>
575 <para>Ah, and there is also me, [markit] Marco Menardi
576 <email>mmenaz@mail.com</email></para>
580 <sect1 id="kontact-imap-further-reading">
581 <title>Further Reading</title>
584 <title>Reference</title>
585 <listitem><para>KDE: <ulink url="http://www.kde.org">http://www.kde.org</ulink></para></listitem>
586 <listitem><para>&kontact; website: <ulink url="http://www.kontact.org">http://www.kontact.org</ulink></para></listitem>
587 <listitem><para>Kroupware project: <ulink url="http://www.kroupware.org">http://www.kroupware.org</ulink></para></listitem>
588 <listitem><para>&kde; Community Wiki: <ulink url="http://wiki.kde.org">http://wiki.kde.org</ulink></para></listitem>
589 <listitem><para>Wine project: <ulink url="http://www.winehq.org">http://www.winehq.org</ulink></para></listitem>
590 <listitem><para>Cygwin/X project <ulink url="http://x.cygwin.com">http://x.cygwin.com</ulink></para></listitem>
591 <listitem><para>LTSP project: <ulink url="http://www.ltsp.org">http://www.ltsp.org</ulink></para></listitem>
598 <!-- Keep this comment at the end of the file
603 sgml-namecase-general:nil
604 sgml-general-insert-case:lower
605 sgml-minimize-attributes:nil
606 sgml-always-quote-attributes:t
608 sgml-indent-data:true
609 sgml-parent-document:("index.docbook" "book" "chapter")
610 sgml-exposed-tags:nil
611 sgml-local-catalogs:nil
612 sgml-local-ecat-files:nil