summaryrefslogtreecommitdiffstats
path: root/l10n-ro/suite/chrome/common/help/mail_help.xhtml
blob: a8c73084dd08a5a2826b6449bd2de72f1f0bbbe5 (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
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"[
  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
  %brandDTD;
]>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Using &brandShortName; Mail &amp; Newsgroups</title>
<link rel="stylesheet" href="helpFileLayout.css"
  type="text/css"/>
</head>
<body>

<div class="boilerPlate">This document is provided for your information only.
  It may help you take certain steps to protect the privacy and security of
  your personal information on the Internet. This document does not, however,
  address all online privacy and security issues, nor does it represent a
  recommendation about what constitutes adequate privacy and security
  protection on the Internet.</div>

<h1 id="using_mozilla_mail_and_newsgroups">Using &brandShortName; Mail &amp;
  Newsgroups</h1>

<p>&brandShortName; Mail &amp; Newsgroups lets you conveniently manage all your
  Internet communications from one place. You can set up and maintain multiple
  business and personal mail accounts and Internet newsgroups, all from one
  window &mdash; the Mail &amp; Newsgroups window.</p>

<p>To start using &brandShortName; Mail &amp; Newsgroups:</p>

<ul>
  <li>Click the Mail &amp; Newsgroups icon in the lower-left corner of the
    &brandShortName; browser window.</li>
</ul>

<table>
  <tr>
    <td colspan="2"><img src="images/task_mail.png" alt=""/></td>
  </tr>
  <tr>
    <td style="width: 20px;"></td>
    <td><strong>Mail &amp; Newsgroups icon</strong></td>
  </tr>
</table>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#getting_started_with_mozilla_mail_and_newsgroups">Getting
      Started with &brandShortName; Mail &amp; Newsgroups</a></li>
    <li><a href="#reading_messages">Reading Messages</a></li>
    <li><a href="#sending_messages">Sending Messages</a></li>
    <li><a href="#creating_html_mail_messages">Creating HTML Mail
      Messages</a></li>
    <li><a href="#using_attachments">Using Attachments</a></li>
    <li><a href="#deleting_messages">Deleting Messages</a></li>
    <li><a href="#using_address_books">Using Address Books</a></li>
    <li><a href="#organizing_your_messages">Organizing Your Messages</a></li>
    <li><a href="#controlling_junk_mail">Controlling Junk Mail</a></li>
    <li><a href="#importing_mail_from_other_programs">Importing Mail from Other
      Programs</a></li>
    <li><a href="#getting_started_with_newsgroups">Getting Started with
      Newsgroups</a></li>
    <li><a href="#working_offline">Working Offline</a></li>
    <li><a href="mail_sec_help.xhtml">Signing &amp; Encrypting
      Messages</a></li>
    <li><a href="#mail_and_newsgroups_account_settings">Mail &amp; Newsgroups
      Account Settings</a></li>
    <li><a href="#mail_and_newsgroup_preferences">Mail &amp; Newsgroups
      Preferences</a></li>
  </ul>
</div>

<h1 id="getting_started_with_mozilla_mail_and_newsgroups">Getting Started with
  &brandShortName; Mail &amp; Newsgroups</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#using_the_mail_account_setup_wizard">Using the Mail Account
      Setup Wizard</a></li>
    <li><a href="#setting_up_additional_mail_and_news_accounts">Setting Up
      Additional Mail and News Accounts</a></li>
    <li><a href="#changing_the_settings_for_an_account">Changing the Settings
      for an Account</a></li>
  </ul>
</div>

<h2 id="using_the_mail_account_setup_wizard">Using the Mail Account Setup
  Wizard</h2>

<p>To set up a mail or newsgroup account, first open the Window menu and choose
  Mail &amp; Newsgroups. If you haven&apos;t already set up an account, the
  Account Wizard appears automatically, enabling you to set up an account.</p>

<p>The Account Wizard guides you through the process of creating a new account.
  If you don&apos;t know a setting, click Cancel and ask your Internet service
  provider (ISP) or help desk.</p>

<p>If an account already exists, the Account Wizard doesn&apos;t appear
  automatically when the Mail window opens. Instead, after opening the Mail
  window, open the File menu and choose New, then Account. For more details,
  see <a href="#setting_up_additional_mail_and_news_accounts">Setting Up
  Additional Mail &amp; News Accounts</a>.</p>

<h3 id="setting_up_mail_accounts_with_an_isp_or_email_provider">Setting Up Mail
  Accounts with an ISP or Email Provider</h3>

<p>Before you set up a mail account, your ISP or email provider should give you
  the following information:</p>

<ul>
  <li>your user name</li>
  <li>your email address</li>
  <li>the incoming and outgoing mail server names</li>
  <li>the incoming server type (<a href="glossary.xhtml#imap">IMAP</a> or
    <a href="glossary.xhtml#pop">POP</a>)</li>
</ul>

<p>Before you set up a newsgroup account, your ISP or email provider should
  give you the following information:</p>

<ul>
  <li>your email address</li>
  <li>newsgroup server name</li>
  <li>account name</li>
</ul>

<p>To set up a new mail or newsgroup account, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click Add Account to start the Account Wizard.

    <p>The information requested by the Account Wizard depends on the type of
      new account you specify in its first window. The boldface headings that
      follow correspond to the windows you&apos;ll see when you&apos;re setting
      up an ISP or email provider account.</p>
  </li>
  <li><strong>New Account Setup</strong>: Choose the type of account you want
    to set up, then click the right arrow.</li>
  <li><strong>Identity</strong>: Enter the name and email address appropriate
    for this account, then click the right arrow.</li>
  <li><strong>Server Information</strong>:
    <ul>
      <li>Indicate whether you want a POP account or an IMAP account. Not all
        service providers can support both options. For more information, see
        <a href="#server_settings">Mail &amp; Newsgroups Account Settings -
        Server Settings</a>.</li>
      <li>Enter the name of your incoming mail server.</li>
      <li>If you want this account to be a part of the Local Folders Global
        Inbox account, check the <q>Use Global Inbox</q> box. Mail for
        this account will then be stored in your Local Folders. Otherwise, if
        the checkbox is unchecked, mail will be stored in its own
        directory.</li>
      <li>Enter the name of your outgoing mail server (SMTP).

        <p><strong>Note</strong>: You need to specify only one outgoing mail
          server (SMTP), even if you have several mail accounts. The name of
          your <a href="glossary.xhtml#smtp">SMTP</a> host may not have been
          explicitly listed in the account setup information provided to you.
          For example, your SMTP host may be the same as your POP or IMAP host.
          If in doubt, contact your ISP or system administrator.</p>
      </li>
      <li>Click the right arrow to continue.</li>
    </ul>
  </li>
  <li><strong>User Names</strong>: Enter the incoming and outgoing user names
    provided by your ISP or email provider, then click the right arrow.</li>
  <li><strong>Account Name</strong>: Enter whatever name you want to use to
    refer to this account, then click the right arrow.</li>
  <li><strong>Congratulations!</strong> Verify that the information you entered
    is correct. If necessary, verify the information you entered with your ISP
    or system administrator. When you are sure that it&apos;s correct, click
    Finish to set up your account.</li>
  <li>You see your new account listed in the left side of the Mail &amp;
    Newsgroups Account Settings dialog box. Click OK to start using your new
    account.</li>
</ol>

<p>You are now ready to get messages from your account. &brandShortName; Mail
  &amp; Newsgroups will prompt you for your password when you retrieve mail for
  the first time every session. For detailed instructions on how to retrieve
  mail, see <a href="#getting_new_messages">Getting New Messages</a>.</p>

<p>[<a href="#getting_started_with_mozilla_mail_and_newsgroups">Return to
  beginning of section</a>]</p>

<h2 id="setting_up_additional_mail_and_news_accounts">Setting Up Additional
  Mail and News Accounts</h2>

<p>You use the Account Settings dialog box to add a new account or to change
  information for an existing account, including:</p>

<ul>
  <li>mail and newsgroup server settings (for example, message deletion and
    download preferences)</li>
  <li>storage settings for message copies and folders</li>
  <li>your reply-to address, organization name, and signature</li>
</ul>

<p>To add a new account or change settings for an existing account, begin from
  the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box. You can perform
    these tasks:
    <ul>
      <li><strong>Add Account</strong>: Click this button to set up a new mail
        or news account. Be sure to type the account information exactly as it
        is given to you. Move through the screens with the arrows, or click
        Cancel to stop account creation.</li>
      <li><strong>Set as Default</strong>: Select an account, then click this
        button to make the selected account appear at the top of your list of
        accounts in the Mail Window. The change takes effect the next time you
        open Mail &amp; Newsgroups.

        <p>The default account is the one that you want to log into and (for
          IMAP accounts only) automatically check for new messages when you
          start Mail &amp; Newsgroups. (For POP accounts, you must always click
          the Get Msg button to get new messages.)</p>
      </li>
      <li><strong>Remove Account</strong>: Select an account, then click this
        button to remove it completely from your Mail window.</li>
      <li><strong>Outgoing Server (SMTP)</strong>: Click this (at the bottom of
        the list of accounts) to modify information about the outgoing mail
        server. See <a href="#outgoing_server">Mail &amp; Newsgroups Account
        Settings - Outgoing Server (SMTP)</a> for more information.</li>
    </ul>
  </li>
  <li>Click headings under any account&apos;s name and modify the corresponding
    settings in the panel on the right.</li>
  <li>Click OK to save your changes.</li>
</ol>

<p>[<a href="#getting_started_with_mozilla_mail_and_newsgroups">Return to
  beginning of section</a>]</p>

<h2 id="changing_the_settings_for_an_account">Changing the Settings for an
  Account</h2>

<p>To view or change information for an existing mail or newsgroup account,
  begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click the account name in the left-hand side of the Account Settings
    dialog box. You see information about the account, such as your email
    address and signature file, in the right side of the dialog box.</li>
  <li>Click any of these items beneath the name of an account to see the
    corresponding settings:
    <ul>
      <li><strong>Server Settings</strong>: The settings available depend on
        the type of server (IMAP, POP, or newsgroup server). For more
        information, see <a href="#server_settings">Mail &amp; Newsgroups
        Account Settings - Server Settings</a>.

        <p><strong>Important</strong>: If you need to change the server type
          (for example, from POP to IMAP) you must first remove the existing
          account. Next, you must exit &brandShortName; and restart it. You can
          then reopen the Mail &amp; Newsgroups Account Settings dialog box and
          recreate an account with the new server type by clicking Add
          Account.</p>
      </li>
      <li><strong>Copies &amp; Folders</strong>: These settings determine
        whether to send automatic messages (blind carbon copies) and where you
        want to store copies of outgoing messages, message drafts, and message
        templates. For more information, see <a href="#copies_and_folders">Mail
        &amp; Newsgroups Account Settings - Copies &amp; Folders</a>.</li>
      <li><strong>Composition &amp; Addressing</strong>: These settings allow
        you to choose your default format and quoting behavior when composing a
        message. You can also override the global directory server settings
        specified for all address books in the Preferences dialog box. For more
        information, see <a href="#addressing">Mail &amp; Newsgroups Account
        Settings - Composition &amp; Addressing</a>.</li>
      <li><strong>Offline &amp; Disk Space (IMAP and News accounts
        only)</strong>: These settings apply when you are working offline
        (disconnected from the Internet) or need to save download time and
        conserve disk space. For more information, see
        <a href="#offline_and_disk_space_settings_imap">Offline and Disk Space
        Settings (IMAP)</a> or
        <a href="#offline_and_disk_space_settings_nntp">Offline and Disk Space
        Settings (News)</a>.</li>
      <li><strong>Disk Space (POP accounts only)</strong>: This setting
        determines the maximum size of messages that you are willing to
        download to your hard disk. For more information, see
        <a href="#disk_space_settings">Disk Space Settings (POP)</a>.</li>
      <li><strong>Security</strong>: These settings determine which
        <a href="glossary.xhtml#certificate">certificates</a> are used to
        digitally sign and encrypt mail messages that you send. Digital
        signatures allow you to identify yourself reliably to others in
        mail messages that you send. Encryption helps ensure that your
        messages remain private while they are in transit over the
        Internet. For more information, see
        <a href="#security">Mail &amp; Newsgroups Account Settings -
        Security</a>.</li>
    </ul>
  </li>
  <li>Click OK to save your changes.</li>
</ol>

<p>[<a href="#getting_started_with_mozilla_mail_and_newsgroups">Return to
  beginning of section</a>]</p>

<h1 id="reading_messages">Reading Messages</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#getting_new_messages">Getting New Messages</a></li>
    <li><a href="#choosing_how_you_view_the_mail_window">Choosing How You View
      the Mail Window</a></li>
    <li><a href="#sorting_and_threading_messages">Sorting and Threading
      Messages</a></li>
    <li><a href="#saving_and_printing_messages">Saving and Printing
      Messages</a></li>
    <li><a href="#controlling_images_scripts_and_plugins">Controlling Images,
      Scripts, and Plugins</a></li>
  </ul>
</div>

<h2 id="getting_new_messages">Getting New Messages</h2>

<p>For an IMAP account, you can retrieve new messages automatically and display
  them in the Inbox by opening Mail &amp; Newsgroups and selecting the Inbox
  for the IMAP account.</p>

<p>For a POP account, you must select the Inbox and click Get Msgs to retrieve
  your messages. By default, messages from your POP account are downloaded in
  full and deleted from the POP server when you retrieve them. You can
  <a href="#pop_server_settings">change your POP server settings</a> to
  retrieve just the headers and/or store a copy of messages on the server in
  addition to downloading them to your computer.</p>

<p>You can also set up Mail &amp; Newsgroups to get new messages at startup and
  to check for new messages at timed intervals.</p>

<table>
  <tr>
    <td colspan="2"><img src="images/task_mail.png" alt=""/></td>
  </tr>
  <tr>
    <td style="width: 20px;"></td>
    <td><strong>Mail &amp; Newsgroups icon</strong></td>
  </tr>
</table>

<p>The Mail &amp; Newsgroups icon on the status bar displays a green arrow to
  notify you when new messages have arrived.</p>

<table>
  <tr>
    <td colspan="2"><img src="images/task_newmail.png" alt=""/></td>
  </tr>
  <tr>
    <td style="width: 20px;"></td>
    <td><strong>New mail notification</strong></td>
  </tr>
</table>

<p>To set up a mail account to automatically check for new messages, begin from
  the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>If you have multiple accounts, select an account and click the Server
    Settings category for that account.</li>
  <li>Select one or both of the following options in the Server Settings
    section:
    <ul>
      <li><strong>Check for new mail at startup</strong>: Select this checkbox
        if you want to check this account automatically for new messages
        whenever you start Mail &amp; Newsgroups. For POP accounts, Mail &amp;
        Newsgroups checks for new mail, but doesn&apos;t download new messages
        until you click Get Msgs or unless you choose <q>Automatically download
        any new messages</q>.</li>
      <li><strong>Check for new messages every [__] minutes</strong>: Select
        this checkbox if you want to specify the number of minutes between mail
        checks. You can also check for new messages at any time by clicking Get
        Msgs in the Mail window.</li>
    </ul>
  </li>
  <li>Click OK. Your settings take effect the next time you start
    &brandShortName; Mail &amp; Newsgroups.</li>
</ol>

<p>To set up &brandShortName; Mail &amp; Newsgroups to play a sound or display
  an alert when new mail arrives, see <a href="#notifications">Mail &amp;
  Newsgroups Preferences - Notifications</a>.</p>

<p>You can always retrieve messages manually at any time. To get new messages
  for the selected account or newsgroup, do one of the following:</p>

<ul>
  <li>Click Get Msgs on the Mail toolbar.</li>
  <li>Open the File menu (in the Mail window) and choose Get New Messages.</li>
</ul>

<p>To get new messages for all your mail accounts, begin from the Mail
  window:</p>

<ol>
  <li>Click the triangle on the Get Msgs button in the Mail toolbar.</li>
  <li>Choose Get All New Messages. &brandShortName; Mail &amp; Newsgroups
    retrieves new messages for all your mail accounts.

    <p>If you are not currently logged into one of your mail accounts, Mail
      &amp; Newsgroups first prompts you to enter your user name and password
      before retrieving new messages for that account. (If you have already
      stored your user name and password using the Password Manager, Mail &amp;
      Newsgroups doesn&apos;t prompt you for this information.)</p>
  </li>
</ol>

<p><strong>Note</strong>: You can also open the File menu (in the Mail window)
  and choose <q>Get New Messages for</q>.</p>

<p>To get new messages for a specific mail account, begin from the Mail
  window:</p>

<ol>
  <li>Click the triangle on the Get Msgs button on the Mail toolbar.</li>
  <li>Choose the account for which you want to retrieve mail.</li>
</ol>

<p><strong>Note</strong>: Mail &amp; Newsgroups prompts you for your password
  the first time you retrieve messages for an account. You can choose to have
  Mail &amp; Newsgroups store your password in the Password Manager at that
  time.</p>

<p>Password Manager can save all your user names and passwords on your own
  computer and enter them for you automatically. For more information, see
  <a href="using_priv_help.xhtml#using_the_password_manager">Using the Password
  Manager</a>.</p>

<p>[<a href="#reading_messages">Return to beginning of section</a>]</p>

<h2 id="choosing_how_you_view_the_mail_window">Choosing How You View the Mail
  Window</h2>

<p>You can customize the layout of the Mail window (the window you see when you
  choose Mail &amp; Newsgroups from the Window menu):</p>

<ul>
  <li>Open the View menu and choose Show/Hide to show or hide the Mail toolbar,
    search bar, or the status bar.</li>
  <li>Open the View menu and choose Layout to select the type of three-pane
    window layout to use.</li>
  <li>Expand and collapse any pane to switch between a three-pane or two-pane
    view.</li>
</ul>

<p>[<a href="#reading_messages">Return to beginning of section</a>]</p>

<h2 id="sorting_and_threading_messages">Sorting and Threading Messages</h2>

<p>To sort messages by categories such as subject, sender, date, or priority,
  begin from the Mail window:</p>

<ul>
  <li>Click the appropriate column heading in the message list window. Or, open
    the View menu, choose Sort by, and then select the column you want to sort
    by.</li>
</ul>

<p>To reorder column headings, begin from the Mail window:</p>

<ul>
  <li>Click and drag a column heading to the left or right to reposition the
    column.</li>
</ul>

<p>To change which columns are displayed, begin from the Mail window:</p>

<ul>
  <li>Click the Show/Hide Columns icon <img src="images/columns.png" alt=""/>
    and select the column to be added/removed from the list.</li>
</ul>

<p>To group messages by threading (subject), so each message is grouped with
  all its responses:</p>

<ul>
  <li>Click the thread button to the left of the Subject, Sender, and Date
    column headings. Or, open the View menu, choose Sort by, and then select
    Threaded.</li>
</ul>

<table>
  <tr>
    <td colspan="2"><img src="images/threadbutton.png" alt=""/></td>
  </tr>
  <tr>
    <td style="width: 20px;"></td>
    <td><strong>Thread button</strong></td>
  </tr>
</table>

<p><strong>Tip</strong>: The thread button automatically sorts the threads by
  the age of their parent messages. If you want to use another sort criterion
  for the threads, open the View menu and select the desired option from the
  Sort by submenu.</p>

<p><strong>Tip</strong>: Select <q>Preserve threading when sorting messages</q>
  in the <a href="#mail_and_newsgroups">Mail &amp; Newsgroups Preferences</a>
  if you want &brandShortName; to preserve the threaded message grouping when
  sorting messages with column header clicks. The thread button just toggles
  between threaded and unthreaded message grouping in this mode. If <q>Preserve
  threading when sorting messages</q> is not selected, &brandShortName;
  automatically displays the messages unthreaded when you sort them by clicking
  on a column header.</p>

<p><strong>Tip</strong>: To help you identify unread messages in a collapsed
  thread where you&apos;ve read the parent message, &brandShortName; Mail &amp;
  Newsgroups underlines the parent message.</p>

<p>[<a href="#reading_messages">Return to beginning of section</a>]</p>

<h2 id="saving_and_printing_messages">Saving and Printing Messages</h2>

<p>To save a mail message as a plain-text, HTML, or Outlook Express file:</p>

<ol>
  <li>In the Mail window, select the message.</li>
  <li>Open the File menu and choose Save As, and then choose File.</li>
  <li>For <q>Save as type</q>, choose a file type (HTML, Text, or Mail file).
    Choose Mail file if you want to save the message so it can be opened by
    Microsoft Outlook or Outlook Express.</li>
  <li>Change the filename&apos;s extension to end in .html, .txt, or .eml,
    depending on the file type you chose in step 3.</li>
  <li>Choose a destination for the file and click Save.</li>
</ol>

<p>To print a selected message:</p>

<ul>
  <li>Click Print.</li>
</ul>

<p>[<a href="#reading_messages">Return to beginning of section</a>]</p>

<h2 id="controlling_images_scripts_and_plugins">Controlling Images, Scripts,
  and Plugins</h2>

<p>By default, images and other content, that is hosted remotely, will not
  display in messages you receive, except from senders in your address books
  whom you have allowed. To change these settings:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click Message Display. (If
    no subcategories are visible, double-click Mail &amp; Newsgroups to
    expand the list.)</li>
  <li>Uncheck <q>Block images and other content from remote sources</q>.</li>
  <li>Click OK to have your change take affect.</li>
</ol>

<p><strong>Note</strong>: See <q>Allow remote images in HTML mail</q> in
  <a href="#creating_a_new_address_book_card">Creating a New Address Book
  Card</a> for details of how to change which senders can show remote
  content.</p>

<p>By default, JavaScript and plugins are not enabled for mail messages you
  receive. To change these settings:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Advanced category, click Scripts &amp; Plugins. (If no
    subcategories are visible, double-click Advanced to expand the
    list.)
    <ul>
      <li>Under <q>Enable JavaScript for</q>, check <q>Mail &amp;
        Newsgroups</q> to enable JavaScript.</li>
      <li>Under <q>Enable Plugins for</q>, check <q>Mail &amp; Newsgroups</q>
        to enable plugins.</li>
    </ul>
  </li>
  <li>Click OK to have your changes take affect.</li>
</ol>

<p>[<a href="#reading_messages">Return to beginning of section</a>]</p>

<h1 id="sending_messages">Sending Messages</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#composing_mail_and_newsgroup_messages">Composing Mail and
      Newsgroup Messages</a></li>
    <li><a href="#using_the_message_composition_window">Using the Message
      Composition Window</a></li>
    <li><a href="#addressing_a_message">Addressing a Message</a></li>
    <li><a href="#selecting_message_sending_options">Selecting Message
      Sending Options</a></li>
    <li><a href="#replying_to_a_message">Replying to a Message</a></li>
    <li><a href="#forwarding_a_message">Forwarding a Message</a></li>
    <li><a href="#confirming_that_your_message_was_opened">Confirming That Your
      Message Was Opened</a></li>
    <li><a href="#saving_and_editing_a_message_draft">Saving and Editing a
      Message Draft</a></li>
    <li><a href="#creating_and_using_templates">Creating and Using
      Templates</a></li>
  </ul>
