-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathdefault.xml
805 lines (795 loc) · 50.3 KB
/
default.xml
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
<?xml version="1.0"?>
<!DOCTYPE psi>
<!--
CONVENTIONS / RULES
===================
Three top-level entries should be observed:
options : This is the catch-all for client options.
accounts : This is used for account data in Psi.
plugins : This is reserved for plugin options and so there's not a terribly good reason to be defining anything in the default option file; it may be interesting for the system defaults file, however.
Naming: All tags should use lower case throughout, please use dashes ("-") to seperate words.
Comments: please add a "comment" attribute to every option you add, describing its use and, if appropriate, possible values.
-->
<psi version="defaults">
<options comment="Client options">
<account comment="Default account options">
<domain comment="Always use the same domain to register with. Leave this empty to allow the user to choose his server." type="QString"/>
</account>
<auto-update comment="Auto updater">
<check-on-startup comment="Check for available updates on startup" type="bool">true</check-on-startup>
</auto-update>
<enable-multicast comment="Enable multicasting messages to multiple recipients" type="bool">false</enable-multicast>
<html comment="Hypertext markup options">
<chat comment="HTML in chats">
<render comment="Display received HTML" type="bool">true</render>
</chat>
<muc comment="HTML in group chats">
<render comment="Display received HTML" type="bool">false</render>
</muc>
</html>
<extended-presence comment="Extended presence options">
<notify comment="Get notified of extended presence changes" type="bool">true</notify>
<tune comment="Tune options">
<publish comment="Publish user tune information" type="bool">false</publish>
<url-filter comment="Ingore tune by media file extension" type="QString">avi asf asx mpg mpg2 mpeg mpe mst mp4 flv 3gp mkv wmv swf rv rm rst dat vob ifo ogv</url-filter>
<title-filter comment="Ignore tune by name via RegExp" type="QString"></title-filter>
<controller-filter comment="List of disabled controllers" type="QString">WinAmp</controller-filter>
</tune>
</extended-presence>
<media>
<audio-message comment="Record and share audio messages" type="bool">true</audio-message>
</media>
<muc comment="Multi-User Chat options">
<bookmarks comment="Options for bookmarked conference rooms">
<auto-join comment="Automatically join bookmarked conference rooms that are configured for auto-joining." type="bool">true</auto-join>
</bookmarks>
<show-joins comment="Display notices of users joining and leaving conferences" type="bool">true</show-joins>
<show-role-affiliation comment="Include role and affiliation changes in join messages, and display notices of changes" type="bool">true</show-role-affiliation>
<show-status-changes comment="Show status changes in groupchat window" type="bool">false</show-status-changes>
<accept-defaults comment="Automatically accept the default room configuration when a new room is created." type="bool">true</accept-defaults>
<auto-configure comment="Automatically open the configuration dialog when a new room is created. This option only has effect if accept-defaults is false." type="bool">true</auto-configure>
<context comment="Options regarding the context being sent when joining a room">
<maxchars comment="The maximum number of characters of context that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</maxchars>
<maxstanzas comment="The maximum number of context items that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</maxstanzas>
<seconds comment="The maximum number of context seconds that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</seconds>
</context>
<recent-joins>
<jids type="QStringList" />
<maximum comment="The maximum number of recently joined rooms that should be remembered" type="int">10</maximum>
</recent-joins>
<reasons type="QStringList" />
<leave-status-message comment="Leave status message" type="QString"></leave-status-message>
</muc>
<pgp comment="PGP encryption options">
<auto-assign comment="Automatically assign known keys to contacts with signed presences and no assigned keys" type="bool">true</auto-assign>
<always-enabled comment="PGP encryption is always enabled" type="bool">false</always-enabled>
<enabled-by-default comment="PGP encryption is enabled by default" type="bool">false</enabled-by-default>
</pgp>
<ui comment="User interface options">
<account comment="Account options">
<data-proxy comment="Allow changing the data transfer proxy" type="bool">true</data-proxy>
<keepalive comment="Show the keepalive option" type="bool">true</keepalive>
<sm comment="Option related to the Stream Management UI">
<show comment="Show the Stream Management UI" type="bool">true</show>
</sm>
<manual-host comment="Enable manual host configuration" type="bool">true</manual-host>
<priority comment="Allow changing the priority" type="bool">true</priority>
<privacy comment="Options related to the privacy UI">
<show comment="Show the privacy UI" type="bool">true</show>
</privacy>
<proxy comment="Options related to the proxy UI">
<show comment="Show the proxy UI" type="bool">true</show>
</proxy>
<resource comment="Allow changing the resource" type="bool">true</resource>
<custom-authid comment="Allow changing the authentication identity" type="bool">true</custom-authid>
<security comment="Options related to the seciruty UI">
<show comment="Show the security UI" type="bool">true</show>
</security>
<single comment="Limit the client to a single account" type="bool">false</single>
</account>
<message comment="Message options">
<enabled comment="Enable message (i.e. non-chat) functionality" type="bool">true</enabled>
<auto-grab-urls-from-clipboard type="bool">false</auto-grab-urls-from-clipboard>
<auto-popup type="bool">false</auto-popup>
<auto-popup-headlines type="bool">false</auto-popup-headlines>
<show-character-count type="bool">false</show-character-count>
<show-subjects type="bool">true</show-subjects>
<use-jid-auto-completion type="bool">true</use-jid-auto-completion>
<size type="QString"></size> <!-- will be invalid when converted to QSize so we can detect first load -->
</message>
<chat comment="Chat dialog options">
<theme comment="The theme used for chat messages rendering" type="QString">psi/new_classic</theme>
<central-toolbar comment="Have a central toolbar" type="bool">true</central-toolbar>
<size comment="Remembered window size" type="QSize">
</size><!-- will be invalid when converted to QSize so we can detect first load -->
<opacity comment="Opacity percentage of chat dialogs" type="int">100</opacity>
<legacy-formatting comment="This enables legacy usenet-style formatting (// ** __)" type="bool">true</legacy-formatting>
<avatars comment="Avatar options">
<size comment="Maximum size of the avatar" type="int">64</size>
<show comment="Show avatars in the chat dialog" type="bool">true</show>
</avatars>
<alert-for-already-open-chats type="bool">true</alert-for-already-open-chats>
<auto-popup type="bool">false</auto-popup>
<auto-capitalize type="bool">false</auto-capitalize>
<auto-scroll-to-bottom type="bool">false</auto-scroll-to-bottom>
<raise-chat-windows-on-new-messages type="bool">false</raise-chat-windows-on-new-messages>
<switch-tab-on-new-messages type="bool">false</switch-tab-on-new-messages>
<use-chat-says-style type="bool">false</use-chat-says-style>
<use-expanding-line-edit type="bool">true</use-expanding-line-edit>
<use-small-chats type="bool">false</use-small-chats>
<use-message-icons type="bool">true</use-message-icons>
<scaled-message-icons type="bool">false</scaled-message-icons>
<show-status-changes type="bool">true</show-status-changes>
<show-previews type="bool">true</show-previews>
<warn-before-clear type="bool">true</warn-before-clear>
<only-paste-template type="bool">false</only-paste-template>
<css type="QString">/*Last message correction*/
QWidget#bottomFrame>QWidget>QTextEdit[correction="true"] {
background-color: rgb(160,160,0);
}</css>
<status-with-priority comment="Show priority with status change" type="bool">false</status-with-priority>
<log-height type="int">325</log-height>
<chatedit-height type="int">10</chatedit-height>
<default-jid-mode comment="Default jid mode: barejid | auto" type="QString">auto</default-jid-mode>
<default-jid-mode-ignorelist comment="Default autojid mode ignore list: jid1,jid2,..." type="QString"></default-jid-mode-ignorelist>
<history comment="Message history options">
<preload-history-size comment="The number of preloaded messages" type="int">5</preload-history-size>
</history>
</chat>
<save>
<toolbars-state type="QByteArray"/>
<log-width type="int">500</log-width>
<roster-width type="int">220</roster-width>
</save>
<history comment="History dialog options">
<size comment="Remembered window size" type="QSize">
<width>640</width>
<height>480</height>
</size>
</history>
<contactlist comment="Contact list options">
<auto-delete-unlisted comment="Automatically remove an unlisted contact from the contact list if it does not have any pending messages anymore" type="bool">false</auto-delete-unlisted>
<opacity comment="Opacity percentage of the contact list" type="int">100</opacity>
<status-messages comment="Status messages for contacts">
<single-line comment="Show status messages on the same line as the nickname" type="bool">false</single-line>
<show comment="Show status messages" type="bool">true</show>
</status-messages>
<tooltip comment="Display options for the contact list tooltips">
<css type="QString"></css>
<avatar comment="Display avatar" type="bool">true</avatar>
<client-version comment="Display client version information" type="bool">true</client-version>
<geolocation comment="Display geolocation information" type="bool">true</geolocation>
<last-status comment="Display the last status" type="bool">true</last-status>
<pgp comment="Display PGP information" type="bool">true</pgp>
</tooltip>
<temp-no-roster-animation comment="Disable animated icons. This option will be removed as soon as the contactlist code is optimized enough" type="bool">false</temp-no-roster-animation>
<account-sort-style type="QString">alpha</account-sort-style>
<css type="QString">/* frame of avatar - general settings */
RosterAvatarFrame * {
margin: 1px;
}
/* remove weird lines between roster window elements */
QToolBar {
border: 0px;
}
/* frame of avatar - avatar */
QLabel#lb_avatar {
margin-left: 0px;
margin-top: 2px;
margin-bottom: 2px;
border: 1px solid #949494;
border-radius: 3px;
}
/* frame of avatar - nick */
QLabel#lb_nick {
margin: 2px;
margin-right: 1px;
margin-bottom: 3px;
border: 1px solid #949494;
border-radius: 3px;
}
/* frame of avatar - buttons of PEP and status */
QToolButton#tb_status, #tb_mood, #tb_activity {
margin-left: 1px;
margin-right: 1px;
margin-bottom: 2px;
width: 100%;
}
QToolButton#tb_status {
margin-top: 0px;
margin-bottom: 1px;
}
/* frame of avatar - button of status, arrow */
QToolButton#tb_status::menu-indicator {
background: argb(0,0,0,0);
}
/* frame of avatar - field of status message */
QLineEdit#le_status_text {
margin-right: 0px;
margin-bottom: 2px;
}</css>
<always-on-top type="bool">false</always-on-top>
<automatically-resize-roster type="bool">false</automatically-resize-roster>
<grow-roster-upwards type="bool">true</grow-roster-upwards>
<disable-scrollbar type="bool">true</disable-scrollbar>
<contact-sort-style type="QString">status</contact-sort-style>
<disable-service-discovery type="bool">false</disable-service-discovery>
<enable-groups type="bool">true</enable-groups>
<ensure-contact-visible-on-event type="bool">true</ensure-contact-visible-on-event>
<group-sort-style type="QString">alpha</group-sort-style>
<lockdown-roster type="bool">false</lockdown-roster>
<raise-on-new-event type="bool">false</raise-on-new-event>
<quit-on-close type="bool">false</quit-on-close>
<raise-inactive type="bool">true</raise-inactive>
<show-avatar-frame type="bool">true</show-avatar-frame>
<show>
<agent-contacts type="bool">true</agent-contacts>
<away-contacts type="bool">true</away-contacts>
<hidden-contacts-group type="bool">true</hidden-contacts-group>
<offline-contacts type="bool">false</offline-contacts>
<self-contact type="bool">true</self-contact>
</show>
<show-group-counts type="bool">true</show-group-counts>
<show-menubar type="bool">false</show-menubar>
<disable-scrollbar type="bool">true</disable-scrollbar>
<avatars>
<show type="bool">true</show>
<avatars-at-left type="bool">true</avatars-at-left>
<use-default-avatar type="bool">true</use-default-avatar>
<size type="int">26</size>
<radius type="int">5</radius>
</avatars>
<show-mood-icons type="bool">true</show-mood-icons>
<show-activity-icons type="bool">true</show-activity-icons>
<show-geolocation-icons type="bool">true</show-geolocation-icons>
<show-status-icons type="bool">true</show-status-icons>
<status-icon-over-avatar type="bool">true</status-icon-over-avatar>
<show-tune-icons type="bool">true</show-tune-icons>
<show-client-icons type="bool">true</show-client-icons>
<show-all-client-icons type="bool">false</show-all-client-icons>
<toolbars/>
<use-left-click type="bool">false</use-left-click>
<use-single-click type="bool">false</use-single-click>
<use-status-change-animation type="bool">true</use-status-change-animation>
<aio-left-roster type="bool">false</aio-left-roster>
<use-transport-icons type="bool">true</use-transport-icons>
<saved-window-geometry type="QRect" >
<x>64</x>
<y>64</y>
<width>220</width>
<height>360</height>
</saved-window-geometry>
<saved-window-geometry-frame type="QRect" >
<x>0</x>
<y>0</y>
<width>0</width>
<height>0</height>
</saved-window-geometry-frame>
<saved-window-geometry-screen type="int">0</saved-window-geometry-screen>
<saved-window-geometry-maximized type="bool">false</saved-window-geometry-maximized>
<saved-window-geometry-fullscreen type="bool">false</saved-window-geometry-fullscreen>
<roster-avatar-frame comment="Options for roster avatar frame">
<avatar>
<size type="int">52</size>
<margin type="int">0</margin>
</avatar>
</roster-avatar-frame>
<autohide-contact-filter comment="Hide contacts filter on contact ativate" type="bool">true</autohide-contact-filter>
<menu-titles comment="Show menu title as a first line" type="bool">false</menu-titles>
<group-indent type="int">4</group-indent>
</contactlist>
<menu comment="Options for the menu">
<account comment="Options for the account-specific menu">
<admin comment="Show the 'admin' menu" type="bool">true</admin>
</account>
<contact comment="Options for the contact-specific menu">
<active-chats comment="Show the 'active chats' menu" type="bool">true</active-chats>
<custom-picture comment="Show the 'picture' menu" type="bool">true</custom-picture>
</contact>
<main comment="Options for the main menu">
<change-profile comment="Show the 'change profile' menu" type="bool">true</change-profile>
</main>
<status comment="Options for the status menu">
<chat comment="Enable free for chat" type="bool">true</chat>
<xa comment="Enable extended away/not available" type="bool">true</xa>
<invisible comment="Enable invisibility" type="bool">false</invisible>
</status>
<view comment="Options for the view menu">
<show-away comment="Show the 'show away/xa' toggle" type="bool">false</show-away>
</view>
</menu>
<muc comment="Multi-User Chat options">
<hide-on-autojoin type="bool">false</hide-on-autojoin>
<userlist comment="Userlist options">
<show-groups type="bool">true</show-groups>
<use-slim-group-headings type="bool">false</use-slim-group-headings>
<nick-coloring type = "bool">true</nick-coloring>
<show-client-icons type = "bool">true</show-client-icons>
<show-affiliation-icons type = "bool">false</show-affiliation-icons>
<contact-sort-style type = "QString">alpha</contact-sort-style>
<show-status-icons type = "bool">false</show-status-icons>
<disable-scrollbar type = "bool">true</disable-scrollbar>
<avatars>
<show type="bool">true</show>
<size type="int">20</size>
<avatars-at-left type="bool">true</avatars-at-left>
<radius type="int">3</radius>
</avatars>
</userlist>
<status-with-priority comment="Show priority with status change" type="bool">false</status-with-priority>
<show-initial-joins comment="Show joins on your MUC join (with status and priority, depends on options)" type="bool">false</show-initial-joins>
<show-technical-kicks comment="Show technical MUC kicks (a result of connection loss for example)" type="bool">false</show-technical-kicks>
<log-width type="int">500</log-width>
<roster-width type="int">150</roster-width>
<roster-at-left type="bool">false</roster-at-left>
<theme comment="The theme used for groupchat messages rendering" type="QString">psi/new_classic</theme>
<highlight-words type="QStringList" />
<size comment="Remembered window size" type="QSize">
<width>960</width>
<height>620</height>
</size>
<use-highlighting type="bool">true</use-highlighting><use-nick-coloring type="bool">true</use-nick-coloring><use-hash-nick-coloring type="bool">true</use-hash-nick-coloring><colored-history type="bool">true</colored-history>
<allow-highlight-events type="bool">false</allow-highlight-events>
<hide-when-closing type="bool">false</hide-when-closing>
</muc>
<spell-check comment="Options related to the spell checker">
<enabled comment="Whether the spell checker is enabled" type="bool">true</enabled>
<langs type="QString"></langs>
</spell-check>
<disable-send-button type="bool">true</disable-send-button>
<systemtray comment="Options related to the system tray">
<enable type="bool">true</enable>
<use-double-click type="bool">false</use-double-click>
</systemtray>
<flash-windows comment="Allow windows to flash upon activity" type="bool">true</flash-windows>
<automatically-copy-selected-text type="bool">false</automatically-copy-selected-text>
<emoticons>
<use-emoticons type="bool">true</use-emoticons>
</emoticons>
<file-transfer>
<auto-popup type="bool">false</auto-popup>
</file-transfer>
<last-used-open-path type="QString"></last-used-open-path>
<last-used-save-path type="QString"></last-used-save-path>
<look>
<colors>
<contactlist>
<background type="QColor"/>
<grouping>
<header-background type="QColor">#f0f0f0</header-background>
<header-foreground type="QColor">#5a5a5a</header-foreground>
</grouping>
<profile>
<header-background type="QColor">#969696</header-background>
<header-foreground type="QColor">#ffffff</header-foreground>
</profile>
<status>
<away type="QColor">#004bb4</away>
<do-not-disturb type="QColor">#7e0000</do-not-disturb>
<offline type="QColor">#646464</offline>
<online type="QColor"/>
</status>
<status-change-animation1 type="QColor">#000000</status-change-animation1>
<status-change-animation2 type="QColor">#969696</status-change-animation2>
<status-messages type="QColor">#808080</status-messages>
</contactlist>
<tooltip>
<enable comment="Enable tooltip coloring feature" type="bool">true</enable>
<background comment="Tooltip background color" type="QColor">#e9ecc7</background>
<text comment="Tooltip text color" type="QColor">#000000</text>
</tooltip>
<muc>
<nick-colors type="QStringList" >
<item>Blue</item>
<item>Green</item>
<item>Orange</item>
<item>Purple</item>
<item>Red</item>
</nick-colors>
<role-moderator type="QColor">#910000</role-moderator>
<role-participant type="QColor">#00008a</role-participant>
<role-visitor type="QColor">#336600</role-visitor>
<role-norole type="QColor">black</role-norole>
</muc>
<messages comment="Message coloring.">
<received type="QColor" comment="Color used to indicate received messages.">#0000ff</received>
<sent type="QColor" comment="Color used to indicate sent messages.">#ff0000</sent>
<informational type="QColor" comment="Color used to indicate informational (status change, spooled) messages.">#008000</informational>
<usertext type="QColor" comment="Color used to indicate additional text for informational messages.">#606060</usertext>
<highlighting type="QColor">#FF0000</highlighting>
<link type="QColor">#000080</link>
<link-visited type="QColor">#400080</link-visited>
</messages>
<chat>
<composing-color type="QColor">darkGreen</composing-color>
<unread-message-color type="QColor">red</unread-message-color>
<inactive-color type="QColor">grey</inactive-color>
</chat>
<passive-popup>
<border type="QColor">#5297f9</border>
</passive-popup>
</colors>
<contactlist>
<use-outlined-group-headings type="bool">false</use-outlined-group-headings>
<use-slim-group-headings type="bool">false</use-slim-group-headings>
</contactlist>
<font>
<chat type="QString">Sans Serif,11,-1,5,50,0,0,0,0,0</chat>
<contactlist type="QString">Sans Serif,11,-1,5,50,0,0,0,0,0</contactlist>
<message type="QString">Sans Serif,11,-1,5,50,0,0,0,0,0</message>
<passive-popup type="QString">Sans Serif,9,-1,5,50,0,0,0,0,0</passive-popup>
</font>
<css type="QString" />
</look>
<notifications>
<send-receipts type="bool" >true</send-receipts>
<request-receipts type="bool" >true</request-receipts>
<alert-style type="QString">animate</alert-style>
<typename type="QString">Classic</typename>
<bounce-dock type="QString">forever</bounce-dock>
<passive-popups>
<delays>
<chat type="int">5000</chat>
<file type="int">5000</file>
<message type="int">5000</message>
<gc-message type="int">5000</gc-message>
<status type="int">2000</status>
</delays>
<enabled type="bool">false</enabled>
<css type="QString"></css>
<top-to-bottom type="bool">false</top-to-bottom>
<at-left-corner type="bool">false</at-left-corner>
<incoming-chat type="bool">true</incoming-chat>
<composing type="bool">true</composing>
<incoming-file-transfer type="bool">true</incoming-file-transfer>
<incoming-headline type="bool">true</incoming-headline>
<incoming-message type="bool">true</incoming-message>
<notify-every-muc-message type="bool">false</notify-every-muc-message>
<maximum-jid-length type="int">25</maximum-jid-length>
<maximum-text-length type="int">300</maximum-text-length>
<maximum-status-length type="int">-1</maximum-status-length>
<avatar-size type="int">48</avatar-size>
<suppress-while-away type="bool">false</suppress-while-away>
<suppress-while-dnd type="bool">true</suppress-while-dnd>
<dbus>
<transient-hint type="bool">false</transient-hint>
</dbus>
<status>
<offline type="bool">true</offline>
<online type="bool">true</online>
<other-changes type="bool">false</other-changes>
</status>
</passive-popups>
<popup-dialogs>
<suppress-when-not-on-roster type="bool">false</suppress-when-not-on-roster>
<suppress-while-away type="bool">false</suppress-while-away>
</popup-dialogs>
<sounds>
<chat-message type="QString">sound/chat2.wav</chat-message>
<groupchat-message type="QString">sound/chat2.wav</groupchat-message>
<completed-file-transfer type="QString">sound/ft_complete.wav</completed-file-transfer>
<contact-offline type="QString">sound/offline.wav</contact-offline>
<contact-online type="QString">sound/online.wav</contact-online>
<enable type="bool">true</enable>
<incoming-file-transfer type="QString">sound/ft_incoming.wav</incoming-file-transfer>
<incoming-headline type="QString">sound/chat2.wav</incoming-headline>
<incoming-message type="QString">sound/chat2.wav</incoming-message>
<new-chat type="QString">sound/chat1.wav</new-chat>
<notify-every-muc-message type="bool">false</notify-every-muc-message>
<outgoing-chat type="QString">sound/send.wav</outgoing-chat>
<silent-while-away type="bool">false</silent-while-away>
<system-message type="QString">sound/chat2.wav</system-message>
<unix-sound-player type="QString"/>
</sounds>
<successful-subscription type="bool">true</successful-subscription>
</notifications>
<service-discovery>
<automatically-get-info type="bool">true</automatically-get-info>
<automatically-get-items type="bool">false</automatically-get-items>
<items-per-page type="int" comment="Number of items per page for page-by-page feature (XEP-0059). 0 turns this feature off.">100</items-per-page>
<recent-jids type="QStringList" />
</service-discovery>
<tabs>
<show-tab-icons type="bool">true</show-tab-icons>
<can-close-inactive-tab type="bool">true</can-close-inactive-tab>
<show-tab-close-buttons type="bool">true</show-tab-close-buttons>
<put-tabs-at-bottom type="bool">false</put-tabs-at-bottom>
<use-tabs type="bool">true</use-tabs>
<mouse-middle-button type="QString">close</mouse-middle-button> <!-- hide|close|detach -->
<mouse-doubleclick-action type="QString">detach</mouse-doubleclick-action>
<size type="QString"></size> <!-- will be invalid when converted to QSize so we can detect first load -->
<grouping type="QString" comment="A ':' seperated list of groups of kinds of tabs to keep in the same tabset. 'C' for chat and 'M' for mucs. 'A' means using all in one window patch.">CM</grouping>
<group-state comment="Saved state data of the tabsets defined by options.ui.tabs.grouping">
<CM>
<size-frame type="QRect">
<x>300</x>
<y>200</y>
<width>963</width>
<height>658</height>
</size-frame>
<size-maximized type="bool">false</size-maximized>
<size-fullscreen type="bool">false</size-fullscreen>
<size type="QRect">
<x>301</x>
<y>231</y>
<width>961</width>
<height>626</height>
</size>
<size-screen type="int">0</size-screen>
</CM>
</group-state>
<tab-singles type="QString" comment="Tab types that would have been untabbed are given their own tabset. 'C' for chat and 'M' for mucs"/>
<use-tab-shortcuts type="bool">true</use-tab-shortcuts>
<show-tab-buttons type="bool">true</show-tab-buttons>
<multi-rows comment="Use multi rows mode for chat tab bar" type="bool">false</multi-rows>
<current-index-at-bottom comment="Move current row to bottom in multi-row mode" type="bool">true</current-index-at-bottom>
<disable-wheel-scroll type="bool">false</disable-wheel-scroll>
</tabs>
</ui>
<shortcuts comment="Shortcuts">
<alist comment="Action List" >
<menu_disco type="QKeySequence" comment="Service Discovery"></menu_disco>
<menu_add_contact type="QKeySequence" comment="Add Contact"></menu_add_contact>
<menu_new_message type="QKeySequence" comment="New Message"></menu_new_message>
<menu_join_groupchat type="QKeySequence" comment="Join Group Chat"></menu_join_groupchat>
<menu_account_setup type="QKeySequence" comment="Account Setup"></menu_account_setup>
<menu_options type="QKeySequence" comment="Options"></menu_options>
<menu_file_transfer type="QKeySequence" comment="File Transfer"></menu_file_transfer>
<menu_toolbars type="QKeySequence" comment="Toolbars"></menu_toolbars>
<menu_xml_console type="QKeySequence" comment="XML Console"></menu_xml_console>
<menu_change_profile type="QKeySequence" comment="Change Profile"></menu_change_profile>
<menu_play_sounds type="QKeySequence" comment="Play Sounds"></menu_play_sounds>
<menu_quit type="QKeySequence" comment="Quit"></menu_quit>
<button_options type="QKeySequence" comment="Options"></button_options>
<button_status type="QKeySequence" comment="Status"></button_status>
<enable_groups type="QKeySequence" comment="Enable Groups"></enable_groups>
<view_groups type="QKeySequence" comment="View Groups"></view_groups>
<show_offline type="QKeySequence" comment="Show Offline Contacts"></show_offline>
<show_away type="QKeySequence" comment="Show Away Contacts"></show_away>
<show_hidden type="QKeySequence" comment="Show Hidden Contacts"></show_hidden>
<show_agents type="QKeySequence" comment="Show Agents"></show_agents>
<show_self type="QKeySequence" comment="Show Self"></show_self>
<show_statusmsg type="QKeySequence" comment="Show Status Message"></show_statusmsg>
<publish_tune type="QKeySequence" comment="Publish Tune"></publish_tune>
<active_contacts type="QKeySequence" comment="Active contacts"/>
<status_all type="QKeySequence" comment="Status All"></status_all>
<status_group type="QKeySequence" comment="Status Group"></status_group>
<status_chat type="QKeySequence" comment="Status Chat"></status_chat>
<status_online type="QKeySequence" comment="Status Online"></status_online>
<status_away type="QKeySequence" comment="Status Away"></status_away>
<status_xa type="QKeySequence" comment="Status XA"></status_xa>
<status_dnd type="QKeySequence" comment="Status DND"></status_dnd>
<status_invisible type="QKeySequence" comment="Status Invisible"></status_invisible>
<status_offline type="QKeySequence" comment="Status Offline"></status_offline>
<choose_status type="QKeySequence" comment="Choose status"></choose_status>
<reconnect_all type="QKeySequence" comment="Reconnect all accounts"></reconnect_all>
<set_mood type="QKeySequence" comment="Set Mood"/>
<set_activity type="QKeySequence" comment="Set Activity"/>
<set_geoloc type="QKeySequence" comment="Set Geolocation"/>
<help_readme type="QKeySequence" comment="README"></help_readme>
<help_online_forum type="QKeySequence" comment="Psi Forum (Online)"></help_online_forum>
<help_online_help type="QKeySequence" comment="Open Help"></help_online_help>
<help_online_wiki type="QKeySequence" comment="Open Wiki"></help_online_wiki>
<help_online_home type="QKeySequence" comment="Open Home Page"></help_online_home>
<help_psi_muc type="QKeySequence" comment="Help Psi MUC"></help_psi_muc>
<help_report_bug type="QKeySequence" comment="Report Bug"></help_report_bug>
<help_about type="QKeySequence" comment="About Psi"></help_about>
<help_about_psimedia type="QKeySequence" comment="About PsiMedia" />
<help_about_qt type="QKeySequence" comment="About Qt"></help_about_qt>
<help_diag_qcaplugin type="QKeySequence" comment="QCA plugin diag"></help_diag_qcaplugin>
<help_diag_qcakeystore type="QKeySequence" comment="QCA key store diag"></help_diag_qcakeystore>
<chat_active_contacts type="QKeySequence"></chat_active_contacts>
<chat_add_contact type="QKeySequence"></chat_add_contact>
<chat_clear type="QKeySequence"></chat_clear>
<chat_compact type="QKeySequence"></chat_compact>
<chat_file type="QKeySequence"></chat_file>
<chat_find type="QKeySequence"></chat_find>
<chat_history type="QKeySequence"></chat_history>
<chat_html_text type="QKeySequence"></chat_html_text>
<chat_icon type="QKeySequence"></chat_icon>
<chat_info type="QKeySequence"></chat_info>
<chat_pin_tab type="QKeySequence"></chat_pin_tab>
<chat_ps type="QKeySequence"></chat_ps>
<chat_share_files type="QKeySequence"></chat_share_files>
<chat_templates type="QKeySequence"></chat_templates>
<chat_voice type="QKeySequence"></chat_voice>
<gchat_info type="QKeySequence"></gchat_info>
<gchat_clear type="QKeySequence"></gchat_clear>
<gchat_configure type="QKeySequence"></gchat_configure>
<gchat_find type="QKeySequence"></gchat_find>
<gchat_html_text type="QKeySequence"></gchat_html_text>
<gchat_icon type="QKeySequence"></gchat_icon>
<gchat_pin_tab type="QKeySequence"></gchat_pin_tab>
<gchat_ps type="QKeySequence"></gchat_ps>
<gchat_share_files type="QKeySequence"></gchat_share_files>
<gchat_templates type="QKeySequence"></gchat_templates>
<gchat_set_topic type="QKeySequence" comment="Set chat topic"/>
</alist>
<chat comment="Shortcuts in the chat dialog">
<next-tab type="QVariantList" comment="Switch to the next tab">
<item type="QKeySequence">Ctrl+PgDown</item>
<item type="QKeySequence">Ctrl+Tab</item>
</next-tab>
<previous-tab type="QVariantList" comment="Switch to the previous tab">
<item type="QKeySequence">Ctrl+PgUp</item>
<item type="QKeySequence">Ctrl+Shift+Tab</item>
</previous-tab>
<find-next type="QKeySequence" comment="Find text next"></find-next>
<find-prev type="QKeySequence" comment="Find text previous"></find-prev>
<find type="QKeySequence" comment="Find text">Ctrl+F</find>
<send type="QVariantList" comment="Sends the message">
<item type="QKeySequence">Return</item>
<item type="QKeySequence">Enter</item>
</send>
<clear type="QKeySequence" comment="Clear the text"/>
<quick-command type="QKeySequence" comment="Change to quick command mode">Ctrl+Space</quick-command>
<show-messageLast type="QKeySequence" comment="Show last message" >Alt+Home</show-messageLast>
<show-messageFirst type="QKeySequence" comment="Show first message" >Alt+End</show-messageFirst>
<show-messageNext type="QKeySequence" comment="Show next message" >Ctrl+Down</show-messageNext>
<show-messagePrev type="QKeySequence" comment="Show prev message" >Ctrl+Up</show-messagePrev>
<change-case type="QKeySequence" comment="Change case of letters in the chat edit" >Ctrl+Alt+x</change-case>
<minimize type="QKeySequence" comment="Minimize active chat window"/>
</chat>
<contactlist comment="Shortcuts in the contactlist">
<assign-custom-avatar type="QKeySequence" comment="Assign a custom avatar to the selected contact"/>
<clear-custom-avatar type="QKeySequence" comment="Remove custom avatar from the selected contact"/>
<delete type="QKeySequence" comment="Delete the selected contact">Shift+Del</delete>
<chat type="QKeySequence" comment="Open a chat to the selected contact"></chat>
<message type="QKeySequence" comment="Send a message to the selected contact">Ctrl+M</message>
<event type="QKeySequence" comment="Receive incoming event">Ctrl+R</event>
<rename type="QKeySequence" comment="Rename the selected contact">F2</rename>
<login-transport type="QKeySequence" comment="Log on to the selected transport">Ctrl+L</login-transport>
</contactlist>
<common comment="Common actions">
<scroll-up type="QKeySequence" comment="Scroll up">Shift+PgUp</scroll-up>
<scroll-down type="QKeySequence" comment="Scroll down">Shift+PgDown</scroll-down>
<close type="QVariantList" comment="Close the current window/tab">
<item type="QKeySequence">Ctrl+Q</item>
<item type="QKeySequence">Ctrl+W</item>
</close>
<hide type="QVariantList" comment="Hide the current window/tab">
<item type="QKeySequence">ESC</item>
<item type="QKeySequence">Alt+H</item>
</hide>
<history type="QKeySequence" comment="Open the message history">Ctrl+H</history>
<user-info type="QKeySequence" comment="Show the user info of the contact">Ctrl+I</user-info>
</common>
<global comment="Shortcuts available from outside of the application">
<event type="QKeySequence" comment="Receive incoming event"/>
<toggle-visibility type="QKeySequence" comment="Show/hide the application"/>
<bring-to-front type="QKeySequence" comment="Bring the application to front"/>
<new-blank-message type="QKeySequence" comment="Send new message"/>
<boss-key type="QKeySequence" comment="Hide all active windows"></boss-key>
</global>
<message comment="Shortcuts in the message dialog">
<send type="QVariantList" comment="Send the message">
<item type="QKeySequence">Ctrl+Return</item>
<item type="QKeySequence">Ctrl+Enter</item>
<item type="QKeySequence">Alt+Return</item>
<item type="QKeySequence">Alt+Enter</item>
</send>
</message>
<status comment="Shortcuts in the status dialog">
<set type="QVariantList" comment="Set the status message">
<item type="QKeySequence">Ctrl+Return</item>
<item type="QKeySequence">Ctrl+Enter</item>
<item type="QKeySequence">Alt+Return</item>
<item type="QKeySequence">Alt+Enter</item>
</set>
</status>
<service-discovery comment="Shortcuts in the service discovery dialog"/>
<history comment="Shortcuts in the history dialog">
<find type="QKeySequence" comment="Find text">Ctrl+F</find>
</history>
</shortcuts>
<contactlist>
<hide-on-start type="bool">false</hide-on-start>
<resolve-nicks-on-contact-add type="bool">true</resolve-nicks-on-contact-add>
<use-toolwindow type="bool">false</use-toolwindow>
<autohide-interval type="int">0</autohide-interval>
</contactlist>
<external-control>
<adhoc-remote-control>
<enable type="bool">false</enable>
</adhoc-remote-control>
</external-control>
<iconsets>
<custom-status/>
<service-status/>
<emoticons type="QStringList" >
<item>default</item>
</emoticons>
<status type="QString">default</status>
<system type="QString">default</system>
<moods type="QString">default</moods>
<activities type="QString">default</activities>
<affiliations type="QString">default</affiliations>
<clients type="QString">default</clients>
<clients-capsfile type="QString" comment="Override file for internal client_icons.txt"/>
</iconsets>
<messages>
<default-outgoing-message-type type="QString">chat</default-outgoing-message-type>
<exclude-muc-from-ignore type="bool">true</exclude-muc-from-ignore>
<force-incoming-message-type type="QString">no</force-incoming-message-type>
<ignore-headlines type="bool">false</ignore-headlines>
<ignore-non-roster-contacts type="bool">false</ignore-non-roster-contacts>
<send-composing-events type="bool">true</send-composing-events>
<send-composing-events-at-start type="bool">false</send-composing-events-at-start>
<send-inactivity-events type="bool">false</send-inactivity-events>
<dont-send-composing-events type="bool">false</dont-send-composing-events>
</messages>
<p2p>
<bytestreams>
<external-address type="QString"/>
<listen-port type="int">8010</listen-port>
</bytestreams>
</p2p>
<service-discovery>
<enable-entity-capabilities type="bool">true</enable-entity-capabilities>
<last-activity type="bool">true</last-activity>
</service-discovery>
<status>
<ask-for-message-on-offline type="bool">false</ask-for-message-on-offline>
<ask-for-message-on-online type="bool">false</ask-for-message-on-online>
<ask-for-message-on-chat type="bool">true</ask-for-message-on-chat>
<ask-for-message-on-away type="bool">true</ask-for-message-on-away>
<ask-for-message-on-xa type="bool">true</ask-for-message-on-xa>
<ask-for-message-on-dnd type="bool">true</ask-for-message-on-dnd>
<auto-away>
<away-after type="int">10</away-after>
<force-priority type="bool">false</force-priority>
<force-xa-priority type="bool">false</force-xa-priority>
<not-availible-after type="int">30</not-availible-after>
<offline-after type="int">0</offline-after>
<use-away type="bool">true</use-away>
<use-not-availible type="bool">true</use-not-availible>
<use-offline type="bool">false</use-offline>
</auto-away>
<last-message comment="Last status message" type="QString"/>
<last-priority comment="Last priority" type="QString"/>
<last-status comment="Last status" type="QString">away</last-status>
<last-overwrite>
<by-template type="bool">true</by-template>
<by-status type="bool">false</by-status>
</last-overwrite>
<presets/>
<presets-in-status-menus type="QString" comment="'yes', 'no' or 'submenu'">submenu</presets-in-status-menus>
<show-only-online-offline type="bool">false</show-only-online-offline>
<show-choose type="bool">true</show-choose>
<show-edit-presets type="bool">true</show-edit-presets>
<show-reconnect comment="Show Reconnect in status menus" type="bool">false</show-reconnect>
<default-priority>
<online type="int">50</online>
<chat type="int">50</chat>
<away type="int">40</away>
<xa type="int">30</xa>
<dnd type="int">20</dnd>
<invisible type="int">10</invisible>
</default-priority>
</status>
<subscriptions>
<automatically-allow-authorization type="bool">false</automatically-allow-authorization>
</subscriptions>
<vcard>
<query-own-vcard-on-login type="bool">true</query-own-vcard-on-login>
</vcard>
<xml-console>
<enable-at-login type="bool">false</enable-at-login>
</xml-console>
<media>
<devices>
<audio-output type="QString"/>
<audio-input type="QString"/>
<video-input type="QString"/>
</devices>
</media>
<history comment="General history options">
<store-muc-private comment="Keep a history of correspondence for MUC private chats" type="bool">true</store-muc-private>
</history>
<keychain comment="Keyring manager options">
<enabled comment="Store passwords in keyring manager only" type="bool">true</enabled>
</keychain>
</options>
<accounts comment="Account definitions and options"/>
<plugins comment="Plugin options"/>
</psi>