summaryrefslogtreecommitdiffstats
path: root/tde-i18n-en_GB/docs/tdepim/knode/using-subscribing.docbook
blob: 57d854be2cdb09118fd9068fd600c126d34c7aca (plain)
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
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
<!-- <?xml version="1.0" ?>
<!DOCTYPE sect1 PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">

-->
<sect1 id="subscribing"
> 
<title
>Working with newsgroups</title
> 

<para
>After the configuration of &knode; we will now try to get your first news; to achieve this, you need to do some more steps of configuration, but you will not have to do this very often.</para>

<sect2 id="fetch-group-list">
<title
>Fetching the group-list from the news server</title
> 

<anchor id="anc-fetch-group-list"/>

<para
>If you want to read a newsgroup you first have to subscribe to it. &RMB;-click with your mouse on the entry of your newsserver in the folder-list; from the context menu that appears select the <guimenuitem
>Subscribe to Newsgroups</guimenuitem
> entry. &knode;, at this moment, does not know which newsgroups are available from this server and will ask you if it should fetch a list of available newsgroups: confirm with <guibutton
>Yes</guibutton
>. Now you should see the following dialogue.</para>

<screenshot
> 
<screeninfo
>The <guilabel
>Subscribe to Newsgroups</guilabel
> Dialogue</screeninfo
> 
<mediaobject
> 
<imageobject
> 
<imagedata fileref="knode-subscribe.png" format="PNG"/> </imageobject
> 
<textobject
> 
<phrase
>The <guilabel
>Subscribe to Newsgroups</guilabel
> dialogue</phrase
> 
</textobject
> 
<caption
> 
<para
>The <guilabel
>Subscribe to Newsgroups</guilabel
> dialogue</para
> 
</caption
> 
</mediaobject
> 
</screenshot
> 

<para
>After some time &knode; will has fetched the list of available newsgroups and will show them in the left window, <guilabel
>Groups on</guilabel
>, in a tree; this tree view shows the newsgroup hierarchy.</para>

<tip>
<para
>You can find a short description about the structure of the usenet and the hierarchy of the single newsgroups at <ulink url="http://www.kirchwitz.de/~amk/dni/usenet-einfuehrung"
>http://www.kirchwitz.de/~amk/dni/usenet-einfuehrung</ulink
> (German).</para>
</tip>

<sect3>
<title
><guilabel
>Search</guilabel
></title>

<para
>The simplest method to navigate in the tree is to use the <guilabel
>Search</guilabel
> input field: &knode; will filter the groups displayed according to your input. If you are searching for a group about &kde;, but you do not know its exact position in the hierarchy, just type <userinput
>kde</userinput
> in the <guilabel
>Search</guilabel
> field.</para>

<para
>When you enter the <userinput
>k</userinput
>, you will already see the list changing; the second letter, <userinput
>d</userinput
>, give you a significantly-reduced list of shown groups; and the final <userinput
>e</userinput
> reduces the list to the groups with kde in their name. You will most likely end with just one group:</para>

<simplelist
> 
<member
>comp.windows.x.kde</member
> 
</simplelist
> 

<para
>If your server carries the international groups, you might find your list is:</para>

<simplelist
> 
<member
>comp.windows.x.kde</member
> 
<member
>de.comp.os.unix.apps.kde</member
> 
</simplelist
> 

<para
>This incremental search gives you the possibility to search for newsgroups without knowing their exact paths.</para
> 

<tip
> 
<para
>On a closer look, you will see &knode; showing the groups without a tree if there are only a few groups left; this is not a bug, it is a feature.</para
> 
</tip
> 
</sect3
> 

<sect3
> 
<title
><guilabel
>disable tree view</guilabel
></title
> 

<para
>Normally &knode; shows all the groups in a tree; if this option is activated, all newsgroups are listed amongst one another.</para
> 

</sect3
> 

<sect3
> 
<title
> 
<guilabel
>subscribed only</guilabel
></title
> 

<para
>If <guilabel
>subscribed only</guilabel
> is checked the tree-view <guilabel
>Groups on</guilabel
> shows only the groups you are already subscribed to; this is very convenient if you want to unsubscribe from some groups: you then won't have to search the whole tree for these groups.</para
> 

</sect3
> 

<sect3
> 
<title
><guilabel
>new only</guilabel
></title
> 

<para
>If <guilabel
>new only</guilabel
> is checked the tree-view <guilabel
>Groups on</guilabel
> shows only the groups which are new since you last fetched the group list; for this to be functional, you first have to fetch a new group list with <guibutton
>New List</guibutton
>.</para
> 

<para
>The <guibutton
>New Groups</guibutton
> button give the possibility to show all the new groups since a specific date.</para
> 

</sect3
> 

<sect3
> 
<title
><guilabel
>Groups on</guilabel
></title
> 

<para
>This list shows all newsgroups on this server; if you check one of the checkboxes, <guilabel
>subscribed only</guilabel
> or <guilabel
>new only</guilabel
>, you get the corresponding selection.</para
> 

</sect3
> 

<sect3
> 
<title
><guilabel
>Current changes</guilabel
></title
> 

<para
>The <guilabel
>Current changes</guilabel
> window shows all changes you have made since you opened the dialogue.</para
> 

<para
>The <guilabel
>subscribe to</guilabel
> list shows the newsgroups you have chosen to subscribe to.</para
> 

<para
>Below you can see the <guilabel
>unsubscribe from</guilabel
> list, which shows all newsgroups from which you have chosen to unsubscribe. You cannot unsubscribe from groups you are not subscribed to.</para
> 

</sect3
> 

<sect3
> 
<title
><guilabel
>New Groups</guilabel
></title
> 