</div>

<h2 id="composing_mail_and_newsgroup_messages">Composing Mail and Newsgroup
  Messages</h2>

<p>You can address, compose, reply to, or send a new message by doing one of
  the following:</p>

<ul>
  <li>In any &brandShortName; window, open the File menu and choose New, then
    Message.</li>
  <li>Click Compose on the Mail toolbar.</li>
  <li>While displaying a message, click Reply, Forward, or Reply All on the
    Mail toolbar.</li>
  <li>From the Address Book window, select an address and click Compose on the
    Address Book.</li>
</ul>

<p><strong>Tip</strong>: Use the Mail &amp; Newsgroups Account Settings - 
  <a href="#addressing">Composition &amp; Addressing</a> dialog box to specify
  the HTML text editor to use for composing messages sent from this account.
  (You can specify a different editor for each of your accounts.) See
  <a href="#changing_the_settings_for_an_account">Changing the Settings for an
  Account</a> for more information.</p>

<p>Composing messages in HTML format allows you to use different fonts, text
  styles (such as bold or italic) and text colors, tables, numbered or bulleted
  lists, and pictures in your messages. However, some recipients may only be
  able to read messages composed in plain text format. If you want to use the
  plain-text editor occasionally, you can hold down the Shift key while
  clicking the Compose or the Reply button to use the plain-text editor on an
  as-needed basis.</p>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="using_the_message_composition_window">Using the Message Composition
  Window</h2>

<p>Use the Compose window to address, compose, and send mail and newsgroup
  messages. First specify whether you want to compose messages in plain text or
  HTML by default in the <a href="#addressing">Composition &amp; Addressing</a>
  Preferences panel (open the Edit menu and choose Mail &amp; Newsgroups
  Account Settings).</p>

<p>To view the Compose window, click the Compose button on the Mail
  toolbar.</p>

<p>The Compose window contains the following:</p>

<ul>
  <li>Mail Toolbar

    <p>You can click the following buttons:</p>
    <ul>
      <li><strong>Send</strong>: To send a completed message.</li>
      <li><strong>Address</strong>: To search for names in your address
        books.</li>
      <li><strong>Attach</strong>: To attach a file to a message. See
        <a href="#using_attachments">Using Attachments</a> for more
        information.</li>
      <li><strong>Spell</strong>: To check the spelling of your message
        text.</li>
      <li><strong>Security</strong>: To display information about whether
        your message will be sent encrypted or digitally signed (or
        both).</li>
      <li><strong>Save</strong>: To save the message as a draft.</li>
    </ul>
  </li>
  <li>Addressing area: Where you enter the email addresses of recipients.</li>
  <li>Attachments area: When you attach files to a message (by clicking in this
    area or by clicking the Attach button), the filenames will be listed in the
    Attachments area to the right of the Addressing area.</li>
  <li>Message body area: Where you type the contents of your message.</li>
</ul>

<p>If you&apos;ve chosen to compose messages using the HTML editor, you see an
  additional toolbar with text formatting buttons similar to those in
  &brandShortName; Composer.</p>

<p>For help using the HTML editor, see
  <a href="composer_help.xhtml#formatting_your_web_pages">Formatting Your Web
  Pages</a>.</p>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="addressing_a_message">Addressing a Message</h2>

<p>To address a mail message:</p>

<ol>
  <li>Type the name in the addressing area.

    <p>If you have <a href="#address_autocompletion">address autocompletion</a>
      enabled (it&apos;s enabled by default), type the first few letters of
      the recipient&apos;s name and wait for Mail &amp; Newsgroups to complete
      the address. (Or you can type part of the name and immediately press
      <kbd class="mac">Return</kbd><kbd class="noMac">Enter</kbd> to have Mail
      &amp; Newsgroups try to complete the address.)</p>
  </li>
  <li>If multiple addresses are displayed, select an address and press
    <kbd class="mac">Return</kbd><kbd class="noMac">Enter</kbd>.

    <p><strong>Note</strong>: Use a comma to separate multiple addresses on the
      same line. Do not use a comma to separate first or last names. For
      example, multiple entries might be:</p>

    <p><tt>user1@netscape.net,user2@netscape.net</tt></p>
  </li>
  <li>If you want this message to be sent from a different account, click the
    <q>From</q> field to select the account you want. See
    <a href="#changing_the_account_from_which_a_message_is_sent">Changing the
    Account From Which a Message is Sent</a> for more information.</li>
  <li>If necessary, click <q>To</q> to choose a different recipient type:
    <ul>
      <li><strong>To</strong>: For primary recipients of your message.</li>
      <li><strong>Cc</strong>: For secondary recipients (carbon copy).</li>
      <li><strong>Bcc</strong>: For secondary recipients not identified to the
        other recipients, including those in the cc list (blind carbon
        copy).</li>
      <li><strong>Reply-To</strong>: For recipients to reply to a different
        email address other than the one the message is sent from.</li>
      <li><strong>Newsgroup</strong>: For posting to a newsgroup.</li>
      <li><strong>Followup-To</strong>: For redirecting a newsgroup posting, so
        that subsequent replies go directly to the redirected newsgroup instead
        of the original newsgroup.</li>
    </ul>
  </li>
</ol>

<p><strong>Tip</strong>: You can quickly address a message by clicking the
  email address contained in a message you&apos;re reading, and then selecting
  Compose Mail To from the pop-up menu.</p>

<p id="changing_the_account_from_which_a_message_is_sent"><strong>Changing the
  Account From Which a Message is Sent</strong></p>

<p>If you have multiple mail accounts, the account listed in the From field is
  based on the account (or server) you selected when you choose to create a new
  message. However, &brandShortName; Mail &amp; Newsgroups also allows you to
  change the account a message is sent from while you&apos;re composing a
  message. Click the From field to view a list of your accounts and then select
  the account you want. A copy of the message is saved in the Sent folder of
  the account where you sent the message from.</p>

<p><strong>About Address Autocompletion</strong></p>

<p>Address autocompletion allows you to address mail easily from the Compose
  window without having to search for names or type complete names. Mail &amp;
  Newsgroups automatically checks your address books and an
  <a href="glossary.xhtml#ldap">LDAP</a> directory server (if available) and
  completes the name if it finds a unique match. It also prevents mistakes by
  showing all possible choices with additional information if it finds multiple
  matches. Address autocompletion is enabled by default.</p>

<p>If you don&apos;t want to use an address that Mail &amp; Newsgroups
  provides, press Backspace or Delete to remove characters and then enter an
  alternate address.</p>

<p>To disable address autocompletion:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click Addressing. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list).</li>
  <li>In the Address Autocompletion section, deselect <q>Local Address
    Books</q> and <q>Directory Server</q>.</li>
  <li>Click OK.</li>
</ol>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="selecting_message_sending_options">Selecting Message Sending
  Options</h2>

<p>While you&apos;re composing a message, you can select these additional
  message sending options from the Options menu:</p>

<ul>
  <li><strong>Select Addresses</strong>: The Select Addresses option lets you
    choose the recipient&apos;s email address from your Address Books or a
    remote directory. To look up an address in an address book or directory,
    enter the first few letters of the recipient&apos;s first or last name to
    start the search. Select an address and then click To:, Cc:, or Bcc: to
    address your message.</li>
  <li><strong>Check Spelling</strong>: Checks the spelling of the message text
    before you send it. You can also click Spell.</li>
  <li><strong>Spellcheck As You Type</strong>: Choose this option to have the
    spelling of the message text checked as you type.</li>
  <li><strong>Quote Message</strong>: Choose this option to have the selection
    of the message text shown as quoted text.</li>
  <li><strong>Return Receipt</strong>: Choose this option to request a
    confirmation message when the recipient displays (opens) the message. Keep
    in mind that the recipient may choose not to send you a return receipt.
    This option lets you enable or disable return receipt requests on a
    per-message basis. To automatically request return receipts for all
    messages you send, use the return receipts preferences. See
    <a href="#return_receipts_preferences">Mail &amp; Newsgroups Preferences -
    Return Receipts</a> for more information.</li>
  <li><strong>Format</strong>: Send the message as plain text, or HTML
    (formatted), or both. If you choose <q>Auto-Detect</q>, Mail &amp;
    Newsgroups prompts you for the format to use if it&apos;s unknown whether
    the recipient&apos;s mail program can display an HTML message. The format
    you choose here overrides the send format you specified using the
    Preferences command on the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu.</li>
  <li><strong>Priority</strong>: Choose a priority to indicate whether the
    message has lowest, low, normal, high, or highest priority.</li>
  <li><strong>Character Encoding</strong>: Choose a character encoding used for
    this message.</li>
  <li><strong>Send a Copy To</strong>: Choose this if you want to file an
    additional copy of the sent message in a different folder than your default
    Sent folder. Then select the folder you want.</li>
  <li><strong>Security</strong>: Choose this to change the default security
    options for this message.</li>
</ul>

<p>An additional message formatting option is available from the Edit menu:</p>

<ul>
  <li><strong>Rewrap</strong>: If you are composing a message using the
    plain-text editor, you can use the Rewrap command to rewrap long lines of
    quoted text to fit the Compose window. This command rewraps selected quoted
    text to the number of characters specified by the
    <a href="#composition">Composition</a> preferences. This command is
    primarily useful when you are replying to a message where the original
    message is quoted in your reply, and the original message contains long
    lines.

    <p>You use the Mail &amp; Newsgroups Account Settings command on the Edit
      menu to specify that you want to use the plain-text editor for composing
      messages. Select the Composition &amp; Addressing panel of the account
      and uncheck <q>Compose messages in HTML format</q> to use the plain-text
      editor for all messages. If you only want to use the plain-text editor
      occasionally, you can hold down the Shift key while clicking the Compose
      or the Reply button to use the plain-text editor on an as-needed
      basis.</p>
  </li>
</ul>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="replying_to_a_message">Replying to a Message</h2>

<p>To reply to a mail message:</p>

<ul>
  <li>Select the message.</li>
  <li>Click Reply to respond to the sender alone.</li>
  <li>Click Reply All to respond to all addressees in the message.</li>
</ul>

<p>To include the original message each time you reply to any message, and to
  specify how to place the original message in the reply:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings.
    You see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>If you have multiple accounts, select an account and click the
    <a href="#addressing">Composition &amp; Addressing</a> category for that
    account.</li>
  <li>Select <q>Automatically quote the original message when
    replying</q>.</li>
  <li>Specify where in the message to place your reply. <q>Start my reply below
    the quote</q> is the default.</li>
  <li>If you have decided to <a href="#account_settings">attach a signature</a>
    to every outgoing message and selected to start your reply above the quote
    here, you can additionally configure where your signature is placed:
    <ul>
      <li>Select <q>below the quote (recommended)</q> to place your signature
        at the very end of the message below the quoted text.</li>
      <li>Select <q>below my reply (above the quote)</q> to place your
        signature between your reply and the quoted text.</li>
    </ul>
  </li>
  <li>Click OK.</li>
</ol>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="forwarding_a_message">Forwarding a Message</h2>

<p>When you forward a message, you can specify how its contents are included
  in the new message: <em>inline</em> (in the body of the message), or as an
  <em>attachment</em>.</p>

<p>To forward a message:</p>

<ol>
  <li>Select the message and click Forward.</li>
  <li>Type the name or email address of the recipient.</li>
  <li>Click Send.</li>
</ol>

<p>To set the default for forwarding messages:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click
    <a href="#composition">Composition</a>. (If no subcategories are visible,
    double-click Mail &amp; Newsgroups to expand the list.)</li>
  <li>For forwarding messages, choose Inline (in the message body) or As
    Attachment.</li>
  <li>Click OK.</li>
</ol>

<p><strong>Tip</strong>: To override the default for forwarding a message,
  select the message, open the Message menu, and choose Forward As, then
  choose Inline or Attachment.</p>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="confirming_that_your_message_was_opened">Confirming That Your Message
  Was Opened</h2>

<p>You can use return receipts to notify you when a recipient has displayed
  (opened) your message. The recipient must be using a mail program that
  supports the Message Disposition Notification (MDN) standard. Keep in mind
  that the recipient may choose not to send you a return receipt, even if
  you&apos;ve requested one. Messages you send to a newsgroup address will not
  include a return receipt request, since news servers don&apos;t support this
  feature.</p>

<p>To request return receipts for all messages you send, you can use the global
  <a href="#return_receipts_preferences">Return Receipt</a> preferences to
  specify how to manage requests you receive for return receipts. You can
  override these global preferences for individual accounts.</p>

<p>To request a return receipt on a per-message basis:</p>

<ul>
  <li>From a Mail Compose window, open the Options menu, and choose Return
    Receipt.</li>
</ul>

<p>To automatically request return receipts when sending messages from each of
  your mail accounts:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click
    <a href="#return_receipts_preferences">Return Receipts</a>. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand the
    list.)</li>
  <li>Select <q>When sending messages, always request a return receipt</q>.</li>
  <li>Click OK.</li>
</ol>

<p>For more information on setting return receipt preferences, see
  <a href="#return_receipts_preferences">Mail &amp; Newsgroups Preferences -
  Return Receipts</a>.</p>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="saving_and_editing_a_message_draft">Saving and Editing a Message
  Draft</h2>

<p>To save a mail message as a draft so you can complete it later:</p>

<ul>
  <li>In the Compose window, click Save, or open the File menu and choose Save
    as Draft. By default, the message is saved in the Drafts folder for the
    current account.

    <p><strong>Note</strong>: Your mail message will stay open after you save
      it as a draft.</p>
  </li>
</ul>

<p>To edit or send a message draft, begin from the Mail window:</p>

<ol>
  <li>Click the Drafts folder for the account where you created the message
    draft.</li>
  <li>Click the message that you want to edit.</li>
  <li>In the top-right corner of the message, click the Edit Draft
    button.</li>
  <li>Edit the message as necessary.</li>
  <li>Click Send to send the message or click Save to save the message so you
    can complete it later.

    <p><strong>Note</strong>: Sending the message removes it from the Drafts
      folder.</p>
  </li>
</ol>

<p><strong>Tip</strong>: You can also double-click the message to open it for
  editing. This is especially useful if the message pane is closed.</p>

<p>To delete one or more unwanted message drafts, begin from the Mail
  window:</p>

<ol>
  <li>Click the Drafts folder for the account where you created the message
    drafts.</li>
  <li>Select the message drafts that you want to delete.</li>
  <li>Click Delete in the Mail toolbar.</li>
</ol>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h2 id="creating_and_using_templates">Creating and Using Templates</h2>

<p>Templates are useful for setting the default format for messages that you
  send regularly, such as weekly status reports. You can save a message as a
  template from any window in which it is displayed, including from within a
  Mail compose window.</p>

<p>To save a message to use as a template:</p>

<ol>
  <li>In the Mail window, click Compose to create a new message and then set
    the default font, text size, text color, background color, and any other
    default formatting you want.

    <p>Alternatively, open an existing message that already has the formatting
      you want.</p>
  </li>
  <li>While displaying the message, open the File menu, choose Save As, then
    choose Template. The message is stored as a template in the Templates
    folder for the current mail account.</li>
</ol>

<p>To compose a message using a template:</p>

<ol>
  <li>In the Mail window, select the Templates folder for the account where you
    created the message template.</li>
  <li>Double-click the message template to open it.</li>
  <li>Edit the message, then save it (to put it in the Drafts folder) or send
    it.

    <p><strong>Note</strong>: Sending the message does not remove the template
      from the Templates folder. The template is preserved for future use.</p>
  </li>
</ol>

<p>To delete one or more unwanted message templates, begin from the Mail
  window:</p>

<ol>
  <li>Click the Templates folder for the account where you created the message
    templates.</li>
  <li>Select the message templates that you want to delete.</li>
  <li>Click Delete in the Mail toolbar.</li>
</ol>

<p>[<a href="#sending_messages">Return to beginning of section</a>]</p>

<h1 id="creating_html_mail_messages">Creating HTML Mail Messages</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#using_html_in_your_messages">Using HTML in Your
      Messages</a></li>
    <li><a href="#choosing_html_mail_sending_options">Choosing HTML Message
      Sending Options</a></li>
    <li><a href="#specifying_recipients_for_html_messages">Specifying
      Recipients for HTML Messages</a></li>
    <li><a href="#viewing_the_message_source_for_html_messages">Viewing the
      Message Source for HTML Messages</a></li>
    <li><a href="#using_the_html_mail_question_dialog_box">Using the HTML Mail
      Question Dialog Box</a></li>
  </ul>
</div>

<h2 id="using_html_in_your_messages">Using HTML in Your Messages</h2>

<p>HTML messages can include formatted text, links, images, and
  tables&mdash;just like a web page. However, some recipients may not be able
  to receive HTML messages. &brandShortName; Mail &amp; Newsgroups allows you
  to compose mail and newsgroup messages using either the HTML (rich-text)
  formatting editor or the plain-text editor for each mail account you have.
  In addition, you can choose whether your addressees should receive HTML or
  plain-text messages by default, and how Mail &amp; Newsgroups should handle
  messages when it&apos;s not known if an addressee can receive HTML-formatted
  mail.</p>

<p>To specify whether to use the HTML editor as the default for composing
  messages, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the mail or newsgroup account you want to use.</li>
  <li>Go to the Composition &amp; Addressing panel and select <q>Compose
    messages in HTML format</q>. You see the Formatting toolbar in the Compose
    window. Leave this box unchecked to use the plain-text editor for this
    account.</li>
</ol>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h3 id="editing_or_inserting_html_elements">Editing or Inserting HTML
  Elements</h3>

<p>If you understand how to work with HTML source code, you can edit or insert
  additional HTML tags, style attributes, and JavaScript in your mail message.
  If you are not sure how to work with HTML source code, it&apos;s best not to
  change it. To work with HTML code, use one of these methods:</p>

<ul>
  <li>Place the insertion point where you want to insert the HTML code, then
    open the Insert menu and choose HTML. In the Insert HTML dialog box, enter
    HTML tags and text, and then click Insert to insert your changes.</li>
  <li>Select the HTML source code that you want to edit, then open the Insert
    menu and choose HTML. In the Insert HTML dialog box, edit HTML tags and
    text, and then click Insert to insert your changes.</li>
  <li>Select an element such as a table, named anchor, image, link, or
    horizontal line. Double-click the element to open the associated properties
    dialog box for that item. Click Advanced Edit to open the Advanced Property
    Editor. You can use the Advanced Property Editor to add HTML attributes and
    JavaScript to objects.</li>
</ul>

<p>For more information on editing HTML source code, see
  <a href="composer_help.xhtml#using_the_advanced_property_editor">Using the
  Advanced Property Editor</a>.</p>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h2 id="choosing_html_mail_sending_options">Choosing HTML Mail Sending
  Options</h2>

<p>By default, Mail &amp; Newsgroups prompts you before sending HTML messages
  when it&apos;s not known whether the recipient&apos;s mail program can
  display HTML-formatted messages.</p>

<p>To choose sending-format options for mail messages, begin from the Mail
  window:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click
    <a href="#send_format">Send Format</a>. (If no subcategories are visible,
    double-click Mail &amp; Newsgroups to expand the list).

    <p><strong>Note</strong>: This preference applies only to mail messages,
      not to newsgroup messages.</p>
  </li>
  <li>Select the option you want and then click OK.</li>
</ol>

<p>If while composing a message you realize that one or more recipients may not
  be able to receive HTML-formatted mail, you can easily convert the message to
  a different format when you click Send:</p>

<ol>
  <li>In the Compose window, open the Options menu and choose Format.</li>
  <li>Select the format you want to use for sending the message from the
    submenu:
    <ul>
      <li><strong>Auto Detect</strong>: Mail &amp; Newsgroups chooses the
        appropriate format for the message text. If it can&apos;t determine the
        format, it asks you to choose a format.</li>
      <li><strong>Plain Text Only</strong>: The message may not display
        formatting such as bold text, but all mail programs will be able to
        display the message.</li>
      <li><strong>Rich Text (HTML) Only</strong>: Some mail programs may have
        trouble displaying an HTML-formatted message. Choose this option only
        if you are sure the recipient&apos;s mail program can display
        HTML-formatted mail.</li>
      <li><strong>Plain and Rich (HTML) Text</strong>: This uses more disk
        space, but may be the best choice if you are not sure whether the
        recipient&apos;s mail program can display HTML-formatted mail.</li>
    </ul>
  </li>
  <li>When you&apos;ve finished composing the message, click Send.</li>
</ol>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h2 id="specifying_recipients_for_html_messages">Specifying Recipients for HTML
  Messages</h2>

<p>You can save time by indicating whether individuals in your address books
  prefer to receive either HTML messages or plain text messages.</p>

<ol>
  <li>Open the Window menu and choose Address Book.</li>
  <li>Select the address book on the left and then select the individual&apos;s
    card on the right.</li>
  <li>Click Properties to display the <q>Card for</q> dialog box.</li>
  <li>In the Contact tab, use the <q>Prefers to receive messages formatted
    as</q> drop-down list to select HTML if you know this recipient can read
    HTML-formatted messages (such as messages that include links, images, or
    tables).

    <p>If this recipient can only read messages sent as plain text (no
      formatting), then choose Plain Text. If you don&apos;t know or are not
      sure, choose Unknown.</p>

    <p>If you choose Unknown, &brandShortName; Mail &amp; Newsgroups determines
      the sending format based on the Send Format settings for Mail &amp;
      Newsgroups in the Preferences dialog box. If Mail &amp; Newsgroups still
      can&apos;t determine the correct format, it will prompt you to choose a
      sending format when you send the message.</p>
  </li>
  <li>Click OK.</li>
</ol>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h2 id="viewing_the_message_source_for_html_messages">Viewing the Message
  Source for HTML Messages</h2>

<p>You can quickly view the HTML and other code that generates an HTML message
  you&apos;ve received:</p>

<ol>
  <li>In the message list window, open the message.</li>
  <li>Open the View menu and choose Message Source.</li>
</ol>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h2 id="using_the_html_mail_question_dialog_box">Using the HTML Mail Question
  Dialog Box</h2>

<p>The HTML Mail Question dialog box appears when you try to send a message to
  someone whose mail program may not be able to display HTML messages or when
  Mail &amp; Newsgroups cannot determine whether your recipient can display
  HTML messages. If you are in doubt, send the message in both HTML and
  plain-text formats.</p>

