This file is indexed.

/usr/share/config.kcfg/smb4k.kcfg is in smb4k 2.1.0-1.

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
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
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
                          http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
  <include>QString</include>
  <include>QDir</include>
  <include>QUrl</include>
  <kcfgfile name="smb4krc" />

<!-- User Interface -->

  <group name="UserInterface">
    <entry name="ShowCustomBookmarkLabel" type="Bool">
      <label>Show custom bookmark label if available</label>
      <whatsthis>Do not show the name of the share that is represented by the bookmark but the custom label that was defined in the bookmark editor.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="StartMainWindowDocked" type="Bool">
      <label>Start docked</label>
      <whatsthis>Start the application docked to the system tray, i.e. only the system tray widget is shown and the main window is hidden. You can bring the main window up by clicking on the system tray widget or by choosing "Restore" from its popup menu.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ShowType" type="Bool">
      <label>Show the type of the share</label>
      <whatsthis>The type of a share will be displayed in a separate column in the network neighborhood browser. It can either be Disk, Print or IPC.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="ShowIPAddress" type="Bool">
      <label>Show the IP address of the server</label>
      <whatsthis>The IP address of the server will be displayed in a separate column in the network neighborhood browser.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="ShowComment" type="Bool">
      <label>Show the comment</label>
      <whatsthis>The comment describing the server or share will be displayed in a separate column in the network neighborhood browser.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="ShowNetworkItemToolTip" type="Bool">
      <label>Show a tooltip with information about the network item</label>
      <whatsthis>The tooltip shows various information about the current network item.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="AutoExpandNetworkItems" type="Bool">
      <label>Automatically expand domains and hosts</label>
      <whatsthis>Automatically expand domain and host items when a list of associated network items (domain members or shares) is added or updated. Please note that a domain or host item will always be expanded when you execute it.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="ShowShareToolTip" type="Bool">
      <label>Show a tooltip with information about the share</label>
      <whatsthis>The tooltip shows various information about the current share.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="SharesViewMode" type="Enum">
      <label>View mode of the shares view:</label>
      <whatsthis>This setting determines the view mode of the shares view. There are two modes: the icon view and the list view.</whatsthis>
      <choices>
        <choice name="IconView">
          <label>Icon View</label>
        </choice>
        <choice name="ListView">
          <label>List View</label>
        </choice>
      </choices>
      <default>IconView</default>
    </entry>
  </group>