<para
>This button opens a dialogue which allows you to configure the list of new groups; you can choose between showing all groups since the last refresh or all groups since a given date. With the date option, &knode; provides a more-flexible possibility to check for new groups; you can even check for new groups since before the last refresh of the group list.</para
> 

</sect3
> 

<sect3
> 
<title
><guibutton
>New List</guibutton
></title
> 

<para
>The <guibutton
>New List</guibutton
> button tells &knode; to fetch a new group list from the news server.</para
> 


<para
>The newsgroup hierarchy is in a constant flux; all the time there are groups introduced, renamed or moved; some groups just disappear: they are no longer available and get deleted. To reflect this, &knode; gives you the possibility to refresh the the group list. This is, normally, only needed to see if your server now provides a group which was not there before.</para
> 

<tip>
<para
>If you simply want to make sure you have seen every new group, it is more effective to use <guibutton
>New Groups</guibutton
>; fetching the complete list is much more time consuming, but you do make sure that any deleted groups vanish from the grouplist.</para
> 
</tip
> 

<para
>Unfortunately there is no guarantee that your newsserver is providing all available newsgroups: many newsserver refuse groups publishing binary attachments; other groups are only available from special servers. &knode; provides you the possibility to use more than one news-server if you want to access alternative servers providing these groups; you can read more about this in <xref linkend="multiple-news-accounts"/> .</para>

</sect3
> 

<sect3
> 
<title
>Working with the dialogue</title
> 

<para
>We now want to subscribe to the &kde; group: mark the the box beside the name; you can now see the group in the list labelled <guilabel
>subscribe to</guilabel
>. Another possibility is to use the arrows between the two windows.</para
> 

<para
>If you picked the wrong newsgroup by mistake you can undo your selection by unchecking the checkbox next to the group's name in the <guilabel
>Groups on</guilabel
> window; again, you could use the arrow (you probably noticed the arrow changing direction.)</para
> 

<para
>If you want to unsubscribe from a newsgroup it is as easy as subscribing to it: you just uncheck the box next to its name. The groups you wish to unsubscribe from are shown in the <guilabel
>unsubscribe from</guilabel
> list. Again, the arrow is another way of doing things: to correct your actions you can use the arrow again; this works as long as the dialogue is not closed by clicking <guibutton
>OK</guibutton
>.</para>

<para
>As a &kde; and &knode; user you will probably want to subscribe to the group, so make sure you checked the box and press <guibutton
>OK</guibutton
>. This group now appears in the tree view under the server entry it was chosen from; in our example this is <emphasis
>My News Account</emphasis
>. If you can not see the group, click on the cross next to the server entry or on the server entry itself; the list of subscribed newsgroups should appear.</para>

<para
>Click on the newsgroup; now you see on the right in the article view an empty folder: &knode; has to fetch the articles for the new newsgroup. If you have, in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode</guimenuitem
><guimenuitem
>Reading news</guimenuitem
><guimenuitem
>General</guimenuitem
></menuchoice
>, the check box <guilabel
>Check for new article automatically</guilabel
> checked &knode; tries to fetch the articles from the server when the newsgroup is first selected; if this is unchecked, you have to use <menuchoice
><guimenu
>Account</guimenu
><guimenuitem
>Get new articles</guimenuitem
></menuchoice
>.</para>

<important
> 
<para
>When you are using <application
>leafnode</application
> as a server, there will be a single article in the group: <application
>leafnode</application
> generates an article in every new subscribed group; this indicates that <application
>leafnode</application
> will consider this group the next time it fetches articles. You can ignore an error message saying the article can not be found. If you select this article you tell <application
>leafnode</application
> you are really interested in this group.</para
> 

<para
>You get the real articles when your local newsserver fetches them from the Internet and provides them to you; details about this can be found in the documentation of your local newsserver.</para
> 
</important
> 

<para
>When everything works the articles of the subscribed newsgroup appear in the upper right window &mdash; the article view.</para
> 

</sect3
> 
</sect2>

<sect2 id="fetch-and-read-news"
> 
<title
>Fetching and reading Articles</title
> 

<para
>&knode; always shows three views: the folder view, the article view and the article window; you can change height and width of these views with the mouse. If you click in a window it gets the focus; this is important if you want to use &knode; with the keyboard. The <keycap
>Tab</keycap
> key changes the focus between the views; the currently-active view is indicated by a small colored bar over the column headers.</para
> 

<para
>This picture shows &knode; with the subscribed &kde; newsgroup.</para>

<screenshot
> 
<screeninfo
>The three views of &knode;</screeninfo
> 
<mediaobject
> 
<imageobject
> 
<imagedata fileref="knode-views.png" format="PNG"/> </imageobject
> 
<textobject
> 
<phrase
>The three views of &knode;</phrase
> 
</textobject
> 
<caption
> 
<para
>The three views of &knode;</para
> 
</caption>
</mediaobject
> 
</screenshot
> 

<para
>It is possible to select more than one group or article. You can select an area by clicking on the first entry with the &LMB;, holding the &Shift; key and clicking on the last entry with the &LMB; again.</para
> 

<para
>If you want to select more than one single entry, but they are not next to each other in the list, you have to select the first by clicking on it with the &LMB; and then select the other entries by holding down the &Ctrl; key and clicking on them with the &LMB;.</para>

<para
>In either case you can clear your selection by clicking on another entry with the &LMB;.</para>

<caution>
<para
>If you have selected more than one entry you have to activate the context menu with the &Shift; key pressed, otherwise you'll clear the selection.</para
> 
</caution
> 

<sect3
> 
<title
>The Folder View</title
> 

<para
>The folder views contains not only the accounts you configured &mdash; in our example this is <emphasis
>My News Account</emphasis
> &mdash; but also three other folders. When you are subscribed to some newsgroups there will be plus next to the name of the account: clicking on the plus or the name of the account opens the tree to show the names of the newsgroups you have chosen to subscribe to using that account.</para>