<p>[<a href="#creating_html_mail_messages">Return to beginning of
  section</a>]</p>

<h1 id="using_attachments">Using Attachments</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#attaching_a_file_or_web_page">Attaching a File or Web
      Page</a></li>
    <li><a href="#viewing_and_opening_attachments">Viewing and Opening
      Attachments</a></li>
    <li><a href="#saving_attachments">Saving Attachments</a></li>
  </ul>
</div>

<h2 id="attaching_a_file_or_web_page">Attaching a File or Web Page</h2>

<p>To attach a file to an outgoing mail message:</p>

<ol>
  <li>In the Compose window, click Attach or open the File menu and choose
    Attach File. You see the <q>Enter file to attach</q> dialog box.

    <p><strong>Tip</strong>: You can also click inside the Attachments area to
      attach a file.</p>
  </li>
  <li>Type the name of the file you want to attach, or select a file from your
    hard drive that you want to attach.</li>
  <li>Click Open. The filename appears in the Attachments area.</li>
</ol>

<p><strong>Tip</strong>: You can also drag and drop one or more files from your
  desktop into the Attachments area in the Compose window.</p>

<p>To attach a web page to an outgoing mail message:</p>

<ol>
  <li>In the Compose window, open the File menu and choose Attach Web Page.</li>
  <li>In the dialog box, enter the URL of the page and then click OK. The web
    page URL appears in the Attachments area.</li>
</ol>

<p><strong>Tip</strong>: When you are viewing a page in the browser,
  you can send the page to someone by opening the File menu and choosing Send
  Page.</p>

<p>[<a href="#using_attachments">Return to beginning of section</a>]</p>

<h2 id="viewing_and_opening_attachments">Viewing and Opening Attachments</h2>

<p>If you receive a mail attachment that consists of a file type that
  &brandShortName; can display (such as graphic files and HTML files), you see
  the attachment displayed inline (in the body of the message). For other file
  types, Mail &amp; Newsgroups lets you open the attachment using another
  application, or you can save the attachment on your hard disk.</p>

<p>To open the attachment, make sure you have a program on your computer that
  can open files of the same type as the attachment&apos;s file format. For
  example, if you want to open a .DOC file, make sure you have a program on
  your computer that can open .DOC files.</p>

<p>To open an attachment:</p>

<ol>
  <li>Double-click the attachment you want (if there is more than one).</li>
  <li>In the Downloading dialog box, choose what you want &brandShortName; to
    do with the attachment:
    <ul>
      <li>If &brandShortName; finds an application on your hard disk that can
        open the attachment, you can open the attachment using that
        application. Click <q>Choose</q> to use a different application to open
        the attachment.</li>
      <li>If &brandShortName; can&apos;t find an application on your hard disk
        that can open the attachment, you can save the attachment. You
        won&apos;t be able to open the  attachment, but at least you can save
        it on your hard disk until you can install an application that can open
        it.</li>
      <li>Click <q>Advanced</q> to add a new file type to the list of helper
        applications. &brandShortName; uses helper applications to determine
        how different file types are opened by other applications from within
        &brandShortName;. For more information, see
        <a href="nav_help.xhtml#plugins_and_downloads">Plugins and
        Downloads</a>.</li>
    </ul>
  </li>
  <li>Click OK.</li>
</ol>

<p><strong>Note</strong>: If you are viewing your mail using an IMAP mail
  server, all attachments remain on the server.</p>

<p>[<a href="#using_attachments">Return to beginning of section</a>]</p>

<h2 id="saving_attachments">Saving Attachments</h2>

<p>To save an attachment:</p>

<ol>
  <li>In the right side of the message envelope, under <q>Attachments</q>,
    select the attachment that you want to save.</li>
  <li>Right-click <span class="mac">or, if you have a one-button mouse,
    <kbd>Ctrl</kbd>-click</span>the attachment and choose Save As from the
    pop-up menu.</li>
  <li>Choose a filename and location for the attachment on your hard disk and
    then click OK. Mail &amp; Newsgroups downloads the attachment and saves it
    to the specified location.</li>
</ol>

<p><strong>Tip</strong>: To save all attachments, right-click
  <span class="mac">or, if you have a one-button mouse,
  <kbd>Ctrl</kbd>-click</span>the first one in the attachment list, and choose
  Save All. You can then specify the location where you want all the
  attachments to be saved.</p>

<p>[<a href="#using_attachments">Return to beginning of section</a>]</p>

<h1 id="deleting_messages">Deleting Messages</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#deleting_pop_or_imap_messages">Deleting POP or IMAP
      Messages</a></li>
    <li><a href="#moving_messages_to_and_from_the_trash">Moving Messages to and
      from the Trash</a></li>
  </ul>
</div>

<h2 id="deleting_pop_or_imap_messages">Deleting POP or IMAP Messages</h2>

<p>How you delete messages depends on your mail server type: POP or IMAP.
  Deleted POP messages are automatically moved to the Trash folder. IMAP users
  can set different options for deleting messages.</p>

<p>To delete messages from your Inbox or other folders, begin from the Mail
  window:</p>

<ol>
  <li>In the message list, select the messages and click Delete. By default,
    Mail &amp; Newsgroups moves the selected messages to the Trash folder.</li>
  <li>To delete messages permanently, open the File menu and choose Empty
    Trash.</li>
</ol>

<p>To delete messages without opening them, begin from the Mail window:</p>

<ol>
  <li>Open the View menu and choose Layout, and then uncheck Message Pane.

    <p>Alternatively, click the Message Pane handle (the ridged area centered
      at the bottom of the message list) to close the message pane.</p>
  </li>
  <li>In the message list, select the messages and click Delete.</li>
</ol>

<p>To set deletion preferences for IMAP messages:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Locate the IMAP account you want, and then click the Server Settings
    category under the account name.</li>
  <li>Select the <a href="#when_i_delete_a_message">options</a> you want for
    deleting messages and click OK.</li>
</ol>

<p>[<a href="#deleting_messages">Return to beginning of section</a>]</p>

<h2 id="moving_messages_to_and_from_the_trash">Moving Messages To and From the
  Trash</h2>

<p>If you use a POP server to deliver your mail, or if you set up IMAP to use
  the Trash folder, follow these steps to delete messages from your Inbox or
  other folders:</p>

<ol>
  <li>In the message list, select the messages you want to delete.</li>
  <li>Click Delete. Mail &amp; Newsgroups moves the messages to the Trash
    folder.</li>
</ol>

<p>To recover messages from the Trash:</p>

<ol>
  <li>Click the Trash folder.</li>
  <li>Select the messages you want to recover and drag them to another
    folder.</li>
</ol>

<p>To delete messages permanently:</p>

<ul>
  <li>Open the File menu and choose Empty Trash.</li>
</ul>

<p>[<a href="#deleting_messages">Return to beginning of section</a>]</p>

<h1 id="using_address_books">Using Address Books</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#about_address_books">About Address Books</a></li>
    <li><a href="#adding_entries_to_your_address_books">Adding Entries to Your
      Address Books</a></li>
    <li><a href="#creating_a_new_address_book">Creating a New Address
      Book</a></li>
    <li><a href="#creating_a_new_address_book_card">Creating a New Address Book
      Card</a></li>
    <li><a href="#creating_a_mailing_list">Creating a Mailing List</a></li>
    <li><a href="#editing_a_mailing_list">Editing a Mailing List</a></li>
    <li><a href="#searching_address_books_and_directories">Searching Address
      Books and Directories</a></li>
    <li><a href="#importing_address_books">Importing Address Books</a></li>
    <li><a href="#exporting_address_books">Exporting Address Books</a></li>
    <li><a href="#adding_and_removing_ldap_directories">Adding and Removing
      LDAP Directories</a></li>
  </ul>
</div>

<h2 id="about_address_books">About Address Books</h2>

<p>Address books store email addresses and contact information for people you
  typically send mail to, such as colleagues, friends, and family.
  &brandShortName; Mail &amp; Newsgroups provides you with two address books:
  the Personal Address Book and the Collected Addresses&mdash;and you can
  create additional address books as well. You can also import address books
  from other mail programs and previous versions of &brandShortName;. The
  contents of these address books are stored locally on your hard disk.</p>

<p>Your address book may also list email addresses from an LDAP directory,
  which is located on an LDAP directory server. The directory server stores
  email addresses of people that are not included in your locally-stored
  address books. The Lightweight Directory Access Protocol (LDAP) is an
  industry-standard method for accessing Internet or intranet directory
  services such as corporate address books.</p>

<h4>Personal Address Book</h4>

<p>Use the Personal Address Book to add specific names of your choice. You can
  create mailing lists and edit individual address entries.</p>

<h4>Collected Addresses</h4>

<p>By default, the Collected Addresses automatically collects the email
  addresses contained in outgoing mail messages. Addresses from outgoing
  messages are stored in the Collected Addresses as soon as you click Send.</p>

<h4>LDAP Directory (if available)</h4>

<p>An LDAP directory (also known as an address lookup service) stores email
  addresses of recipients who are not in your locally-stored address books.
  LDAP directories offer you access to large, centrally maintained databases
  of email addresses, which is especially useful with
  <a href="#address_autocompletion">address autocompletion</a>.</p>

<p>Automatic address collection is enabled by default. To change automatic
  address collection settings, begin in the Mail window:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click Addressing. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand the
    list.)</li>
  <li>Under Email Address Collection, select <q>Add email addresses to my</q>
    and choose whether you want:
    <ul>
      <li>Personal Address Book.</li>
      <li>Collected Addresses.</li>
    </ul>
  </li>
  <li>Click OK.</li>
</ol>

<h4>Opening the Address Book Window</h4>

<p>To open the Address Book window:</p>

<ul>
  <li>Open the Window menu and choose Address Book, or click the Address Book
    icon in the lower-left corner of any &brandShortName; window.

    <table>
      <tr>
        <td colspan="2"><img src="images/taskbar-ab.png" alt=""/></td>
      </tr>
      <tr>
        <td style="width: 80px;"></td>
        <td><strong>Address Book icon</strong></td>
      </tr>
    </table>
  </li>
</ul>

<h4>Changing the Address Book Window Display</h4>

<p>To customize how the Address Book window and the cards are displayed:</p>

<ol>
  <li>Open the Window menu and choose Address Book. You see the Address Book
    window.</li>
  <li>In the Address Book window, open the View menu and choose from the
    following display options:
    <ul>
      <li>Choose Show/Hide, and then select the item you wish to uncheck (hide)
        or check (show).</li>
      <li>Choose Show Name As, and then select how you want card names
        displayed (first/last, last/first, or Display Name).</li>
      <li>Choose Sort by, and then select a sort option.</li>
    </ul>
  </li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="adding_entries_to_your_address_books">Adding Entries to Your Address
  Books</h2>

<p>You can use any of the following ways to add entries to your address
  books:</p>

<ul>
  <li>Click a name in the From or recipient fields (for example, To or Cc) in a
    message you&apos;ve received, and then select <q>Add to Address Book</q>
    from the drop-down list.</li>
  <li>In the Address Book window, click New Card to create a new address book
    card.</li>
  <li>Send a message, which automatically adds the recipient&apos;s address
    to your address book (if enabled).</li>
  <li>In the Address Book window, copy entries to another address book by
    selecting the entries and dragging them over the name of the address book
    you want to copy them to.</li>
</ul>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="creating_a_new_address_book">Creating a New Address Book</h2>

<p>&brandShortName; Mail &amp; Newsgroups provides a default personal address
  book, but you can create additional address books.</p>

<p>To create a new address book:</p>

<ol>
  <li>Click the Address Book icon in the lower-left corner of any
    &brandShortName; window, or open the Window menu and choose Address Book.
    You see the Address Book window.

    <table>
      <tr>
        <td colspan="2"><img src="images/taskbar-ab.png" alt=""/></td>
      </tr>
      <tr>
        <td style="width: 80px;"></td>
        <td><strong>Address Book icon</strong></td>
      </tr>
    </table>
  </li>
  <li>In the Address Book window, open the File menu, choose New, and choose
    Address Book. You see the New Address Book dialog box.</li>
  <li>Type the name of the new address book, and click OK.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="creating_a_new_address_book_card">Creating a New Address Book Card</h2>

<p>Address book cards can be used to store names, postal addresses, email
  addresses, phone numbers, and information such as whether the addressee
  prefers to receive plain-text or HTML-formatted messages.</p>

<p>To create an address book card for an individual:</p>

<ol>
  <li>Click the Address Book icon on the status bar or open the Window menu and
    choose Address Book.</li>
  <li>Click New Card. (If you have multiple address books, select the one to
    which you want to add a card.)</li>
  <li>Each New Card dialog box has three tabs:
    <ul>
      <li><strong>Contact</strong>: Enter the following information:
        <ul>
          <li>First and Last (first and last name of person as you want it to
            appear in the address book).</li>
          <li>Display name (the name that appears in the <q>To</q> field of the
            Compose window).</li>
          <li>Nickname (a shortcut or alias for the real name).</li>
          <li>Email address (primary and additional address).</li>
          <li>Prefers to receive messages formatted as: If you know this
            recipient can read HTML-formatted messages (such as messages that
            include links, images, or tables), choose HTML. If this recipient
            can only read messages sent as plain text (no formatting), then
            choose Plain Text. If you don&apos;t know or are not sure, choose
            Unknown. If you choose Unknown, &brandShortName; Mail &amp;
            Newsgroups determines the sending format based on the Mail &amp;
            Newsgroups Send Format settings in the Preferences dialog box. If
            Mail &amp; Newsgroups still can&apos;t determine the correct
            format, Mail &amp; Newsgroups will prompt you to choose a sending
            format when you send the message.</li>
          <li>Allow remote images in HTML mail: If you want to allow this
            sender to have remote content they send you displayed in your
            message window.</li>
          <li>Screen name (the AIM contact name).</li>
          <li>Phones (enter phone numbers for this person)</li>
        </ul>
      </li>
      <li><strong>Address</strong>: Type additional information such as street
        address, phone number, and URL.

        <p><strong>Tip</strong>: If you enter address information,
          &brandShortName; displays a Get Map button next to the address when
          you view this entry&apos;s address book card in your address book.
          Clicking the Get Map button displays a web page that contains a map
          to the address.</p>
      </li>
      <li><strong>Other</strong>: Store any additional information you
        want.</li>
    </ul>
  </li>
</ol>

<p><strong>Tip</strong>: To quickly add entries to your address book, click any
  email address in messages you receive and select Add to Address Book from the
  drop-down list. The New Card dialog box appears where you can complete the
  information.</p>

<h3 id="viewing_or_editing_card_properties">Viewing or Editing Card
  Properties</h3>

<p>To view or edit the properties for an individual card:</p>

<ol>
  <li>Select the card from the list of entries in the Address Book window.</li>
  <li>Click Properties.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="creating_a_mailing_list">Creating a Mailing List</h2>

<p>If you regularly send messages to a group of recipients, you can quickly
  address a message by using a mailing list that contains the names you
  want.</p>

<p>To create a mailing list and add it to your address book:</p>

<ol>
  <li>In the Address Book window, click New List.</li>
  <li>Enter the following information in the Mailing List dialog box:
    <ul>
      <li>Click the drop-down list at <q>Add to</q> to choose an address book
        in which to store the list.</li>
      <li>List name: When you enter the list name in the <q>To</q> field of a
        message, everyone on the list receives your message.</li>
      <li>List nickname: Alias (or shortcut) for the list name.</li>
      <li>Description: Appears after the list name in the address line of
        the Compose window.</li>
    </ul>
  </li>
  <li>Type email addresses to add them to the mailing list.</li>
  <li>Click OK.</li>
</ol>

<p>In the left side of the Address Book window, the mailing list appears
  underneath the address book you added it to.</p>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="editing_a_mailing_list">Editing a Mailing List</h2>

<p>Mailing lists are stored in the address book in which you created them.</p>

<p>To remove a member from the list, begin from the Mail window:</p>

<ol>
  <li>Open the Window menu and choose Address Book.</li>
  <li>Expand the address book containing your mailing list by clicking the
    small triangle beside the address book title.</li>
  <li>Highlight the mailing list by clicking its name. The list members appear
    to the right of the mailing list name.</li>
  <li>Click the entry you wish to delete.</li>
  <li>Click the Delete button.</li>
</ol>

<p>To add members to a mailing list:</p>

<ol>
  <li>Open Window menu and choose Address Book.</li>
  <li>Expand the address book containing your mailing list by clicking the
    small triangle beside the address book title.</li>
  <li>Highlight the mailing list by clicking its name.</li>
  <li>Click Properties.</li>
  <li>Add or remove entries as necessary.</li>
  <li>Click OK when you are done.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="searching_address_books_and_directories">Searching Address Books and
  Directories</h2>

<p>&brandShortName; Mail &amp; Newsgroups lets you quickly search an address
  book or directory by name or email address, or use a combination of criteria
  to perform a more specific search through an address book or directory.</p>

<p>To quickly search an address book or directory for a name or email address,
  begin from the Address Book window:</p>

<ol>
  <li>In the Address Book window, in the list of address books, select the
    address book or directory that you want to search.</li>
  <li>In the <q>Name or Email contains</q> field, type the name or email
    address that you want to find. You can type only part of the name or email
    address, or you can type the exact text that you want to find.

    <p>As soon as you stop typing, &brandShortName; Mail &amp; Newsgroups
      displays only those entries where the name or email address contains the
      search text you entered.</p>
  </li>
  <li>Click Clear to erase the search text and show all entries.</li>
</ol>

<h3 id="searching_for_specific_entries">Searching for Specific Entries</h3>

<p>You can search address books or directories for specific entries. If you are
  not already viewing the Advanced Address Book Search dialog box, begin from
  the Address Book window:</p>

<ol>
  <li>Open the Tools menu and choose Search Addresses. You see the Advanced
    Address Book Search dialog box.</li>
  <li>Next to <q>Search in</q>, choose the address book or directory through
    which you want to search.</li>
  <li>Select the matching option Mail &amp; Newsgroups uses to search for
    entries either that match all or at least one of the conditions (criteria)
    that you choose.</li>
  <li>Click More to add criteria and Fewer to remove them.</li>
  <li>Click Search to begin, or click Clear to reset your entries. The search
    results appear in lower part of the dialog box.</li>
  <li>To sort the entries in a different order, click the column that you want
    to sort by.</li>
  <li>To view the card for an entry, select the entry and click
    Properties.</li>
  <li>To compose a message to selected recipients, select one or more entries
    and click Compose.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="importing_address_books">Importing Address Books</h2>

<p>If you have a &brandShortName; address book from another user profile or
  computer, or if you have an address book from another mail program, you can
  import its entries into the Address Book window as a new address book. Keep
  in mind that when you upgrade a user profile from an earlier version of
  &brandShortName;, your address books are automatically included, so
  there&apos;s no need to import them.</p>

<p>You can import address books from Netscape 6, Netscape 7, Eudora, Outlook,
  Outlook Express, or text files (LDIF, tab-delimited (.tab), comma-separated
  (.csv), or text (.txt) formats). When you import an address book, Mail &amp;
  Newsgroups creates a new address book with the imported entries.</p>

<p>You can also <a href="#importing_mail_from_other_programs">import mail
  messages and settings</a> from Communicator, Eudora, Outlook, and Outlook
  Express.</p>

<p>To import an address book, begin from the Mail window:</p>

<ol>
  <li>Open the Tools menu, and choose Import. You see the Mail Import
    Wizard.</li>
  <li>Follow the instructions to import address books.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="exporting_address_books">Exporting Address Books</h2>

<p>You can export a &brandShortName; address book if you later want to import
  it into another user profile, move it to another computer, or use it with
  another program that can import address books. You can export an address
  book to one of these file formats: &brandShortName; (.ldif), tab-delimited
  (.tab), comma-separated (.csv), or text (.txt) formats.</p>

<p>To export an address book, begin from the Address Book window:</p>

<ol>
  <li>Select the address book that you want to export.</li>
  <li>Open the Tools menu, and choose Export.</li>
  <li>In the Export Address Book dialog box, browse to the location where you
    want to save the address book file.</li>
  <li>Choose the file format for the exported address book (.ldif,
    comma-separated, or tab-delimited).</li>
  <li>Enter a name for the address book file. Be sure to include the
    appropriate file extension (.ldif, .csv, .tab, or .txt).</li>
  <li>Click Save.</li>
</ol>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h2 id="adding_and_removing_ldap_directories">Adding and Removing LDAP
  Directories</h2>

<p>Adding an LDAP directory to your address book allows you to search the
  directory for email addresses and other contact information. You can also use
  the directory for address autocompletion when addressing mail messages.</p>

<p>You typically add or remove LDAP directories using instructions provided by
  your system administrator. Check with your system administrator for the
  information you will need in order to add a new directory to your address
  book.</p>

<p>To add a new directory, begin from the Address Book window:</p>

<ol>
  <li>Open the File menu, and choose New, and then choose LDAP Directory. You
    see the Directory Server Properties dialog box.</li>
  <li>Type the following information in the Directory Server Properties dialog
    box General tab:
    <ul>
      <li><strong>Name</strong>: Enter the name of the directory service (for
        example, InfoSpace Directory).</li>
      <li><strong>Host Name</strong>: Enter the name of the host name server,
        such as ldap.infospace.com.</li>
      <li><strong>Base DN</strong>: This setting is used to set the Base
        distinguished name. Enter codes to restrict searching to a specific
        country or organization. For example, c=JP restricts the search to
        Japan only. Base DN also specifies the organization to search on
        within the directory (for instance, o=Netscape Communications
        Corporation, c=US).</li>
      <li><strong>Port Number</strong>: Enter the port number for the LDAP
        server. The default is 389.</li>
      <li><strong>Bind DN</strong>: The distinguished name that is used to
        authenticate (log in) to the LDAP server. If left blank, the LDAP
        server binds anonymously.</li>
      <li><strong>Use secure connection (SSL)</strong>: Choose this setting
        if your LDAP server supports secure (encrypted) connections. If you are
        unsure, contact your system administrator.</li>
    </ul>
  </li>
  <li>Click the Advanced tab to configure LDAP directory server settings.</li>
  <li>Type the following information:
    <ul>
      <li><strong>Don&apos;t return more than _ results</strong>: This setting
        lets you limit the number of autocompletion matches returned by the
        directory server. Enter the maximum number of email address matches
        to display for autocompletion.</li>
      <li><strong>Scope</strong>: Defines the limits of the search. Choose one
        of the following:
        <ul>
          <li><strong>One Level</strong>: Retrieves matching entries by
            searching the base DN and one level below the base DN.</li>
          <li><strong>Subtree</strong>: Retrieves matching entries by searching
            the base DN in addition to all levels below the base DN. This is
            the least restrictive search.</li>
        </ul>
      </li>
      <li><strong>Search filter</strong>: Enter the search filter to apply to
        matching results that are within the specified scope of the
        search.</li>
    </ul>
  </li>
  <li>Click OK to close the Directory Server Properties dialog box.</li>