<!-- Network -->

  <group name="Network">
    <entry name="LookupDomains" type="Bool">
      <label>Scan the network neighborhood for available workgroups and domains</label>
      <whatsthis>This is the default method to retrieve the initial browse list. It discovers all workgroups and domains by looking for all known master browsers on your network neighborhood.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="QueryCurrentMaster" type="Bool">
      <label>Query the current workgroup master browser</label>
      <whatsthis>This method queries the current master browser of your workgroup or domain to retrieve the initial browse list.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="QueryCustomMaster" type="Bool">
      <label>Query this custom master browser:</label>
      <whatsthis>This method queries a custom master browser to retrieve the initial browse list.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="CustomMasterBrowser" type="String">
      <label>A custom master browser that is to be queried</label>
      <whatsthis>Enter the name or IP address of a master browser here that should be queried to compile the initial browse list.</whatsthis>
      <default></default>
    </entry>
    <entry name="MasterBrowsersRequireAuth" type="Bool">
      <label>The master browsers require authentication to return the browse list</label>
      <whatsthis>The master browsers in your network neighborhood require a login to return the browse list. This setting is rarely needed and might even cause a master browser to return an empty browse list. It will not have any effect when you let Smb4K scan broadcast areas.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="PeriodicScanning" type="Bool">
      <label>Scan the network neighborhood periodically</label>
      <whatsthis>Scan the network neighborhood periodically for all available workgroups, hosts and shares.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ScanInterval" type="Int">
      <label>Interval between scans:</label>
      <whatsthis>This is the time in minutes that elapses until Smb4K rescans the network neighborhood for new workgroups, hosts and shares.</whatsthis>
      <min>1</min>
      <max>60</max>
      <default>5</default>
    </entry>
    <entry name="EnableWakeOnLAN" type="Bool">
      <label>Enable Wake-On-LAN features</label>
      <whatsthis>Wake-on-LAN (WOL) is an ethernet computer networking standard that allows a computer to be turned on or woken up by a network message. Smb4K uses a magic package send via a UDP socket to wake up remote servers. If you want to take advantage of the Wake-On-LAN feature, you need to enable this option.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="WakeOnLANWaitingTime" type="Int">
      <label>Waiting time:</label>
      <whatsthis>This is the waiting time in seconds between the sending of the magic Wake-On-LAN packages and the scanning of the network neighborhood or the mounting of a share.</whatsthis>
      <min>0</min>
      <max>60</max>
      <default>5</default>
    </entry>
    <entry name="PreviewHiddenItems" type="Bool">
      <label>Preview hidden files and directories</label>
      <whatsthis>Preview hidden files and directories. The hidden files and directories are those whose names begin with a period. They are usually needed for very specific purposes (storing the configuration information for an application, etc.). Since they are not of any importance for your regular work, you normally do not need to enable this feature.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DetectPrinterShares" type="Bool">
      <label>Detect printer shares</label>
      <whatsthis>Printer shares are detected.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="DetectHiddenShares" type="Bool">
      <label>Detect hidden shares</label>
      <whatsthis>Hidden shares are detected. Hidden shares are ending with a $ sign, e.g. Musik$ or IPC$.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="LookupIPs" type="Enum">
      <label>Lookup method for IP addresses:</label>
      <whatsthis>Define the method that is to be used to detect the IP addresses of the hosts.</whatsthis>
      <choices>
        <choice name="nmblookup">
          <label>Use nmblookup command</label>
        </choice>
        <choice name="net">
          <label>Use net command</label>
        </choice>
      </choices>
      <default>nmblookup</default>
    </entry>
  </group>

<!-- Shares -->

  <group name="Shares">
    <entry name="MountPrefix" type="Url">
      <label>Mount prefix:</label>
      <whatsthis>This is the prefix where Smb4K will create the mount points and mount the remote shares.</whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath()+"/smb4k/")</default>
    </entry>
    <entry name="ForceLowerCaseSubdirs" type="Bool">
      <label>Force generated subdirectories to be lower case</label>
      <whatsthis>All names of the subdirectories created by Smb4K below the mount prefix will be lowercase.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UnmountSharesOnExit" type="Bool">
      <label>Unmount all personal shares on exit</label>
      <whatsthis>Unmount all shares that belong to you when the program exits. Shares that are owned by other users are ignored.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="RemountShares" type="Bool">
      <label>Remount shares</label>
      <whatsthis>Remount all your shares that were mounted when you exited the program or changed a profile. If the remounting of a share fails, Smb4K will retry the next time it is started. Shares that were mounted by other users are ignored. Please note that this setting does not affect the automatic remounting of shares when your computer woke up from a sleep state.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="RemountAttempts" type="Int">
      <label>Number of remount attempts:</label>
      <whatsthis>Set the number of attempts that are made to remount shares before Smb4K gives up.</whatsthis>
      <min>1</min>
      <max>100</max>
      <default>1</default>
    </entry>
    <entry name="RemountInterval" type="Int">
      <label>Interval between remount attempts:</label>
      <whatsthis>Set the time that elapses between attempts to remount shares.</whatsthis>
      <min>1</min>
      <max>30</max>
      <default>5</default>
    </entry>
    <entry name="UnmountForeignShares" type="Bool">
      <label>Allow the unmounting of shares that are owned by other users</label>
      <whatsthis>Allow the unmounting of shares that were mounted by other users. Please think before you enable this option.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ForceUnmountInaccessible" type="Bool">
      <label>Force the unmounting of inaccessible shares</label>
      <whatsthis>Force the unmounting of inaccessible shares (Linux only). In case a share is inaccessible, a lazy unmount is performed. Before the actual unmount is performed, a warning dialog is shown asking to approve the unmount.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DetectAllShares" type="Bool">
      <label>Detect all shares that are mounted on the system</label>
      <whatsthis>You will not only see the shares that were mounted and are owned by you, but also all other mounts using the SMBFS and CIFS file system that are present on the system.</whatsthis>
      <default>false</default>
    </entry>
  </group>