<tip
> 
<para
>Using the &RMB; you can get a context menu for the selected item (folders or newsgroups): if you select a newsgroup and choose Properties you can, amongst other things, specify your identity for this particular group; you can find more about this in the <link linkend="group-identity"
>Local Identities</link
> chapter.</para>
</tip>

<para
>When you select a newsgroup with your mouse a list of articles of this group appears in the upper-right window; if there are no articles in the upper-right window there are two possibilities &mdash; either there are no articles for this newsgroup on the newsserver or the newsserver did not fetch them yet. Select <menuchoice
><guimenu
>Account</guimenu
><guimenuitem
>Get new articles in all groups</guimenuitem
></menuchoice
>: if there are still no articles appearing you either have some problems with your settings or there really are no articles for this group. Try another group: if there are no articles for this group you will probably have to work through the first chapters, about the configuration of &knode;, again; the <link linkend="faq"
>Frequently Asked Questions</link
> chapter may help you, too.</para>

<caution
> 
<para
>If you are using a local newsserver the articles only appear if the newsserver has already got them from the internet; if you are using <application
>leafnode</application
> this is done by the <command
>fetchnews</command
> program.</para>
</caution
> 

<sect4
> 
<title
>The Newsgroup Folders</title
> 

<para
>The newsgroup folders appear with the name they are given by the hierarchy on the newsserver; in our example this is <guilabel
>comp.windows.x.kde</guilabel
>. You can change the name shown in this view: in the context menu (click with the &RMB; on the newsgroup's name) choose <menuchoice
><guimenuitem
>Rename group</guimenuitem
></menuchoice
>, then you can change the name in the input field. A good name for <guilabel
>comp.windows.x.kde</guilabel
> would be, for example, <guilabel
>The KDE Newsgroup</guilabel
>.</para>

<para
>If you don't change this, the hierarchical name will still be shown.</para>

<para
>Besides the name of newsgroups the folder view shows more information by altering its appearance: if a newsgroup contains new articles its name is shown bold; the columns <guilabel
>Total</guilabel
> and <guilabel
>Unread</guilabel
> also tell you how many articles are in the corresponding group or folder and how many are marked as unread.</para
> 

</sect4
> 

<sect4
> 
<title
>The <guilabel
>Outbox</guilabel
> folder</title
> 

<para
>The <guilabel
>Outbox</guilabel
> folder contains all articles which are to be sent later, or which could not be sent because of an error. If you want to sent an article later choose <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send Later</guimenuitem
></menuchoice
> in the editor: the article is then filed in the <guilabel
>Outbox</guilabel
> folder; it is possible to edit, delete or send these articles later.</para
> 

<tip
> 
<para
>If an article was not sent because of an error, it is stored in this folder; you will not lose these articles.</para
> 
</tip
> 
</sect4
> 

<sect4
> 
<title
>The <guilabel
>Drafts</guilabel
> folder</title
> 

<para
>This folder is used for storing drafts of your articles; for example, if you want to do some further work on them but you have no time for it right now. To store an article in this folder choose <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Save as Draft</guimenuitem
></menuchoice
> in the editor.</para
> 

<para
>You can edit, delete and send the articles in this folder.</para
> 

</sect4
> 

<sect4
> 
<title
>The <guilabel
>Sent</guilabel
> Folder</title
> 

<para
>This folder contains copies of the articles that you have successfully sent, including your e-mail replies; you can delete the messages in this folder, but it will not un-send the messages already sent.</para
> 

<caution
> 
<para
>If your are using a local newsserver an article appearing in the folder <guilabel
>Sent</guilabel
> only indicates the local newsserver received the article; it is possible this article will never appears in any newsgroup if the local newsserver was not able to send it for some reason. If you notice some articles not appearing in the according newsgroup first make sure it was sent by the local newsserver.</para
> 
</caution
> 

<tip
> 
<para
>If you are using <application
>leafnode</application
> then articles leafnode was unable to send are normally found in <filename
>/var/spool/failed.postings</filename
>.</para
> 
</tip
> 
</sect4
> 
</sect3
> 

<sect3
> 
<title
>The Article View</title
> 

<para
>The article view gives you a list of all articles in the selected newsgroup or folder; you can change the appearance of this view using the <guimenu
>View</guimenu
> menu. The uppermost row of the view contains the column headers.</para
> 

<variablelist
> 
<varlistentry
> 
<term
><guilabel
>Subject</guilabel
></term
> 
<listitem
> 
<para
>The <guilabel
>Subject</guilabel
> column shows the subjects of an articles which, most of the time, give you a clue about the content of this article. The subject is chosen by the article author. You can find more about this in <link linkend="post-and-mail-news"
>How to post and reply to news</link
>.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
><guilabel
>From</guilabel
></term
> 
<listitem
> 
<para
>The <guilabel
>From</guilabel
> column shows the author, or their e-mail address if the author didn't give a name. You can configure your settings in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode</guimenuitem
><guilabel
>Identity</guilabel
></menuchoice
>; when you publish an article &knode; will show these settings in the <guilabel
>From</guilabel
> column.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
><guilabel
>Score</guilabel
></term>
<listitem
> 
<para
>The <guilabel
>Score</guilabel
> column shows the scoring of an article as a number; the default is 0. Articles which are important to you can be scored up; articles you want to ignore can be scored down: the range is -100000 to +100000. You can read more about this in the <link linkend="score-watch-ignore"
>Scoring, Watching and Ignoring</link
> chapter.</para
> 
<para
>The <guilabel
>Score</guilabel
> column is only shown if <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>General</guilabel
><guilabel
>Show article score</guilabel
></menuchoice
> is activated.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
><guilabel
>Date</guilabel
></term
> 
<listitem
> 
<para
>The <guilabel
>Date</guilabel
> column shows the date and time when the article was written.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
><guilabel
>Lines</guilabel
></term
> 
<listitem
> 
<para
>The <guilabel
>Lines</guilabel
> column shows the number of lines of the <glossterm
>article</glossterm
>; this column is only shown if <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>General</guilabel
><guilabel
>Show line count</guilabel
></menuchoice
> is activated.</para
> 
</listitem
> 
</varlistentry
> 
</variablelist
> 

<sect4
> 
<title
>The Symbols and Highlighting Used</title>

<para
>This is a short explanation of the different symbols for labelling articles.</para
> 

<itemizedlist
> 
<listitem
> 
<para
><inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="greyball.png" format="PNG"/> </imageobject>
</inlinemediaobject
> Already-read articles are labelled with this symbol.</para
> 
</listitem
> 
<listitem
> 
<para
> 
<inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="greyballchk.png" format="PNG"/> </imageobject>
</inlinemediaobject
> Articles labelled with this symbol are read and the body was fetched from the server.</para
> 
</listitem
> 
<listitem
> 
<para
> 
<inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="redball.png" format="PNG"/> </imageobject
> </inlinemediaobject
> Articles labelled with this symbol are unread and the body has not yet been fetched.</para
> 
</listitem
> 
<listitem
> 
<para
> 
<inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="redballchk.png" format="PNG"/> </imageobject
> </inlinemediaobject
> Articles labeled with this symbol are unread but the body has already been already fetched.</para
> 
</listitem
> 
<listitem
> 
<para
> 
<inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="newsubs.png" format="PNG"/> </imageobject
> </inlinemediaobject
> Articles labelled with this symbol are part of a thread with new and/or unread articles in it.</para
> 
</listitem
> 
<listitem
> 
<para
> 
<inlinemediaobject
> 
<imageobject
> 
<imagedata fileref="eyes.png" format="PNG"/> </imageobject
> </inlinemediaobject
> Articles labelled with this symbol are parts of a guarded thread. This corresponds to a score of 100.</para
> 
</listitem
> 
</itemizedlist
> 

<para
>Besides different symbols, &knode; is using the following highlighting:</para>

<variablelist
> 
<varlistentry
> 
<term
>Bold article subjects.</term
> 
<listitem
> 
<para
>The article is new in this group; it was fetched during the last connection with the server.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Article subjects printed in grey.</term
> 
<listitem
> 
<para
>There are no unread follow-up articles.</para
> 
</listitem
> 
</varlistentry
> 
</variablelist
> 
</sect4
> 

<sect4
> 
<title
>Navigation in the Article View.</title
> 

<para
>You can navigate in articles, display an article and open or close threads with your mouse or keyboard.</para
> 

<para
>When you select an article with your mouse its entry in the the article view gets colored; at the same time the header and body of this article appear in in the article window. If you want to read another article you can use the mouse to select it, or you can use the cursor keys. If you use the cursor keys you can move the dashed frame to the article you want to read and then press <keycap
>Enter</keycap
> to mark and display the article.</para>

<para
>There are many key commands to provide comfortable navigation within a news group and to switching between newsgroups. Here the most common key commands of the standard key configuration are listed; you can configure the key bindings in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure Shortcuts</guimenuitem
></menuchoice
>.</para
> 

<variablelist
> 
<varlistentry
> 
<term
>Toggle Subthreads <keycap
>T</keycap
> </term
> 
<listitem
> 
<para
>The replies to an article are either shown or hidden by multiply pressing this key; another way to open threads is to use the <keycap
>Right Arrow</keycap
> key.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Filter <keycap
>F6</keycap
></term
> 
<listitem
> 
<para
>A dialogue is shown where you can choose the filter for the articles.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Sort <keycap
>F7</keycap
> </term
> 
<listitem
> 
<para
>A dialogue is shown where you can change the sorting of the articles; if you choose a column for a second time it will change the sorting direction.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry>
<term
>Browsing articles <keycap
>Space</keycap
></term>
<listitem>
<para
>This key gives you a convenient possibility for browsing through the article view: by pressing this key the article in the article window is scrolled; when you reach the end of the article by repeatedly pressing <keycap
>Space</keycap
>, it takes you to the next article; when you have read all articles in one newsgroup, <keycap
>Space</keycap
> takes you to the first article of the next newsgroup. By repeatedly pressing <keycap
>Space</keycap
> you can browse through all subscribed newsgroups like this.</para>
</listitem>
</varlistentry>
<varlistentry>
<term
>Next unread article <keycombo action="simul"
>&Alt;<keycap
>Space</keycap
></keycombo
> </term
> 
<listitem
> 
<para
>This key binding jumps to the next unread article. The sequence follows the order of articles in the article view; threads are opened if necessary.</para>
</listitem
> 
</varlistentry
> 
<varlistentry>
<term
>Next unread thread <keycombo action="simul"
>&Ctrl;<keycap
>Space</keycap
></keycombo
> </term
> 
<listitem
> 
<para
>This command jumps to the next thread containing unread articles: the first unread article is then selected and shown. The sequence follows the order of articles in the article view.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Next article <keycap
>N</keycap
> </term
> 
<listitem
> 
<para
>This command jumps to the next article; the sequence follows the order of articles in the article view. Replies in closed threads are ignored.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Previous article <keycap
>B</keycap
></term
> 
<listitem
> 
<para
>This command jumps to the previous article in the group; the sequence follows the order of articles in the article view. Replies in closed threads are ignored.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Next group <keycap
> +</keycap
> </term
> 
<listitem
> 
<para
>This command jumps to the next newsgroup; the sequence follows the order of newsgroups in the folder view.</para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Previous group <keycap
>-</keycap
> </term
> 
<listitem
> 
<para
>This command jumps to the previous newsgroup; the sequence follows the order of newsgroups in the folder view.</para
> 
</listitem
> 
</varlistentry
> 
</variablelist
> 
</sect4
> 

<sect4
> 
<title
>Sorting and Filtering of Articles</title
> 

<para
>Some newsgroups are very crowded and contain lots of articles; perhaps only some of them are interesting to you. One possibility to keep track of the news you are interested in is to sort your articles with a certain criterion.</para>

<para
>Sorting your articles, and choosing sorting criteria, is done with the column titles in the article view: clicking on a column title makes it the current sorting criterion; another click on the same column title changes the order of sorting.</para>

<tip
> 
<para
>The current sorting criterion is indicated with an arrow next to the title; this gives you an easy sign which column is used for sorting, too. You have to make the column wide enough, though, so you can actually see the arrow; you can change the column width by moving the mouse pointer on the small area between two column titles: the pointer changes its appearance to two horizontal arrows; clicking and holding the &LMB; mouse button now allows you to change the width of the column to the left of the mouse pointer.</para>
</tip>

<para
>&knode; gives you the possibility to reduce the flood of articles: you can show only articles fitting specific criteria; &knode; uses filters for this task. In the following paragraphs we are just dealing with the predefined filters; for defining and using your own filters please refer to the <link linkend="using-filters"
>Defining and using Filters</link
> chapter.</para>

<para
>Normally you will read most articles only once, and then never again. &knode; labels the articles which are unread, but when there are more articles in a news group than can be shown by the article view you often have to search for unread articles: it would be much easier to see only the new fetched and unread articles; &knode; gives you this feature by the predefined filters.</para
> 

<para
>In the status line at the bottom border of your main window next to the word <guilabel
>Filter</guilabel
> the actually-active filter is shown: if you do not change the filter configuration this is the filter <guilabel
>all</guilabel
>; this means all articles of a newsgroup are shown. <guilabel
>all</guilabel
> is one of the predefined filters; there are eight of them in all, which are described in more detail here.</para
> 

<variablelist
> 
<varlistentry
> 
<term
> 
<guilabel
>All</guilabel
> 
</term
> 
<listitem
> 
<para
>This filter is the default setting; it shows all articles in a newsgroup. You can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>All</guimenuitem
></menuchoice
></para>
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Unread</term
> 
<listitem
> 
<para
>This filter shows only unread articles; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>Unread</guimenuitem
></menuchoice
></para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>New</term
> 
<listitem
> 
<para
>This filter shows only articles fetched during the last connection; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>New</guimenuitem
></menuchoice
></para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Watched</term
> 
<listitem
> 
<para
>This shows only threads chosen as watched threads by you; you may be watching a thread because, for example, you are participating in it, or because you are particularly interested in the answers. You can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>Watched</guimenuitem
></menuchoice
></para
> 

<para
>This filter only shows something if have you selected one or more threads to watch; you can achieve this by selecting <menuchoice
><guimenu
>Article</guimenu
><guisubmenu
>Thread</guisubmenu
><guimenuitem
>Watch</guimenuitem
></menuchoice
>: next to the subject a symbol will appear, showing a pair of eyes.</para>

</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Threads With Unread</term
> 
<listitem
> 
<para
>This filter shows only threads containing unread articles; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
> <guimenuitem
>Threads With Unread</guimenuitem
></menuchoice
></para>

</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Threads With New</term
> 
<listitem
> 
<para
>This filter shows only threads with newly-fetched articles; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>Threads With New</guimenuitem
></menuchoice
></para
> 
</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Own articles</term
> 
<listitem
> 
<para
>This filter only articles you have published; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
><guisubmenu
>Filter</guisubmenu
><guimenuitem
>Own Articles</guimenuitem
></menuchoice
></para
> 

</listitem
> 
</varlistentry
> 
<varlistentry
> 
<term
>Threads With Own Articles</term
> 
<listitem
> 
<para
>This filter only shows threads containing articles you have published; you can choose this filter by selecting <menuchoice
><guimenu
>View</guimenu
> <guisubmenu
>Filter</guisubmenu
><guimenuitem
>Own Articles</guimenuitem
></menuchoice
></para>
</listitem>
 
</varlistentry
> 
</variablelist
> 

<tip
> 
<para
>For everyday use the <guilabel
>unread</guilabel
> filter is propably the most useful: it shows all unread articles, including the old ones. The other filters are very task-specific and are seldom used; in the end it is a matter of taste which filter to select.</para
> 
</tip
> 
</sect4
> 
</sect3
> 

<sect3
> 
<title
>The Article Window</title
> 

<para
>The article window shows the currently-selected article. You can scroll in it like in a normal text editor window; the difference is that you cannot change the article &mdash; it is for reading only.</para
> 

<para
>By pressing the &RMB; in the article viewer you can access the important functions in the context menu very quickly.</para
> 

<para
>The window itself is divided in three areas; they are explained in more detail now.</para
> 

<sect4
> 
<title
>The Header</title
> 

<para
>This part shows the header lines or a part of the header. You will recognize some information here from the article view; for example, the subject and the address or name where the article originated. When you click on the <guilabel
>From:</guilabel
> address, &knode; opens an editor window where the email address of the author and the subject of the referring article are already filled in for you; this enables you to reply to the author directly from their article.</para
> 

<para
>The appearance and content of the header shown by default can be configured by choosing <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configuring KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>Headers</guilabel
></menuchoice
>; you can find a more-detailed view on this in <link linkend="anc-knode-headers"
>Configuring the Shown Headers</link
>.</para
> 

<para
>By selecting <menuchoice
><guimenu
>View</guimenu
><guimenuitem
>Show all headers</guimenuitem
></menuchoice
> you force &knode; to show the whole header as is produced by the newsreader and newsservers; normally you do not need this view: it needs a lot of space in the article window.</para>

<para
>The last lines of the header contain, if necessary, some references to other articles, shown as numbers in the range from 1 to n. These References are the articles to which the current article refers: the article labeled with 1 is the oldest article to which this article refers; the article with the highest number is the most-recent article to which the current article refers.</para>

<para
>When you click on a reference the corresponding article is loaded and shown in the article view; if the article is no longer available you will be informed by &knode;. This will happen if the article has been deleted by the article management of &knode; due to its age, or your news server decided to delete it from the newsgroup; for details on how to get such an article, please refer to the <link linkend="faq"
>Frequently Asked Questions</link
>.</para
> 

<tip
> 
<para
>The first lines in an article, with the subject and author information and so on, are called <glossterm
>headers</glossterm
>.</para
> 
</tip
> 
</sect4
> 

<sect4
> 
<title
>The Body of the Article</title
> 

<para
>The body of the article follows straight after the header; it is the actual message the author published in the newsgroup. Be aware that some articles may contain quotes from other articles which are not recognisable as quotes; this depends on the news editor the author used and their article-formatting habits.</para
> 

<para
>&knode; provides some formatting which can be used by articles; at the moment the available options are:</para>

<simplelist>
<member
>/italic/</member
> 
<member
>*bold*</member
> 
<member
>_underlined_</member
> 
</simplelist
> 

<para
>Do not use the highlighting too often; the impact decreases the more it is used.</para
> 

<tip
> 
<para
>The main part of the message (the contents) is called the <glossterm
>body</glossterm
>.</para
> 
</tip
> 

<para
>Most of the time a quote is indicated by a prefixed &gt; on every line; however, there are other possible signs. If you can not directly recognize a quote the author did not obey the rules of proper quoting.</para
> 

<para
>Also, it is usual to start an answer with a introductionary line, something like:</para>

<informalexample
> 
<para
>On 12/25/2000 Santa Claus wrote:</para
> 
</informalexample
> 

<tip
> 
<para
>Normally you do not have to concern yourself with these introductionary lines: &knode; does this automatically when you reply to an article; to find out how to customize this line see <link linkend="knode-composer-settings"
>The Composer Settings</link
> documentation. </para
> 
</tip
> 

<para
>In <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>Appearance</guilabel
></menuchoice
> you can choose how the articles are shown. In particular, &knode; provides the smart coloring of different reply levels; you can read more about this in the chapter <link linkend="knode-appearance"
>Configuring the appearance</link
>.</para
> 

<caution
> 
<para
>&knode; only supports the colouring of quotes if the quoting lines starts with special characters; you can configure these characters at <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>Viewer</guilabel
></menuchoice
>.</para>
</caution
> 

<para
>When the body of an article contains links to internet addresses you can invoke an internet browser to display the web page it links to by clicking on the link; details about configuring this feature can be found in <link linkend="setting-news-general"
>General news settings</link
>.</para>

</sect4
> 

<sect4
> 
<title
>The Signature</title
> 

<para
>Below the main text of an article you can find the signature of the author, provided you did not disable signatures in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>General</guilabel
></menuchoice
>. The signature is divided from the text by thin horizontal line.</para
> 
</sect4
> 


<sect4>
<title
>Attachments and Multipart <acronym
>MIME</acronym
> messages</title
> 

<para
>If an article contains attachments they are shown below the signature in a table.</para
> 

<para
>The multipart <acronym
>MIME</acronym
> format allows the body of an article to be sent in more than one format; for example, in plain-text and in <acronym
>HTML</acronym
>. It depends on the newsreader which format is used for reading the article.</para
> 

<para
>&knode; allows the different formats to be shown by selecting <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Reading News</guilabel
><guilabel
>Viewer</guilabel
><guilabel
>Show alternative contents as attachments</guilabel
></menuchoice
>; when this option is checked all alternative formats are shown as attachments and can be opened and viewed.</para
> 

<para
>If this option is unchecked you will not be shown the different text formats and &knode; decides which one should be shown.</para>

</sect4
> 
</sect3
> 
</sect2
> 

<sect2 id="post-and-mail-news"
> 
<title
>Writing and Replying to Articles</title
> 

<para
>Before you start writing articles or replying to other Usenet users be sure you understand the habits of the current newsgroup; again, reading <link linkend="knode-journey"
>A Journey Through Usenet</link
> would be a good idea.</para>

<para
>For testing the settings of &knode; please resist sending an article to a random newsgroup; it is not very friendly to bother people with test articles: what if you are subscribed to a newsgroup and half of its articles only contain the word <quote
>test</quote
>? It is like somebody calling you just to testing their phone.</para
> 

<para
>This is the reason for the special groups having <quote
>test</quote
> in their name; for example, <emphasis
>alt.test</emphasis
>. In these groups you can test everything you want without bothering anybody; some groups even send you error messages back.</para
> 

<para
>Here you can easily identify obvious mistakes, like a missing or a wrong e-mail address or a wrongly-configured charset which doesn't show all special characters.</para
> 

<para
>You can find a selection of test groups in <link linkend="infos-testgroups"
>Test Groups</link
>.</para
> 

<para
>Subscribe to one of the test groups now; some news servers have their own test groups, which are probably less crowded.</para>
 
<tip
> 
<para
>Remember, you have to download the articles of the new subscribed group; this may take some time if there are many articles in the group. The only important articles are yours and the answers by the check handler; if you want to reduce the number of articles fetched during the test you can configure this in <menuchoice
><guimenu
>Settings</guimenu
><guilabel
>Configure KNode...</guilabel
><guilabel
>Reading News</guilabel
><guilabel
>General</guilabel
><guilabel
>Maximal number of articles to fetch</guilabel
></menuchoice
>: if you reduce this dramatically, you should not wait too long to fetch the new articles after sending your test article; however, if it set too low your article might not be fetched. A tolerably-fast news server should provide your article right after you sent it; you might, however, have to wait a while, at worst 1 or 2 days. Feel free to send another article if cannot see your initial one; this is what the test groups are for.</para
> 
</tip
> 

<caution>
<para
>When you are using a local news server the configuration of <guilabel
>Maximal number of articles to fetch</guilabel
> in &knode; is probably unnecessary; you should consult the documentation of your news server instead.</para
> 
</caution>

<para
>If you did not encounter any errors unsubscribe from the test groups and set <guilabel
>Maximum number of articles to fetch</guilabel
> back to normal (1000).</para
> 

<sect3
> 
<title
>Publishing Articles</title
> 

<para
>You have seen most of &knode; now, but have only used it passively so far, so let's publish a test article now. Select the new subscribed test group in the folder view; then, with <menuchoice
><guimenu
>Article</guimenu
><guimenuitem
>Post to newsgroup...</guimenuitem
></menuchoice
>or the key <keycap
>P</keycap
>, the Editor will be opened.</para
> 

<para
>You can use the &knode; Editor like a normal Texteditor; there are some additional features for writing news articles though.</para
> 

<para
>In the editor window there are two input lines: one for the subject, which is empty at the moment; and another for the newsgroups this article is going to be posted to.</para
> 

<para
>Enter the text <userinput
>This is a test</userinput
> in the subject field.</para
> 

<tip
> 
<para
>Normally, when you post an article, use a descriptive subject. Articles without a descriptive subject are often ignored. Avoid subjects like <quote
>Help, it doesn't work !!!!!</quote
> This subject gives no information about the content of your article.</para
> 
</tip
> 

<para
>The <guilabel
>Groups:</guilabel
> field already contains the test newsgroup you selected before; do not change this.</para
> 

<para
>Below the input field for the <glossterm
>newsgroup</glossterm
> there is another inactive option field: this function is explained later in the chapter <link linkend="knode-editor-advanced"
>The editor</link
>; for now it is irrelevant.</para
> 

<para
>For simplicity reasons we will only use a simple sentence; type:</para>
 
<screen
><userinput
>This is the body of my test article. @ $ %</userinput
> 
</screen
> 

<para
>Then, enter an empty line, followed by:</para>
 
<screen
><userinput
>Did it work?</userinput
> 
</screen
> 

<para
>This may look funny to you, but it does what it is supposed to do &mdash; test your configuration..</para
> 

<para
>Your article should now look like the screenshot below:</para
> 

<screenshot
> 
<screeninfo
>Your first article</screeninfo
> 
<mediaobject
> 
<imageobject
> 
<imagedata fileref="knode-new-article.png" format="PNG"/> </imageobject
> 
<textobject
> 
<phrase
>Your first article</phrase
> 
</textobject
> 
<caption
> 
<para
>Your first article</para
> 
</caption
> 
</mediaobject
> 
</screenshot
> 

<para
>If you are using &knode; with a local newsserver choose <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send Now</guimenuitem
></menuchoice
> in the Editor; if you do not have a connection to a newsserver at this point, you may want to send the article later &mdash; you can achieve this by using <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send Later</guimenuitem
></menuchoice
> &mdash; &knode; then stores this article in the folder <guilabel
>Outbox</guilabel
>. You can start sending the articles in the <guilabel
>Outbox</guilabel
> manually by selecting <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send pending messages</guimenuitem
></menuchoice
>.</para
> 

<para
>After sending the article you will notice &knode; stores a copy in the <guilabel
>Sent</guilabel
> folder.</para
> 

<para
>Depending on how fast your article is published in the according newsgroup you can check the result after some time: mostly it is sufficient to check for new messages immediately after sending the article; be patient, though, it <emphasis
>may</emphasis
> take the article some hours before reaching the newsgroup. If the article does not arrive after a number of hours it is likely that something went wrong: try again; then, if it is still not working, have a look at the <link linkend="faq"
>Frequently Asked Questions</link
>.</para
> 

<important
> 
<para
>Even when you are using a local news server, you have to check for new articles: the local news server just sends the article, it does not store it in the local newsgroup, so you have to synchronize with an external news server if you want to see if your test article has arrived.</para
> 
</important
> 

<para
>If the <glossterm
>article</glossterm
> appears in the newsgroup you are successful; now you should check if there is the correct sender and if the article is readable. Have a look on your language-specific characters like the German umlauts; if they are not readable you have to change the coding at <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Posting News</guilabel
><guilabel
>Technical</guilabel
></menuchoice
>to <guilabel
>Allow 8-bit</guilabel
>. Change this and repeat your test.</para
> 

<para
>If everything is right you have successfully published your first article in usenet with &knode;.</para
> 

</sect3
> 

<sect3
> 
<title
>Post Reply</title
> 

<para
>After successfully publishing an article we will now answer to your own article. You want to answer the question you asked, don't you?</para
> 

<para
>Select your article in the article view and press the &RMB;: a context menu will appear; choose <guimenuitem
>Followup to newsgroup</guimenuitem
>.</para
> 

<para
>&knode; opens the Editor again, but this time there is already a subject filled in for you. The subject line reads:</para>
 
<screen
><computeroutput
>Re: This is a test</computeroutput
> 
</screen
> 

<para
><emphasis
>Re:</emphasis
> is a shortcut for the Latin <quote
>In re</quote
>, which translates to something along the lines of <quote
>relating to</quote
>. You should not change the subject and, above all, the <emphasis
>Re:</emphasis
>: most newsreaders sort threads by the subject.</para
> 

<tip
> 
<para
>If you want to change the subject for some reason put the new subject in front of the old and replace the Re: with a bracketed (Was: ... ); in our example this would look like </para>

<informalexample
> 
<para
>A new subject! (Was: This is a test)</para
> 
</informalexample
> 

<para
>With this kind of subject you show the other readers there is a branch in the original discussion; this happens, for example, when a new topic occurs in the original discussion or the original subject has changed for some reason.</para
> 

<para
>If you answer to an article with such a subject, delete the bracketed part of the subject; the first part with a prefixed <emphasis
>Re:</emphasis
> remains.</para>

<informalexample>
<para
>Re: A new subject!</para>
</informalexample
> 
</tip
> 

<para
>Let us have look at the Editor now. The contents of the article to which we want to reply has already been copied to the Editor by &knode;; to indicate the text is a quote every line is prefixed with a <emphasis
>&gt;</emphasis
>.</para
> 

<para
>In front of the quoted text &knode; has put an introduction line: the content of this line refers to the original author; you can change the standard text of this line in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Posting News</guilabel
><guilabel
>Composer</guilabel
><guilabel
>Introduction Phrase:</guilabel
></menuchoice
>.</para
> 

<para
>The original article contains the question: <emphasis
>Did it work?</emphasis
> We want to answer this question now.</para>

<para
>Place the cursor below the quoted question and write in the next line:</para>
 
<screen
><userinput
>Yes it worked, congratulations!</userinput
> 
</screen
> 

<para
>We are not finished yet: it is considered polite to begin with a greeting like <quote
>Hello</quote
> in the first line; whether you call the author by their name or not depends on your habits, watch the newsgroup to get used to the habits there.</para
> 

<para
>Next we delete all non-mandatory parts of the quoted article; in our case, we delete all parts except the question.</para
> 

<para
>With such a short text this is unnecessary, but this just an example: if you have to read a message 100 lines long again just to find an <citation
>I agree</citation
> at the end you will understand.... Aside from this, it makes articles smaller so they use less space on the server.</para
> 

<para
>At the end we say good bye.</para
> 

<para
>This screenshot shows our answer before sending it.</para>

<screenshot
> 
<screeninfo
>Your answer to your article</screeninfo
> 
<mediaobject
> 
<imageobject
> 
<imagedata fileref="knode-followup.png" format="PNG"/> </imageobject
> 
<textobject
> 
<phrase
>Your answer to your article</phrase
> 
</textobject
> 
<caption
> 
<para
>Your answer to your article</para
> 
</caption
> 
</mediaobject
> 
</screenshot
> 

<tip
> 
<para
>You can find a good guide for correct quoting at <ulink url="http://www.afaik.de/usenet/faq/zitieren"
>http://www.afaik.de/usenet/faq/zitieren</ulink
> (German).</para
> 
</tip
> 

<para
>Now we still need to post our reply; like posting the original message choose <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send now</guimenuitem
></menuchoice
> or the alternative <menuchoice
><guimenu
>File</guimenu
><guimenuitem
>Send later</guimenuitem
></menuchoice
>, if you're not online at the moment and you're not using a local newsserver. If everything works you will see your article in the newsgroup after a while; easy, isn't it?</para>
 
<tip
> 
<para
>Using the <guimenu
>Options</guimenu
> menu you can configure whether you want to send an email, a news article or both.</para>
</tip
> 
</sect3
> 

<sect3
> 
<title
>Mail Reply</title
> 

<para
>The Mail Reply follows the same lines as posting a reply in a newsgroup; the only difference is that a mail reply is sent directly to the author and does not appear in any newsgroup.</para
> 

<para
>Sometimes it is better to use an emailed reply instead of posting a reply to newsgroup; they are used primarily for when you want to correct an error or misconduct by the author, without hurting their feelings by doing so publicly on the newsgroup.</para
> 

<para
>To answer with an e-mail select your article; again, open the context menu with the right mouse button; and choose <guimenuitem
>Reply by Email</guimenuitem
>: &knode; opens the Composer with the quoted article.</para
> 

<para
>Subject and body are identical as when posting an article but the <guilabel
>Groups:</guilabel
> field is replaced by a <guilabel
>To:</guilabel
> field; here the author's email address appears. In our example this should be your own email address, if &knode; is set up correctly.</para
> 

<para
>For emails the same rules for quoting and politeness apply as for posting an article in a newsgroup.</para
> 

<para
>After finishing your Reply, you can send it.</para
> 

<para
>The screenshot below shows the reply we distributed by email.</para
> 

<screenshot
> 
<screeninfo
>A Mail Reply</screeninfo
> 
<mediaobject
> 
<imageobject
> 
<imagedata fileref="knode-reply.png" format="PNG"/> </imageobject
> 
<textobject
> 
<phrase
>A Mail Reply</phrase
> 
</textobject
> 
<caption
> 
<para
>A Mail Reply</para
> 
</caption>
</mediaobject>
</screenshot>

<important>
<para
>The Mail Reply only works if you have used the correct settings in <menuchoice
><guimenu
>Settings</guimenu
><guimenuitem
>Configure KNode...</guimenuitem
><guilabel
>Accounts</guilabel
><guilabel
>Mail</guilabel
></menuchoice
>.</para>
 
<para
>Depending on the configuration of your computer, you will find the reply in your mailbox; you might have to connect to your <acronym
>ISP</acronym
> and fetch your new mail first though.</para>
</important
> 

<tip
> 
<para
>On the <guimenu
>Options</guimenu
> menu you can configure whether you want to send an email, a news article or both.</para
> 
</tip
> 
</sect3
> 
</sect2>
</sect1
>