</ol>

<p>The directory you added appears in the list of address books in the Address
  Book window.</p>

<p>To delete a directory:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, select Addressing. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
  <li>Under Address Autocompletion on the right side of the dialog box, click
    Edit Directories.</li>
  <li>In the LDAP Directory Servers dialog box, select the directory that you
    want to delete and click Delete.</li>
  <li>Click OK, then click OK again to close the Preferences dialog box.</li>
</ol>

<p>For information on downloading or synchronizing a directory for offline use
  so that you can search it or use it for address book autocompletion while
  working offline, see
  <a href="#downloading_directory_entries_for_offline_use">Downloading
  Directory Entries for Offline Use</a>.</p>

<h3 id="directory_server_settings">Directory Server Settings</h3>

<p>If you are not already viewing the Directory Server Settings dialog box,
  begin from the Mail window:</p>

<ol>
  <li>Open the Window menu, and choose Address Book.</li>
  <li>In the list of address books, select a directory.</li>
  <li>Click Properties.</li>
</ol>

<p><strong>General Tab</strong></p>

<ul>
  <li><strong>Name</strong>: The name of the directory service (for example,
    InfoSpace Directory).</li>
  <li><strong>Host Name</strong>: The name of the host name server, such as
    ldap.infospace.com.</li>
  <li><strong>Base DN</strong>: The Base Distinguished Name. Codes entered here
    restrict searching to a specific country or organization. For example, c=JP
    restricts the search to Japan only. Base DN also specifies the organization
    to search on within the directory (for instance, o=Netscape Communications
    Corporation, c=US).</li>
  <li><strong>Port Number</strong>: Enter the port number for the LDAP server.
    The default is 389.</li>
  <li><strong>Bind DN</strong>: The distinguished name that is used to
    authenticate (log in) to the LDAP server. If left blank, the LDAP server
    binds anonymously.</li>
  <li><strong>Use secure connection (SSL)</strong>: Choose this setting if your
    LDAP server supports secure (encrypted) connections. If you are unsure,
    contact your system administrator.</li>
</ul>

<p><strong>Advanced Tab</strong></p>

<ul>
  <li><strong>Don&apos;t return more than _ results</strong>: This setting lets
    you limit the number of autocompletion matches returned by the directory
    server. Specify the maximum number of email address matches to display for
    autocompletion.</li>
  <li><strong>Scope</strong>: Defines the limits of the search:
    <ul>
      <li><strong>One Level</strong>: Retrieves matching entries by searching
        the base DN and one level below the base DN.</li>
      <li><strong>Subtree</strong>: Retrieves matching entries by searching the
        base DN in addition to all levels below the base DN. This is the least
        restrictive search.</li>
    </ul>
  </li>
  <li><strong>Search filter</strong>: Specifies the search filter to apply to
    matching results that are within the specified scope of the search.</li>
</ul>

<p>[<a href="#using_address_books">Return to beginning of section</a>]</p>

<h1 id="organizing_your_messages">Organizing Your Messages</h1>

<div class="contentsBox">
  <ul>
    <li><a href="#creating_a_folder">Creating a Folder</a></li>
    <li><a href="#renaming_a_folder">Renaming a Folder</a></li>
    <li><a href="#moving_or_copying_a_folder">Moving or Copying a
      Folder</a></li>
    <li><a href="#filing_messages_in_folders">Filing Messages in
      Folders</a></li>
    <li><a href="#sharing_folders_with_other_users">Sharing Folders With Other
      Users (IMAP Only)</a></li>
    <li><a href="#tagging_messages">Tagging Messages</a></li>
    <li><a href="#marking_or_flagging_messages">Marking or Flagging
      Messages</a></li>
    <li><a href="#using_message_views">Using Message Views</a></li>
    <li><a href="#creating_message_filters">Creating Message Filters</a></li>
    <li><a href="#searching_through_messages">Searching Through
      Messages</a></li>
  </ul>
</div>

<h2 id="creating_a_folder">Creating a Folder</h2>

<p>To create a message folder, begin from the Mail window:</p>

<ol>
  <li>Open the File menu, choose New, and then Folder. You see the New Folder
    dialog box.</li>
  <li>Type the name of the folder.</li>
  <li>Click the drop-down list and choose a folder location and click OK. Your
    new folder appears in your Mail Folders list.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="renaming_a_folder">Renaming a Folder</h2>

<p>To rename an existing folder, begin from the Mail window:</p>

<ol>
  <li>Select the folder you want to rename.</li>
  <li>Open the File menu and choose Rename Folder. You see the Rename Folder
    dialog box.</li>
  <li>Type the new name and click OK.</li>
</ol>

<p><strong>Note</strong>: If you rename a folder that you&apos;ve been using to
  store <a href="#creating_message_filters">filtered messages</a>, the filter
  will automatically update to use the renamed folder.</p>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="moving_or_copying_a_folder">Moving or Copying a Folder</h2>

<p>You can copy a folder and its contents to another mail account, or move a
  folder within the same mail account.</p>

<p>To move or copy a folder, begin from the Mail window:</p>

<ol>
  <li>Select the folder you want to move or copy.</li>
  <li>Do one of the following:
    <ul>
      <li>To move the folder under another folder within the same account, drag
        the folder over the name of the other folder. The folder you moved
        becomes a subfolder of the other folder.</li>
      <li>To copy the folder to another account, drag the folder over the name
        of another account.</li>
      <li>To copy the folder under another folder in another account, drag the
        folder over the name of another folder in another account. The folder
        you copied becomes a subfolder of the other folder.</li>
    </ul>
  </li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="filing_messages_in_folders">Filing Messages in Folders</h2>

<p>You can move messages from one folder to another by using either of these
  methods:</p>

<ul>
  <li>Select the message, click the File button on the toolbar, and choose the
    destination folder.</li>
  <li>Drag and drop messages into the desired folder.

    <p><strong>Note</strong>: If you drag and drop a message from an IMAP or
      POP mail server folder to a local folder on your hard drive, the message
      is moved to the local folder and removed from the server folder.</p>
  </li>
</ul>

<p>To copy a message from one folder to another:</p>

<ol>
  <li>Select the message and right-click to display the pop-up menu.</li>
  <li>Select <q>Copy To</q> and then select the destination account and folder
    from the drop-down list.</li>
</ol>

<p><strong>Tip</strong>: Alternatively, you can copy a message between folders
  by holding down the Shift key while dragging the message from the message
  list over another folder.</p>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="sharing_folders_with_other_users">Sharing Folders With Other Users
  (IMAP Only)</h2>

<p>Users with IMAP mail accounts can share mail folders with other users on the
  same network. Sharing folders allows several users to see and work with the
  same messages, similar to a newsgroup. To use shared folders, your IMAP mail
  server must support Access Control List (ACL) management. Check with your
  system administrator or help desk if you are not sure that shared folders
  are supported by your IMAP mail server.</p>

<p>To share a mail folder with other users on your network, or to view sharing
  information for a folder, begin from the Mail window:</p>

<ol>
  <li>Within an IMAP account, select a folder that you want to share, or select
    a folder whose sharing privileges you want to view.

    <p>Folders listed under Local Folders, or folders listed under a POP mail
      account cannot be shared.</p>
  </li>
  <li>Open the Edit menu, and choose Folder Properties.</li>
  <li>Click the Sharing tab.</li>
  <li>Click Privileges. You may be prompted to enter your network user name and
    password.

    <p>The Privileges button is only available if the IMAP mail server allows
      you to set folder sharing privileges. If this button is not available,
      you can view the folder sharing privileges for this folder but cannot
      change them.</p>
  </li>
  <li>Follow the instructions on the screen to add users and to set their
    folder access privileges.
    <ul>
      <li><strong>Read privileges</strong>: Users can read messages and copy
        their contents, but they cannot modify or delete messages, or copy
        messages into the folder. Users can flag messages as read or unread.
        See <a href="#marking_or_flagging_messages">Marking or Flagging
        Messages</a> for instructions on flagging messages.</li>
      <li><strong>Read and Write privileges</strong>: In addition to Read
        privileges, users can modify and delete messages. Users can also copy
        or move messages into the folder.</li>
      <li><strong>Manage privileges</strong>: In addition to Read and Write
        privileges, users can add and remove users and change their folder
        permissions.</li>
    </ul>
  </li>
  <li>Click OK to confirm your changes.</li>
  <li>Click OK to close the Folder Properties dialog box.</li>
</ol>

<p>In the list of folders for your mail account, a shared folder displays a
  distinctive folder icon to indicate that it is shared.</p>

<p>To send a message that tells others how they can subscribe to your shared
  folder, begin from the Mail window:</p>

<ol>
  <li>Select the shared folder.</li>
  <li>Right-click to display a pop-up menu, and choose Copy Folder
    Location.</li>
  <li>Click Compose to display a Mail compose window.</li>
  <li>Click in the message body, open the Edit menu, and choose Paste.</li>
  <li>Address the message, type a subject, and type the message text. Tell
    message recipients that they can subscribe to the shared folder by clicking
    the link you pasted into the message.

    <p>Only message recipients who share the same network will be able to
      subscribe to your shared folder.</p>
  </li>
  <li>Click Send.</li>
</ol>

<h3 id="subscribing_to_a_shared_folder">Subscribing to a Shared Folder</h3>

<p>Subscribing to a shared folder is similar to subscribing to a newsgroup. To
  subscribe to a shared folder, begin from the Mail window:</p>

<ol>
  <li>Open the File menu and choose Subscribe. You see the Subscribe dialog
    box.</li>
  <li>If necessary, click the Account drop-down list to choose another IMAP
    mail account.</li>
  <li>Select the folder that you want to subscribe to.</li>
  <li>Click Subscribe or click in the Subscribe column next to the folder. You
    see a checkmark next to each folder to which you subscribe. Click
    Unsubscribe to cancel a selection.</li>
  <li>Click OK. The list of your subscribed folders appears in the Mail
    window.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="tagging_messages">Tagging Messages</h2>

<p>You can apply tags to messages to help you organize and prioritize them.
  You can apply a standard color and tag text to messages, or you can create
  your own color and tag text to suit your needs.</p>

<p>One powerful way to use tags is to set up a message filter to
  automatically tag incoming messages from a specific sender. For example,
  you can set up a message filter so that incoming messages from your boss are
  tagged <q>Important</q> and appear in red. See
  <a href="#creating_message_filters">Creating Message Filters</a> for more
  information.</p>

<h3 id="applying_a_tag">Applying a Tag</h3>

<p>To apply a tag to a message, begin from the Mail window:</p>

<ol>
  <li>Select the message you want to tag.</li>
  <li>Open the Message menu, and choose Tag.</li>
  <li>Choose the tag you want to apply from the list.</li>
</ol>

<p>The message summary row changes to the color of the tag with the topmost
  priority. To see the tag text, you must display the Tags column in the Mail
  window.</p>

<p><strong>Tip</strong>: To quickly tag messages or remove a tag, select
  one or more messages and press one of the number keys 1-9 on your keyboard.
  Press 0 to remove all tags.</p>

<p>To display the Tags column, begin from the Mail window:</p>

<ul>
  <li>Click the Show/Hide Columns icon <img src="images/columns.png" alt=""/>
    and select Tags from the list.</li>
</ul>

<p><strong>Note</strong>: Message tags apply on a per-account basis. For
  example, if you move or copy a tagged message to another mail account, the
  tags are not preserved. Similarly, if you forward a tagged message to
  another recipient, the tags are not preserved. For IMAP mail accounts, if
  your IMAP server supports user-defined keywords, message tags will persist
  when you log in to your mail account from a different location.</p>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h3 id="customizing_tags">Customizing Tags</h3>

<p>You can customize tag colors and text and their order to suit your needs.</p>

<p>To customize tags, begin from the Mail window:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, click Tags. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand the
    list.)</li>
  <li>Edit the tag text, or replace it with your own tag text. The tag
    can be up to 32 characters long.</li>
  <li>To change the tag color, click the color block next to that tag and
    select a new color.</li>
  <li>Click the the Move Up and Move Down buttons to reorder the tags. Tags at
    the top will have higher priority when coloring messages.</li>
  <li>Click OK.</li>
</ol>

<p>Your changes are immediately applied to all tagged messages in all your
  mail accounts.</p>

<p><strong>Tip</strong>: To undo all customizations and restore just the
  default tags' text and colors, follow the steps above to display the tag
  settings, and click Restore Defaults.</p>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h3 id="sorting_messages_by_tags">Sorting Messages by Tags</h3>

<p>To sort messages by tags, begin from the Mail window:</p>

<ol>
  <li>To display the Tags column if it is hidden, click the Show/Hide Columns
    icon <img src="images/columns.png" alt=""/> and select Tags from the
    list.</li>
  <li>Click the Tags column to sort messages by tags, and within each tag
    type, to sort messages by date.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h3 id="removing_tags">Removing Tags</h3>

<p>To remove a message tag, begin from the Mail window:</p>

<ol>
  <li>Select one or more tagged messages.</li>
  <li>Open the Message menu, and choose Tag.</li>
  <li>Choose the tag you want to remove or <q>None</q> to remove all tags
    from this message.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="marking_or_flagging_messages">Marking or Flagging Messages</h2>

<p>You might want to mark a message you&apos;ve read as unread if you later
  want to re-read the message or respond to it.</p>

<p>To mark a message as unread, begin from the Mail window:</p>

<ol>
  <li>Select a Mail or Newsgroup folder to display its messages.</li>
  <li>Click in the Read column of each message you want to mark as unread.
    Messages marked as unread display a <img src="images/mail_unread.png"
    alt=""/> symbol in the Read column. Messages marked as read display a
    <img src="images/mail_read.png" alt=""/> symbol in the Read column. If the
    Read column is not visible, click the Show/Hide Columns icon
    <img src="images/columns.png" alt=""/> and select Read from the list.</li>
</ol>

<table>
  <tr>
    <td colspan="2"><img src="images/mail_read_column.png" alt=""/></td>
  </tr>
  <tr>
    <td><strong>Read column</strong></td>
  </tr>
</table>

<p>You can flag messages that you later want to download for
  <a href="#downloading_selected_or_flagged_messages_for_offline_use">offline
  use</a>.</p>

<p>To flag messages, begin from the Mail window:</p>

<ol>
  <li>Select a Mail or Newsgroup folder to display its messages.</li>
  <li>Click in the Flag column of each message you want to download. A flag
    <img src="images/mail_flag.png" alt=""/> appears where you clicked to
    indicate that the message has been flagged. If the Flag column is not
    visible, click the Show/Hide Columns icon <img src="images/columns.png"
    alt=""/> and select Flag from the list.</li>
</ol>

<table>
  <tr>
    <td colspan="2"><img src="images/mail_flag_column.png" alt=""/></td>
  </tr>
  <tr>
    <td><strong>Flag column</strong></td>
  </tr>
</table>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="using_message_views">Using Message Views</h2>

<p>You can apply preset or custom message views to help you manage messages by
  filtering displayed messages.</p>

<p>To use a message view, open the View menu and choose Messages. Choose an
  option from the submenu.</p>

<ul>
  <li><strong>All</strong>: Choose this option to view all messages.</li>
  <li><strong>Unread</strong>: Choose this option to view only unread
    messages.</li>
  <li><strong>Tags</strong>: Choose a <a href="#tagging_messages">tag</a>
    to view tagged messages.</li>
  <li><strong>Custom views</strong>: Choose a custom view. By default you have
    four preset views: <q>People I Know</q>, <q>Recent Mail</q>, <q>Last 5
    Days</q>, and <q>Not Junk</q>.</li>
  <li><strong>Customize</strong>: Choose this option to view or modify
    settings for custom views.</li>
</ul>

<p><strong>Tip</strong>: You can quickly change message view from the View box
  in the Search Bar. If you do not see the Search Bar, open the View menu,
  choose Show/Hide, and then choose Search Bar.</p>

<table>
  <tr>
    <td colspan="2"><img src="images/mail_quicksearch.png" alt=""/></td>
  </tr>
  <tr>
    <td style="width: 80px;"></td>
    <td><strong>Quick mail search bar</strong></td>
  </tr>
</table>

<h3 id="creating_a_custom_view">Creating a Custom View</h3>

<p>You can create custom message views to only display messages matching
  certain criteria.</p>

<p>To change or create a custom message view:</p>

<ol>
  <li>Open the View menu, choose Messages, and then choose Customize.</li>
  <li>To create a new view, click New. To modify a view, select a view and
    click Edit.</li>
  <li>Type a name for the message view.</li>
  <li>Select the matching option you want Mail to use: <q><em>all</em> of the
    following</q> conditions (criteria) you choose, or <q><em>any</em> of the
    following</q>.</li>
  <li>Use the drop-down lists to choose the search criteria (for example,
    <q>Subject</q>, <q>Sender</q>, <q>contains</q>, <q>doesn&apos;t
    contain</q>) and then type the text or phrase you want to match.

    <p><strong>Tip</strong>: To search for messages that contain a header not
      listed in the first drop-down menu (for example, if you want to search
      for messages that include the header Resent-From), choose Customize and
      type the header you want to search for. &brandShortName; Mail &amp;
      Newsgroups adds your custom header to the drop-down list, so you can then
      choose it to search for matching entries. Make sure you enter the custom
      header correctly, since Mail will only find entries that exactly match
      what you type.</p>
  </li>
  <li>Click More to add criteria and Fewer to remove them.</li>
  <li>Click OK to confirm your settings.</li>
  <li>Click OK in the Customize Message Views dialog box. The selected view 
    setting applies automatically.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="creating_message_filters">Creating Message Filters</h2>

<p>Message filters allow you to manage and organize your messages. You can
  create message filters that &brandShortName; Mail &amp; Newsgroups uses to
  automatically perform certain actions on incoming messages based on criteria
  you specify. For example, you can create a message filter that automatically
  moves incoming messages to a particular folder. Message filters operate on a
  per-account basis.</p>

<p>If you are not already viewing the Message Filters dialog box, begin from
  the Mail window:</p>

<ol>
  <li>Open the Tools menu and choose Message Filters. You see the Message
    Filters dialog box.</li>
  <li>If you have multiple mail accounts, choose the one to which you want to
    apply the filter.</li>
  <li>Click New. You use the Filter Rules dialog box to specify the types of
    messages to act on, and the action you want the filter to perform.</li>
  <li>Type a name for the filter.</li>
  <li>Select the matching option you want Mail to use: <q><em>all</em> of the
    following</q> conditions (criteria) you choose, or <q><em>any</em> of the
    following</q> conditions.</li>
  <li>Use the drop-down lists to choose the search criteria (for example,
    <q>Subject</q>, <q>Sender</q>, <q>contains</q>, <q>doesn&apos;t
    contain</q>) and then type the text or phrase you want to match.

    <p><strong>Tip</strong>: To search for messages that contain a header not
      listed in the first drop-down menu (for example, if you want to search
      for messages that include the header Resent-From), choose Customize and
      type the header you want to search for. &brandShortName; Mail &amp;
      Newsgroups adds your custom header to the drop-down list, so you can then
      choose it to search for matching entries. Make sure you enter the custom
      header correctly, since Mail will only find entries that exactly match
      what you type.</p>
  </li>
  <li>Click <q>+</q> to add criteria and <q>-</q> to remove them.</li>
  <li>Use the list to choose the action you want the filter to perform on the
    messages (for example, Move to Folder).

    <p><strong>Tip</strong>: To automatically tag incoming messages, choose
      <q>Tag the message</q> from the drop-down list.</p>
  </li>
  <li>Choose a destination folder in which to store the messages, or create a
    new folder.</li>
  <li>Click OK to confirm your settings.</li>
  <li>Click OK in the Message Filters dialog box. The filter begins filtering
    incoming messages as soon as you click OK.</li>
</ol>

<p>To manage your filters, begin from the Mail window:</p>

<ol>
  <li>Open the Tools menu and choose Message Filters. You see the Message
    Filters dialog box.</li>
  <li>If you have multiple mail accounts, choose the one to which you want to
    apply the filter.</li>
  <li>Choose from the following:
    <ul>
      <li><strong>To turn a filter on or off</strong>: Click the checkbox to
        the right of the filter name to enable it, or click it again to turn it
        off.</li>
      <li><strong>To edit a filter</strong>: Select the filter name and click
        Edit (or double-click the filter name). Use the Filter Rules dialog box
        to make your changes.</li>
      <li><strong>To delete a filter</strong>: Select the filter name and click
        Delete.</li>
      <li><strong>To change the order in which filters are applied</strong>: In
        the filter list, click a filter&apos;s name, and click <q>Move Up</q>
        or <q>Move Down</q> to move it.

        <p><strong>Note</strong>: Filters are applied to each incoming message
          in the order you choose, until a filter action results in the message
          being deleted or moved from the Inbox folder.</p>
      </li>
    </ul>
  </li>
  <li>Click OK when you are done managing your filters. If you created a new
    filter, it begins filtering incoming messages as soon as you click OK.</li>
</ol>

<p><strong>Note</strong>: If you delete a folder that you&apos;ve been using to
  store filtered messages, the filter will no longer work. Incoming messages
  that match the filter criteria will appear in your Inbox. If you rename or
  move the folder, the filter will automatically update to use the renamed or
  moved folder.</p>

<p><strong>Tip</strong>: If you have existing messages that you want to move to
  another folder, use the Run Filters on Messages option in the Tools menu.</p>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h3 id="filtering_messages_from_a_specific_sender">Filtering Messages From a
  Specific Sender</h3>

<p>You can quickly create a filter for messages from a particular sender. For
  example, if you want to automatically move all incoming messages from your
  child&apos;s teacher into a folder called <q>School</q>, you can quickly set
  up a filter to do this.</p>

<p>To create a filter for messages from a specific sender, begin from the Mail
  window:</p>

<ol>
  <li>Select a message from a specific sender.</li>
  <li>Open the Message menu, and choose Create Filter From Message. You see the
    Filter Rules dialog box. Using the sender&apos;s email address,
    &brandShortName; prefills the filter name, the filter matching criteria,
    and the filter action (Move to folder).</li>
  <li>Choose a destination folder in which to store the incoming messages from
    the specified sender, or create a new folder.</li>
  <li>Click OK to confirm your settings. You see the
    <a href="#creating_message_filters">Message Filters</a> dialog box, where
    you can create, delete, or edit message filters.</li>
  <li>Click OK. The filter begins filtering incoming messages from the
    specified sender as soon as you click OK.</li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h2 id="searching_through_messages">Searching Through Messages</h2>