<!-- Authentication -->

  <group name="Authentication">
    <entry name="UseWallet" type="Bool">
      <label>Save logins in a wallet</label>
      <whatsthis>Use a wallet to store the login. The username and password are stored encrypted on your hard drive. If this setting is disabled, the login is not stored permanently but only temporarily.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="UseDefaultLogin" type="Bool">
      <label>Use a default login</label>
      <whatsthis>Enable the usage of a default login. The provided data is used by default to authenticate to a remote server. This is very useful e.g. if you are working in an Active Directory environment or an NT domain.</whatsthis>
      <default>false</default>
    </entry>
  </group>

<!-- Samba -->

  <group name="Samba">
    <entry name="NetBIOSName" type="String">
      <label>NetBIOS name:</label>
      <whatsthis>This is the NetBIOS name of this computer that is used by Smb4K. By default, it is either the NetBIOS name that is defined in the smb.conf file or the host name.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="DomainName" type="String">
      <label>Domain:</label>
      <whatsthis>This is the workgroup or domain this computer is or should be in. By default, it is the workgroup that is defined in the smb.conf file.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="SocketOptions" type="String">
      <label>Socket options:</label>
      <whatsthis>These are the TCP socket options that are used by nmblookup and smbclient. Socket options are controls on the networking layer of the operating systems which allow the connection to be tuned. See the manual page of smb.conf for more information.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="NetBIOSScope" type="String">
      <label>NetBIOS scope:</label>
      <whatsthis>This sets the NetBIOS scope that nmblookup and smbclient will operate under. It should not be set unless every machine on your network neighborhood sets this value.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="RemoteSMBPort" type="Int">
      <label>SMB port:</label>
      <whatsthis>This is the port that is used for connecting to remote servers with the client programs net, smbclient and smbtree. The default value is 139 (NetBIOS). Under FreeBSD, this setting is also used for mounting.</whatsthis>
      <min>1</min>
      <max>65535</max>
      <default>139</default>
    </entry>
    <entry name="UseKerberos" type="Bool">
      <label>Try to authenticate with Kerberos</label>
      <whatsthis>Try to authenticate with Kerberos. This is only useful in an Active Directory environment. The setting affects the net, smbclient and smbtree command.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="MachineAccount" type="Bool">
      <label>Authenticate with local machine account</label>
      <whatsthis>Make queries to the remote server using the machine account of the local server. The setting affects the net, smbclient and smbtree command.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UseWinbindCCache" type="Bool">
      <label>Use Winbind ccache for authentication</label>
      <whatsthis>Use the Winbind ccache for authentication. This setting affects the net, smbclient and smbtree command.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="SigningState" type="Enum">
      <label>Signing state:</label>
      <whatsthis>Set the signing state. This setting affects the smbclient and smbtree command.</whatsthis>
      <choices>
        <choice name="None">
          <label>None</label>
        </choice>
        <choice name="On">
          <label>On</label>
        </choice>
        <choice name="Off">
          <label>Off</label>
        </choice>
        <choice name="Required">
          <label>Required</label>
        </choice>
      </choices>
      <default>None</default>
    </entry>
    <entry name="EncryptSMBTransport" type="Bool">
      <label>Encrypt SMB transport</label>
      <whatsthis>Encrypt the SMB transport (Unix extended servers only). This setting affects the net, smbclient and smbtree command.</whatsthis>
      <default>false</default>
    </entry>  
    <entry name="NameResolveOrder" type="String">
      <label>Name resolve order:</label>
      <whatsthis>This option is used to determine what naming services and in what order are used to resolve host names and IP addresses. It takes a space-separated list of up to four different name resolution options. Those are: lmhost, host, wins, bcast. See the manual page of smbclient for further information.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="BufferSize" type="Int">
      <label>Buffer size:</label>
      <whatsthis>This option changes the transmit/send buffer size when getting or putting a file from/to the server. The default is 65520 bytes. Setting this value smaller has been observed to speed up file transfers to and from Windows 9x servers.</whatsthis>
      <min>1</min>
      <max>250000</max>
      <default>65520</default>
    </entry>
    <entry name="BroadcastAddress" type="String">
      <label>Broadcast address:</label>
      <whatsthis>Queries performed with nmblookup will be send to the given broadcast address. Without this option the default behavior is to send the queries to the broadcast address of the network interface that was either auto-detected or defined in the "interfaces" parameter of the smb.conf file.</whatsthis>
      <!-- Will be filled by Smb4KCore::setDefaultConfigValues() -->
    </entry>
    <entry name="UsePort137" type="Bool">
      <label>Try and bind to UDP port 137 to send and receive UDP datagrams</label>
      <whatsthis>Try and bind to UDP port 137 to send and receive UDP datagrams. The reason for this option is a bug in Windows 95 where it ignores the source port of the requesting packet and only replies to UDP port 137. Unfortunately, on most Unix systems super user privileges are needed to bind to this port. Please read the manual page of nmblookup for more information.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="SmbtreeSendBroadcasts" type="Bool">
      <label>Send requests as broadcasts</label>
      <whatsthis>Let smbtree query the network nodes by sending requests as broadcasts instead of querying the local master browser.</whatsthis>
      <default>false</default>
    </entry>
  </group>  