<p>&brandShortName; Mail &amp; Newsgroups lets you quickly find text in a
  single message, search messages by subject or sender, or use a combination of
  criteria to perform a thorough search through all messages in a specific mail
  folder, newsgroup, or account.</p>

<p>To locate text in a single message, begin from the Mail window:</p>

<ol>
  <li>Select the message, open the Edit menu, and choose Find in This
    Message.</li>
  <li>Type the text that you want to locate in the dialog box.</li>
  <li>Click Find to locate the first occurrence of the text.</li>
  <li>Continue clicking Find to locate additional occurrences, or click Cancel
    when you are done.</li>
  <li>Choose Find Again from the Edit menu to continue searching for the text
    throughout the rest of the message.</li>
</ol>

<p>To quickly search for messages in a selected folder by subject or sender,
  begin from the Mail window:</p>

<ol>
  <li>To the right of <q>Subject or Sender contains:</q>, type the subject text
    or sender name that you want to find. You can type only part of the subject
    or sender, or you can type the exact word or name that you want to find.

    <p>As soon as you stop typing, &brandShortName; Mail &amp; Newsgroups
      displays only those messages in the selected folder where the subject or
      sender contains the search text you entered.</p>
  </li>
  <li>Click Clear to erase the search text and show all messages in the
    selected folder.</li>
</ol>

<h3 id="searching_for_specific_messages">Searching for Specific Messages</h3>

<p>You can search mail folders or newsgroups for specific messages. If you are
  not already viewing the Search Messages dialog box, begin from the Mail
  window:</p>

<ol>
  <li>Open the Tools menu and choose Search Messages. You see the Search
    Messages dialog box.</li>
  <li>Next to <q>Search for messages in</q>, choose the account, newsgroup, or
    folder through which you want to search.</li>
  <li>Select <q>Search subfolders</q> to include all subfolders in the
    search.</li>
  <li>Select <q>Search local system</q> to search only messages from newsgroups
    or IMAP accounts that have been saved locally.

    <p><strong>Note</strong>: The checkbox will be disabled if it&apos;s not
      possible to search remotely stored messages.</p>
  </li>
  <li>Select which matching option Mail &amp; Newsgroups will use to search for
    messages that match all or at least one of the conditions (criteria) that
    you choose.</li>
  <li>Use the drop-down lists to indicate the search criteria (for example,
    <q>Subject</q> and <q>contains</q>) and then type the text or phrase that
    you want to match.

    <p><strong>Tip</strong>: To search for messages that contain a header not
      listed in the first drop-down menu (for example, if you want to search
      for messages that include the header Resent-From), choose Customize and
      type the header you want to search for. &brandShortName; Mail &amp;
      Newsgroups adds your custom header to the drop-down list, so you can then
      choose it to search for matching entries. Make sure you enter the custom
      header correctly, since Mail will only find entries that exactly match
      what you type.</p>
  </li>
  <li>Click More to add criteria and Fewer to remove them.</li>
  <li>Click Search to begin, or click Clear to reset your entries. The search
    results appear in lower part of the Search Messages dialog box.
    <ul>
      <li>To open a message so you can read it, select the message and click
        Open, or double-click the message.</li>
      <li>To sort the messages in a different order, click the column that you
        want to sort by.</li>
      <li>To move or copy a message in the Results area to another folder,
        select the message and then choose the destination folder from the File
        drop-down list. If the destination folder is within the same account,
        the message is moved to that folder. If the destination folder is
        within a different account, the message is copied to that folder.</li>
      <li>To delete a message in the Results area, select the message and then
        click Delete.</li>
      <li>To open the folder where the message is stored, select the message
        and click Open Message Folder.</li>
    </ul>
  </li>
</ol>

<p>[<a href="#organizing_your_messages">Return to beginning of section</a>]</p>

<h1 id="controlling_junk_mail">Controlling Junk Mail</h1>

<p>This section describes how to use &brandShortName;&apos;s Junk Mail Controls
to filter unwanted mail, and how phishing detection works.</p>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#using_junk_mail_controls">Using Junk Mail Controls</a></li>
    <li><a href="#junk_controls_options">Junk Mail Controls Options</a></li>
    <li><a href="#junk_controls_and_filters">Junk Mail Controls and
      Filters</a></li>
    <li><a href="#phishing_detection">Phishing Detection</a></li>
  </ul>
</div>


<h2 id="using_junk_mail_controls">Using Junk Mail Controls</h2>

<p>&brandShortName;&apos;s Junk Mail Controls feature can evaluate your
  incoming messages and identify possible junk (or unsolicited) messages. The
  feature uses the Bayesian classification method. You first train
  &brandShortName; by showing it a bunch of mail that is junk, and a bunch of
  mail that is not. Then, you let it auto-classify new mail for you. If
  &brandShortName; makes any mistakes, you can correct them.</p>

<p>To use Junk Mail Controls:</p>

<ol>
  <li>First, train &brandShortName; to recognize Junk messages and Non-Junk
    messages. There are three ways to toggle junk status of the selected
    message(s):
    <ul>
      <li>Open the Message menu, select <q>Mark</q> and choose <q>As Junk</q>
        or <q>As Not Junk</q>.</li>
      <li>Click on the Junk toolbar button.</li>
      <li><img src="images/mail_junk_column.png" style="float:right" alt=""/>

        <p>Click to toggle the Junk Status column in the message list. (If you
          do not see it, click the right-most button (
          <img src="images/columns.png" alt=""/>) in the list header bar and
          select Junk Status from the pop-up menu.)</p>
      </li>
    </ul>

    <p>When you toggle junk status, a trash-can icon will appear or disappear
      in the Junk status column to indicate the junk status of the selected
      message.</p>
  </li>
  
  <li>Open the Edit menu, and choose Mail &amp; Newsgroups Account Settings.
    You see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click the Junk Settings category for your mail account.</li>
  <li>Enable the feature and &brandShortName; will automatically classify
    incoming messages. (See
    <a href="#junk_controls_options">Junk Mail Controls Options</a>.
    Details on the other settings there can be found in the 
    <a href="#junk_settings">Junk Settings</a> preference panel description.)
  </li>
  <li>If you have trained it on virus mail, consider disabling the white
    listing (many mail viruses send bulk messages to people in the address book
    of the infected computer).</li>
  <li>Make sure to correct the Junk Mail Controls when it incorrectly labels
    messages either as junk or not junk.</li>
  <li>To analyze existing messages, select messages, open the Tools menu
    and choose <q>Run Junk Mail Controls</q>.</li>
</ol>

<p><strong>Note</strong>: &brandShortName; will only run Junk Mail Controls
  when the training database has information on non-Junk messages. If Junk Mail
  Controls do not work, select some messages and explicitly mark them as Not
  Junk.</p>

<p>[<a href="#controlling_junk_mail">Return to beginning of section</a>]</p>

<h2 id="junk_controls_options">Junk Mail Controls Options</h2>

<p>To fine-tune how Junk Mail Controls work, use the 
  <a href="#global_junk_settings">global Junk Mail preference panel</a> for
  account-independent settings and the account manager's 
  <a href="#junk_settings">Junk Settings</a> for settings of a specific mail
  account.</p>

<p>[<a href="#controlling_junk_mail">Return to beginning of section</a>]</p>

<h2 id="junk_controls_and_filters">Junk Mail Controls and Filters</h2>

<p>Junk Mail Controls run after mail filters and apply only to the Inbox folder
  and its sub-folders. Use this to your advantage, for example, you can filter
  mail you are sure not to be Junk to a special folder outside of Inbox so that
  the messages will not be classified as Junk (especially useful if you
  subscribe to newsletters or if you are on a moderated mailing list).</p>

<p>[<a href="#controlling_junk_mail">Return to beginning of section</a>]</p>

<h2 id="phishing_detection">Phishing Detection</h2>

<p>Phishing is a particularly common fraudulent business scheme in which
  a party creates counterfeit websites designed to trick recipients into
  divulging personal data such as credit card numbers, account usernames,
  passwords and social security numbers. Hijacking brand names of banks,
  e-retailers and credit card companies, phishers often convince
  recipients to respond.</p>

<p>In many cases, you&apos;ll receive a link to a phishing page via an email
  which claims to come from an official-looking address. You can also end up
  at these pages by following links that you find on the Web or in IM
  messages.</p>

<p><strong>Tip</strong>: Since a forged <a href="glossary.xhtml#url">URL</a>
  can look very similar to a genuine one, it&apos;s safer to use a bookmark
  you&apos;ve created or to type the URL into the location bar by hand instead
  of following a link in an email message. Always consider the risk of a forged
  URL if you&apos;re asked to log in or provide private information on a
  website.</p>

<p>&brandShortName; Mail phishing detector is enabled by default. When it
  encounters a mail which seems to be scam, it will show a warning bar in the
  message window.</p>

<p>If you think that the email is a valid one, you can click on the <q>Not
  Scam</q> button, and the warning bar will disappear.</p>

<p>When a user clicks on a link in an email that appears to be a phishing URL,
  &brandShortName; will prompt the user with a dialog box before the Web site
  is opened.</p>

<p>This prompt will appear if either of the following is true: the host name of
  the actual URL is an <a href="glossary.xhtml#ip_address">IP address</a>, or
  the link text is a URL whose host name does not match the host name of the
  actual URL.</p>

<p><strong>Note</strong>: Phishing detection has a higher precedence than Junk
  Mail detection.</p>

<p>For more technical details on this subject, see the online document
  <a href="http://www.honeynet.org/papers/phishing/">Know your Enemy:
  Phishing</a>.</p>

<p>[<a href="#controlling_junk_mail">Return to beginning of section</a>]</p>

<h1 id="importing_mail_from_other_programs">Importing Mail from Other
  Programs</h1>

<p>This section describes how to import mail messages and settings from
  Netscape Communicator, Outlook, Outlook Express, and Eudora. To import
  address books from these programs, see
  <a href="#importing_address_books">Importing Address Books</a>.</p>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#importing_mail_messages">Importing Mail Messages</a></li>
    <li><a href="#importing_mail_settings">Importing Mail Settings</a></li>
  </ul>
</div>

<h2 id="importing_mail_messages">Importing Mail Messages</h2>

<p>To import mail messages from Netscape Communicator, Outlook, Outlook
  Express, or Eudora, begin from the Mail window:</p>

<ol>
  <li>Open the Tools menu, and choose Import. You see the Import Wizard.</li>
  <li>Follow the instructions to import mail messages.</li>
</ol>

<p>For Netscape Communicator, the wizard imports a copy of all Communicator
  mail folders included under Local Folders. Imported mail is added as a new
  folder under Local Folders in the Mail window. (The Communicator mail
  folders still remain in their original location).</p>

<p>[<a href="#importing_mail_from_other_programs">Return to beginning of
  section</a>]</p>

<h2 id="importing_mail_settings">Importing Mail Settings</h2>

<p>To import mail settings from Outlook, Outlook Express, or Eudora, begin from
  the Mail window:</p>

<ol>
  <li>Open the Tools menu, and choose Import. You see the Import Wizard.</li>
  <li>Follow the instructions to import mail settings.</li>
</ol>

<p>[<a href="#importing_mail_from_other_programs">Return to beginning of
  section</a>]</p>

<h1 id="getting_started_with_newsgroups">Getting Started With Newsgroups</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#subscribing_to_newsgroups">Subscribing to Newsgroups</a></li>
    <li><a href="#reading_newsgroup_messages">Reading Newsgroup
      Messages</a></li>
    <li><a href="#posting_newsgroup_messages">Posting Newsgroup
      Messages</a></li>
    <li><a href="#contributing_to_ongoing_discussions">Contributing to Ongoing
      Discussions</a></li>
    <li><a href="#monitoring_threads">Monitoring Threads</a></li>
    <li><a href="#removing_a_newsgroup">Removing a Newsgroup</a></li>
    <li><a href="#adding_a_newsgroup_server">Adding a Newsgroup Server</a></li>
  </ul>
</div>

<h2 id="subscribing_to_newsgroups">Subscribing to Newsgroups</h2>

<p>If you have set up an <a href="#adding_a_newsgroup_server">account</a> on a
  newsgroup server, you can join (subscribe) to newsgroups (also called
  discussion groups).</p>

<p>To subscribe to a newsgroup, begin from the Mail window:</p>

<ol>
  <li>Open the File menu and choose Subscribe. You see the Subscribe dialog
    box.</li>
  <li>If necessary, click the Account drop-down list to choose another
    newsgroup account.</li>
  <li>Select a newsgroup. To select more than one newsgroup,
    <kbd class="mac">Cmd</kbd><kbd class="noMac">Ctrl</kbd>-click additional
    newsgroup.</li>
  <li>Click Subscribe or click in the Subscribe column next to the newsgroup.
    You see a checkmark next to each newsgroup to which you subscribe. Click
    Unsubscribe to cancel a selection.</li>
  <li>Click OK. The list of your subscribed newsgroups appears in the Mail
    window.</li>
</ol>

<p>If you are an IMAP mail user, you can also subscribe to message folders
  located on an IMAP server. (Your Inbox is a type of message folder.) Follow
  the instructions above for subscribing, but select an IMAP account from the
  Account drop-down list. For more information on sharing folders and
  subscribing to folders, see
  <a href="#sharing_folders_with_other_users">Sharing Folders With Other Users
  (IMAP Only)</a>.</p>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="reading_newsgroup_messages">Reading Newsgroup Messages</h2>

<p>When you open your newsgroup server, you see the list of newsgroups to which
  you subscribe. The server downloads the <em>headers</em> of new messages in
  each newsgroup.</p>

<p>To read newsgroup messages, begin from the Mail window:</p>

<ol>
  <li>Double-click a newsgroup server icon to see its newsgroups. (If there are
    no newsgroups, you may need to subscribe to one.)</li>
  <li>Click a newsgroup name to see its messages.</li>
  <li>Click a message to read it. Click the thread button to display all the
    responses below the original message. You can click any header to display
    its message. You can <a href="#posting_newsgroup_messages">start a new
    thread</a> or <a href="#contributing_to_ongoing_discussions">post a
    message</a> in response.</li>
</ol>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="posting_newsgroup_messages">Posting Newsgroup Messages</h2>

<p>To start new threads (discussions):</p>

<ol>
  <li>From the list of your subscribed newsgroups in the Mail window, select a
    newsgroup.</li>
  <li>Click Compose.</li>
  <li><a href="#composing_mail_and_newsgroup_messages">Compose</a> your
    message, and click Send to post it.</li>
  <li>Click Get Msgs to see your posting on the newsgroup.</li>
</ol>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="contributing_to_ongoing_discussions">Contributing to Ongoing
  Discussions</h2>

<p>To post a response to the newsgroup:</p>

<ol>
  <li>In the message list, select a message to reply to.</li>
  <li>Click Reply.</li>
  <li><a href="#composing_mail_and_newsgroup_messages">Compose</a> your
    message, and click Send to post it.</li>
</ol>

<p>To reply to an individual as well as post a response to the group:</p>

<ol>
  <li>In the message list, select a message to reply to.</li>
  <li>Click Reply All.</li>
  <li>Compose your message, and click Send to post it.</li>
</ol>

<p>To redirect a posting to another newsgroup:</p>

<ul>
  <li>Click Reply and choose <q>Followup-To</q> from the <q>Newsgroup</q>
    drop-down list. Subsequent responses will be posted to the newsgroup you
    enter.</li>
</ul>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="monitoring_threads">Monitoring Threads</h2>

<p>To monitor unread messages in threads that are of interest to you:</p>

<ol>
  <li>Select a message in a thread.</li>
  <li>Open the Message menu, and choose Watch Thread.</li>
  <li>If you want to monitor additional threads, repeat steps 1 and 2 for
    messages in additional threads.</li>
  <li>When you&apos;re ready to monitor messages in these threads, open the
    View menu, choose Messages, and then choose Watched Threads with Unread.
    &brandShortName; Mail &amp; Newsgroups only displays the watched threads
    that contain unread messages.</li>
  <li>Open the View menu, choose Messages, and then choose All to return to
    viewing all messages in the newsgroup.</li>
</ol>

<p>To ignore a message thread:</p>

<ol>
  <li>Select a message in the thread.</li>
  <li>Open the Message menu, and choose Ignore Thread. &brandShortName; Mail
    &amp; Newsgroups marks all messages in the thread as read, and new replies
    posted to the thread will appear as read.</li>
  <li>To view ignored threads, open the View menu, choose Messages, and then
    choose Ignored Threads.</li>
</ol>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="removing_a_newsgroup">Removing a Newsgroup</h2>

<p>To remove a newsgroup from your list:</p>

<ul>
  <li>Select the newsgroup icon and press Delete.</li>
</ul>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h2 id="adding_a_newsgroup_server">Adding a Newsgroup Server</h2>

<p>If the newsgroup you want to subscribe to is on a different server, you must
  first set up access to that server.</p>

<p>To set up an additional newsgroup server, open the File menu in the Mail
  window and choose New, then Account.</p>

<ul>
  <li>Using the Account Wizard, indicate that the new account you want to set
    up is a newsgroup account.</li>
</ul>

<p>Once you&apos;ve set up access to the new server, you can
  <a href="#subscribing_to_newsgroups">subscribe</a> to newsgroups on that
  server. In the Mail window, open the File menu, and choose Subscribe.</p>

<p>[<a href="#getting_started_with_newsgroups">Return to beginning of
  section</a>]</p>

<h1 id="working_offline">Working Offline</h1>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#setting_up_mozilla_mail_and_newsgroups_to_work_offline">Setting
      Up &brandShortName; Mail &amp; Newsgroups to Work Offline</a></li>
    <li><a href="#downloading_your_inbox_for_offline_use">Downloading Your
      Inbox for Offline Use</a></li>
    <li><a href="#downloading_an_individual_folder_for_offline_use">Downloading
      an Individual Folder for Offline Use</a></li>
    <li><a href="#downloading_selected_or_flagged_messages_for_offline_use">Downloading
      Selected or Flagged Messages for Offline Use</a></li>
    <li><a href="#downloading_directory_entries_for_offline_use">Downloading
      Directory Entries for Offline Use</a></li>
    <li><a href="#setting_up_your_accounts_for_working_offline">Setting Up Your
      Accounts for Working Offline</a></li>
    <li><a href="#selecting_items_for_offline_viewing">Selecting Items for
      Offline Viewing</a></li>
    <li><a href="#downloading_and_synchronizing_your_messages">Downloading and
      Synchronizing Your Messages</a></li>
    <li><a href="#working_offline_and_reconnecting_later">Working Offline and
      Reconnecting Later</a></li>
  </ul>
</div>

<h2 id="setting_up_mozilla_mail_and_newsgroups_to_work_offline">Setting Up
  &brandShortName; Mail &amp; Newsgroups to Work Offline</h2>

<p>&brandShortName; Mail &amp; Newsgroups&apos; offline feature lets you
  download your mail and read it offline (while disconnected from the
  Internet). If you use a dial-up (modem) connection to access your mail and
  you want to reduce the time you are connected, or, if you need to temporarily
  disconnect from your company&apos;s network while traveling or switching
  locations, you can download your mail so that you can read it offline. The
  offline feature can automatically download incoming messages and then later
  send all your outgoing messages when you reconnect.</p>

<p>Note that for POP accounts your mail is already downloaded by default, so
  most of these offline features aren&apos;t relevant for POP accounts.</p>

<p>If you occasionally want to work offline, &brandShortName; Mail &amp;
  Newsgroups lets you easily:</p>

<ul>
  <li>Download your Inbox for offline use.</li>
  <li>Download an individual folder for offline use.</li>
  <li>Download only selected or flagged messages for offline use.</li>
  <li>Download directory entries in your address book for offline use.</li>
</ul>

<p>If you frequently work offline, &brandShortName; Mail &amp; Newsgroups also
  lets you:</p>

<ul>
  <li>Set up one or more of your accounts for offline use.</li>
  <li>Set offline and disk space preferences for each account.</li>
  <li>Select the folders and newsgroups that you want to view offline.</li>
</ul>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="downloading_your_inbox_for_offline_use">Downloading Your Inbox for
  Offline Use</h2>

<p>You can tell &brandShortName; Mail &amp; Newsgroups to automatically
  download your Inbox messages for offline use. Later, when you go back online,
  &brandShortName; Mail &amp; Newsgroups automatically synchronizes your Inbox
  messages with the server.</p>

<p>Note that the Inbox for POP accounts is downloaded by default, so this
  section does not apply for POP accounts.</p>

<p>To automatically download your Inbox for offline use, begin from the Mail
  window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>In the left side of the dialog box, under the name of the account you
    want to use offline, select Offline &amp; Disk Space. (This category is not
    available for POP accounts.)</li>
  <li>Check the box labeled <q>Make the messages in my Inbox available when I
    am working offline</q>.</li>
  <li>Click OK.</li>
  <li>In the folder pane, under the name of the account you want to use
    offline, click any folder other than the Inbox. For example, click the Sent
    or the Drafts folder. Then click the Inbox folder to start downloading its
    messages.</li>
  <li>Once downloading is complete, click the Online/Offline indicator
    <img src="images/online.png" alt=""/> in the lower right corner of the
    Mail window (to the left of the Cookie icon) to go offline.</li>
</ol>

<p>&brandShortName; Mail &amp; Newsgroups automatically downloads all messages
  in your Inbox so you can read and respond to them while working offline.
  After disconnecting, &brandShortName; Mail &amp; Newsgroups remains open so
  you can continue to work with your messages.</p>

<p>To reconnect to the Internet so you can work online:</p>

<ul>
  <li>Click the Online/Offline indicator <img src="images/offline.png"
    alt=""/> in the lower right corner of the Mail window (to the left of the
    Cookie icon) to go back online.</li>
</ul>

<p>When you go back online, &brandShortName; Mail &amp; Newsgroups
  automatically synchronizes your Inbox messages with the server, by
  replicating any changes you made while working offline.</p>

<p><strong>Tip</strong>: &brandShortName; Mail &amp; Newsgroups saves any
  messages that you send while working offline in the Unsent Messages folder
  under Local Folders. To have &brandShortName; Mail &amp; Newsgroups
  automatically send your unsent messages when you reconnect, use the
  Preferences command on the <span class="mac">&brandShortName;</span>
  <span class="noMac">Edit</span> menu to change the
  <a href="#offline_and_disk_space_preferences">offline preferences</a> for all
  your accounts.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="downloading_an_individual_folder_for_offline_use">Downloading an
  Individual Folder for Offline Use</h2>

<p>Note that POP accounts don&apos;t allow you to manage folders on the POP
  server, so this section does not apply to POP accounts.</p>

<p>To download a specific folder for offline use, begin from the Mail
  window:</p>

<ol>
  <li>In the left side of the Mail window, select the folder that you want to
    download for offline use.</li>
  <li>Open the Edit menu, and choose Folder Properties. You see the Properties
    dialog box.</li>
  <li>Click the Offline tab.</li>
  <li>Check <q>Select this folder for offline use</q>.</li>
  <li>Click Download Now if you want to immediately begin downloading the
    folder&apos;s messages. Alternatively, you can continue working, and when
    you are ready to go offline, proceed to the next step.</li>
  <li>Click the Online/Offline indicator <img src="images/online.png" alt=""/>
    in the lower right corner of the Mail window to go offline.</li>
  <li>In the Work Offline dialog box, click Download.</li>
</ol>

<p>&brandShortName; Mail &amp; Newsgroups automatically downloads all messages
  in the selected folder so you can read and respond to them while working
  offline. After disconnecting, &brandShortName; Mail &amp; Newsgroups remains
  open so you can continue to work with your messages.</p>

<p><strong>Note</strong>: Message headers that have been downloaded for reading
  offline display a darker gray envelope or newsgroup icon.</p>

<p>To reconnect to the Internet so you can work online:</p>

<ul>
  <li>Click the Online/Offline indicator <img src="images/offline.png"
    alt=""/> in the lower right corner of the Mail window (to the left of the
    Cookie icon) to go back online.</li>
</ul>

<p>&brandShortName; Mail &amp; Newsgroups automatically synchronizes the
  offline folders with the server, by replicating any changes you made while
  working offline.</p>

<p><strong>Tip</strong>: &brandShortName; Mail &amp; Newsgroups saves any
  messages that you sent while working offline in the Unsent Messages folder
  under Local Folders. When you reconnect, choose Send Unsent Messages from the
  File menu to send all your saved messages at once. To have &brandShortName;
  Mail &amp; Newsgroups automatically send your unsent messages when you
  reconnect, use the Preferences command on the
  <span class="mac">&brandShortName;</span> <span class="noMac">Edit</span>
  menu to change your <a href="#offline_and_disk_space_preferences">offline
  preferences</a>.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="downloading_selected_or_flagged_messages_for_offline_use">Downloading
  Selected or Flagged Messages for Offline Use</h2>

<p>Note that messages are downloaded by default for POP accounts. However, if
  you have enabled the <q>Fetch headers only</q> setting in the POP account
  settings, then only the headers will be downloaded, and you will need to use
  the commands in this section to download the complete messages.</p>

<p>To download selected messages for offline use, begin from the Mail
  window:</p>

<ol>
  <li>Select a Mail or Newsgroup folder to display its messages.</li>
  <li>Select the messages you want to download, as follows:
    <ul>
      <li>To select a group of adjacent messages, click the first message, and
        then Shift-click to select the last message in the group.</li>
      <li>To select messages anywhere in the message list, hold down the
        <kbd class="mac">Cmd</kbd><kbd class="noMac">Ctrl</kbd> key and click
        each message.</li>
    </ul>
  </li>
  <li>Open the File menu, choose Offline, and then choose Get Selected Messages
    from the submenu. &brandShortName; Mail &amp; Newsgroups downloads the
    selected messages.</li>
</ol>

<p>To download flagged messages for offline use, begin from the Mail
  window:</p>

<ol>
  <li>Select a Mail or Newsgroup folder to display its messages.</li>
  <li>Click in the flag column of each message you want to download. A flag
    appears where you clicked to indicate that the message has been marked. If
    the flag column is not visible, click the Show/Hide Columns icon
    <img src="images/columns.png" alt=""/> and select Flag from the list.</li>
  <li>Open the File menu, choose Offline, and then choose Get Flagged Messages.
    &brandShortName; Mail &amp; Newsgroups downloads the flagged messages.</li>
</ol>

<p>Once downloading is complete, click the Online/Offline indicator in the
  lower right corner of the Mail window (to the left of the Cookie icon) to go
  offline. After you disconnect, &brandShortName; Mail &amp; Newsgroups remains
  open so you can continue to work with your messages.</p>

<p>Note that the <q>Get Selected Messages</q> and <q>Get Flagged Messages</q>
  menu items are also available in the pop-up thread context menu, for faster
  access.</p>

<p><strong>Note</strong>: Message headers that have been downloaded for reading
  offline display a darker gray envelope or newsgroup icon.</p>

<p>To reconnect to the Internet so you can work online:</p>

<ul>
  <li>Click the Online/Offline indicator <img src="images/offline.png"
    alt=""/> in the lower right corner of the Mail window to go online.</li>
</ul>

<p><strong>Tip</strong>: &brandShortName; Mail &amp; Newsgroups saves any
  messages that you sent while working offline in the Unsent Messages folder
  under Local Folders. When you reconnect, choose Send Unsent Messages from the
  File menu to send all your saved messages at once. To have &brandShortName;
  Mail &amp; Newsgroups automatically send your unsent messages when you
  reconnect, use the Preferences command on the
  <span class="mac">&brandShortName;</span> <span class="noMac">Edit</span>
  menu to change your <a href="#offline_and_disk_space_preferences">offline
  preferences</a>.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="downloading_directory_entries_for_offline_use">Downloading
  Directory Entries for Offline Use</h2>

<p>You can download (replicate) the entries in a directory server to your
  computer so that they are available when you work offline. Once you&apos;ve
  downloaded directory entries, you can use the same procedure to update your
  local copy of the entries with the latest entries on the directory
  server.</p>

<p>To download or update an address book LDAP directory for offline use:</p>

<ol>
  <li>Make sure you&apos;re online.</li>
  <li>Open the Window menu, and choose Address Book.</li>
  <li>In the Address Book window, select the directory that you want to
    download (replicate).</li>
  <li>Click Properties in the Address Book toolbar. The Directory Server
    Properties dialog box appears.</li>
  <li>Click the Offline tab.</li>
  <li>Click Download Now to start copying the entries to your computer.</li>
  <li>If prompted, enter your network user name and password, and click OK to
    start the download.

    <p>Depending on the number of directory entries, the download process may
      take a while, so please be patient.</p>
  </li>
</ol>

<p>After the download finishes, you can work offline and search the directory
  or use it for address autocompletion when composing messages. After
  you&apos;ve been using your local copy of the directory for a while, you may
  wish to update it to get the latest entries from the directory server. To
  update your local copy, use the procedure described above.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="setting_up_your_accounts_for_working_offline">Setting Up Your Accounts
  for Working Offline</h2>

<p>To set up one or more accounts for working offline, you use the Offline and
  Disk Space preferences in the Mail &amp; Newsgroups Account Settings dialog
  box. Once set, you don&apos;t need to change these preferences each time you
  want to work offline. The offline and disk space preferences you can set for
  an account depend on the type of account (IMAP, POP, or Newsgroup).</p>

<p>Here&apos;s a summary of the steps you will follow to set up your accounts
  for offline use:</p>

<ol>
  <li>For each account that you want to work with while offline, use the Mail
    &amp; Newsgroups Account Settings dialog box to set the Offline &amp; Disk
    Space preferences for that account. You must select the items (folders and
    newsgroups) that you want to download for offline use. See
    <a href="#selecting_items_for_offline_viewing">Selecting Items for Offline
    Viewing</a> for more information.

    <p>Once set, you don&apos;t need to change these settings. See the sections
      below for information on setting offline and disk space preferences for
      <a href="#offline_and_disk_space_settings_imap">IMAP</a>,
      <a href="#disk_space_settings">POP</a>, and
      <a href="#offline_and_disk_space_settings_nntp">Newsgroup</a>
      accounts.</p>

    <p><strong>Tip</strong>: To set the Offline &amp; Disk Space preferences
      for the current account, open the File menu, choose Offline, and then
      choose Offline Settings.</p>
  </li>
  <li>Open the File menu, choose Offline, and then choose Download/Sync Now
    from the submenu.</li>
  <li>Select the type of messages (mail or newsgroup or both) that you want to
    download.

    <p><strong>Important</strong>: You must select at least one category (mail
      messages or newsgroup messages) in order for the download to work.</p>
  </li>
  <li>Select <q>Work offline once download and/or sync is complete</q>.</li>
  <li>Click OK to download the selected items and then go offline. See
    <a href="#downloading_and_synchronizing_your_messages">Downloading and
    Synchronizing Your Messages</a> for more information.</li>
</ol>

<p>For subsequent offline sessions, you can skip step 1.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="selecting_items_for_offline_viewing">Selecting Items for Offline
  Viewing</h2>

<p>Before you can read mail and newsgroup messages while offline, you must
  first select them for downloading. You can set up an entire account for
  offline use. You can also choose which folders and newsgroups that you
  want to use offline.</p>

<p><strong>Note</strong>: Keep in mind that selecting more items may increase
  download time and disk space used.</p>

<p>To select accounts, folders, and newsgroups for offline viewing, begin from
  the Mail window:</p>

<ol>
  <li>Open the Edit menu, choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Choose the Offline &amp; Disk Space category for the account you want to
    change.</li>
  <li>Click Select. You see your IMAP accounts, mail folders, and subscribed
    newsgroups.

    <p><strong>Note</strong>: You see only the newsgroups and folders that
      you&apos;ve already <a href="#subscribing_to_newsgroups">subscribed</a>
      to. POP accounts and local mail folders don&apos;t appear in the
      list.</p>
  </li>
  <li>Select the items (folders, newsgroups) that you want to make available
    for offline use.</li>
  <li>Click OK.</li>
</ol>

<p>Once set, you don&apos;t need to change these settings each time you want to
  go offline. However, if you do want to change them, you can easily do so
  before going offline, since the same Select button is available when using
  the <a href="#downloading_and_synchronizing_your_messages">Download and
  Sync</a> command.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="downloading_and_synchronizing_your_messages">Downloading and
  Synchronizing Your Messages</h2>

<p>If you have already selected mail folders and newsgroups for offline use,
  you are now ready to download and synchronize them. If you haven&apos;t yet
  selected items to download, you can choose them before you go offline.</p>

<p>If you are not already viewing the Download/Sync Now dialog box, follow
  these steps:</p>

<p>To download and synchronize your messages, begin from the Mail
 window:</p>

<ol>
  <li>Open the File menu, choose Offline, and then choose Download/Sync
    Now.</li>
  <li>Select the categories (mail messages or newsgroup messages) that you want
    to download.

    <p><strong>Important</strong>: You must select at least one category (Mail
      messages, Newsgroup messages) in order for the download to work. If the
      checkboxes are disabled, it means that you haven&apos;t yet selected
      items to download. Use the Select button to select items to download.</p>
  </li>
  <li>To send messages in your Unsent Messages folder before going offline,
    check <q>Send Unsent Messages</q>.</li>
  <li>To go offline immediately after &brandShortName; Mail &amp; Newsgroups
    finishes downloading, select <q>Work offline once download and/or sync is
    complete</q>.</li>
  <li>To set or change the items to download, click Select. See
    <a href="#selecting_items_for_offline_viewing">Selecting Items for Offline
    Viewing</a> for more information. You can skip this step if you&apos;ve
    already selected items for download.</li>
  <li>Click OK. &brandShortName; Mail &amp; Newsgroups begins downloading the
    selected items.</li>
</ol>

<p>If you chose to work offline once the download completes, then
  &brandShortName; Mail &amp; Newsgroups immediately switches to offline mode.
  Otherwise, when you are ready to go offline, click the Online/Offline
  indicator <img src="images/online.png" alt=""/> in the lower right corner of
  the Mail window to go offline.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h2 id="working_offline_and_reconnecting_later">Working Offline and
  Reconnecting Later</h2>

<p>To work offline and reconnect later, begin from the Mail window.</p>

<p>When you are ready to work offline:</p>

<ol>
  <li>Click the online/offline indicator <img src="images/online.png" alt=""/>
    in the lower-right corner of the Mail window. Mail &amp; Newsgroups prompts
    you to download messages, if you want, before going offline.</li>
  <li>Click Download to download messages before going offline. If you want to
    work offline without downloading messages, click Don&apos;t Download.</li>
</ol>

<p><strong>Note</strong>: Message headers that have been downloaded for reading
  offline display a darker gray envelope or newsgroup icon.</p>

<p><strong>Tip</strong>: To set &brandShortName; Mail &amp; Newsgroups&apos;
  download behavior when going offline, open the
  <span class="mac">&brandShortName;</span> <span class="noMac">Edit</span>
  menu, choose Preferences, and then click the Offline &amp; Disk Space
  category. You can choose to have &brandShortName; Mail &amp; Newsgroups
  prompt you to download messages when going offline, to automatically
  download messages, or to not download any messages.</p>

<p>To reconnect and synchronize your messages:</p>

<ol>
  <li>Click the online/offline indicator <img src="images/offline.png"
    alt=""/> in the lower-right corner of any &brandShortName; window.</li>
  <li>Open the File menu, choose Offline, and then choose Download/Sync
    Now.</li>
</ol>

<p>&brandShortName; Mail &amp; Newsgroups synchronizes your messages with the
  server by replicating any changes you made while working offline.</p>

<p><strong>Tip</strong>: To set &brandShortName; Mail &amp; Newsgroups&apos;
  behavior when going online, open the
  <span class="mac">&brandShortName;</span> <span class="noMac">Edit</span>
  menu, choose Preferences, and then choose the Offline &amp; Disk Space
  category. You can choose to have &brandShortName; Mail &amp; Newsgroups
  prompt you to send unsent messages, to automatically send unsent messages,
  or to not send unsent messages.</p>

<p>[<a href="#working_offline">Return to beginning of section</a>]</p>

<h1 id="mail_and_newsgroups_account_settings">Mail &amp; Newsgroups Account
  Settings</h1>

<p>This section describes the settings in the Mail &amp; Newsgroups Account
  Settings dialog box. Unlike the Preferences dialog box, which applies
  settings to all accounts, the Mail &amp; Newsgroups Account Settings dialog
  box lets you specify settings on a per-account basis.</p>

<p>If you are not currently viewing the Mail &amp; Newsgroups Account Settings
  dialog box, follow these steps:</p>

<ol>
  <li>Begin from the Mail window.</li>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account
    Settings.</li>
  <li>Select the name of the account whose settings you want to view or
    change.</li>
</ol>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#account_settings">Account Settings</a></li>
    <li><a href="#server_settings">Server Settings</a></li>
    <li><a href="#copies_and_folders">Copies &amp; Folders</a></li>
    <li><a href="#addressing">Composition &amp; Addressing</a></li>
    <li><a href="#offline_and_disk_space">Offline &amp; Disk Space</a></li>
    <li><a href="#junk_settings">Junk Settings</a></li>
    <li><a href="#return_receipts">Return Receipts</a></li>
    <li><a href="#security">Security</a></li>
    <li><a href="#local_folders">Local Folders</a></li>
    <li><a href="#outgoing_server">Outgoing Server (SMTP)</a></li>
  </ul>
</div>

<h2 id="account_settings">Mail &amp; Newsgroups Account Settings - Account
  Settings</h2>

<p>This section describes how to view or change your Account Settings, such as
  your user name, reply-to address, and signature file. If you are not already
  viewing the Account Settings, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the name of the account to display the Account Settings
    panel.</li>
</ol>

<ul>
  <li><strong>Account Name</strong>: The name for this account.</li>
  <li><strong>Identity</strong>: Stores your name, email address, reply-to
    address (only if different from your email address), and organization
    (optional).</li>
  <li><strong>Attach this signature</strong>: Lets you choose the signature
    file (in text or HTML format) you want to attach to your outgoing messages.
    Click Choose to locate the signature file (optional).</li>
  <li><strong>Attach my vCard to messages</strong>: Lets you choose if your
    vCard should be attached to your outgoing messages. Click Edit Card to edit
    the card information (optional).</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="server_settings">Mail &amp; Newsgroups Account Settings - Server
  Settings</h2>

<p>&brandShortName; Mail &amp; Newsgroups can work with two types of mail
  servers: IMAP and POP. If you are not sure which server type your Internet
  service provider supports, ask your service provider. If your Internet
  service provider supports both, the following descriptions may help you
  choose which one to use.</p>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#about_internet_message_access_protocol">About Internet
      Message Access Protocol (IMAP)</a></li>
    <li><a href="#about_post_office_protocol">About Internet Post Office
      Protocol (POP)</a></li>
    <li><a href="#imap_server_settings">IMAP Server Settings</a></li>
    <li><a href="#advanced_imap_server_settings">Advanced IMAP Server
      Settings</a></li>
    <li><a href="#pop_server_settings">POP Server Settings</a></li>
    <li><a href="#news_server_settings">News Server Settings</a></li>
  </ul>
</div>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="about_internet_message_access_protocol">About Internet Message Access
  Protocol (IMAP)</h3>

<p><strong>Advantages</strong>: Your messages and any changes to them stay on
  your server, saving local disk space. Also, you always have access to an
  updated mailbox, and you can get your mail from multiple locations.
  Performance on a modem is faster, since you initially download message
  headers only.</p>

<p><strong>Disadvantages</strong>: Not all ISPs support IMAP.</p>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="about_post_office_protocol">About Post Office Protocol (POP)</h3>

<p><strong>Advantages</strong>: Your messages are downloaded to your local
  computer all at once, but you can also specify whether to keep copies of the
  messages on the server and delete messages on the server when they are
  deleted locally. Most ISPs currently support POP.</p>

<p><strong>Disadvantages</strong>: If you use more than one computer, messages
  might reside on one or the other, but not both. POP doesn&apos;t work as well
  as IMAP over a slow link connection. Also, you can&apos;t access all mail
  folders from multiple locations.</p>

<p>Note that more recent POP servers have features that allow retrieving only
  the headers instead of the full message, like IMAP allows. Using these
  features allows performance with POP to be nearly as fast as with IMAP.</p>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="imap_server_settings">IMAP Server Settings</h3>

<p>If you are not already viewing the IMAP server settings, begin from the Mail
  window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account name and click the Server Settings category. (If you
    chose an IMAP server when you set up this account, you see your IMAP server
    settings.)</li>
</ol>

<ul>
  <li><strong>Server Type</strong>: The server type (IMAP Mail Server) that you
    specified when you created this account. To change the server type
    associated with this account, you must delete the account and then
    re-create it.</li>
  <li><strong>Server Name</strong>: The server name that you specified when you
    created this account. If you are having problems getting mail from this
    account, verify with your service provider or system administrator that the
    server name you entered is correct.</li>
  <li><strong>User Name</strong>: The user name that you specified when you
    created this account.</li>
  <li><strong>Port</strong>: Unless otherwise instructed to do so by your
    service provider or system administrator, leave this setting
    unchanged.</li>
  <li><strong>Use secure connection (SSL)</strong>: Choose this setting if your
    mail server is configured to send and receive encrypted messages. If you
    are unsure, contact your service provider or system administrator.</li>
  <li><strong>Use secure authentication</strong>: Choose this setting if you
    want to use secure mechanisms for logging in like CRAM-MD5. If you are
    unsure if your service supports this, contact your service provider or
    system administrator.</li>
  <li><strong>Check for new mail at startup</strong>: Choose this setting if
    you want Mail &amp; Newsgroups to automatically check this account for new
    messages whenever you start Mail &amp; Newsgroups.</li>
  <li><strong>Check for new messages every [__] minutes</strong>: Choose this
    setting to automatically check for new messages, and then specify the
    number of minutes between mail checks. If you do not select this setting,
    you can check for new messages at any time by clicking Get Msgs in the Mail
    window.</li>
  <li id="when_i_delete_a_message"><strong>When I delete a message</strong>:
    Choose the behavior you want for deleted messages. <q>Move it to the Trash
    folder</q> is recommended unless you are instructed to use a different
    setting by your system administrator or service provider. Messages marked
    as deleted are removed only when you compact folders.</li>
  <li><strong>Clean up (Expunge) Inbox on Exit</strong>: Removes deleted
    messages from the Inbox when you exit Mail &amp; Newsgroups. Choose this
    if you chose to mark messages as deleted.</li>
  <li><strong>Empty Trash on Exit</strong>: Empties the Trash folder whenever
    you quit Mail &amp; Newsgroups.</li>
  <li><strong>Advanced</strong>: Lets you choose a different outgoing server
    (SMTP) for outgoing messages from this account. You can also reach the
    <a href="#advanced_imap_server_settings">Advanced IMAP Server Settings</a>
    through this button.</li>
  <li><strong>Local directory</strong>: The location on your hard disk where
    mail for this account is stored.</li>
</ul>

<h3 id="advanced_imap_server_settings">Advanced IMAP Server Settings</h3>

<p>In most cases, advanced IMAP server settings are automatically supplied by
  the server. If you are unsure about the settings for this dialog box,
  contact your ISP or system administrator.</p>

<p>If you are not already viewing the advanced IMAP server settings, begin
  from the Mail window.</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account name and click the Server Settings category.</li>
  <li>If the mail server type is an IMAP server, you can click Advanced to set
    additional IMAP options, such as:
    <ul>
      <li>the IMAP server directory path</li>
      <li>showing only <q>subscribed folders</q></li>
      <li>support for subfolders</li>
      <li>any personal and public (shared folder) namespaces for this
        directory</li>
    </ul>
  </li>
</ol>

<p>For more information, see
  <a href="#adding_and_removing_ldap_directories">Adding and Removing LDAP
  Directories</a>.</p>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="pop_server_settings">POP Server Settings</h3>

<p>If you are not already viewing the POP server settings, begin from the Mail
  window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account name and click the Server Settings category name. (If
    you chose a POP server when you set up this account, you see your POP
    server settings.)</li>
</ol>