<!-- Synchronization -->

  <!-- Many <whatsthis></whatsthis> entries contain excerpts from the rsync
       manual page (version 2.6.9). -->

  <group name="Synchronization">
    <entry name="RsyncPrefix" type="Url">
      <label>Synchronization prefix:</label>
      <whatsthis>Under this prefix the destination directory for the synchronization will be created. However, if you want to store the data of a particular share elsewhere, you will be able to choose a different path before the actual synchronization begins.</whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath()+"/smb4k_sync/")</default>
    </entry>
    <entry name="ArchiveMode" type="Bool">
      <label>Archive mode</label>
      <whatsthis>Use archive mode (-a, --archive). This is a short form of -rlptgoD.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="RecurseIntoDirectories" type="Bool">
      <label>Recurse into subdirectories</label>
      <whatsthis>Recurse into directories (-r, --recursive).</whatsthis>
      <default>true</default>
    </entry>
    <entry name="UpdateTarget" type="Bool">
      <label>Update files</label>
      <whatsthis>Update files in the destination directory that are older than in the source directory (-u, --update).</whatsthis>
      <default>true</default>
    </entry>
    <entry name="UpdateInPlace" type="Bool">
      <label>Update files in place</label>
      <whatsthis>Update destination files in-place (--inplace). By default, rsync first creates a new copy of a file and moves it into place after its transfer finished. If you enable this feature, no copy will be created but the destination file will immediately be overwritten instead. An exception to this is if you combine this option with --backup.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="RelativePathNames" type="Bool">
      <label>Use relative path names</label>
      <whatsthis>Use relative paths (-R, --relative). This means that the full path names specified on the command line are sent to the server rather than just the last parts of the file names.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="NoImpliedDirectories" type="Bool">
      <label>Do not send implied directories</label>
      <whatsthis>Do not send implied directories with --relative (--no-implied-dirs). This means that the corresponding path elements on the destination system are left unchanged if they exist, and any missing implied directories are created with default attributes. This even allows these implied path elements to have big differences, such as being a symlink to a directory on one side of the transfer, and a real directory on the other side.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="TransferDirectories" type="Bool">
      <label>Transfer directories without recursing</label>
      <whatsthis>Transfer directories without recursing (-d, --dirs). This means that all top-level subdirectories are transferred but without their contents.</whatsthis>
      <!-- This description is only correct for Smb4K. See manual page for further information. -->
      <default>false</default>
    </entry>
    <entry name="CompressData" type="Bool">
      <label>Compress data during transfer</label>
      <whatsthis>Compress data during transfer (-z, --compress). This significantly reduces the amount of data that is being transferred. You may want to use this option, if you have a slow connection.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="PreserveSymlinks" type="Bool">
      <label>Preserve symlinks</label>
      <whatsthis>Copy symlinks as symlinks (-l, --links).</whatsthis>
      <default>true</default>
    </entry>
    <entry name="TransformSymlinks" type="Bool">
      <label>Transform symlinks</label>
      <whatsthis>Transform symlinks into the items they are pointing to (-L, --copy-links).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="TransformUnsafeSymlinks" type="Bool">
      <label>Only transform unsafe symlinks</label>
      <whatsthis>Transform unsafe symlinks into the items they are pointing to (--copy-unsafe-links). This means that only those symlinks are transformed that point to items that are outside the copied tree. Absolute symlinks are treated the same way. This option has no additional effect if --copy-links has also been specified.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="IgnoreUnsafeSymlinks" type="Bool">
      <label>Ignore unsafe symlinks</label>
      <whatsthis>Ignore symlinks that point outside the copied tree (--safe-links). All absolute symlinks are also ignored. If you use this option in conjunction with --relative you might get unexpected results.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="PreserveHardLinks" type="Bool">
      <label>Preserve hard links</label>
      <whatsthis>Preserve hard links (-H, --hard-links). This options causes rsync to preserve the hard links that are found during the transfer. Without it, hard links are treated as though they were separate files.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="KeepDirectorySymlinks" type="Bool">
      <label>Keep directory symlinks</label>
      <whatsthis>Treat symlinked directories on the receiving side as though they were real ones (-K, --keep-dirlinks). This only works if the symlink matches a real directory from the sending side. Without this option, the receiver's symlink will be deleted and replaced with a real directory.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="PreservePermissions" type="Bool">
      <label>Preserve permissions</label>
      <whatsthis>Preserve permissions (-p, --perms). The permissions of the destination file will be same as the source file. For what happens if this option is switched off, please read rsync's manual page.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="PreserveGroup" type="Bool">
      <label>Preserve group</label>
      <whatsthis>Preserve the group (-g, --group). The group of the destination file will be set to the same value as the source file.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="PreserveOwner" type="Bool">
      <label>Preserve owner</label>
      <whatsthis>Preserve the owner (-o, --owner). The owner of the destination file will be set to the same value as the source file, but only if the receiving rsync is run as the super user. Without this option, the owner is set to the invoking user on the receiving side.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="PreserveDevicesAndSpecials" type="Bool">
      <label>Preserve device and special files</label>
      <whatsthis>Preserve device and special files (-D, --devices --specials). This option causes rsync to transfer character and block devices as well as special files such as named sockets and fifos. It works only partially if rsync is not run as super user and the --super option is not specified.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="PreserveTimes" type="Bool">
      <label>Preserve times</label>
      <whatsthis>Preserve times (-t, --times). The modification times are transferred along with the files. For what happens if this option is switched off, please read rsync's manual page.</whatsthis>
      <default>true</default>
    </entry>
    <entry name="OmitDirectoryTimes" type="Bool">
      <label>Omit directories when preserving times</label>
      <whatsthis>Omit directories when preserving times (-O, --omit-dir-times). This means that directories are omitted when modification times are being preserved. Thus, this feature only works in conjunction with --times.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="RemoveSourceFiles" type="Bool">
      <label>Remove synchronized source files</label>
      <whatsthis>Remove all synchronized source files (--remove-source-files). This tells rsync to remove from the sending side the non-directory items that are a part of the transfer and have been successfully duplicated on the receiving side.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DeleteExtraneous" type="Bool">
      <label>Delete extraneous files</label>
      <whatsthis>Delete extraneous files from destination (--delete). This tells rsync to delete all files from the receiving side that are not present on the sending side, but only for the directories that are being synchronized.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DeleteBefore" type="Bool">
      <label>Delete files before transfer</label>
      <whatsthis>Delete files on the receiving side before the transfer starts (--delete-before). This is the default behavior if --delete or --delete-excluded is specified without one of the --delete-WHEN options.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DeleteAfter" type="Bool">
      <label>Delete files after transfer</label>
      <whatsthis>Delete files on the receiving side after the transfer has completed (--delete-after, --del).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DeleteDuring" type="Bool">
      <label>Delete files during transfer</label>
      <whatsthis>Delete files on the receiving side during the transfer (--delete-during). This method is faster than --delete-before or --delete-after, but it is only supported with rsync 2.6.4 or later.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DeleteExcluded" type="Bool">
      <label>Also delete excluded files</label>
      <whatsthis>Also delete excluded files from destination directory (--delete-excluded). In addition to deleting the files on the receiving side that are not on the sending side, this tells rsync to also delete any files on the receiving side that are excluded. Refer to rsync's manual page for further information.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="IgnoreErrors" type="Bool">
      <label>Delete even if I/O errors occur</label>
      <whatsthis>Delete even if I/O errors occur (--ignore-errors). This option has to be specified in conjunction with --delete to take effect.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ForceDirectoryDeletion" type="Bool">
      <label>Force deletion of non-void directories</label>
      <whatsthis>Force deletion of directories even if they are not empty (--force). This option tells rsync to delete a non-empty directory when it is to be replaced by a non-directory. This is only relevant if deletions are not active.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UseMaximumDelete" type="Bool">
      <label>Do not delete more than this many files:</label>
      <whatsthis>Only delete as many files as defined here (--max-delete=NUM). This tells rsync not to delete more than NUM files or directories (NUM must be non-zero). This is useful when mirroring very large trees to prevent disasters.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="MaximumDeleteValue" type="Int">
      <label>Value for DeleteMaximum config entry</label>
      <whatsthis></whatsthis>
      <min>0</min>
      <default>0</default>
    </entry>
    <entry name="UseMinimalTransferSize" type="Bool">
      <label>Do not transfer any file smaller than:</label>
      <whatsthis>This option causes rsync to not transfer any file that is smaller than the specified size (--min-size=SIZE).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="MinimalTransferSize" type="Int">
      <label>Value for MinimalTransferSize config entry</label>
      <whatsthis></whatsthis>
      <min>0</min>
      <default>0</default>
    </entry>
    <entry name="UseMaximalTransferSize" type="Bool">
      <label>Do not transfer any file larger than:</label>
      <whatsthis>This option causes rsync to not transfer any file that is larger than the specified size (--max-size=SIZE).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="MaximalTransferSize" type="Int">
      <label>Value for MaximalTransferSize config entry</label>
      <whatsthis></whatsthis>
      <min>0</min>
      <default>0</default>
    </entry>
    <entry name="KeepPartial" type="Bool">
      <label>Keep partially transferred files</label>
      <whatsthis>Keep partially transferred files (--partial). The default behavior is that any partially transferred file is deleted if the transfer is interrupted.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UsePartialDirectory" type="Bool">
      <label>Put partially transferred files into:</label>
      <whatsthis>Put a partially transferred file into this directory (--partial-dir=DIR). This is a better way than the --partial option to keep partial files, because the partially transferred file is kept in a different directory and the destination file is not overwritten.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="PartialDirectory" type="Url">
      <label>The data for the UsePartialDirectory option</label>
      <whatsthis></whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath())</default>
    </entry>
    <entry name="UseCVSExclude" type="Bool">
      <label>Auto-ignore files in the same way CVS does</label>
      <whatsthis>Auto-ignore files in the same way CVS does (-C, --cvs-exclude). This is a useful shorthand for excluding a broad range of files that you often do not want to transfer between systems. This option uses the same algorithm that CVS uses to determine if a file should be ignored.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UseExcludePattern" type="Bool">
      <label>Exclude files matching this pattern:</label>
      <whatsthis>Exclude files that match a certain pattern (--exclude=PATTERN). This is a special filter rule. For further information on filter rules see rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ExcludePattern" type="String">
      <label>Pattern that is used for file exclusion</label>
      <whatsthis></whatsthis>
      <default></default>
    </entry>
    <entry name="UseExcludeFrom" type="Bool">
      <label>Read exclude patterns from:</label>
      <whatsthis>Read exclude patterns from a file (--exclude-from=FILE). This option is similar to the --exclude=PATTERN option except that the exclude patterns are read from a file. This is a special filter rule. For further information on filter rules see rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ExcludeFrom" type="Url">
      <label>The file from which the exclude patterns are read</label>
      <whatsthis></whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath()+"/exclude.txt")</default>
    </entry>
    <entry name="UseIncludePattern" type="Bool">
      <label>Do not exclude files matching this pattern:</label>
      <whatsthis>Do not exclude files matching a certain pattern (--include=PATTERN). This is a special filter rule. For further information on filter rules see rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="IncludePattern" type="String">
      <label>Pattern that is used for file inclusion</label>
      <whatsthis></whatsthis>
      <default></default>
    </entry>
    <entry name="UseIncludeFrom" type="Bool">
      <label>Read include patterns from:</label>
      <whatsthis>Read include patterns from a file (--include-from=FILE). This option is similar to the --include=PATTERN option except that the include patterns are read from a file. This is a special filter rule. For further information on filter rules see rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="IncludeFrom" type="Url">
      <label>The file from which the include patterns are read</label>
      <whatsthis></whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath()+"/include.txt")</default>
    </entry>
    <entry name="CustomFilteringRules" type="String">
      <label>Custom filter rules:</label>
      <whatsthis>Add custom file-filtering rules (-f, --filter=RULE). This option allows you to add rules to selectively exclude certain files from the list of files to be transferred. These rules will be added to the rsync command as they are. Thus, each rule has to start with the --filter=... argument.</whatsthis>
      <default></default>
    </entry>
    <entry name="UseFFilterRule" type="Bool">
      <label>Use --filter='dir-merge /.rsync-filter' filter rule</label>
      <whatsthis>This filter rule tells rsync to look for per-directory .rsync-filter files that have been sprinkled through the hierarchy and use their rules to filter the files in the transfer. It has no effect, if you also choose to use the --filter='exclude .rsync-filter' rule.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UseFFFilterRule" type="Bool">
      <label>Use --filter='exclude .rsync-filter' filter rule</label>
      <whatsthis>This rule filters out the .rsync-filter files from the transfer. These files normally contain filter rules that can be activated by choosing the --filter='dir-merge /.rsync-filter' rule and deselecting this one.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="EfficientSparseFileHandling" type="Bool">
      <label>Handle sparse files efficiently</label>
      <whatsthis>Handle sparse files efficiently (-S, --sparse) so that they take up less space on the destination. This option conflicts with --inplace. For further information read rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="CopyFilesWhole" type="Bool">
      <label>Copy files whole (no rsync algorithm)</label>
      <whatsthis>Copy files whole (-W, --whole-file). With this option the incremental rsync algorithm is not used and the whole file is sent as-is instead.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="OneFileSystem" type="Bool">
      <label>Do not cross file system boundaries</label>
      <whatsthis>Do not cross file system boundaries (-x, --one-file-system). This tells rsync to avoid crossing a filesystem boundary when recursing. For further information on this option, read the manual page.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UpdateExisting" type="Bool">
      <label>Only update files that already exist</label>
      <whatsthis>Skip creating new files on the receiving side (--existing). This tells rsync to skip creating files (including directories) that do not exist yet on the destination. If this option is combined with the --ignore-existing option, no files will be updated (which can be useful if all you want to do is to delete extraneous files).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="IgnoreExisting" type="Bool">
      <label>Ignore files that already exist</label>
      <whatsthis>Skip updating files that already exist on the receiving side (--ignore-existing). Existing directories are not ignored.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="DelayUpdates" type="Bool">
      <label>Delay updates until the end of transfer</label>
      <whatsthis>Delay updates until the end of the transfer (--delay-updates). This option puts the temporary file from each updated file into a holding directory until the end of the transfer, at which time all the files are renamed and copied into place in rapid succession.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="MakeBackups" type="Bool">
      <label>Make backups</label>
      <whatsthis>Make backups (-b, --backup). With this option, preexisting destination files are renamed as each file is transferred or deleted. You can control where the backup file goes and what (if any) suffix gets appended using the --backup-dir=DIR and --suffix=SUFFIX options.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="UseBackupSuffix" type="Bool">
      <label>Backup suffix:</label>
      <whatsthis>Use this suffix for backups (--suffix=SUFFIX).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="BackupSuffix" type="String">
      <label>Backup suffix</label>
      <whatsthis></whatsthis>
      <default>~</default>
    </entry>
    <entry name="UseBackupDirectory" type="Bool">
      <label>Backup directory:</label>
      <whatsthis>Store backups in this directory (--backup-dir=DIR).</whatsthis>
      <default>false</default>
    </entry>
    <entry name="BackupDirectory" type="Url">
      <label>Backup directory</label>
      <whatsthis></whatsthis>
      <default code="true">QUrl::fromLocalFile(QDir::homePath())</default>
    </entry>
    <entry name="UseBlockSize" type="Bool">
      <label>Force fixed checksum block size:</label>
      <whatsthis>Force a fixed checksum block-size (-B, --block-size=SIZE). This forces the block size used in the rsync algorithm to a fixed value.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="BlockSize" type="Int">
      <label>The block size</label>
      <whatsthis></whatsthis>
      <min>0</min>
      <default>0</default>
    </entry>
    <entry name="UseChecksumSeed" type="Bool">
      <label>Set block/file checksum seed:</label>
      <whatsthis>Set block/file checksum seed (--checksum-seed=NUM). Set the MD4 checksum seed to this integer. This 4 byte checksum seed is included in each block and file MD4 checksum calculation. By default the checksum seed is generated by the server and defaults to the current time.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ChecksumSeed" type="Int">
      <label>The checksum seed</label>
      <whatsthis></whatsthis>
      <min>0</min>
      <default>0</default>
    </entry>
    <entry name="UseChecksum" type="Bool">
      <label>Skip files based on checksum</label>
      <whatsthis>Skip files based on a checksum and not based on modification time and size (-c, --checksum). For further information on how this feature works read rsync's manual page.</whatsthis>
      <default>false</default>
    </entry>
  </group>

  <!-- Profiles -->
  
  <group name="Profiles">
    <entry name="UseProfiles" type="Bool">
      <label>Use profiles</label>
      <whatsthis>Make Smb4K use profiles. This enables you to define different bookmarks and custom options for each profile. This is especially useful if you are using a laptop in different network neighborhoods, e. g. at home and at work.</whatsthis>
      <default>false</default>
    </entry>
    <entry name="ProfilesList" type="StringList">
      <label>Profiles</label>
      <whatsthis>The list of profiles.</whatsthis>
      <code>
        QStringList defaultProfiles;
        defaultProfiles.append(i18nc("default profile name for use at home", "Home"));
        defaultProfiles.append(i18nc("default profile name for use at work", "Work"));
      </code>
      <default code="true">defaultProfiles</default>
    </entry>
    <entry name="ActiveProfile" type="String">
      <label>Active profile</label>
      <whatsthis>This is the currently active profile.</whatsthis>
      <default code="true">QString()</default>
    </entry>
    <entry name="UseMigrationAssistant" type="Bool">
      <label>Use profile migration assistant</label>
      <whatsthis>Use the profile migration assistant when profiles are removed or the use of profiles is enabled or disabled. The profile migration assistant allows you to migrate all settings that were saved for a certain profile to a different one.</whatsthis>
      <default>false</default>
    </entry>
  </group>
</kcfg>