<ul>
  <li><strong>Server Type</strong>: The server type (POP Mail Server) that you
    specified when you created this account. To change the server type
    associated with this account, you must delete the account and then
    re-create it.</li>
  <li><strong>Server Name</strong>: The server name that you specified when you
    created this account. If you are having problems getting mail from this
    account, verify with your service provider or system administrator that the
    server name you entered is correct.</li>
  <li><strong>User Name</strong>: The user name that you specified when you
    created this account.</li>
  <li><strong>Port</strong>: Unless otherwise instructed to do so by your
    service provider or system administrator, leave this setting
    unchanged.</li>
  <li><strong>Use secure connection (SSL)</strong>: Choose this setting if your
    mail server is configured to send and receive encrypted messages. If you
    are unsure, contact your service provider or system administrator.</li>
  <li><strong>Use secure authentication</strong>: Choose this setting if you
    want to use secure mechanisms for logging in like CRAM-MD5 and APOP. If you
    are unsure if your server supports this, contact your service provider or
    system administrator.</li>
  <li><strong>Check for new mail at startup</strong>: Choose this setting if
    you want Mail &amp; Newsgroups to automatically check this account for new
    messages whenever you start Mail &amp; Newsgroups. For POP accounts, Mail
    &amp; Newsgroups doesn&apos;t download the new messages until you click Get
    Msgs on the Mail toolbar.</li>
  <li><strong>Check for new messages every [__] minutes</strong>: Choose this
    setting to automatically check for new messages, and then specify the
    number of minutes between mail checks. If you do not select this setting,
    you can check for new messages at any time by clicking Get Msgs in the Mail
    window.</li>
  <li><strong>Automatically download any new messages</strong>: Choose this
    setting if you want Mail &amp; Newsgroups to retrieve messages immediately
    each time it checks the server.</li>
  <li><strong>Fetch headers only</strong>: Choose this setting if you want to
    only download the headers instead of entire messages when downloading new
    mail. This option requires your POP server to support the <q>TOP</q>
    command. Most recent POP servers support it, but if you are unsure about
    your server, contact your service provider or system administrator.</li>
  <li><strong>Leave messages on server</strong>: Choose this setting to store a
    copy of messages on the mail server in addition to downloading them to your
    computer.
    <ul>
      <li><strong>For at most [__] days</strong>: Choose this setting to remove
        messages from the server automatically after the number of days you
        enter here.</li>
      <li><strong>Until I delete or move them from Inbox</strong>: Choose this
        setting to remove messages from the server once you delete them or move
        them from your Inbox into another folder.</li>
    </ul>
  </li>
  <li><strong>Empty Trash on Exit</strong>: Choose this setting to empty the
    Trash folder whenever you quit Mail &amp; Newsgroups.</li>
  <li><strong>Advanced</strong>: Lets you choose a different outgoing server
    (SMTP) for outgoing messages from this account.</li>
  <li><strong>Local directory</strong>: The location on your hard disk where
    mail for this account is stored.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="news_server_settings">News Server Settings</h3>

<p>This section describes how to change news server settings. If you are not
  already viewing news server settings, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account name and click the Server Settings category. (If you
    chose a newsgroup server when you set up this account, you see your
    newsgroup server settings.)</li>
</ol>

<ul>
  <li><strong>Server Type</strong>: The server type (NNTP) that you specified
    when you created this account.</li>
  <li><strong>Server Name</strong>: The server name that you specified when you
    created this account. If you are having problems receiving messages from
    this account, verify with your service provider or system administrator
    that the server name you entered is correct.</li>
  <li><strong>Port</strong>: Unless otherwise instructed to do so by your
    service provider or system administrator, leave this setting
    unchanged.</li>
  <li><strong>Use secure connection (SSL)</strong>: Choose this setting if your
    news server is configured to send and receive encrypted messages. If you
    are unsure, contact your service provider or system administrator.</li>
  <li><strong>Check for new messages every [__] minutes</strong>: Choose this
    setting to automatically check for new messages, and then specify the
    number of minutes between mail checks. If you do not select this setting,
    you can check for new messages at any time by clicking Get Msgs in the Mail
    window.</li>
  <li><strong>Ask me before downloading more than [__] messages</strong>:
    Choose this setting to conserve disk space and download time, by setting a
    limit for the number of messages you can retrieve at one time.</li>
  <li><strong>Always request authentication when connecting to this
    server</strong>: Some servers allow you to talk to them without logging in,
    but will silently hide all the <em>private</em> groups/postings unless you
    are logged in. Choose this setting to force &brandShortName; to
    authenticate each time it connects to this server even when the server
    doesn&apos;t ask (also called <q>Pushed Authentication</q>).</li>
  <li><strong>Advanced</strong>: Lets you choose a different outgoing server
    (SMTP) for outgoing messages from this account.</li>
  <li><strong>newsrc file</strong>: The path to the newsrc file is mostly
    displayed for your information. The newsrc file stores information about
    the newsgroups to which you are subscribed and the messages you have read
    in each newsgroup.</li>
  <li><strong>Local directory</strong>: The location on your hard disk where
    mail for this account is stored.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="copies_and_folders">Mail &amp; Newsgroups Account Settings - Copies
  &amp; Folders</h2>

<p>This section describes the settings for sending automatic copies, and for
  storing copies of outgoing messages, message drafts, and message
  templates.</p>

<p>By default, &brandShortName; Mail &amp; Newsgroups stores copies of your
  outgoing messages in the Sent folder for the current account.
  &brandShortName; Mail &amp; Newsgroups also stores message drafts in the
  Drafts folder and message templates in the Templates folder for the
  current account.</p>

<p>If you are not already viewing the settings for Copies &amp; Folders, begin
  from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account, and click Copies &amp; Folders. You see the Copies
    &amp; Folders panel.</li>
</ol>

<ul>
  <li><strong>Place a copy in</strong>: Select where to store copies of your
    outgoing mail and newsgroup messages. If you don&apos;t want to use the
    default Sent folder for the current account, click Other and then choose
    an account and then choose the folder for storing copies.</li>
  <li><strong>Bcc these email addresses</strong>: Select whether you want to
    always send a blind carbon copy (bcc) to another addressee, and enter the
    address. If you want to always send a blind carbon copy to yourself, just
    add your address to this list. Separate addresses with comma (,).</li>
  <li><strong>Keep message drafts in</strong>: Select where to store message
    drafts. If you don&apos;t want to use the default Drafts folder for the
    current account, click Other and then choose another account and folder
    for storing drafts.</li>
  <li><strong>Keep message templates in</strong>: Select where to store
    message templates. If you don&apos;t want to use the default Templates
    folder for the current account, click Other and then choose another account
    and folder for storing templates.</li>
  <li><strong>Show confirmation dialog when messages are saved</strong>: Choose
    this option if you want Mail &amp; Newsgroups to display a confirmation
    dialog box when you save a draft message or a template. If checked, a
    dialog box will appear when you save a draft or template to remind you
    where &brandShortName; Mail &amp; Newsgroups is saving the draft or
    template.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="addressing">Mail &amp; Newsgroups Account Settings - Composition &amp;
  Addressing</h2>

<p>You use Composition settings to choose how to format text and to handle
  replies.</p>

<ul>
  <li><strong>Compose messages in HTML format</strong>: Use the HTML editor as
    the default editor for writing mail and newsgroup messages. Leave this item
    unchecked to use the plain-text editor by default. HTML messages can
    include formatted text, links, images, and tables, just like a web page.
    However, some recipients may not be able to receive HTML messages.

    <p><strong>Tip</strong>: If you only want to use an editor occasionally,
      you can hold down the Shift key while clicking the Compose or the Reply
      button to switch to the non-default on an as-needed basis.</p>
  </li>
  <li><strong>Automatically quote the original message when replying</strong>: 
    Select this to include the original message text in your reply. Use the 
    drop-down list to select if the cursor should be positioned below or above
    the quoted text. You can also choose the quoting to be automatically
    selected.
    <ul>
      <li><strong>and place my signature</strong>: This drop-down list lets you
        choose where you want your signature to be placed. It&apos;s only
        selectable if you decided to <a href="#account_settings">attach a
        signature</a> and to place the cursor above the quoted text.</li>
    </ul>
  </li>
</ul>

<p>You use Addressing settings to override the global LDAP server settings
  specified for all <a href="#addressing_preferences">address books</a> in the
  Preferences dialog box. LDAP server settings affect the behavior of
  <a href="#address_autocompletion">address autocompletion</a>, and you can
  change these settings for each account if necessary.</p>

<p>Address autocompletion uses your address books to find matching entries when
  you type email addresses in the addressing area of the Compose window.</p>

<p>If you are not already viewing the Addressing settings, begin from the Mail
  window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the account and click the Composition &amp; Addressing
    category.</li>
</ol>

<ul>
  <li><strong>Automatically append my domain to addresses</strong>: Select
    this if you want Mail &amp; Newsgroups to automatically complete
    addresses you type with the domain from your account&apos;s address.</li>
  <li><strong>Use my global LDAP server preferences for this account</strong>:
    This is the default. Select this if you don&apos;t want to override the
    global LDAP server preferences for this account.</li>
  <li><strong>Use a different LDAP server</strong>: Select this option and then
    choose another LDAP server from the list if you want to use a different
    LDAP directory server for address autocompletion with this account. If
    necessary, click Edit Directories to edit individual directory server
    settings, add a directory server, or delete a directory server. For more
    information, see <a href="#adding_and_removing_ldap_directories">Adding and
    Removing LDAP Directories</a>.</li>
</ul>

<p>The directory you select will also be searched for matching certificates
  when you attempt to send an encrypted message to one or more recipients for
  whom you don&apos;t have certificates on file.</p>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="offline_and_disk_space">Mail &amp; Newsgroups Account Settings -
  Offline &amp; Disk Space</h2>

<p>Offline &amp; Disk Space settings let you conserve disk space or set up an
  account so that you can use it while offline (disconnected from the
  Internet). The settings available depend on the mail server type (IMAP, POP,
  or News) associated with the account.</p>

<div class="contentsBox">
  <ul>
    <li><a href="#offline_and_disk_space_settings_imap">Offline and Disk Space
      Settings (IMAP)</a></li>
    <li><a href="#disk_space_settings">Disk Space Settings (POP)</a></li>
    <li><a href="#offline_and_disk_space_settings_nntp">Offline and Disk Space
      Settings (News)</a></li>
  </ul>
</div>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="offline_and_disk_space_settings_imap">Offline and Disk Space Settings
  (IMAP)</h3>

<p>If you are not already viewing the offline and disk space preferences for an
  IMAP account, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Choose the Offline &amp; Disk Space category for an IMAP account.</li>
</ol>

<ul>
  <li><strong>Make the messages in my Inbox available when I am working
    offline</strong>: Select this option so that messages in your Inbox will be
    available when you are working offline.</li>
  <li><strong>When I create new folders, select them for offline use</strong>:
    Select this option so that new folders you create are automatically
    selected for offline use. If left unchecked, new folders won&apos;t be
    automatically selected for offline use. You can manually select folders for
    offline by choosing the Download/Sync Now command (available from the File
    menu, under Offline). Click the Select button in the Download/Sync Messages
    dialog box to select the folders.</li>
  <li><strong>Select folders for offline use</strong>: Click to select the
    folders that you want to make available for offline use. See
    <a href="#selecting_items_for_offline_viewing">Selecting Items for Offline
    Viewing</a> for more information.</li>
  <li><strong>Messages larger than [__] KB</strong>: Select this option to
    conserve disk space by preventing large messages from being downloaded.
    Enter the maximum size for downloaded messages.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="disk_space_settings">Disk Space Settings (POP)</h3>

<p>Messages from POP accounts are fully downloaded to your local machine unless
  you have enabled the <q>Fetch headers only</q> setting. This section
  describes how you can save disk space for a POP account. If your account has
  the <q>Fetch headers only</q> setting enabled, then these Disk Space
  preferences are ignored. If you are not already viewing the Disk Space
  preferences for a POP account, follow these steps:</p>

<p>Begin from the Mail window.</p>

<ol>
  <li>Open the Edit menu, choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click the Disk Space category for a POP account.</li>
</ol>

<ul>
  <li><strong>Messages larger than [__] KB</strong>: Select this option to
    conserve disk space by preventing large messages from being downloaded.
    Enter the maximum size for downloaded messages.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h3 id="offline_and_disk_space_settings_nntp">Offline and Disk Space Settings
  (News)</h3>

<p>If you are not already viewing the offline and disk space settings for a
  News account, begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu, and choose Mail &amp; Newsgroups Account Settings.
    You see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Choose the Offline &amp; Disk Space category for a News account.</li>
</ol>

<ul>
  <li><strong>Select newsgroups for offline use</strong>: Click to select the
    newsgroups that you want to make available for offline use. See
    <a href="#selecting_items_for_offline_viewing">Selecting Items for Offline
    Viewing</a> for more information.</li>
</ul>

<p>The following settings help to save disk space and download time. Specify
  which messages you don&apos;t want to download locally:</p>

<ul>
  <li><strong>Read messages</strong>: Select this option to only download
    message bodies from messages you haven&apos;t already read.</li>
  <li><strong>Messages larger than [__] KB</strong>: Select this option to
    conserve disk space by preventing large messages from being downloaded.
    Enter the maximum size for downloaded messages.</li>
  <li><strong>Messages more than [__] days old</strong>: Select this option to
    only download messages that are not older than the number of days you enter
    here.</li>
</ul>

<p>&brandShortName; can automatically delete newsgroup messages for you. You
  can configure this process with the options listed below
  <strong>Keep</strong>:</p>

<ul>
  <li><strong>All messages</strong>: Keep all messages. Never delete messages 
    automatically.</li>
  <li><strong>The newest [__] messages</strong>: Enter the number of messages
    to keep. With this setting only messages older than these messages are
    deleted.</li>
  <li><strong>Messages which have arrived within the last [__] days</strong>:
    Keep all messages that arrived within the given number of days.</li>
</ul>

<p>With the last two settings you can further constrain the three options to
  delete messages automatically. This is especially useful in combination with
  the option to keep all messages.</p> 

<ul>
  <li><strong>Only unread messages</strong>: Select this option to deny
    &brandShortName; the deletion of unread messages.</li>
  <li><strong>Only message bodies less than [__] days old</strong>: Select this
    option to deny &brandShortName; the deletion of messages that are newer
    than the number of days you specify here.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="junk_settings">Mail &amp; Newsgroups Account Settings - Junk
  Settings</h2>
  
<p>This section describes how to use the account junk settings. If
  you are not currently viewing the Junk Settings, follow these steps:</p>

<ol>
  <li>Open the Edit menu, and choose Mail &amp; Newsgroups Account Settings.
    You see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click the Junk Settings category for your mail account.</li>
</ol>

<p>You use the Junk Settings panel to define your account-specific settings
  for the adaptive mail filter. Global junk settings are changed under
  <a href="#global_junk_settings">Mail &amp; Newsgroups Preferences -
  Junk Mail</a>.</p>
  
<ul>  
  <li><strong>Enable adaptive junk mail controls for this account</strong>:
    Toggle this option to activate or deactivate junk mail classification.</li>
  <li><strong>Do not mark mail as junk if the sender is in [the address
    book chosen from all your address books available in the drop down
    box]</strong>:
    Choose this option to prevent messages from people you know inadvertently
    classified as junk mail.</li>
  <li><strong>Trust junk mail headers set by [an external junk filter
    like Spam Assassin or Spam Pal]</strong>: Choose this option if you want to
    trust the junk classification of external filter programs.</li>
  <li><strong>Move new junk messages to</strong>:
    Check this option to automatically move messages flagged as Junk to a
    special folder.
    <ul>
      <li><strong><q>Junk</q> folder on [account]</strong>: Select this to use
        the default Junk folder.</li>
      <li><strong>Other: [account]</strong>: Select this to choose your own
        custom-named junk folder.</li>
      <li><strong>Automatically delete junk messages older than [__] days from
        this folder</strong>: If you are confident old messages classified as
        junk are indeed junk mail, check this option to automatically delete
        old junk messages after a grace period.</li>
    </ul>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="return_receipts">Mail &amp; Newsgroups Account Settings - Return
  Receipts</h2>

<p>This section describes how to use the Return Receipts account settings. If
  you are not currently viewing the Return Receipts settings, follow these
  steps:</p>

<ol>
  <li>Open the Edit menu, and choose Mail &amp; Newsgroups Account Settings.
    You see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Click the Return Receipts category for your mail account.</li>
</ol>

<p>You use the Return Receipts settings to define return receipt settings for
  outgoing messages from this mail account. You also use the Return Receipt
  settings to specify how to manage requests you receive for return receipts.
  These settings override global return receipt preferences you specified using
  <a href="#return_receipts_preferences">Mail &amp; Newsgroups Preferences -
  Return Receipts</a>.</p>

<ul>
  <li><strong>Use my global return receipt preferences for this
    account</strong>: By default, this account uses the return receipt
    preferences specified by <a href="#return_receipts_preferences">Mail &amp;
    Newsgroups Preferences - Return Receipts</a>.</li>
  <li><strong>Customize return receipts for this account</strong>: Lets you
    change the return receipt preferences for this account.
    <ul>
      <li><strong>When sending messages, always request a return
        receipt</strong>: Enables automatic return receipt requests for all
        outgoing messages from this mail account.</li>
      <li><strong>Leave it in my Inbox</strong>: Return receipt
        confirmation messages are delivered to the Inbox for this account.

        <p><strong>Tip</strong>: Choose this option if you want to use a
          filter that automatically moves return receipt confirmation
          messages to a folder you specify. For information on creating and
          using filters, see <a href="#creating_message_filters">Creating
          Message Filters</a>.</p>
      </li>
      <li><strong>Move it to my Sent Mail folder</strong>: Incoming return
        receipt confirmation messages are moved to the Sent mail folder for
        this account.</li>
      <li><strong>Never send a return receipt</strong>: Choose this option if
        you do not want to send a return receipt in response to requests for
        return receipts from others.</li>
      <li><strong>Allow return receipts for some messages</strong>: Choose how
        you want to respond to requests you receive for return receipts.</li>
    </ul>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="security">Mail &amp; Newsgroups Account Settings - Security</h2>

<p>This section describes how to configure the Mail &amp; Newsgroup Account
  Settings that control mail message security. Before you do so, however, you
  must obtain one or more mail certificates. For details, see
  <a href="mail_sec_help.xhtml">Signing &amp; Encrypting Messages</a>.</p>

<p>If you are not already viewing the Security settings for your mail account,
  begin from the Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account
    Settings.</li>
  <li>Click Security under the name of the mail account whose security settings
    you want to configure.</li>
</ol>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#about_certificates">About Certificates</a></li>
    <li><a href="#digital_signing">Digital Signing</a></li>
    <li><a href="#encryption">Encryption</a></li>
  </ul>
</div>

<h3 id="about_certificates">About Certificates</h3>

<p>The main purpose of the Security panel in Mail &amp; Newsgroup Account
  Settings is to select two certificates:</p>

<ul>
  <li>The email certificate you want to use for signing mail messages you send
    to other people.</li>
  <li>The email certificate you want other people to use when they encrypt
    messages they send to you.</li>
</ul>

<p>Depending on the policies of the
  <a href="glossary.xhtml#certificate_authority">certificate authority (CA)</a>
  that issues your certificate(s), you can use one certificate for both
  purposes or two different certificates. Even if you use just one, you must
  specify it twice, once for digital signing and once for encryption.</p>

<p>The certificates you select here are included with every signed message you
  send. These certificates allow your recipients to verify your digital
  signature and to encrypt messages that they send to you.</p>

<h3 id="digital_signing">Digital Signing</h3>

<p>You use the Digital Signing area in the <a href="#security">Security
  panel</a> to specify how you want to sign your email messages:</p>

<ul>
  <li><strong>Use this certificate to digitally sign messages you
    send</strong>: If this field is empty or if it displays the wrong
    certificate, click Select to choose from the certificates you have on
    file.</li>
  <li><strong>Digitally sign messages</strong>: Select this checkbox if you
    want to digitally sign all the messages you send. (A personal certificate
    must be specified below before you can select this checkbox.)</li>
</ul>

<p>Regardless of whether the <q>Digitally sign messages</q> checkbox is
  selected here, you can change your mind before you send an individual
  message.</p>

<p>To change the digital signature setting for a message you are writing in
  the Compose window, click the arrow below the Security icon near the top of
  the window and select or deselect <q>Digital Sign This Message</q>. For
  details, see
  <a href="mail_sec_help.xhtml#signing_and_encrypting_a_new_message">Signing
  &amp; Encrypting a New Message.</a></p>

<h3 id="encryption">Encryption</h3>

<p>You use the Encryption area in the <a href="#security">Security panel</a> to
  specify how you routinely want to use encryption when sending your
  messages:</p>

<ul>
  <li><strong>Use this certificate to encrypt &amp; decrypt messages sent to
    you</strong>: If this field is empty or if it displays the wrong
    certificate, click Select to choose from the certificates you have on
    file.</li>
  <li><strong>Never</strong>: Select this option if you never want to use
    encryption, or only occasionally.</li>
  <li><strong>Required</strong>: Select this option if you always want to use
    encryption. If you don&apos;t have all the necessary certificates, the
    message won&apos;t be sent unless you explicitly turn off encryption for
    that message only.</li>
</ul>

<p>Regardless of which encryption option you select, you can change your mind
  before you send an individual message.</p>

<p>To change the encryption setting for a message you are writing in the
  Compose window, click the arrow below the Security icon near the top of the
  window and choose the encryption setting you want. For details, see
  <a href="mail_sec_help.xhtml#signing_and_encrypting_a_new_message">Signing
  &amp; Encrypting a New Message.</a></p>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h2 id="local_folders">Mail &amp; Newsgroups Account Settings - Local
  Folders</h2>

<p>Local Folders is the account where &brandShortName; Mail &amp; Newsgroups
  saves any messages that you send while working offline. Messages you send
  while working offline are saved in the Unsent Messages folder under Local
  Folders. Any folders you create under the Local Folders account reside on
  your hard disk, so Local Folders is a good place to save messages that you
  want to keep.</p>

<p>If you are not already viewing the Local Folders settings, begin from the
  Mail window:</p>

<ol>
  <li>Open the Edit menu and choose Mail &amp; Newsgroups Account Settings. You
    see the Mail &amp; Newsgroups Account Settings dialog box.</li>
  <li>Select the Local Folders category.</li>
</ol>

<ul>
  <li><strong>Account Name</strong>: The name associated with the Local Folders
    account.</li>
  <li><strong>Local directory</strong>: The location on your hard disk where
    mail for this account is stored.</li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning
  of section</a>]</p>

<h2 id="outgoing_server">Mail &amp; Newsgroups Account Settings - Outgoing
  Server (SMTP)</h2>

<p>The outgoing server will transport your outgoing mail to the intended
  recipients.</p>

<p>If you are not already viewing the Outgoing Server (SMTP) settings, begin
  from the Mail window:</p>

<ol>
  <li>Click on any Mail window.</li>
  <li>From the Edit menu, choose Mail &amp; Newsgroup Account Settings.</li>
  <li>Select Outgoing Server (SMTP) and either edit an existing server or
      add a new one. If you are not sure which option to choose, check with
      your ISP or system administrator)<br/>
      You can choose from these servers via the Outgoing Server dropdown in
      the <a href="#account_settings">Identity Settings</a>.</li>
</ol>

<ul>
  <li><strong>Description</strong>: A short freetext description of that server
    configuration. This will show up as first part in the server list.</li>
  <li><strong>Server name</strong>: The SMTP server that will deliver your
    outgoing mail. To use a different SMTP server, change this field.</li>
  <li><strong>Port</strong>: The port on which the SMTP server will be
    connected. By default it holds the standard port for the specified
    encryption. Change it if the mail server is listening for connections
    on a non-standard port.</li>
  <li><strong>Use name and password</strong>: If your SMTP server requires
    authentication to send mail, select this option and enter your user name.
    The first time you send mail, you will be prompted for your password. At
    that time you can instruct &brandShortName; to save your password for
    future sessions.</li>
  <li><strong>Use secure authentication</strong>: Choose this setting if you
    want to use secure mechanisms for logging in like CRAM-MD5. If you are
    unsure if your service supports this, contact your service provider or
    system administrator.</li>
  <li><strong>Use secure connection</strong>: There are two methods for
    establishing a secure connection to your outgoing server. Pick the one your
    server supports (if you make a choice for which your server is not configured,
    you will get an error message when sending mail).
    <ul>
      <li><strong>STARTTLS, if available</strong>: &brandShortName; will try to
        negotiate encryption using the STARTTLS method. If the server doesn&apos;t
        support it, an unencrypted connection is used.</li>
      <li><strong>STARTTLS</strong>: Require an encrypted connection, use the STARTTLS
        method. This mechanism will mostly run on the standard SMTP port 25.</li>
      <li><strong>SSL/TLS</strong>: Require an encrypted connection, use the
        SMTP-over-SSL (also known as SMTPS) method. The default port for this is 465.
     </li>
    </ul>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroups_account_settings">Return to beginning of
  section</a>]</p>

<h1 id="mail_and_newsgroup_preferences">Mail &amp; Newsgroup Preferences</h1>

<p>The sections listed below describe the Mail &amp; Newsgroups preferences
  that apply to all your mail and newsgroup accounts. To see these
  preferences:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Double-click Mail &amp; Newsgroups to expand the list.</li>
</ol>

<div class="contentsBox">In this section:
  <ul>
    <li><a href="#mail_and_newsgroups">Mail &amp; Newsgroups</a></li>
    <li><a href="#message_display">Message Display</a></li>
    <li><a href="#notifications">Notifications</a></li>
    <li><a href="#composition">Composition</a></li>
    <li><a href="#send_format">Send Format</a></li>
    <li><a href="#addressing_preferences">Addressing</a></li>
    <li><a href="#global_junk_settings">Junk Mail</a></li>
    <li><a href="#tags">Tags</a></li>
    <li><a href="#return_receipts_preferences">Return Receipts</a></li>
    <li><a href="#character_encoding">Character Encoding</a></li>
    <li><a href="#offline_and_disk_space_preferences">Offline &amp; Disk Space
      Preferences</a></li>
  </ul>
</div>

<h2 id="mail_and_newsgroups">Mail &amp; Newsgroups Preferences - Mail &amp;
  Newsgroups</h2>

<p>This section describes the main Mail &amp; Newsgroups preferences. If you
  are not already viewing the Mail &amp; Newsgroups main preferences, follow
  these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Click the Mail &amp; Newsgroups category.</li>
</ol>

<ul>
  <li><strong>Confirm when moving folders to the Trash</strong>: Choose to
    allow Mail &amp; Newsgroups to prompt you before deleting folders.</li>
  <li class="win"><strong>Use &brandShortName; Mail as the default mail
    application</strong>: Select &brandShortName; Mail &amp; Newsgroups as the
    default mail application for Windows and from within other applications
    such as Microsoft Word.

    <p><strong>Note</strong>: Setting &brandShortName; Mail &amp; Newsgroups as
      the default mail application may disable another mail application. To
      restore the other mail application as the default, deselect this
      option.</p>
  </li>
  <li><strong>Remember the last selected message</strong>: Choose this option
    if you want &brandShortName; to select the message you had selected last
    before leaving a folder when you reenter a folder.</li>
  <li><strong>Preserve threading when sorting messages</strong>: Select this
    option if you want &brandShortName; to preserve the threaded message
    grouping <a href="#sorting_and_threading_messages">when sorting
    messages</a>. If it is not selected, &brandShortName; automatically
    displays the messages unthreaded when you sort them by clicking on the
    column headers.</li>
  <li><strong>When Mail launches, show the Start Page in the message
    area</strong>: Select this to enable the Start Page. The Start Page
    appears in the message area when you first open &brandShortName; Mail &amp;
    Newsgroups. This page is the default page, but you can enter a different
    web page or URL of your choice. To disable the Start Page, deselect this
    option. Click Restore Default to return to the original page provided by
    &brandShortName;.</li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="message_display">Mail &amp; Newsgroups Preferences - Message
  Display</h2>

<p>Message Display preferences allow you to choose how messages are
  displayed (for example, font style and color) in all accounts. If you are not
  already viewing the Message Display settings, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, click Message Display. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li><strong>When opening messages, display them in</strong>: Here you can
    choose if you want to reuse a message window for the next mail or if you
    want to open a new one for each.</li>
  <li><strong>Block images and other content from remote sources</strong>:
    Select this checkbox if you do not want to display remote images and other
    content in received messages, except from senders in your address books
    whom you have allowed. (This checkbox is selected by default.)</li>
  <li><strong>Wait [__] seconds before marking a message as read</strong>:
    Choose this option if you do not want a message to be marked as read when
    you are only taking a brief look at it. Enter the number of seconds you
    want a message to be displayed before it gets marked as read automatically.

    <p><strong>Tip</strong>: If you do not want Mail &amp; Newsgroups to mark
      your messages as read automatically at all, you can select this option
      and enter a very large number of seconds.</p>
  </li>
  <li><strong>Plain Text Messages</strong>: Select the font you prefer for
    viewing plain-text messages: fixed width or variable width. Choosing a font
    style, size, and color for quoted plain-text messages can help you more
    easily distinguish quoted text (usually a message that&apos;s been
    forwarded to you or by you).
    <ul>
      <li><strong>Wrap text to fit window width</strong>: Select this so that
        incoming messages are word-wrapped to fit the width of your Mail
        window.</li>
      <li><strong>Display emoticons as graphics</strong>: Select this so that
        when you receive messages that contain emoticons (also called smiley
        faces) Mail &amp; Newsgroups can convert them to graphics, for example:
        <table border="1">
          <tr align="center">
            <td><strong>This</strong>:</td>
            <td><strong>Converts to</strong>:</td>
          </tr>
          <tr align="center">
            <td>:-)</td>
            <td><img src="images/smile.png" alt=""/></td>
          </tr>
          <tr align="center">
            <td>:)</td>
            <td><img src="images/smile.png" alt=""/></td>
          </tr>
          <tr align="center">
            <td>:-(</td>
            <td><img src="images/frown.png" alt=""/></td>
          </tr>
          <tr align="center">
            <td>:(</td>
            <td><img src="images/frown.png" alt=""/></td>
          </tr>
          <tr align="center">
            <td>;-)</td>
            <td><img src="images/wink.png" alt=""/></td>
          </tr>
          <tr align="center">
            <td>;-p</td>
            <td><img src="images/sick.png" alt=""/></td>
          </tr>
        </table>
      </li>
    </ul>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="notifications">Mail &amp; Newsgroups Preferences - Notifications</h2>

<p>Notification preferences allow you to select different methods for informing
  you on arrival of a new message. So you don&apos;t have to always look in the
  folders.</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click Notifications. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li class="win"><strong>Show an alert</strong>: Select this if you want 
    &brandShortName; Mail &amp; Newsgroups to display a sliding alert above 
    your system tray in the lower right corner of your screen when new 
    messages arrive. The sliding alert only appears once when new messages
    arrive, and won&apos;t appear again until you bring the Mail &amp;
    Newsgroups window to the front.
    <table>
      <tr>
        <td colspan="2"><img src="images/mail_newmail_alert.png" alt=""/></td>
      </tr>
      <tr>
        <td style="width: 20px;"></td>
        <td><strong>Sliding new mail alert</strong></td>
      </tr>
    </table>

    <p>When the alert appears, clicking the link displayed in the alert will
      take you to the first folder that has new mail.
    </p>

    <p>The new message alert will continue to work even after you close the
      Mail window (as long as another &brandShortName; application is running).
    </p>
  </li>

  <li class="win"><strong>Show a tray icon</strong>: Select this if you want
    &brandShortName; Mail &amp; Newsgroups to display an icon in your system
    tray (which is usually found in the lower right corner of your screen) when
    new messages arrive. This icon will stay in the system tray until you have
    visited one of your folders with new mail or checked for new messages
    manually.
    <p style="text-indent: 20px"><img src="images/mail_newmail_trayicon.png"
      alt=""/>&nbsp;&nbsp;<strong>New mail tray icon</strong></p>
    <p>When the icon appears, double-clicking it will open the &brandShortName;
      Mail &amp; Newsgroups main window.</p>
  </li>

  <li class="mac"><strong>Animate the Dock icon</strong>: Select this if you
    want Mail &amp; Newsgroups to bounce the &brandShortName; Dock icon when
    new messages arrive.</li>
  <li><strong>Play a sound</strong>: Select this if you want &brandShortName; 
    Mail &amp; Newsgroups to play a sound when new messages arrive. You can
    choose between the default system sound and a custom sound in WAV format.
    If you choose the latter, use the Browse button to select the sound file in
    the file locator. Click on the Preview button to listen to the chosen sound
    file.

    <p>Once &brandShortName; Mail has been started, the new messages sound will
      continue to work even after you close the Mail window (as long as another
      &brandShortName; application is running).</p>

    <p class="win">If no &brandShortName; applications are running, Quick
      Launch must be enabled in order to play a sound when new messages
      arrive.</p>

    <p class="win">If any &brandShortName; application is running, then Quick
      Launch does not need to be enabled in order to play a sound when new
      messages arrive. For information on using Quick Launch, see
      <a href="nav_help.xhtml#using_quick_launch">Using Quick Launch</a>.</p>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="composition">Mail &amp; Newsgroups Preferences - Composition</h2>

<p>Composition preferences affect how you create messages (for example,
  forwarding options and address autocompletion) in all accounts. If you are
  not already viewing the Composition settings, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, click Composition. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li><strong>Forward Messages</strong>: Choose how you want forwarded
    message text to appear: as an attachment or inline (in the body of your
    message).</li>
  <li><strong>Quote attachments viewed inline in replies</strong>: If this
    option is checked, then attachments (such as images, text, or messages)
    viewed inline are included in the quote when replying to an email.</li>
  <li><strong>Automatically save the message every [__] minutes</strong>:
    Choose this option if you want Mail &amp; Newsgroups to save the message
    you are currently composing automatically at the given interval. After a
    computer crash or program failure you can find the latest saved version of
    the message in your Drafts folder.</li>
  <li><strong>Confirm when using keyboard shortcut to send message</strong>:
    Check this option if want to be asked if you&apos;re sure to be ready to
    send the message when you&apos;re pressing Ctrl+Return in message editor.
    This may help you avoid accidentally sending the message if you enter the
    keyboard shortcut by mistake when composing a message.</li>
  <li><strong>Wrap plain text messages at [__] characters</strong>: Enter a
    number to set the right margin for text in the message area.</li>
  <li><strong>Check spelling before sending</strong>: Select this option to
    have Mail &amp; Newsgroups always check the spelling of your message before
    you send it.</li>
  <li><strong>Check spelling as you type</strong>: Select this option to have
    Mail &amp; Newsgroups always check the spelling of your message as you type
    it.</li>
  <li><strong>Language</strong>: Use the drop-down list to select the language
    you want to use to check the spelling in your messages or to download more
    dictionaries.</li>
  <li><strong>Defaults for HTML Messages</strong>: Here you can define what the
    defaults are for font, size, text and background color if you choose to
    send mails in HTML format.</li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="send_format">Mail &amp; Newsgroups Preferences - Send Format</h2>

<p>Send Format preferences allow you to specify how you want to format your
  outgoing messages. If you are not already viewing the Send Format settings,
  follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, click Send Format. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li><strong>Ask me what to do</strong>: This option requires Mail &amp;
    Newsgroups to prompt you to choose a format before you send the
    message.</li>
  <li><strong>Convert the message to plain text</strong>: This option may
    cause your message to lose formatting such as bold text.</li>
  <li><strong>Send the message in HTML anyway</strong>: If you select this
    option, keep in mind that some mail programs may have trouble displaying
    the message.</li>
  <li><strong>Send the message in both plain text and HTML</strong>: This
    option uses more disk space.

    <p>You can always override these preferences for an individual message by
      using the Options menu in the Mail Compose window.</p>
  </li>
  <li><strong>HTML and Plain Text Domains</strong>: Use the Add button to add
    the domain names that you typically send mail to, if you know which domains
    can display HTML-formatted mail messages, and which domains can only
    display plain text.</li>
</ul>

<p>For example, if you typically send mail to multiple recipients that have the
  same domain name (for example, your colleagues all have email addresses that
  end in <q>netscape.net</q>), and you know that this domain name is capable of
  displaying HTML messages, then you can add the netscape.net domain to the
  list of HTML Domains so that Mail &amp; Newsgroups will automatically send
  messages in HTML format to these recipients.</p>

<p>Similarly, if you typically send mail to recipients at a domain that you
  know can only receive Plain Text messages, you can add that domain name to
  the list of Plain Text domains, so that Mail &amp; Newsgroups automatically
  sends messages to that domain in plain-text format.</p>

<p><strong>Note</strong>: If you regularly compose HTML (formatted) mail
  messages, keep in mind that sometimes not all recipients use mail programs
  that can display HTML formatting properly. Send Format preferences allow you
  to specify how you want to format messages that go to recipients who cannot
  display HTML-formatted mail. You can convert messages to plain text, format
  them only as HTML, or format them as both HTML and plain text. These
  preferences apply to all your mail accounts, but only to mail messages and
  not to newsgroup messages.</p>

<p>Whenever you add a person or address card to your address book, you can
  specify whether that addressee can receive HTML-formatted messages. However,
  when this information is unknown, you can set Send Format preferences for how
  Mail &amp; Newsgroups formats these messages.</p>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="addressing_preferences">Mail &amp; Newsgroups Preferences -
  Addressing</h2>

<p>Addressing preferences allow you to control the settings for
  &brandShortName; Mail &amp; Newsgroups address books (for example, email
  address collection and address autocompletion). If you are not already
  viewing the Addressing settings, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, select Addressing. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li><strong>Email Address Collection</strong>: Select this if you want Mail
    &amp; Newsgroups to automatically collect recipients&apos; email addresses.
    Use the drop-down list to choose between having the addresses added to your
    Collected Addresses or your Personal Address Book.</li>
  <li id="address_autocompletion"><strong>Address Autocompletion</strong>:
    Address autocompletion allows you to quickly address mail without having to
    search for names or type names completely. Select from which location Mail
    &amp; Newsgroups will search for matching addresses: <q>Local Address
    Books</q> (Personal Address Book, Collected Addresses, or any other local
    address book) or <q>Directory Server</q> (an available LDAP directory
    server) or both. If you want Mail &amp; Newsgroups to highlight addresses
    that do not autocomplete, then select that option.

    <p><strong>Note</strong>: If while addressing mail, multiple email address
      matches are found, Mail &amp; Newsgroups displays a list of all possible
      choices.</p>

    <p>If you select Directory Server, choose a directory server from the list.
      A directory server lets you look up addresses that are not stored in one
      of your local address books. The directory you select will also be
      searched for matching certificates when you attempt to send an encrypted
      message to one or more recipients for whom you don&apos;t have
      certificates on file.</p>

    <p>See <a href="#adding_and_removing_ldap_directories">Adding and Removing
      LDAP Directories</a> for information on setting LDAP directory server
      settings.</p>

    <p><strong>Note</strong>: Directory server settings you enter from the
      Preferences dialog box apply to all your mail accounts. You can override
      these settings for individual accounts by specifying different LDAP
      directory servers or server settings using the Addressing settings for an
      account in the Mail &amp; Newsgroups Account Settings dialog box. To set
      different addressing options for a specific account, open the Edit menu
      and choose Mail &amp; Newsgroups Account Settings.</p>
  </li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="global_junk_settings">Mail &amp; Newsgroups Preferences - 
  Junk Mail</h2>

<p>This section describes how to use the Junk Mail preferences panel. If
  you are not currently viewing the Junk Mail panel, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, select Junk Mail. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand the
    list.)</li>
</ol>

<ul>
  <li><strong>When I manually mark messages as junk</strong>: Choose this to
    set what you want &brandShortName; to do when you manually mark messages
    as Junk.
    <ul>
      <li><strong>Move them to the account's <q>Junk</q> folder</strong>:
        Choose this to move manually-marked Junk messages to the Junk folder.
      </li>
      <li><strong>Delete them</strong>: Choose this to move manually-marked 
        Junk messages to the trash folder.</li>
    </ul>
  </li>
  <li><strong>Mark messages determined to be junk as read</strong>: Select this
    option to mark junk messages as read, so they will not show up as new.</li>
  <li><strong>Enable junk filter logging</strong>: Select this option to allow
    logging the history of Junk mail detections. Click the <strong>Show log
    </strong> button to open a dialog showing this log.</li>
  <li><strong>Reset training data</strong>: Click this button to clear the
    training data of the adaptive junk filter. Since this will effectively
    destroy your personal junk profile, you will be asked for confirmation.
  </li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>


<h2 id="tags">Mail &amp; Newsgroups Preferences - Tags</h2>

<p>This section describes how to use the Tags preferences panel. You use the
  Tags preferences to define the tag text, colors and order for message tags.
  If you are not currently viewing the panel, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, select Tags. (If no options
    are visible, double-click the Mail &amp; Newsgroups category to expand the
    list.)</li>
</ol>

<ul>
  <li><strong>Customize Tags</strong>: Specifies the tag text and the color
    for each tag. You can edit or replace the default tag text with your
    own text (up to 32 characters). To change the tag color, click the color
    chip next to that tag and select a new color. Use the Move Up and Move Down
    buttons to order your tags by descending importance. Messages with
    multiple tags will be colored according to their most important tag.</li>
  <li><strong>Restore Defaults</strong>: Removes all customized tags and
    restores just the default tags&apos; text and colors.</li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="return_receipts_preferences">Mail &amp; Newsgroups Preferences - Return
  Receipts</h2>

<p>This section describes how to use the Return Receipts preferences panel. If
  you are not currently viewing the Return Receipts panel, follow these
  steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, select Return Receipts. (If no
    subcategories are visible, double-click Mail &amp; Newsgroups to expand the
    list.)</li>
</ol>

<p>You use the Return Receipts preferences to define return receipt settings
  for outgoing messages from all your mail accounts. You also use the Return
  Receipt preferences to specify how to manage requests you receive for return
  receipts.</p>

<ul>
  <li><strong>When sending messages, always request a return receipt</strong>:
    Enables automatic return receipt requests for all outgoing messages in all
    your mail accounts.</li>
  <li><strong>Leave it in my Inbox</strong>: Return receipt confirmation
    messages are delivered to your Inbox.

    <p><strong>Tip</strong>: Choose this option if you want to use a filter
      that automatically moves return receipt confirmation messages to a folder
      you specify. For information on creating and using filters, see
      <a href="#creating_message_filters">Creating Message Filters</a>.</p>
  </li>
  <li><strong>Move it to my Sent Mail folder</strong>: Incoming return receipt
    confirmation messages are moved to your Sent mail folder.</li>
  <li><strong>Never send a return receipt</strong>: Choose this option if you
    do not want to send a return receipt in response to requests for return
    receipts from others.</li>
  <li><strong>Allow return receipts for some messages</strong>: Choose how you
    want to respond to requests you receive for return receipts.</li>
</ul>

<p>To override these global preferences for individual accounts, see
  <a href="#return_receipts">Mail &amp; Newsgroups Account Settings - Return
  Receipts</a>.</p>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="character_encoding">Mail &amp; Newsgroups Preferences - Character
  Encoding</h2>

<p>Character encoding preferences allow you to choose how messages are encoded
  when being displayed or created in all accounts. If you are not already
  viewing the Character Encoding settings, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences. You see the
    Preferences dialog box.</li>
  <li>Under the Mail &amp; Newsgroups category, click Character Encoding. (If
    no subcategories are visible, double-click Mail &amp; Newsgroups to expand
    the list.)</li>
</ol>

<ul>
  <li><strong>Default Character Encoding</strong>: Click this drop-down list to
    select the character encoding you want Mail &amp; Newsgroups to use as the
    default for incoming mail and newsgroup messages. This is recommended if
    it&apos;s likely you might receive messages in which the character encoding
    (MIME charset) is not indicated, such as when reading messages in
    international newsgroups.</li>
  <li><strong>Always use this default character encoding when messages are
    displayed</strong>: Select this to apply the default character encoding to
    all messages.

    <p><strong>Tip</strong>: You can later view or change the character
      encoding for a specific folder. In the Mail window, select a folder from
      the list of Mail folders. Open the View menu, and choose Character
      Encoding.</p>
  </li>
  <li><strong>For messages that contain 8-bit characters, use &apos;quoted
    printable&apos; MIME encoding</strong>: Choose to have Mail &amp;
    Newsgroups use <q>quoted printable</q> MIME encoding when sending regular
    messages that use an 8-bit character encoding (for example, Latin
    ISO-8859-3).</li>
  <li><strong>Default Character Encoding</strong>: Select the character
    encoding you want Mail &amp; Newsgroups to use as the default for outgoing
    mail and newsgroup messages. Note that this character encoding is
    <strong>not</strong> used when replying to a message. Instead, the
    character encoding of the message being replied to is used by default.
    Choose <strong>Always use this default character encoding in
    replies</strong> to use the default character encoding for outgoing
    messages even when replying.</li>
</ul>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<h2 id="offline_and_disk_space_preferences">Mail &amp; Newsgroups Preferences -
  Offline &amp; Disk Space</h2>

<p>This section describes how to use the Offline &amp; Disk Space preferences
  panel. If you are not currently viewing the panel, follow these steps:</p>

<ol>
  <li>Open the <span class="mac">&brandShortName;</span>
    <span class="noMac">Edit</span> menu and choose Preferences.</li>
  <li>Under the Mail &amp; Newsgroups category, select Offline &amp; Disk
    Space. (If no subcategories are visible, double-click Mail &amp;
    Newsgroups to expand the list.).</li>
</ol>

<p>The Offline &amp; Disk Space preferences allow you to set preferences for
  working offline, going online, and disk space.</p>

<ul>
  <li><strong>Offline</strong>: Select how you want Mail &amp; Newsgroups to
    handle messages when going online or offline.</li>
  <li><strong>Disk Space</strong>: Select this to conserve disk space by 
    automatically compacting message folders when it will save the amount 
    of disk space you enter.</li>
</ul>

<p>See <a href="#working_offline">Working Offline</a> for information on
  working offline.</p>

<p>[<a href="#mail_and_newsgroup_preferences">Return to beginning of
  section</a>]</p>

<p>&copyright.string;</p>

</body>
</html>